-
Notifications
You must be signed in to change notification settings - Fork 12
/
common.rs
62 lines (56 loc) · 1.4 KB
/
common.rs
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
// Contains code common to the build script and main crate
//
// Needs to be included with include! macro
#[derive(Clone, Copy, PartialEq, Eq, Debug, Hash)]
/// Information specific to architecture
pub struct CapstoneArchInfo<'a> {
/// name of C header
header_name: &'a str,
/// name used within capstone C library
cs_name: &'a str,
}
impl<'a> CapstoneArchInfo<'a> {
/// Get the name of the C header
pub fn header_name(&self) -> &str {
self.header_name
}
/// Get the arch name used in Capstone types
pub fn cs_name(&self) -> &str {
self.cs_name
}
}
pub static ARCH_INCLUDES: &'static [CapstoneArchInfo<'static>] = &[
CapstoneArchInfo {
header_name: "arm.h",
cs_name: "arm",
},
CapstoneArchInfo {
header_name: "arm64.h",
cs_name: "arm64",
},
CapstoneArchInfo {
header_name: "mips.h",
cs_name: "mips",
},
CapstoneArchInfo {
header_name: "ppc.h",
cs_name: "ppc",
},
CapstoneArchInfo {
header_name: "sparc.h",
cs_name: "sparc",
},
CapstoneArchInfo {
header_name: "systemz.h",
cs_name: "sysz",
},
CapstoneArchInfo {
header_name: "x86.h",
cs_name: "x86",
},
CapstoneArchInfo {
header_name: "xcore.h",
cs_name: "xcore",
},
];
pub static BINDINGS_FILE: &'static str = "capstone.rs";