Zydis 5.0.0
Zyan Disassembler Library
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
31
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
269
270 /* ---------------------------------------------------------------------------------------- */
271 /* Number formatting */
272 /* ---------------------------------------------------------------------------------------- */
273
292
293 /* ---------------------------------------------------------------------------------------- */
294
331
332 /* ---------------------------------------------------------------------------------------- */
333 /* Decorator formatting */
334 /* ---------------------------------------------------------------------------------------- */
335
349
358
359 /* ---------------------------------------------------------------------------------------- */
360
370
371/* ---------------------------------------------------------------------------------------------- */
372
396
397/* ---------------------------------------------------------------------------------------------- */
398
427
428/* ---------------------------------------------------------------------------------------------- */
429
455
456/* ---------------------------------------------------------------------------------------------- */
457/* Function types */
458/* ---------------------------------------------------------------------------------------------- */
459
467{
468 /* ---------------------------------------------------------------------------------------- */
469 /* Instruction */
470 /* ---------------------------------------------------------------------------------------- */
471
480
481 /* ---------------------------------------------------------------------------------------- */
482
491
492 /* ---------------------------------------------------------------------------------------- */
493 /* Operands */
494 /* ---------------------------------------------------------------------------------------- */
495
504
505 /* ---------------------------------------------------------------------------------------- */
506
531
532 /* ---------------------------------------------------------------------------------------- */
533 /* Elemental tokens */
534 /* ---------------------------------------------------------------------------------------- */
535
540
541 /* ---------------------------------------------------------------------------------------- */
542
585
586 /* ---------------------------------------------------------------------------------------- */
587 /* Optional tokens */
588 /* ---------------------------------------------------------------------------------------- */
589
607
608 /* ---------------------------------------------------------------------------------------- */
609
619
620/* ---------------------------------------------------------------------------------------------- */
621/* Decorator types */
622/* ---------------------------------------------------------------------------------------------- */
623
676
677/* ---------------------------------------------------------------------------------------------- */
678/* Formatter context */
679/* ---------------------------------------------------------------------------------------------- */
680
682
712
713/* ---------------------------------------------------------------------------------------------- */
714/* Function prototypes */
715/* ---------------------------------------------------------------------------------------------- */
716
757typedef ZyanStatus (*ZydisFormatterFunc)(const ZydisFormatter* formatter,
759
774typedef ZyanStatus (*ZydisFormatterRegisterFunc)(const ZydisFormatter* formatter,
776
791typedef ZyanStatus (*ZydisFormatterDecoratorFunc)(const ZydisFormatter* formatter,
792 ZydisFormatterBuffer* buffer, ZydisFormatterContext* context, ZydisDecorator decorator);
793
794/* ---------------------------------------------------------------------------------------------- */
795/* Formatter struct */
796/* ---------------------------------------------------------------------------------------------- */
797
808{
915 struct
916 {
920 const ZyanStringView* string;
924 ZyanStringView string_data;
928 char buffer[11];
977 ZydisFormatterFunc func_print_mnemonic;
1014};
1015
1016/* ---------------------------------------------------------------------------------------------- */
1017
1018/* ============================================================================================== */
1019/* Exported functions */
1020/* ============================================================================================== */
1021
1027
1028/* ---------------------------------------------------------------------------------------------- */
1029/* Initialization */
1030/* ---------------------------------------------------------------------------------------------- */
1031
1041
1042/* ---------------------------------------------------------------------------------------------- */
1043/* Setter */
1044/* ---------------------------------------------------------------------------------------------- */
1045
1059 ZydisFormatterProperty property, ZyanUPointer value);
1060
1079 ZydisFormatterFunction type, const void** callback);
1080
1081/* ---------------------------------------------------------------------------------------------- */
1082/* Formatting */
1083/* ---------------------------------------------------------------------------------------------- */
1084
1103 const ZydisDecodedInstruction* instruction, const ZydisDecodedOperand* operands,
1104 ZyanU8 operand_count, char* buffer, ZyanUSize length, ZyanU64 runtime_address,
1105 void* user_data);
1106
1126 const ZydisDecodedInstruction* instruction, const ZydisDecodedOperand* operand,
1127 char* buffer, ZyanUSize length, ZyanU64 runtime_address, void* user_data);
1128
1129/* ---------------------------------------------------------------------------------------------- */
1130/* Tokenizing */
1131/* ---------------------------------------------------------------------------------------------- */
1132
1152 const ZydisDecodedInstruction* instruction, const ZydisDecodedOperand* operands,
1153 ZyanU8 operand_count, void* buffer, ZyanUSize length, ZyanU64 runtime_address,
1154 ZydisFormatterTokenConst** token, void* user_data);
1155
1175 const ZydisDecodedInstruction* instruction, const ZydisDecodedOperand* operand,
1176 void* buffer, ZyanUSize length, ZyanU64 runtime_address, ZydisFormatterTokenConst** token,
1177 void* user_data);
1178
1179/* ---------------------------------------------------------------------------------------------- */
1180
1184
1185/* ============================================================================================== */
1186
1187#ifdef __cplusplus
1188}
1189#endif
1190
1191#endif /* ZYDIS_FORMATTER_H */
Defines the basic ZydisDecodedInstruction and ZydisDecodedOperand structs.
struct ZydisDecodedOperand_ ZydisDecodedOperand
Defines the ZydisDecodedOperand struct.
struct ZydisDecodedInstruction_ ZydisDecodedInstruction
Information about a decoded instruction.
#define ZYDIS_EXPORT
Symbol is exported in shared library builds.
Definition Defines.h:67
enum ZydisRegister_ ZydisRegister
Defines the ZydisRegister enum.
Implements the ZydisFormatterToken type and provides functions to use it.
struct ZydisFormatterBuffer_ ZydisFormatterBuffer
Defines the ZydisFormatterBuffer struct.
const ZydisFormatterToken ZydisFormatterTokenConst
Defines the ZydisFormatterTokenConst data-type.
Definition FormatterBuffer.h:155
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:403
@ ZYDIS_SIGNEDNESS_MAX_VALUE
Maximum value of this enum.
Definition Formatter.h:421
@ ZYDIS_SIGNEDNESS_REQUIRED_BITS
The minimum number of bits required to represent all values of this enum.
Definition Formatter.h:425
@ ZYDIS_SIGNEDNESS_UNSIGNED
Force unsigned values.
Definition Formatter.h:416
@ ZYDIS_SIGNEDNESS_SIGNED
Automatically choose the most suitable mode based on the operands ZydisDecodedOperand....
Definition Formatter.h:412
ZydisFormatterFunction_
Enum selecting a formatter function to be replaced with hooks.
Definition Formatter.h:467
@ ZYDIS_FORMATTER_FUNC_PRE_OPERAND
This function is invoked before the formatter formats an operand.
Definition Formatter.h:499
@ ZYDIS_FORMATTER_FUNC_PRINT_ADDRESS_ABS
This function is invoked to print absolute addresses.
Definition Formatter.h:558
@ ZYDIS_FORMATTER_FUNC_PRINT_TYPECAST
This function is invoked to print the size of a memory operand (INTEL only).
Definition Formatter.h:593
@ ZYDIS_FORMATTER_FUNC_PRINT_ADDRESS_REL
This function is invoked to print relative addresses.
Definition Formatter.h:565
@ ZYDIS_FORMATTER_FUNC_FORMAT_OPERAND_MEM
This function is invoked to format a memory operand.
Definition Formatter.h:518
@ ZYDIS_FORMATTER_FUNC_FORMAT_OPERAND_IMM
This function is invoked to format an immediate operand.
Definition Formatter.h:530
@ ZYDIS_FORMATTER_FUNC_PRINT_MNEMONIC
This function is invoked to print the instruction mnemonic.
Definition Formatter.h:539
@ ZYDIS_FORMATTER_FUNC_PRE_INSTRUCTION
This function is invoked before the formatter formats an instruction.
Definition Formatter.h:475
@ ZYDIS_FORMATTER_FUNC_PRINT_DECORATOR
This function is invoked after formatting an operand to print a EVEX/MVEX decorator.
Definition Formatter.h:606
@ ZYDIS_FORMATTER_FUNC_PRINT_REGISTER
This function is invoked to print a register.
Definition Formatter.h:546
@ ZYDIS_FORMATTER_FUNC_PRINT_DISP
This function is invoked to print a memory displacement value.
Definition Formatter.h:573
@ ZYDIS_FORMATTER_FUNC_POST_INSTRUCTION
This function is invoked after the formatter formatted an instruction.
Definition Formatter.h:479
@ ZYDIS_FORMATTER_FUNC_POST_OPERAND
This function is invoked after the formatter formatted an operand.
Definition Formatter.h:503
@ ZYDIS_FORMATTER_FUNC_PRINT_SEGMENT
This function is invoked to print the segment-register of a memory operand.
Definition Formatter.h:597
@ ZYDIS_FORMATTER_FUNC_FORMAT_OPERAND_PTR
This function is invoked to format a pointer operand.
Definition Formatter.h:522
@ ZYDIS_FORMATTER_FUNC_PRINT_IMM
This function is invoked to print an immediate value.
Definition Formatter.h:584
@ ZYDIS_FORMATTER_FUNC_REQUIRED_BITS
The minimum number of bits required to represent all values of this enum.
Definition Formatter.h:617
@ ZYDIS_FORMATTER_FUNC_MAX_VALUE
Maximum value of this enum.
Definition Formatter.h:613
@ ZYDIS_FORMATTER_FUNC_PRINT_PREFIXES
This function is invoked to print the instruction prefixes.
Definition Formatter.h:601
@ ZYDIS_FORMATTER_FUNC_FORMAT_INSTRUCTION
This function refers to the main formatting function.
Definition Formatter.h:490
@ ZYDIS_FORMATTER_FUNC_FORMAT_OPERAND_REG
This function is invoked to format a register operand.
Definition Formatter.h:510
ZyanStatus(* ZydisFormatterRegisterFunc)(const ZydisFormatter *formatter, ZydisFormatterBuffer *buffer, ZydisFormatterContext *context, ZydisRegister reg)
Defines the ZydisFormatterRegisterFunc function prototype.
Definition Formatter.h:774
enum ZydisFormatterStyle_ ZydisFormatterStyle
Enum selecting the syntax to format the disassembly in.
struct ZydisFormatter_ ZydisFormatter
Definition Formatter.h:681
ZydisPadding_
Enum definining magic values that receive special treatment when used as padding properties of the fo...
Definition Formatter.h:435
@ ZYDIS_PADDING_REQUIRED_BITS
The minimum number of bits required to represent all values of this enum.
Definition Formatter.h:453
@ ZYDIS_PADDING_AUTO
Padds the value to the current stack-width for addresses, or to the operand-width for immediate value...
Definition Formatter.h:444
@ ZYDIS_PADDING_MAX_VALUE
Maximum value of this enum.
Definition Formatter.h:449
@ ZYDIS_PADDING_DISABLED
Disables padding.
Definition Formatter.h:439
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:377
@ ZYDIS_NUMERIC_BASE_REQUIRED_BITS
The minimum number of bits required to represent all values of this enum.
Definition Formatter.h:394
@ ZYDIS_NUMERIC_BASE_HEX
Hexadecimal system.
Definition Formatter.h:385
@ ZYDIS_NUMERIC_BASE_MAX_VALUE
Maximum value of this enum.
Definition Formatter.h:390
@ ZYDIS_NUMERIC_BASE_DEC
Decimal system.
Definition Formatter.h:381
ZyanStatus(* ZydisFormatterFunc)(const ZydisFormatter *formatter, ZydisFormatterBuffer *buffer, ZydisFormatterContext *context)
Defines the ZydisFormatterFunc function prototype.
Definition Formatter.h:757
ZydisDecorator_
Enum of all decorator types.
Definition Formatter.h:628
@ ZYDIS_DECORATOR_REQUIRED_BITS
The minimum number of bits required to represent all values of this enum.
Definition Formatter.h:674
@ ZYDIS_DECORATOR_INVALID
Definition Formatter.h:629
@ ZYDIS_DECORATOR_SAE
The suppress-all-exceptions decorator.
Definition Formatter.h:645
@ ZYDIS_DECORATOR_APX_DFV
The APX default flags value decorator.
Definition Formatter.h:665
@ ZYDIS_DECORATOR_BC
The broadcast decorator.
Definition Formatter.h:637
@ ZYDIS_DECORATOR_SWIZZLE
The register-swizzle decorator.
Definition Formatter.h:649
@ ZYDIS_DECORATOR_APX_NF
The APX no-flags decorator.
Definition Formatter.h:661
@ ZYDIS_DECORATOR_MASK
The embedded-mask decorator.
Definition Formatter.h:633
@ ZYDIS_DECORATOR_EH
The eviction-hint decorator.
Definition Formatter.h:657
@ ZYDIS_DECORATOR_MAX_VALUE
Maximum value of this enum.
Definition Formatter.h:670
@ ZYDIS_DECORATOR_CONVERSION
The conversion decorator.
Definition Formatter.h:653
@ ZYDIS_DECORATOR_RC
The rounding-control decorator.
Definition Formatter.h:641
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:364
@ 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:312
@ ZYDIS_FORMATTER_PROP_REQUIRED_BITS
The minimum number of bits required to represent all values of this enum.
Definition Formatter.h:368
@ ZYDIS_FORMATTER_PROP_HEX_SUFFIX
Controls the suffix for hexadecimal values.
Definition Formatter.h:330
@ ZYDIS_FORMATTER_PROP_FORCE_RELATIVE_BRANCHES
Controls the printing of branch addresses.
Definition Formatter.h:136
@ ZYDIS_FORMATTER_PROP_DECO_APX_DFV_USE_IMMEDIATE
Controls the printing of the APX dfv decorator.
Definition Formatter.h:357
@ 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:291
@ 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:321
@ 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_DECO_APX_NF_USE_SUFFIX
Controls the printing of the APX nf decorator.
Definition Formatter.h:348
@ 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:268
@ 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:302
@ ZYDIS_FORMATTER_PROP_DEC_PREFIX
Controls the prefix for decimal values.
Definition Formatter.h:282
@ 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:791
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.
Context structure that that is passed to all formatter.
Definition Formatter.h:687
const ZydisDecodedInstruction * instruction
A pointer to the ZydisDecodedInstruction struct.
Definition Formatter.h:691
void * user_data
A pointer to user-defined data.
Definition Formatter.h:710
ZyanU64 runtime_address
The runtime address of the instruction.
Definition Formatter.h:703
const ZydisDecodedOperand * operands
A pointer to the first ZydisDecodedOperand struct of the instruction.
Definition Formatter.h:695
const ZydisDecodedOperand * operand
A pointer to the ZydisDecodedOperand struct.
Definition Formatter.h:699
Context structure keeping track of internal state of the formatter.
Definition Formatter.h:808
ZydisFormatterFunc func_format_operand_imm
The ZYDIS_FORMATTER_FUNC_FORMAT_OPERAND_IMM function.
Definition Formatter.h:973
ZyanBool deco_apx_dfv_use_immediate
The ZYDIS_FORMATTER_PROP_DECO_APX_DFV_USE_IMMEDIATE property.
Definition Formatter.h:937
ZydisFormatterFunc func_post_operand
The ZYDIS_FORMATTER_FUNC_POST_OPERAND function.
Definition Formatter.h:957
ZyanBool detailed_prefixes
The ZYDIS_FORMATTER_PROP_DETAILED_PREFIXES property.
Definition Formatter.h:840
ZydisFormatterStyle style
The formatter style.
Definition Formatter.h:812
ZydisFormatterFunc func_print_disp
The ZYDIS_FORMATTER_FUNC_PRINT_DISP function.
Definition Formatter.h:993
struct ZydisFormatter_::@314255174365140044006164156323347007115217227330 number_format[ZYDIS_NUMERIC_BASE_MAX_VALUE+1][2]
The number formats for all numeric bases.
ZydisFormatterFunc func_format_operand_mem
The ZYDIS_FORMATTER_FUNC_FORMAT_OPERAND_MEM function.
Definition Formatter.h:965
ZydisNumericBase addr_base
The ZYDIS_FORMATTER_PROP_ADDR_BASE property.
Definition Formatter.h:844
ZydisPadding imm_padding
The ZYDIS_FORMATTER_PROP_IMM_PADDING property.
Definition Formatter.h:880
ZyanBool force_relative_branches
The ZYDIS_FORMATTER_PROP_FORCE_RELATIVE_BRANCHES property.
Definition Formatter.h:828
ZydisPadding disp_padding
The ZYDIS_FORMATTER_PROP_DISP_PADDING property.
Definition Formatter.h:868
ZydisSignedness imm_signedness
The ZYDIS_FORMATTER_PROP_IMM_SIGNEDNESS property.
Definition Formatter.h:876
ZyanBool hex_uppercase
The ZYDIS_FORMATTER_PROP_HEX_UPPERCASE property.
Definition Formatter.h:904
ZydisFormatterFunc func_post_instruction
The ZYDIS_FORMATTER_FUNC_POST_INSTRUCTION function.
Definition Formatter.h:945
ZydisPadding addr_padding_absolute
The ZYDIS_FORMATTER_PROP_ADDR_PADDING_ABSOLUTE property.
Definition Formatter.h:852
ZydisFormatterDecoratorFunc func_print_decorator
The ZYDIS_FORMATTER_FUNC_PRINT_DECORATOR function.
Definition Formatter.h:1013
ZyanBool force_memory_segment
The ZYDIS_FORMATTER_PROP_FORCE_SEGMENT property.
Definition Formatter.h:820
ZyanI32 case_decorators
The ZYDIS_FORMATTER_PROP_UPPERCASE_DECORATORS property.
Definition Formatter.h:900
ZydisPadding addr_padding_relative
The ZYDIS_FORMATTER_PROP_ADDR_PADDING_RELATIVE property.
Definition Formatter.h:856
ZydisFormatterRegisterFunc func_print_register
The ZYDIS_FORMATTER_FUNC_PRINT_MNEMONIC function.
Definition Formatter.h:981
ZydisNumericBase imm_base
The ZYDIS_FORMATTER_PROP_IMM_BASE property.
Definition Formatter.h:872
ZydisNumericBase disp_base
The ZYDIS_FORMATTER_PROP_DISP_BASE property.
Definition Formatter.h:860
ZyanBool force_memory_scale
The ZYDIS_FORMATTER_PROP_FORCE_SCALE_ONE property.
Definition Formatter.h:824
const ZyanStringView * string
A pointer to the ZyanStringView to use as prefix/suffix.
Definition Formatter.h:920
ZydisSignedness disp_signedness
The ZYDIS_FORMATTER_PROP_DISP_SIGNEDNESS property.
Definition Formatter.h:864
ZyanI32 case_mnemonic
The ZYDIS_FORMATTER_PROP_UPPERCASE_MNEMONIC property.
Definition Formatter.h:888
ZyanI32 case_registers
The ZYDIS_FORMATTER_PROP_UPPERCASE_REGISTERS property.
Definition Formatter.h:892
ZydisFormatterFunc func_format_operand_ptr
The ZYDIS_FORMATTER_FUNC_FORMAT_OPERAND_PTR function.
Definition Formatter.h:969
ZyanBool force_memory_size
The ZYDIS_FORMATTER_PROP_FORCE_SIZE property.
Definition Formatter.h:816
ZydisFormatterFunc func_format_instruction
The ZYDIS_FORMATTER_FUNC_FORMAT_INSTRUCTION function.
Definition Formatter.h:949
ZydisFormatterFunc func_print_address_abs
The ZYDIS_FORMATTER_FUNC_PRINT_ADDRESS_ABS function.
Definition Formatter.h:985
ZyanBool force_relative_riprel
The ZYDIS_FORMATTER_PROP_FORCE_RELATIVE_RIPREL property.
Definition Formatter.h:832
ZyanI32 case_prefixes
The ZYDIS_FORMATTER_PROP_UPPERCASE_PREFIXES property.
Definition Formatter.h:884
ZyanBool hex_force_leading_number
The ZYDIS_FORMATTER_PROP_HEX_FORCE_LEADING_NUMBER property.
Definition Formatter.h:908
ZyanStringView string_data
The ZyanStringView to use as prefix/suffix.
Definition Formatter.h:924
ZydisSignedness addr_signedness
The ZYDIS_FORMATTER_PROP_ADDR_SIGNEDNESS property.
Definition Formatter.h:848
ZyanBool print_branch_size
The ZYDIS_FORMATTER_PROP_PRINT_BRANCH_SIZE property.
Definition Formatter.h:836
ZydisFormatterFunc func_pre_operand
The ZYDIS_FORMATTER_FUNC_PRE_OPERAND function.
Definition Formatter.h:953
char buffer[11]
The actual string data.
Definition Formatter.h:928
ZydisFormatterFunc func_print_typecast
The ZYDIS_FORMATTER_FUNC_PRINT_TYPECAST function.
Definition Formatter.h:1001
ZydisFormatterFunc func_format_operand_reg
The ZYDIS_FORMATTER_FUNC_FORMAT_OPERAND_REG function.
Definition Formatter.h:961
ZydisFormatterFunc func_print_address_rel
The ZYDIS_FORMATTER_FUNC_PRINT_ADDRESS_REL function.
Definition Formatter.h:989
ZydisFormatterFunc func_print_imm
The ZYDIS_FORMATTER_FUNC_PRINT_IMM function.
Definition Formatter.h:997
ZyanI32 case_typecasts
The ZYDIS_FORMATTER_PROP_UPPERCASE_TYPECASTS property.
Definition Formatter.h:896
ZyanBool deco_apx_nf_use_suffix
The ZYDIS_FORMATTER_PROP_DECO_APX_NF_USE_SUFFIX property.
Definition Formatter.h:933
ZydisFormatterFunc func_print_segment
The ZYDIS_FORMATTER_FUNC_PRINT_SEGMENT function.
Definition Formatter.h:1005
ZydisFormatterFunc func_pre_instruction
The ZYDIS_FORMATTER_FUNC_PRE_INSTRUCTION function.
Definition Formatter.h:941
ZydisFormatterFunc func_print_prefixes
The ZYDIS_FORMATTER_FUNC_PRINT_PREFIXES function.
Definition Formatter.h:1009