1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
#[allow(dead_code, non_camel_case_types, non_snake_case)]
pub(crate) mod generated;
pub mod arm;
pub mod arm64;
pub mod evm;
pub mod m680x;
pub mod m68k;
pub mod mips;
pub mod mos65xx;
pub mod ppc;
pub mod sparc;
pub mod sysz;
pub mod tms320c64x;
pub mod x86;
pub mod xcore;
use core::cmp::{Eq, PartialEq};
bitflags::bitflags! {
#[repr(transparent)]
pub struct Access: u8 {
const READ = 1 << 0;
const WRITE = 1 << 1;
}
}
#[derive(Copy, Clone, Hash, PartialEq, Eq)]
pub enum InsnId {
X86(x86::InsnId),
}
impl InsnId {
#[inline]
pub(crate) fn to_c(self) -> libc::c_int {
match self {
InsnId::X86(id) => id.to_c(),
}
}
}
impl core::cmp::Ord for InsnId {
fn cmp(&self, other: &Self) -> core::cmp::Ordering {
self.to_c().cmp(&other.to_c())
}
}
impl core::cmp::PartialOrd for InsnId {
fn partial_cmp(&self, other: &Self) -> Option<core::cmp::Ordering> {
self.to_c().partial_cmp(&other.to_c())
}
}
#[derive(Copy, Clone, PartialEq, Eq, Default, Hash)]
#[repr(transparent)]
pub struct InsnGroup(u8);
impl InsnGroup {
#[allow(dead_code)]
pub(crate) fn to_primitive(self) -> u8 {
self.0
}
}
#[derive(Copy, Clone, PartialEq, Eq, Default, Hash)]
#[repr(transparent)]
pub struct Reg(u16);
impl Reg {
pub(crate) fn to_primitive(self) -> u16 {
self.0
}
}
macro_rules! impl_arch {
($ArchModuleName:ident, $ArchTypeName:ident, $ArchFnName:ident) => {
impl From<$ArchModuleName::InsnId> for InsnId {
#[inline]
fn from(id: $ArchModuleName::InsnId) -> InsnId {
InsnId::$ArchTypeName(id)
}
}
impl PartialEq<$ArchModuleName::InsnId> for InsnId {
#[inline]
fn eq(&self, other: &$ArchModuleName::InsnId) -> bool {
matches!(self, InsnId::$ArchTypeName(inner) if inner == other)
}
}
impl PartialEq<$ArchModuleName::InsnGroup> for InsnGroup {
#[inline]
fn eq(&self, other: &$ArchModuleName::InsnGroup) -> bool {
self.0 == other.to_primitive() as u8
}
}
impl PartialEq<InsnGroup> for $ArchModuleName::InsnGroup {
#[inline]
fn eq(&self, other: &InsnGroup) -> bool {
self.to_primitive() as u8 == other.0
}
}
impl core::convert::From<$ArchModuleName::InsnGroup> for InsnGroup {
#[inline]
fn from(arch_insn_group: $ArchModuleName::InsnGroup) -> Self {
InsnGroup(arch_insn_group.to_primitive() as u8)
}
}
impl core::convert::From<InsnGroup> for $ArchModuleName::InsnGroup {
#[inline]
fn from(generic: InsnGroup) -> $ArchModuleName::InsnGroup {
$ArchModuleName::InsnGroup::from_c(generic.0 as libc::c_int)
.unwrap_or($ArchModuleName::InsnGroup::Invalid)
}
}
impl InsnGroup {
#[inline]
pub fn $ArchFnName(self) -> $ArchModuleName::InsnGroup {
$ArchModuleName::InsnGroup::from_c(self.0 as libc::c_int)
.unwrap_or($ArchModuleName::InsnGroup::Invalid)
}
}
impl PartialEq<$ArchModuleName::Reg> for Reg {
#[inline]
fn eq(&self, other: &$ArchModuleName::Reg) -> bool {
self.0 == other.to_primitive() as u16
}
}
impl PartialEq<Reg> for $ArchModuleName::Reg {
#[inline]
fn eq(&self, other: &Reg) -> bool {
self.to_primitive() as u16 == other.0
}
}
impl core::convert::From<$ArchModuleName::Reg> for Reg {
#[inline]
fn from(arch_reg: $ArchModuleName::Reg) -> Self {
Reg(arch_reg.to_primitive() as u16)
}
}
impl core::convert::From<Reg> for $ArchModuleName::Reg {
#[inline]
fn from(generic: Reg) -> $ArchModuleName::Reg {
$ArchModuleName::Reg::from_c(generic.0 as libc::c_int)
.unwrap_or($ArchModuleName::Reg::Invalid)
}
}
impl Reg {
#[inline]
pub fn $ArchFnName(self) -> $ArchModuleName::Reg {
$ArchModuleName::Reg::from_c(self.0 as libc::c_int)
.unwrap_or($ArchModuleName::Reg::Invalid)
}
}
};
}
impl_arch!(x86, X86, x86);