Zydis  v4.0.0
Register.h
Go to the documentation of this file.
1 /***************************************************************************************************
2 
3  Zyan Disassembler Library (Zydis)
4 
5  Original Author : Florian Bernd
6 
7  * Permission is hereby granted, free of charge, to any person obtaining a copy
8  * of this software and associated documentation files (the "Software"), to deal
9  * in the Software without restriction, including without limitation the rights
10  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11  * copies of the Software, and to permit persons to whom the Software is
12  * furnished to do so, subject to the following conditions:
13  *
14  * The above copyright notice and this permission notice shall be included in all
15  * copies or substantial portions of the Software.
16  *
17  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23  * SOFTWARE.
24 
25 ***************************************************************************************************/
26 
32 #ifndef ZYDIS_REGISTER_H
33 #define ZYDIS_REGISTER_H
34 
35 #include <Zycore/Defines.h>
36 #include <Zycore/Types.h>
37 #include <Zydis/Defines.h>
38 #include <Zydis/SharedTypes.h>
39 #include <Zydis/ShortString.h>
40 
41 #ifdef __cplusplus
42 extern "C" {
43 #endif
44 
45 /* ============================================================================================== */
46 /* Enums and types */
47 /* ============================================================================================== */
48 
49 /* ---------------------------------------------------------------------------------------------- */
50 /* Registers */
51 /* ---------------------------------------------------------------------------------------------- */
52 
53 #include <Zydis/Generated/EnumRegister.h>
54 
55 /* ---------------------------------------------------------------------------------------------- */
56 /* Register kinds */
57 /* ---------------------------------------------------------------------------------------------- */
58 
69 typedef enum ZydisRegisterKind_
70 {
71  ZYDIS_REGKIND_INVALID,
72  ZYDIS_REGKIND_GPR,
73  ZYDIS_REGKIND_X87,
74  ZYDIS_REGKIND_MMX,
75  ZYDIS_REGKIND_VR,
76  ZYDIS_REGKIND_TMM,
77  ZYDIS_REGKIND_SEGMENT,
78  ZYDIS_REGKIND_TEST,
79  ZYDIS_REGKIND_CONTROL,
80  ZYDIS_REGKIND_DEBUG,
81  ZYDIS_REGKIND_MASK,
82  ZYDIS_REGKIND_BOUND,
83 
87  ZYDIS_REGKIND_MAX_VALUE = ZYDIS_REGKIND_BOUND,
93 
94 /* ---------------------------------------------------------------------------------------------- */
95 /* Register classes */
96 /* ---------------------------------------------------------------------------------------------- */
97 
109 {
110  ZYDIS_REGCLASS_INVALID,
151  /*
152  * Flags registers.
153  */
154  ZYDIS_REGCLASS_FLAGS,
187 
197 
198 /* ---------------------------------------------------------------------------------------------- */
199 /* Register width */
200 /* ---------------------------------------------------------------------------------------------- */
201 
205 typedef ZyanU16 ZydisRegisterWidth;
206 
207 /* ---------------------------------------------------------------------------------------------- */
208 /* Register context */
209 /* ---------------------------------------------------------------------------------------------- */
210 
214 typedef struct ZydisRegisterContext_
215 {
219  ZyanU64 values[ZYDIS_REGISTER_MAX_VALUE + 1];
221 
222 /* ---------------------------------------------------------------------------------------------- */
223 
224 /* ============================================================================================== */
225 /* Exported functions */
226 /* ============================================================================================== */
227 
234 /* ---------------------------------------------------------------------------------------------- */
235 /* Register */
236 /* ---------------------------------------------------------------------------------------------- */
237 
247 ZYDIS_EXPORT ZydisRegister ZydisRegisterEncode(ZydisRegisterClass register_class, ZyanU8 id);
248 
256 ZYDIS_EXPORT ZyanI8 ZydisRegisterGetId(ZydisRegister reg);
257 
266 
277 
288  ZydisRegister reg);
289 
297 ZYDIS_EXPORT const char* ZydisRegisterGetString(ZydisRegister reg);
298 
309 
310 /* ---------------------------------------------------------------------------------------------- */
311 /* Register class */
312 /* ---------------------------------------------------------------------------------------------- */
313 
323  ZydisRegisterClass register_class);
324 
325 /* ---------------------------------------------------------------------------------------------- */
326 
331 /* ============================================================================================== */
332 
333 #ifdef __cplusplus
334 }
335 #endif
336 
337 #endif /* ZYDIS_REGISTER_H */
Test registers.
Definition: Register.h:170
enum ZydisMachineMode_ ZydisMachineMode
Defines the ZydisMachineMode enum.
ZYDIS_EXPORT ZydisRegisterWidth ZydisRegisterClassGetWidth(ZydisMachineMode mode, ZydisRegisterClass register_class)
Returns the width of the specified register-class.
ZYDIS_EXPORT const char * ZydisRegisterGetString(ZydisRegister reg)
Returns the specified register string.
8-bit general-purpose registers.
Definition: Register.h:114
Defines decoder/encoder-shared macros and types.
Maximum value of this enum.
Definition: Register.h:191
256-bit vector registers.
Definition: Register.h:142
Import/export defines for MSVC builds.
#define ZYDIS_EXPORT
Symbol is exported in shared library builds.
Definition: Defines.h:67
Mask registers.
Definition: Register.h:182
512-bit vector registers.
Definition: Register.h:146
ZYDIS_EXPORT ZyanI8 ZydisRegisterGetId(ZydisRegister reg)
Returns the id of the specified register.
ZydisRegisterClass_
Defines the ZydisRegisterClass enum.
Definition: Register.h:108
64-bit general-purpose registers.
Definition: Register.h:126
ZyanU16 ZydisRegisterWidth
Defines the ZydisRegisterWidth data-type.
Definition: Register.h:205
struct ZydisRegisterContext_ ZydisRegisterContext
Defines the ZydisRegisterContext struct.
Floating point legacy registers.
Definition: Register.h:130
enum ZydisRegisterKind_ ZydisRegisterKind
Defines the ZydisRegisterKind enum.
ZYDIS_EXPORT ZydisRegisterClass ZydisRegisterGetClass(ZydisRegister reg)
Returns the register-class of the specified register.
Defines the ZydisShortString struct.
Definition: ShortString.h:59
Table registers.
Definition: Register.h:166
ZYDIS_EXPORT ZydisRegisterWidth ZydisRegisterGetWidth(ZydisMachineMode mode, ZydisRegister reg)
Returns the width of the specified register.
enum ZydisRegisterClass_ ZydisRegisterClass
Defines the ZydisRegisterClass enum.
Defines the immutable and storage-efficient ZydisShortString struct, which is used to store strings i...
Floating point multimedia registers.
Definition: Register.h:134
Control registers.
Definition: Register.h:174
Instruction-pointer registers.
Definition: Register.h:158
ZyanU64 values[ZYDIS_REGISTER_MAX_VALUE+1]
The values stored in the register context.
Definition: Register.h:219
32-bit general-purpose registers.
Definition: Register.h:122
The minimum number of bits required to represent all values of this enum.
Definition: Register.h:91
ZYDIS_EXPORT ZydisRegister ZydisRegisterEncode(ZydisRegisterClass register_class, ZyanU8 id)
Returns the register specified by the register_class and id tuple.
ZydisRegisterKind_
Defines the ZydisRegisterKind enum.
Definition: Register.h:69
The minimum number of bits required to represent all values of this enum.
Definition: Register.h:195
Matrix registers.
Definition: Register.h:150
ZYDIS_EXPORT const ZydisShortString * ZydisRegisterGetStringWrapped(ZydisRegister reg)
Returns the specified register string as ZydisShortString.
Defines the ZydisRegisterContext struct.
Definition: Register.h:214
16-bit general-purpose registers.
Definition: Register.h:118
Debug registers.
Definition: Register.h:178
Maximum value of this enum.
Definition: Register.h:87
ZYDIS_EXPORT ZydisRegister ZydisRegisterGetLargestEnclosing(ZydisMachineMode mode, ZydisRegister reg)
Returns the largest enclosing register of the given register.
Bound registers.
Definition: Register.h:186
128-bit vector registers.
Definition: Register.h:138
Segment registers.
Definition: Register.h:162