8#ifndef TRITON_SHORTCUTREGISTER_HPP
9#define TRITON_SHORTCUTREGISTER_HPP
36 #define REG_SPEC(_0, LOWER_NAME, _2, _3, _4, _5, _6, _7, _8) \
37 triton::arch::Register x86_##LOWER_NAME;
38 #define REG_SPEC_NO_CAPSTONE REG_SPEC
39 #include "triton/x86.spec"
41 #define REG_SPEC(_0, LOWER_NAME, _2, _3, _4, _5) \
42 triton::arch::Register aarch64_##LOWER_NAME;
43 #define REG_SPEC_NO_CAPSTONE REG_SPEC
44 #define SYS_REG_SPEC REG_SPEC
45 #include "triton/aarch64.spec"
47 #define REG_SPEC(_0, LOWER_NAME, _2, _3, _4, _5) \
48 triton::arch::Register arm32_##LOWER_NAME;
49 #define REG_SPEC_NO_CAPSTONE REG_SPEC
50 #include "triton/arm32.spec"
54 #define REG_SPEC(_0, _1, LOWER_NAME, _2, _3, _4, _5) \
55 triton::arch::Register riscv_##LOWER_NAME;
56 #define REG_SPEC_NO_CAPSTONE REG_SPEC
57 #include "triton/riscv64.spec"
65 #define REG_SPEC(_0, LOWER_NAME, _2, _3, _4, _5, _6, _7, _8) \
66 this->x86_##LOWER_NAME = triton::arch::Register();
67 #define REG_SPEC_NO_CAPSTONE REG_SPEC
68 #include "triton/x86.spec"
70 #define REG_SPEC(_0, LOWER_NAME, _2, _3, _4, _5) \
71 this->aarch64_##LOWER_NAME = triton::arch::Register();
72 #define REG_SPEC_NO_CAPSTONE REG_SPEC
73 #define SYS_REG_SPEC REG_SPEC
74 #include "triton/aarch64.spec"
76 #define REG_SPEC(_0, LOWER_NAME, _2, _3, _4, _5) \
77 this->arm32_##LOWER_NAME = triton::arch::Register();
78 #define REG_SPEC_NO_CAPSTONE REG_SPEC
79 #include "triton/arm32.spec"
83 #define REG_SPEC(_0, _1, LOWER_NAME, _2, _3, _4, _5) \
84 this->riscv_##LOWER_NAME = triton::arch::Register();
85 #define REG_SPEC_NO_CAPSTONE REG_SPEC
86 #include "triton/riscv64.spec"
96 #define REG_SPEC(UPPER_NAME, LOWER_NAME, AARCH64_UPPER, AARCH64_LOWER, AARCH64_PARENT, MUTABLE) \
97 this->aarch64_##LOWER_NAME = triton::arch::Register(triton::arch::ID_REG_AARCH64_##UPPER_NAME, \
99 triton::arch::ID_REG_AARCH64_##AARCH64_PARENT, \
103 #define REG_SPEC_NO_CAPSTONE REG_SPEC
104 #define SYS_REG_SPEC REG_SPEC
105 #include "triton/aarch64.spec"
110 #define REG_SPEC(UPPER_NAME, LOWER_NAME, ARM32_UPPER, ARM32_LOWER, ARM32_PARENT, MUTABLE) \
111 this->arm32_##LOWER_NAME = triton::arch::Register(triton::arch::ID_REG_ARM32_##UPPER_NAME, \
113 triton::arch::ID_REG_ARM32_##ARM32_PARENT, \
117 #define REG_SPEC_NO_CAPSTONE REG_SPEC
118 #include "triton/arm32.spec"
123 #define REG_SPEC(UPPER_NAME, LOWER_NAME, _1, _2, _3, X86_UPPER, X86_LOWER, X86_PARENT, X86_AVAIL) \
125 this->x86_##LOWER_NAME = triton::arch::Register(triton::arch::ID_REG_X86_##UPPER_NAME, \
127 triton::arch::ID_REG_X86_##X86_PARENT, \
131 #define REG_SPEC_NO_CAPSTONE REG_SPEC
132 #include "triton/x86.spec"
137 #define REG_SPEC(UPPER_NAME, LOWER_NAME, X86_64_UPPER, X86_64_LOWER, X86_64_PARENT, X86_UPPER, X86_LOWER, X86_PARENT, X86_AVAIL) \
138 this->x86_##LOWER_NAME = triton::arch::Register(triton::arch::ID_REG_X86_##UPPER_NAME, \
140 triton::arch::ID_REG_X86_##X86_64_PARENT, \
144 #define REG_SPEC_NO_CAPSTONE REG_SPEC
145 #include "triton/x86.spec"
150 case triton::arch::ARCH_RV64: {
151 #define REG_SPEC(CS_UPPER_NAME, UPPER_NAME, LOWER_NAME, ABI_NAME, RISCV_UPPER, RISCV_LOWER, MUTABLE) \
152 this->riscv_##LOWER_NAME = triton::arch::Register(triton::arch::ID_REG_RV64_##UPPER_NAME, \
154 triton::arch::ID_REG_RV64_##UPPER_NAME, \
158 #define REG_SPEC_NO_CAPSTONE REG_SPEC
159 #include "triton/riscv64.spec"
163 case triton::arch::ARCH_RV32: {
164 #define REG_SPEC(CS_UPPER_NAME, UPPER_NAME, LOWER_NAME, ABI_NAME, RISCV_UPPER, RISCV_LOWER, MUTABLE) \
165 this->riscv_##LOWER_NAME = triton::arch::Register(triton::arch::ID_REG_RV32_##UPPER_NAME, \
167 triton::arch::ID_REG_RV32_##UPPER_NAME, \
171 #define REG_SPEC_NO_CAPSTONE REG_SPEC
172 #include "triton/riscv32.spec"
This is used as a shortcut to access to registers.
void init(triton::arch::architecture_e arch)
The exception class used by architectures.