Zydis v4.0.0
Loading...
Searching...
No Matches
Formatter.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_FORMATTER_H
33#define ZYDIS_FORMATTER_H
34
35#include <Zycore/Defines.h>
36#include <Zycore/String.h>
37#include <Zycore/Types.h>
38#include <Zydis/DecoderTypes.h>
40
41#ifdef __cplusplus
42extern "C" {
43#endif
44
45/* ============================================================================================== */
46/* Constants */
47/* ============================================================================================== */
48
53#define ZYDIS_RUNTIME_ADDRESS_NONE (ZyanU64)(-1)
54
55/* ============================================================================================== */
56/* Enums and types */
57/* ============================================================================================== */
58
59/* ---------------------------------------------------------------------------------------------- */
60/* Formatter style */
61/* ---------------------------------------------------------------------------------------------- */
62
93
94/* ---------------------------------------------------------------------------------------------- */
95/* Properties */
96/* ---------------------------------------------------------------------------------------------- */
97
102{
103 /* ---------------------------------------------------------------------------------------- */
104 /* General */
105 /* ---------------------------------------------------------------------------------------- */
106
154
162
163 /* ---------------------------------------------------------------------------------------- */
164 /* Numeric values */
165 /* ---------------------------------------------------------------------------------------- */
166
192
193 /* ---------------------------------------------------------------------------------------- */
194
210
211 /* ---------------------------------------------------------------------------------------- */
212
232
233 /* ---------------------------------------------------------------------------------------- */
234 /* Text formatting */
235 /* ---------------------------------------------------------------------------------------- */
236
267
268 /* ---------------------------------------------------------------------------------------- */
269 /* Number formatting */
270 /* ---------------------------------------------------------------------------------------- */
271
290
291 /* ---------------------------------------------------------------------------------------- */
292
329
330 /* ---------------------------------------------------------------------------------------- */
331
341
342/* ---------------------------------------------------------------------------------------------- */
343
367
368/* ---------------------------------------------------------------------------------------------- */
369
398
399/* ---------------------------------------------------------------------------------------------- */
400
426
427/* ---------------------------------------------------------------------------------------------- */
428/* Function types */
429/* ---------------------------------------------------------------------------------------------- */
430
438{
439 /* ---------------------------------------------------------------------------------------- */
440 /* Instruction */
441 /* ---------------------------------------------------------------------------------------- */
442
451
452 /* ---------------------------------------------------------------------------------------- */
453
462
463 /* ---------------------------------------------------------------------------------------- */
464 /* Operands */
465 /* ---------------------------------------------------------------------------------------- */
466
475
476 /* ---------------------------------------------------------------------------------------- */
477
502
503 /* ---------------------------------------------------------------------------------------- */
504 /* Elemental tokens */
505 /* ---------------------------------------------------------------------------------------- */
506
511
512 /* ---------------------------------------------------------------------------------------- */
513
556
557 /* ---------------------------------------------------------------------------------------- */
558 /* Optional tokens */
559 /* ---------------------------------------------------------------------------------------- */
560
578
579 /* ---------------------------------------------------------------------------------------- */
580
590
591/* ---------------------------------------------------------------------------------------------- */
592/* Decorator types */
593/* ---------------------------------------------------------------------------------------------- */
594
639
640/* ---------------------------------------------------------------------------------------------- */
641/* Formatter context */
642/* ---------------------------------------------------------------------------------------------- */
643
644typedef struct ZydisFormatter_ ZydisFormatter;
645
675
676/* ---------------------------------------------------------------------------------------------- */
677/* Function prototypes */
678/* ---------------------------------------------------------------------------------------------- */
679
720typedef ZyanStatus (*ZydisFormatterFunc)(const ZydisFormatter* formatter,
722
737typedef ZyanStatus (*ZydisFormatterRegisterFunc)(const ZydisFormatter* formatter,
738 ZydisFormatterBuffer* buffer, ZydisFormatterContext* context, ZydisRegister reg);
739
754typedef ZyanStatus (*ZydisFormatterDecoratorFunc)(const ZydisFormatter* formatter,
755 ZydisFormatterBuffer* buffer, ZydisFormatterContext* context, ZydisDecorator decorator);
756
757/* ---------------------------------------------------------------------------------------------- */
758/* Formatter struct */
759/* ---------------------------------------------------------------------------------------------- */
760
771{
878 struct
879 {
883 const ZyanStringView* string;
887 ZyanStringView string_data;
891 char buffer[11];
969};
970
971/* ---------------------------------------------------------------------------------------------- */
972
973/* ============================================================================================== */
974/* Exported functions */
975/* ============================================================================================== */
976
983/* ---------------------------------------------------------------------------------------------- */
984/* Initialization */
985/* ---------------------------------------------------------------------------------------------- */
986
996
997/* ---------------------------------------------------------------------------------------------- */
998/* Setter */
999/* ---------------------------------------------------------------------------------------------- */
1000
1014 ZydisFormatterProperty property, ZyanUPointer value);
1015
1034 ZydisFormatterFunction type, const void** callback);
1035
1036/* ---------------------------------------------------------------------------------------------- */
1037/* Formatting */
1038/* ---------------------------------------------------------------------------------------------- */
1039
1058 const ZydisDecodedInstruction* instruction, const ZydisDecodedOperand* operands,
1059 ZyanU8 operand_count, char* buffer, ZyanUSize length, ZyanU64 runtime_address,
1060 void* user_data);
1061
1081 const ZydisDecodedInstruction* instruction, const ZydisDecodedOperand* operand,
1082 char* buffer, ZyanUSize length, ZyanU64 runtime_address, void* user_data);
1083
1084/* ---------------------------------------------------------------------------------------------- */
1085/* Tokenizing */
1086/* ---------------------------------------------------------------------------------------------- */
1087
1107 const ZydisDecodedInstruction* instruction, const ZydisDecodedOperand* operands,
1108 ZyanU8 operand_count, void* buffer, ZyanUSize length, ZyanU64 runtime_address,
1109 ZydisFormatterTokenConst** token, void* user_data);
1110
1130 const ZydisDecodedInstruction* instruction, const ZydisDecodedOperand* operand,
1131 void* buffer, ZyanUSize length, ZyanU64 runtime_address, ZydisFormatterTokenConst** token,
1132 void* user_data);
1133
1134/* ---------------------------------------------------------------------------------------------- */
1135
1140/* ============================================================================================== */
1141
1142#ifdef __cplusplus
1143}
1144#endif
1145
1146#endif /* ZYDIS_FORMATTER_H */
Defines the basic ZydisDecodedInstruction and ZydisDecodedOperand structs.
#define ZYDIS_EXPORT
Symbol is exported in shared library builds.
Definition Defines.h:67
Implements the ZydisFormatterToken type and provides functions to use it.
enum ZydisDecorator_ ZydisDecorator
Enum of all decorator types.
enum ZydisNumericBase_ ZydisNumericBase
Enum defining different mantissae to be used during formatting.
ZydisFormatterStyle_
Enum selecting the syntax to format the disassembly in.
Definition Formatter.h:67
@ ZYDIS_FORMATTER_STYLE_ATT
Generates AT&T-style disassembly.
Definition Formatter.h:71
@ ZYDIS_FORMATTER_STYLE_INTEL_MASM
Generates MASM-style disassembly that is directly accepted as input for the MASM assembler.
Definition Formatter.h:82
@ ZYDIS_FORMATTER_STYLE_REQUIRED_BITS
The minimum number of bits required to represent all values of this enum.
Definition Formatter.h:91
@ ZYDIS_FORMATTER_STYLE_INTEL
Generates Intel-style disassembly.
Definition Formatter.h:75
@ ZYDIS_FORMATTER_STYLE_MAX_VALUE
Maximum value of this enum.
Definition Formatter.h:87
ZydisSignedness_
Enum defining the signeness of integers to be used during formatting.
Definition Formatter.h:374
@ ZYDIS_SIGNEDNESS_MAX_VALUE
Maximum value of this enum.
Definition Formatter.h:392
@ ZYDIS_SIGNEDNESS_REQUIRED_BITS
The minimum number of bits required to represent all values of this enum.
Definition Formatter.h:396
@ ZYDIS_SIGNEDNESS_AUTO
Automatically choose the most suitable mode based on the operands ZydisDecodedOperand....
Definition Formatter.h:379
@ ZYDIS_SIGNEDNESS_UNSIGNED
Force unsigned values.
Definition Formatter.h:387
@ ZYDIS_SIGNEDNESS_SIGNED
Force signed values.
Definition Formatter.h:383
ZydisFormatterFunction_
Enum selecting a formatter function to be replaced with hooks.
Definition Formatter.h:438
@ ZYDIS_FORMATTER_FUNC_PRE_OPERAND
This function is invoked before the formatter formats an operand.
Definition Formatter.h:470
@ ZYDIS_FORMATTER_FUNC_PRINT_ADDRESS_ABS
This function is invoked to print absolute addresses.
Definition Formatter.h:529
@ ZYDIS_FORMATTER_FUNC_PRINT_TYPECAST
This function is invoked to print the size of a memory operand (INTEL only).
Definition Formatter.h:564
@ ZYDIS_FORMATTER_FUNC_PRINT_ADDRESS_REL
This function is invoked to print relative addresses.
Definition Formatter.h:536
@ ZYDIS_FORMATTER_FUNC_FORMAT_OPERAND_MEM
This function is invoked to format a memory operand.
Definition Formatter.h:489
@ ZYDIS_FORMATTER_FUNC_FORMAT_OPERAND_IMM
This function is invoked to format an immediate operand.
Definition Formatter.h:501
@ ZYDIS_FORMATTER_FUNC_PRINT_MNEMONIC
This function is invoked to print the instruction mnemonic.
Definition Formatter.h:510
@ ZYDIS_FORMATTER_FUNC_PRE_INSTRUCTION
This function is invoked before the formatter formats an instruction.
Definition Formatter.h:446
@ ZYDIS_FORMATTER_FUNC_PRINT_DECORATOR
This function is invoked after formatting an operand to print a EVEX/MVEX decorator.
Definition Formatter.h:577
@ ZYDIS_FORMATTER_FUNC_PRINT_REGISTER
This function is invoked to print a register.
Definition Formatter.h:517
@ ZYDIS_FORMATTER_FUNC_PRINT_DISP
This function is invoked to print a memory displacement value.
Definition Formatter.h:544
@ ZYDIS_FORMATTER_FUNC_POST_INSTRUCTION
This function is invoked after the formatter formatted an instruction.
Definition Formatter.h:450
@ ZYDIS_FORMATTER_FUNC_POST_OPERAND
This function is invoked after the formatter formatted an operand.
Definition Formatter.h:474
@ ZYDIS_FORMATTER_FUNC_PRINT_SEGMENT
This function is invoked to print the segment-register of a memory operand.
Definition Formatter.h:568
@ ZYDIS_FORMATTER_FUNC_FORMAT_OPERAND_PTR
This function is invoked to format a pointer operand.
Definition Formatter.h:493
@ ZYDIS_FORMATTER_FUNC_PRINT_IMM
This function is invoked to print an immediate value.
Definition Formatter.h:555
@ ZYDIS_FORMATTER_FUNC_REQUIRED_BITS
The minimum number of bits required to represent all values of this enum.
Definition Formatter.h:588
@ ZYDIS_FORMATTER_FUNC_MAX_VALUE
Maximum value of this enum.
Definition Formatter.h:584
@ ZYDIS_FORMATTER_FUNC_PRINT_PREFIXES
This function is invoked to print the instruction prefixes.
Definition Formatter.h:572
@ ZYDIS_FORMATTER_FUNC_FORMAT_INSTRUCTION
This function refers to the main formatting function.
Definition Formatter.h:461
@ ZYDIS_FORMATTER_FUNC_FORMAT_OPERAND_REG
This function is invoked to format a register operand.
Definition Formatter.h:481
ZyanStatus(* ZydisFormatterRegisterFunc)(const ZydisFormatter *formatter, ZydisFormatterBuffer *buffer, ZydisFormatterContext *context, ZydisRegister reg)
Defines the ZydisFormatterRegisterFunc function prototype.
Definition Formatter.h:737
enum ZydisFormatterStyle_ ZydisFormatterStyle
Enum selecting the syntax to format the disassembly in.
ZydisPadding_
Enum definining magic values that receive special treatment when used as padding properties of the fo...
Definition Formatter.h:406
@ ZYDIS_PADDING_REQUIRED_BITS
The minimum number of bits required to represent all values of this enum.
Definition Formatter.h:424
@ ZYDIS_PADDING_AUTO
Padds the value to the current stack-width for addresses, or to the operand-width for immediate value...
Definition Formatter.h:415
@ ZYDIS_PADDING_MAX_VALUE
Maximum value of this enum.
Definition Formatter.h:420
@ ZYDIS_PADDING_DISABLED
Disables padding.
Definition Formatter.h:410
enum ZydisFormatterFunction_ ZydisFormatterFunction
Enum selecting a formatter function to be replaced with hooks.
enum ZydisSignedness_ ZydisSignedness
Enum defining the signeness of integers to be used during formatting.
enum ZydisFormatterProperty_ ZydisFormatterProperty
Enum selecting a property of the formatter.
struct ZydisFormatterContext_ ZydisFormatterContext
Context structure that that is passed to all formatter.
ZydisNumericBase_
Enum defining different mantissae to be used during formatting.
Definition Formatter.h:348
@ ZYDIS_NUMERIC_BASE_REQUIRED_BITS
The minimum number of bits required to represent all values of this enum.
Definition Formatter.h:365
@ ZYDIS_NUMERIC_BASE_HEX
Hexadecimal system.
Definition Formatter.h:356
@ ZYDIS_NUMERIC_BASE_MAX_VALUE
Maximum value of this enum.
Definition Formatter.h:361
@ ZYDIS_NUMERIC_BASE_DEC
Decimal system.
Definition Formatter.h:352
ZyanStatus(* ZydisFormatterFunc)(const ZydisFormatter *formatter, ZydisFormatterBuffer *buffer, ZydisFormatterContext *context)
Defines the ZydisFormatterFunc function prototype.
Definition Formatter.h:720
ZydisDecorator_
Enum of all decorator types.
Definition Formatter.h:599
@ ZYDIS_DECORATOR_REQUIRED_BITS
The minimum number of bits required to represent all values of this enum.
Definition Formatter.h:637
@ ZYDIS_DECORATOR_SAE
The suppress-all-exceptions decorator.
Definition Formatter.h:616
@ ZYDIS_DECORATOR_BC
The broadcast decorator.
Definition Formatter.h:608
@ ZYDIS_DECORATOR_SWIZZLE
The register-swizzle decorator.
Definition Formatter.h:620
@ ZYDIS_DECORATOR_MASK
The embedded-mask decorator.
Definition Formatter.h:604
@ ZYDIS_DECORATOR_EH
The eviction-hint decorator.
Definition Formatter.h:628
@ ZYDIS_DECORATOR_MAX_VALUE
Maximum value of this enum.
Definition Formatter.h:633
@ ZYDIS_DECORATOR_CONVERSION
The conversion decorator.
Definition Formatter.h:624
@ ZYDIS_DECORATOR_RC
The rounding-control decorator.
Definition Formatter.h:612
ZydisFormatterProperty_
Enum selecting a property of the formatter.
Definition Formatter.h:102
@ ZYDIS_FORMATTER_PROP_MAX_VALUE
Maximum value of this enum.
Definition Formatter.h:335
@ ZYDIS_FORMATTER_PROP_IMM_SIGNEDNESS
Controls the signedness of immediate values.
Definition Formatter.h:223
@ ZYDIS_FORMATTER_PROP_HEX_FORCE_LEADING_NUMBER
Controls whether to prepend hexadecimal values with a leading zero if the first character is non-nume...
Definition Formatter.h:310
@ ZYDIS_FORMATTER_PROP_REQUIRED_BITS
The minimum number of bits required to represent all values of this enum.
Definition Formatter.h:339
@ ZYDIS_FORMATTER_PROP_HEX_SUFFIX
Controls the suffix for hexadecimal values.
Definition Formatter.h:328
@ ZYDIS_FORMATTER_PROP_FORCE_RELATIVE_BRANCHES
Controls the printing of branch addresses.
Definition Formatter.h:136
@ ZYDIS_FORMATTER_PROP_UPPERCASE_MNEMONIC
Controls the letter-case for the mnemonic.
Definition Formatter.h:248
@ ZYDIS_FORMATTER_PROP_UPPERCASE_TYPECASTS
Controls the letter-case for typecasts.
Definition Formatter.h:260
@ ZYDIS_FORMATTER_PROP_UPPERCASE_PREFIXES
Controls the letter-case for prefixes.
Definition Formatter.h:242
@ ZYDIS_FORMATTER_PROP_DEC_SUFFIX
Controls the suffix for decimal values.
Definition Formatter.h:289
@ ZYDIS_FORMATTER_PROP_DISP_SIGNEDNESS
Controls the signedness of displacement values.
Definition Formatter.h:202
@ ZYDIS_FORMATTER_PROP_DISP_PADDING
Controls the padding of displacement values.
Definition Formatter.h:209
@ ZYDIS_FORMATTER_PROP_HEX_PREFIX
Controls the prefix for hexadecimal values.
Definition Formatter.h:319
@ ZYDIS_FORMATTER_PROP_FORCE_SEGMENT
Controls the printing of segment prefixes.
Definition Formatter.h:121
@ ZYDIS_FORMATTER_PROP_ADDR_BASE
Controls the base of address values.
Definition Formatter.h:170
@ ZYDIS_FORMATTER_PROP_UPPERCASE_REGISTERS
Controls the letter-case for registers.
Definition Formatter.h:254
@ ZYDIS_FORMATTER_PROP_DISP_BASE
Controls the base of displacement values.
Definition Formatter.h:198
@ ZYDIS_FORMATTER_PROP_IMM_BASE
Controls the base of immediate values.
Definition Formatter.h:216
@ ZYDIS_FORMATTER_PROP_FORCE_RELATIVE_RIPREL
Controls the printing of EIP/RIP-relative addresses.
Definition Formatter.h:144
@ ZYDIS_FORMATTER_PROP_FORCE_SCALE_ONE
Controls the printing of the scale-factor component for memory operands.
Definition Formatter.h:128
@ ZYDIS_FORMATTER_PROP_PRINT_BRANCH_SIZE
Controls the printing of branch-instructions sizes.
Definition Formatter.h:153
@ ZYDIS_FORMATTER_PROP_UPPERCASE_DECORATORS
Controls the letter-case for decorators.
Definition Formatter.h:266
@ ZYDIS_FORMATTER_PROP_IMM_PADDING
Controls the padding of immediate values.
Definition Formatter.h:231
@ ZYDIS_FORMATTER_PROP_FORCE_SIZE
Controls the printing of effective operand-size suffixes (AT&T) or operand-sizes of memory operands (...
Definition Formatter.h:114
@ ZYDIS_FORMATTER_PROP_ADDR_PADDING_ABSOLUTE
Controls the padding of absolute address values.
Definition Formatter.h:183
@ ZYDIS_FORMATTER_PROP_HEX_UPPERCASE
Controls the letter-case of hexadecimal values.
Definition Formatter.h:300
@ ZYDIS_FORMATTER_PROP_DEC_PREFIX
Controls the prefix for decimal values.
Definition Formatter.h:280
@ ZYDIS_FORMATTER_PROP_DETAILED_PREFIXES
Controls the printing of instruction prefixes.
Definition Formatter.h:161
@ ZYDIS_FORMATTER_PROP_ADDR_PADDING_RELATIVE
Controls the padding of relative address values.
Definition Formatter.h:191
@ ZYDIS_FORMATTER_PROP_ADDR_SIGNEDNESS
Controls the signedness of relative addresses.
Definition Formatter.h:175
enum ZydisPadding_ ZydisPadding
Enum definining magic values that receive special treatment when used as padding properties of the fo...
ZyanStatus(* ZydisFormatterDecoratorFunc)(const ZydisFormatter *formatter, ZydisFormatterBuffer *buffer, ZydisFormatterContext *context, ZydisDecorator decorator)
Defines the ZydisFormatterDecoratorFunc function prototype.
Definition Formatter.h:754
ZYDIS_EXPORT ZyanStatus ZydisFormatterInit(ZydisFormatter *formatter, ZydisFormatterStyle style)
Initializes the given ZydisFormatter instance.
ZYDIS_EXPORT ZyanStatus ZydisFormatterTokenizeInstruction(const ZydisFormatter *formatter, const ZydisDecodedInstruction *instruction, const ZydisDecodedOperand *operands, ZyanU8 operand_count, void *buffer, ZyanUSize length, ZyanU64 runtime_address, ZydisFormatterTokenConst **token, void *user_data)
Tokenizes the given instruction and writes it into the output buffer.
ZYDIS_EXPORT ZyanStatus ZydisFormatterFormatInstruction(const ZydisFormatter *formatter, const ZydisDecodedInstruction *instruction, const ZydisDecodedOperand *operands, ZyanU8 operand_count, char *buffer, ZyanUSize length, ZyanU64 runtime_address, void *user_data)
Formats the given instruction and writes it into the output buffer.
ZYDIS_EXPORT ZyanStatus ZydisFormatterTokenizeOperand(const ZydisFormatter *formatter, const ZydisDecodedInstruction *instruction, const ZydisDecodedOperand *operand, void *buffer, ZyanUSize length, ZyanU64 runtime_address, ZydisFormatterTokenConst **token, void *user_data)
Tokenizes the given operand and writes it into the output buffer.
ZYDIS_EXPORT ZyanStatus ZydisFormatterFormatOperand(const ZydisFormatter *formatter, const ZydisDecodedInstruction *instruction, const ZydisDecodedOperand *operand, char *buffer, ZyanUSize length, ZyanU64 runtime_address, void *user_data)
Formats the given operand and writes it into the output buffer.
ZYDIS_EXPORT ZyanStatus ZydisFormatterSetHook(ZydisFormatter *formatter, ZydisFormatterFunction type, const void **callback)
Replaces a formatter function with a custom callback and/or retrieves the currently used function.
ZYDIS_EXPORT ZyanStatus ZydisFormatterSetProperty(ZydisFormatter *formatter, ZydisFormatterProperty property, ZyanUPointer value)
Changes the value of the specified formatter property.
Information about a decoded instruction.
Definition DecoderTypes.h:1238
Defines the ZydisDecodedOperand struct.
Definition DecoderTypes.h:200
Defines the ZydisFormatterBuffer struct.
Definition FormatterBuffer.h:168
Context structure that that is passed to all formatter.
Definition Formatter.h:650
const ZydisDecodedInstruction * instruction
A pointer to the ZydisDecodedInstruction struct.
Definition Formatter.h:654
void * user_data
A pointer to user-defined data.
Definition Formatter.h:673
ZyanU64 runtime_address
The runtime address of the instruction.
Definition Formatter.h:666
const ZydisDecodedOperand * operands
A pointer to the first ZydisDecodedOperand struct of the instruction.
Definition Formatter.h:658
const ZydisDecodedOperand * operand
A pointer to the ZydisDecodedOperand struct.
Definition Formatter.h:662
Defines the ZydisFormatterToken struct.
Definition FormatterBuffer.h:139
Context structure keeping track of internal state of the formatter.
Definition Formatter.h:771
ZydisFormatterFunc func_format_operand_imm
The ZYDIS_FORMATTER_FUNC_FORMAT_OPERAND_IMM function.
Definition Formatter.h:928
ZydisFormatterFunc func_post_operand
The ZYDIS_FORMATTER_FUNC_POST_OPERAND function.
Definition Formatter.h:912
ZyanBool detailed_prefixes
The ZYDIS_FORMATTER_DETAILED_PREFIXES property.
Definition Formatter.h:803
ZydisFormatterStyle style
The formatter style.
Definition Formatter.h:775
ZydisFormatterFunc func_print_disp
The ZYDIS_FORMATTER_FUNC_PRINT_DISP function.
Definition Formatter.h:948
ZydisFormatterFunc func_format_operand_mem
The ZYDIS_FORMATTER_FUNC_FORMAT_OPERAND_MEM function.
Definition Formatter.h:920
ZydisNumericBase addr_base
The ZYDIS_FORMATTER_ADDR_BASE property.
Definition Formatter.h:807
ZydisPadding imm_padding
The ZYDIS_FORMATTER_IMM_PADDING property.
Definition Formatter.h:843
ZyanBool force_relative_branches
The ZYDIS_FORMATTER_PROP_FORCE_RELATIVE_BRANCHES property.
Definition Formatter.h:791
ZydisPadding disp_padding
The ZYDIS_FORMATTER_DISP_PADDING property.
Definition Formatter.h:831
ZydisSignedness imm_signedness
The ZYDIS_FORMATTER_IMM_SIGNEDNESS property.
Definition Formatter.h:839
ZyanBool hex_uppercase
The ZYDIS_FORMATTER_HEX_UPPERCASE property.
Definition Formatter.h:867
ZydisFormatterFunc func_post_instruction
The ZYDIS_FORMATTER_FUNC_POST_INSTRUCTION function.
Definition Formatter.h:900
ZydisPadding addr_padding_absolute
The ZYDIS_FORMATTER_ADDR_PADDING_ABSOLUTE property.
Definition Formatter.h:815
ZydisFormatterDecoratorFunc func_print_decorator
The ZYDIS_FORMATTER_FUNC_PRINT_DECORATOR function.
Definition Formatter.h:968
ZyanBool force_memory_segment
The ZYDIS_FORMATTER_PROP_FORCE_SEGMENT property.
Definition Formatter.h:783
ZyanI32 case_decorators
The ZYDIS_FORMATTER_UPPERCASE_DECORATORS property.
Definition Formatter.h:863
ZydisPadding addr_padding_relative
The ZYDIS_FORMATTER_ADDR_PADDING_RELATIVE property.
Definition Formatter.h:819
ZydisFormatterRegisterFunc func_print_register
The ZYDIS_FORMATTER_FUNC_PRINT_REGISTER function.
Definition Formatter.h:936
struct ZydisFormatter_::@8 number_format[ZYDIS_NUMERIC_BASE_MAX_VALUE+1][2]
The number formats for all numeric bases.
ZydisNumericBase imm_base
The ZYDIS_FORMATTER_IMM_BASE property.
Definition Formatter.h:835
ZydisNumericBase disp_base
The ZYDIS_FORMATTER_DISP_BASE property.
Definition Formatter.h:823
ZyanBool force_memory_scale
The ZYDIS_FORMATTER_PROP_FORCE_SCALE_ONE property.
Definition Formatter.h:787
const ZyanStringView * string
A pointer to the ZyanStringView to use as prefix/suffix.
Definition Formatter.h:883
ZydisSignedness disp_signedness
The ZYDIS_FORMATTER_DISP_SIGNEDNESS property.
Definition Formatter.h:827
ZyanI32 case_mnemonic
The ZYDIS_FORMATTER_UPPERCASE_MNEMONIC property.
Definition Formatter.h:851
ZyanI32 case_registers
The ZYDIS_FORMATTER_UPPERCASE_REGISTERS property.
Definition Formatter.h:855
ZydisFormatterFunc func_format_operand_ptr
The ZYDIS_FORMATTER_FUNC_FORMAT_OPERAND_PTR function.
Definition Formatter.h:924
ZyanBool force_memory_size
The ZYDIS_FORMATTER_PROP_FORCE_SIZE property.
Definition Formatter.h:779
ZydisFormatterFunc func_format_instruction
The ZYDIS_FORMATTER_FUNC_FORMAT_INSTRUCTION function.
Definition Formatter.h:904
ZydisFormatterFunc func_print_address_abs
The ZYDIS_FORMATTER_FUNC_PRINT_ADDRESS_ABS function.
Definition Formatter.h:940
ZyanBool force_relative_riprel
The ZYDIS_FORMATTER_PROP_FORCE_RELATIVE_RIPREL property.
Definition Formatter.h:795
ZyanI32 case_prefixes
The ZYDIS_FORMATTER_UPPERCASE_PREFIXES property.
Definition Formatter.h:847
ZyanBool hex_force_leading_number
The ZYDIS_FORMATTER_HEX_FORCE_LEADING_NUMBER property.
Definition Formatter.h:871
ZyanStringView string_data
The ZyanStringView to use as prefix/suffix.
Definition Formatter.h:887
ZydisSignedness addr_signedness
The ZYDIS_FORMATTER_ADDR_SIGNEDNESS property.
Definition Formatter.h:811
ZyanBool print_branch_size
The ZYDIS_FORMATTER_PROP_PRINT_BRANCH_SIZE property.
Definition Formatter.h:799
ZydisFormatterFunc func_pre_operand
The ZYDIS_FORMATTER_FUNC_PRE_OPERAND function.
Definition Formatter.h:908
char buffer[11]
The actual string data.
Definition Formatter.h:891
ZydisFormatterFunc func_print_typecast
The ZYDIS_FORMATTER_FUNC_PRINT_TYPECAST function.
Definition Formatter.h:956
ZydisFormatterFunc func_format_operand_reg
The ZYDIS_FORMATTER_FUNC_FORMAT_OPERAND_REG function.
Definition Formatter.h:916
ZydisFormatterFunc func_print_address_rel
The ZYDIS_FORMATTER_FUNC_PRINT_ADDRESS_REL function.
Definition Formatter.h:944
ZydisFormatterFunc func_print_imm
The ZYDIS_FORMATTER_FUNC_PRINT_IMM function.
Definition Formatter.h:952
ZyanI32 case_typecasts
The ZYDIS_FORMATTER_UPPERCASE_TYPECASTS property.
Definition Formatter.h:859
ZydisFormatterFunc func_print_segment
The ZYDIS_FORMATTER_FUNC_PRINT_SEGMENT function.
Definition Formatter.h:960
ZydisFormatterFunc func_print_mnemonic
The `ZYDIS_FORMATTER_FUNC_PRINT_MNEMONIC function.
Definition Formatter.h:932
ZydisFormatterFunc func_pre_instruction
The ZYDIS_FORMATTER_FUNC_PRE_INSTRUCTION function.
Definition Formatter.h:896
ZydisFormatterFunc func_print_prefixes
The ZYDIS_FORMATTER_FUNC_PRINT_PREFIXES function.
Definition Formatter.h:964