mirror of https://github.com/x64dbg/zydis
ported doxygen comments for internal functions from C++ headers to C sources
This commit is contained in:
parent
0df2deb78a
commit
9e2cceb2be
|
@ -60,14 +60,17 @@ typedef struct _VXBaseDataSource
|
|||
VXBaseDataSource_SetPositionCallback setPosition;
|
||||
} VXBaseDataSource;
|
||||
|
||||
/**
|
||||
* @brief Constructor.
|
||||
* @param ctx The context.
|
||||
*/
|
||||
static void VXBaseDataSource_Construct(VXBaseDataSourceContext *ctx);
|
||||
|
||||
/**
|
||||
* @brief Destructor.
|
||||
* @param ctx The context.
|
||||
*/
|
||||
static void VXBaseDataSource_Destruct(VXBaseDataSourceContext *ctx);
|
||||
uint8_t VXBaseDataSource_InputPeek(VXBaseDataSourceContext *ctx, VXInstructionInfo *info);
|
||||
uint8_t VXBaseDataSource_InputNext8(VXBaseDataSourceContext *ctx, VXInstructionInfo *info);
|
||||
uint16_t VXBaseDataSource_InputNext16(VXBaseDataSourceContext *ctx, VXInstructionInfo *info);
|
||||
uint32_t VXBaseDataSource_InputNext32(VXBaseDataSourceContext *ctx, VXInstructionInfo *info);
|
||||
uint64_t VXBaseDataSource_InputNext64(VXBaseDataSourceContext *ctx, VXInstructionInfo *info);
|
||||
uint8_t VXBaseDataSource_InputCurrent(const VXBaseDataSourceContext *ctx);
|
||||
|
||||
/* VXMemoryDataSource -------------------------------------------------------------------------- */
|
||||
|
||||
|
@ -79,14 +82,50 @@ typedef struct _VXMemoryDataSource
|
|||
uint64_t inputBufferPos;
|
||||
} VXMemoryDataSource;
|
||||
|
||||
/**
|
||||
* @brief Constructor.
|
||||
* @param ctx The context.
|
||||
* @param buffer The buffer.
|
||||
* @param bufferLen Length of the buffer.
|
||||
*/
|
||||
static void VXMemoryDataSource_Construct(VXBaseDataSourceContext *ctx, const void* buffer,
|
||||
size_t bufferLen);
|
||||
|
||||
/**
|
||||
* @brief Destructor.
|
||||
* @param ctx The context.
|
||||
*/
|
||||
static void VXMemoryDataSource_Destruct(VXBaseDataSourceContext *ctx);
|
||||
VXBaseDataSourceContext* VXMemoryDataSource_Create(const void* buffer, size_t bufferLen);
|
||||
|
||||
/**
|
||||
* @brief Reads the next byte from the data source.
|
||||
* @param ctx The context.
|
||||
* @return The current input byte.
|
||||
* This method increases the current input position by one.
|
||||
*/
|
||||
static uint8_t VXMemoryDataSource_InternalInputPeek(VXBaseDataSourceContext *ctx);
|
||||
|
||||
/**
|
||||
* @brief Reads the next byte from the data source.
|
||||
* @param ctx The context.
|
||||
* @return The current input byte.
|
||||
* This method does NOT increase the current input position.
|
||||
*/
|
||||
static uint8_t VXMemoryDataSource_InternalInputNext(VXBaseDataSourceContext *ctx);
|
||||
|
||||
/**
|
||||
* @copydoc VXBaseDataSource_IsEndOfInput
|
||||
*/
|
||||
static bool VXMemoryDataSource_IsEndOfInput(const VXBaseDataSourceContext *ctx);
|
||||
|
||||
/**
|
||||
* @copydoc VXBaseDataSource_GetPosition
|
||||
*/
|
||||
static uint64_t VXMemoryDataSource_GetPosition(const VXBaseDataSourceContext *ctx);
|
||||
|
||||
/**
|
||||
* @copydoc VXBaseDataSource_SetPosition
|
||||
*/
|
||||
static bool VXMemoryDataSource_SetPosition(VXBaseDataSourceContext *ctx, uint64_t position);
|
||||
|
||||
/* VXInstructionDecoder ------------------------------------------------------------------------ */
|
||||
|
@ -109,70 +148,212 @@ typedef enum _VXRegisterClass /* : uint8_t */
|
|||
RC_XMM
|
||||
} VXRegisterClass;
|
||||
|
||||
/**
|
||||
* @brief Reads the next byte from the data source.
|
||||
* @param ctx The context.
|
||||
* @param info The instruction info.
|
||||
* @return The current input byte. If the result is zero, you should always check the
|
||||
* @c flags field of the @c info parameter for error flags.
|
||||
* Possible error values are @c IF_ERROR_END_OF_INPUT or @c IF_ERROR_LENGTH.
|
||||
* This method does NOT increase the current input position or the @c length field of the
|
||||
* @c info parameter.
|
||||
*/
|
||||
static uint8_t VXInstructionDecoder_InputPeek(VXInstructionDecoderContext *ctx,
|
||||
VXInstructionInfo *info);
|
||||
|
||||
/**
|
||||
* @brief Reads the next byte(s) from the data source.
|
||||
* @param ctx The context.
|
||||
* @param info The instruction info.
|
||||
* @return The current input data. If the result is zero, you should always check the
|
||||
* @c flags field of the @c info parameter for error flags.
|
||||
* Possible error values are @c IF_ERROR_END_OF_INPUT or @c IF_ERROR_LENGTH.
|
||||
* This method increases the current input position and the @c length field of the @info
|
||||
* parameter. This method also appends the new byte(s) to to @c data field of the @c info
|
||||
* parameter.
|
||||
*/
|
||||
static uint8_t VXInstructionDecoder_InputNext8(VXInstructionDecoderContext *ctx,
|
||||
VXInstructionInfo *info);
|
||||
|
||||
/**
|
||||
* @copydoc VXInstructionDecoder_InputNext8
|
||||
*/
|
||||
static uint16_t VXInstructionDecoder_InputNext16(VXInstructionDecoderContext *ctx,
|
||||
VXInstructionInfo *info);
|
||||
|
||||
/**
|
||||
* @copydoc VXInstructionDecoder_InputNext8
|
||||
*/
|
||||
static uint32_t VXInstructionDecoder_InputNext32(VXInstructionDecoderContext *ctx,
|
||||
VXInstructionInfo *info);
|
||||
|
||||
/**
|
||||
* @copydoc VXInstructionDecoder_InputNext8
|
||||
*/
|
||||
static uint64_t VXInstructionDecoder_InputNext64(VXInstructionDecoderContext *ctx,
|
||||
VXInstructionInfo *info);
|
||||
|
||||
/**
|
||||
* @brief Returns the current input byte.
|
||||
* @param ctx The context.
|
||||
* @return The current input byte.
|
||||
* The current input byte is set everytime the @c VXInstructionDecoder_InputPeek or
|
||||
* @c VXInstructionDecoder_InputNextXX function is called.
|
||||
*/
|
||||
static uint8_t VXInstructionDecoder_InputCurrent(const VXInstructionDecoderContext *ctx);
|
||||
VXBaseDataSourceContext* VXInstructionDecoder_GetDataSource(
|
||||
const VXInstructionDecoderContext *ctx);
|
||||
void VXInstructionDecoder_SetDataSource(VXInstructionDecoderContext *ctx,
|
||||
VXBaseDataSourceContext *input);
|
||||
VXDisassemblerMode VXInstructionDecoder_GetDisassemblerMode(
|
||||
const VXInstructionDecoderContext *ctx);
|
||||
void VXInstructionDecoder_SetDisassemblerMode(VXInstructionDecoderContext *ctx,
|
||||
VXDisassemblerMode disassemblerMode);
|
||||
VXInstructionSetVendor VXInstructionDecoder_GetPreferredVendor(
|
||||
const VXInstructionDecoderContext *ctx);
|
||||
void VXInstructionDecoder_SetPreferredVendor(VXInstructionDecoderContext *ctx,
|
||||
VXInstructionSetVendor preferredVendor);
|
||||
uint64_t VXInstructionDecoder_GetInstructionPointer(const VXInstructionDecoderContext *ctx);
|
||||
void VXInstructionDecoder_SetInstructionPointer(VXInstructionDecoderContext *ctx,
|
||||
uint64_t instructionPointer);
|
||||
|
||||
/**
|
||||
* @brief Decodes a register operand.
|
||||
* @param ctx The context.
|
||||
* @param info The instruction info.
|
||||
* @param operand The @c VXOperandInfo struct that receives the decoded data.
|
||||
* @param registerClass The register class to use.
|
||||
* @param registerId The register id.
|
||||
* @param operandSize The defined size of the operand.
|
||||
* @return @c true if it succeeds, @c false if it fails.
|
||||
*/
|
||||
static bool VXInstructionDecoder_DecodeRegisterOperand(const VXInstructionDecoderContext *ctx,
|
||||
VXInstructionInfo *info, VXOperandInfo *operand, VXRegisterClass registerClass,
|
||||
uint8_t registerId, VXDefinedOperandSize operandSize);
|
||||
|
||||
/**
|
||||
* @brief Decodes a register/memory operand.
|
||||
* @param ctx The context.
|
||||
* @param info The instruction info.
|
||||
* @param operand The @c VXOperandInfo struct that receives the decoded data.
|
||||
* @param registerClass The register class to use.
|
||||
* @param operandSize The defined size of the operand.
|
||||
* @return @c true if it succeeds, @c false if it fails.
|
||||
*/
|
||||
static bool VXInstructionDecoder_DecodeRegisterMemoryOperand(VXInstructionDecoderContext *ctx,
|
||||
VXInstructionInfo *info, VXOperandInfo *operand, VXRegisterClass registerClass,
|
||||
VXDefinedOperandSize operandSize);
|
||||
|
||||
/**
|
||||
* @brief Decodes an immediate operand.
|
||||
* @param ctx The context.
|
||||
* @param info The instruction info.
|
||||
* @param operand The @c VXOperandInfo struct that receives the decoded data.
|
||||
* @param operandSize The defined size of the operand.
|
||||
* @return @c true if it succeeds, @c false if it fails.
|
||||
*/
|
||||
static bool VXInstructionDecoder_DecodeImmediate(VXInstructionDecoderContext *ctx,
|
||||
VXInstructionInfo *info, VXOperandInfo *operand, VXDefinedOperandSize operandSize);
|
||||
|
||||
/**
|
||||
* @brief Decodes a displacement operand.
|
||||
* @param ctx The context.
|
||||
* @param info The instruction info.
|
||||
* @param operand The @c VXOperandInfo struct that receives the decoded data.
|
||||
* @param size The size of the displacement data.
|
||||
* @return @c true if it succeeds, @c false if it fails.
|
||||
*/
|
||||
static bool VXInstructionDecoder_DecodeDisplacement(VXInstructionDecoderContext *ctx,
|
||||
VXInstructionInfo *info, VXOperandInfo *operand, uint8_t size);
|
||||
|
||||
/**
|
||||
* @brief Decodes the ModRM field of the instruction.
|
||||
* @param ctx The context.
|
||||
* @param The @c VXInstructionInfo struct that receives the decoded data.
|
||||
* @return @c true if it succeeds, @c false if it fails.
|
||||
* This method reads an additional input byte.
|
||||
*/
|
||||
static bool VXInstructionDecoder_DecodeModrm(VXInstructionDecoderContext *ctx,
|
||||
VXInstructionInfo *info);
|
||||
|
||||
/**
|
||||
* @brief Decodes the SIB field of the instruction.
|
||||
* @param ctx The context.
|
||||
* @param info The @c VXInstructionInfo struct that receives the decoded data.
|
||||
* @return @c true if it succeeds, @c false if it fails.1
|
||||
* This method reads an additional input byte.
|
||||
*/
|
||||
static bool VXInstructionDecoder_DecodeSIB(VXInstructionDecoderContext *ctx,
|
||||
VXInstructionInfo *info);
|
||||
|
||||
/**
|
||||
* @brief Decodes VEX prefix of the instruction.
|
||||
* @param ctx The context.
|
||||
* @param info The @c VXInstructionInfo struct that receives the decoded data.
|
||||
* @return @c true if it succeeds, @c false if it fails.
|
||||
* This method takes the current input byte to determine the vex prefix type and reads one or
|
||||
* two additional input bytes on demand.
|
||||
*/
|
||||
static bool VXInstructionDecoder_DecodeVex(VXInstructionDecoderContext *ctx,
|
||||
VXInstructionInfo *info);
|
||||
|
||||
/**
|
||||
* @brief Returns the effective operand size.
|
||||
* @param ctx The context.
|
||||
* @param info The instruction info.
|
||||
* @param operandSize The defined operand size.
|
||||
* @return The effective operand size.
|
||||
*/
|
||||
static uint16_t VXInstructionDecoder_GetEffectiveOperandSize(
|
||||
const VXInstructionDecoderContext *ctx, const VXInstructionInfo *info,
|
||||
VXDefinedOperandSize operandSize);
|
||||
|
||||
/**
|
||||
* @brief Decodes all instruction operands.
|
||||
* @param ctx The context.
|
||||
* @param info The @c VXInstructionInfo struct that receives the decoded data.
|
||||
* @return @c true if it succeeds, @c false if it fails.
|
||||
*/
|
||||
static bool VXInstructionDecoder_DecodeOperands(VXInstructionDecoderContext *ctx,
|
||||
VXInstructionInfo *info);
|
||||
|
||||
/**
|
||||
* @brief Decodes the specified instruction operand.
|
||||
* @param ctx The context.
|
||||
* @param info The instruction info.
|
||||
* @param operand The @c VXOperandInfo struct that receives the decoded data.
|
||||
* @param operandType The defined type of the operand.
|
||||
* @param operandSize The defined size of the operand.
|
||||
* @return @c true if it succeeds, @c false if it fails.
|
||||
*/
|
||||
static bool VXInstructionDecoder_DecodeOperand(VXInstructionDecoderContext *ctx,
|
||||
VXInstructionInfo *info, VXOperandInfo *operand, VXDefinedOperandType operandType,
|
||||
VXDefinedOperandSize operandSize);
|
||||
|
||||
/**
|
||||
* @brief Resolves the effective operand and address mode of the instruction.
|
||||
* @param ctx The context.
|
||||
* @param info The @c VXInstructionInfo struct that receives the effective operand and
|
||||
* address mode.
|
||||
* @remarks This function requires a non-null value in the @c instrDefinition field of the
|
||||
* @c info struct.
|
||||
*/
|
||||
static void VXInstructionDecoder_ResolveOperandAndAddressMode(
|
||||
const VXInstructionDecoderContext *ctx, VXInstructionInfo *info);
|
||||
|
||||
/**
|
||||
* @brief Calculates the effective REX/VEX.w, r, x, b, l values.
|
||||
* @param ctx The context.
|
||||
* @param info The @c VXInstructionInfo struct that receives the effective operand and
|
||||
* address mode.
|
||||
* @remarks This method requires a non-null value in the @c instrDefinition field of the
|
||||
* @c info struct.
|
||||
*/
|
||||
static void VXInstructionDecoder_CalculateEffectiveRexVexValues(
|
||||
const VXInstructionDecoderContext *ctx, VXInstructionInfo *info);
|
||||
|
||||
/**
|
||||
* @brief Collects and decodes optional instruction prefixes.
|
||||
* @param ctx The context.
|
||||
* @param info The @c VXInstructionInfo struct that receives the decoded data.
|
||||
* @return @c true if it succeeds, @c false if it fails.
|
||||
*/
|
||||
static bool VXInstructionDecoder_DecodePrefixes(VXInstructionDecoderContext *ctx,
|
||||
VXInstructionInfo *info);
|
||||
|
||||
/**
|
||||
* @brief Collects and decodes the instruction opcodes using the opcode tree.
|
||||
* @param ctx The context.
|
||||
* @param info The @c VXInstructionInfo struct that receives the decoded data.
|
||||
* @return @c true if it succeeds, @c false if it fails.
|
||||
*/
|
||||
static bool VXInstructionDecoder_DecodeOpcode(VXInstructionDecoderContext *ctx,
|
||||
VXInstructionInfo *info);
|
||||
VXInstructionDecoderContext* VXInstructionDecoder_Create(void);
|
||||
VXInstructionDecoderContext* VXInstructionDecoder_CreateEx(
|
||||
VXBaseDataSourceContext *input, VXDisassemblerMode disassemblerMode,
|
||||
VXInstructionSetVendor preferredVendor, uint64_t instructionPointer);
|
||||
bool VXInstructionDecoder_DecodeInstruction(VXInstructionDecoderContext *ctx,
|
||||
VXInstructionInfo *info);
|
||||
|
||||
/* Implementation ============================================================================== */
|
||||
|
||||
|
@ -842,10 +1023,10 @@ static bool VXInstructionDecoder_DecodeModrm(VXInstructionDecoderContext *ctx,
|
|||
info->modrm_rm = (info->modrm >> 0) & 0x07;
|
||||
}
|
||||
|
||||
// The @c decodeModrm method might get called multiple times during the opcode- and the
|
||||
// operand decoding, but the effective REX/VEX fields are not initialized before the end of
|
||||
// the opcode decoding process-> As the extended values are only used for the operand decoding,
|
||||
// we should have no problems->
|
||||
// This function might get called multiple times during the opcode- and the operand decoding,
|
||||
// but the effective REX/VEX fields are not initialized before the end of the opcode
|
||||
// decoding process-> As the extended values are only used for the operand decoding, we
|
||||
// should have no problems->
|
||||
info->modrm_reg_ext = (info->eff_rexvex_r << 3) | info->modrm_reg;
|
||||
info->modrm_rm_ext = (info->eff_rexvex_b << 3) | info->modrm_rm;
|
||||
return true;
|
||||
|
@ -856,6 +1037,7 @@ static bool VXInstructionDecoder_DecodeSIB(VXInstructionDecoderContext *ctx,
|
|||
{
|
||||
assert(info->flags & IF_MODRM);
|
||||
assert((info->modrm_rm & 0x7) == 4);
|
||||
|
||||
if (!(info->flags & IF_SIB))
|
||||
{
|
||||
info->sib = VXInstructionDecoder_InputNext8(ctx, info);
|
||||
|
@ -872,6 +1054,7 @@ static bool VXInstructionDecoder_DecodeSIB(VXInstructionDecoderContext *ctx,
|
|||
info->sib_index_ext = (info->eff_rexvex_x << 3) | info->sib_index;
|
||||
info->sib_base_ext = (info->eff_rexvex_b << 3) | info->sib_base;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -924,6 +1107,7 @@ static bool VXInstructionDecoder_DecodeVex(VXInstructionDecoderContext *ctx,
|
|||
default:
|
||||
assert(0);
|
||||
}
|
||||
|
||||
if (info->vex_m_mmmm > 3)
|
||||
{
|
||||
// TODO: Add proper error flag
|
||||
|
|
|
@ -59,11 +59,17 @@ typedef struct _VXBaseSymbolResolver
|
|||
VXBaseSymbolResolver_ResolveSymbolCallback resolveCallback;
|
||||
} VXBaseSymbolResolver;
|
||||
|
||||
/**
|
||||
* @brief Constructor.
|
||||
* @param ctx The context.
|
||||
*/
|
||||
static void VXBaseSymbolResolver_Construct(VXBaseSymbolResolverContext *ctx);
|
||||
|
||||
/**
|
||||
* @brief Destructor.
|
||||
* @param ctx The context.
|
||||
*/
|
||||
static void VXBaseSymbolResolver_Destruct(VXBaseSymbolResolverContext *ctx);
|
||||
void VXBaseSymbolResolver_Release(VXBaseSymbolResolverContext *ctx);
|
||||
const char* VXBaseSymbolResolver_ResolveSymbol(VXBaseSymbolResolverContext *ctx,
|
||||
const VXInstructionInfo *info, uint64_t address, uint64_t *offset);
|
||||
|
||||
/* VXBaseInstructionFormatter ------------------------------------------------------------------ */
|
||||
|
||||
|
@ -83,33 +89,103 @@ typedef struct _VXBaseInstructionFormatter
|
|||
bool outputUppercase;
|
||||
} VXBaseInstructionFormatter;
|
||||
|
||||
/**
|
||||
* @brief Constructor.
|
||||
* @param ctx The context.
|
||||
* @param symbolResolver The symbol resolver to use when formatting addresses.
|
||||
*/
|
||||
static void VXBaseInstructionFormatter_Construct(VXBaseInstructionFormatterContext *ctx,
|
||||
VXBaseSymbolResolverContext *symbolResolver);
|
||||
|
||||
/**
|
||||
* @brief Destructor.
|
||||
* @param ctx The context.
|
||||
*/
|
||||
static void VXBaseInstructionFormatter_Destruct(VXBaseInstructionFormatterContext *ctx);
|
||||
void VXBaseInstructionFormatter_Release(VXBaseInstructionFormatterContext *ctx);
|
||||
/*static void VXBaseInstructionFormatter_OutputSetUppercase(VXBaseInstructionFormatterContext *ctx, bool uppercase);*/
|
||||
|
||||
/*static void VXBaseInstructionFormatter_OutputSetUppercase(
|
||||
VXBaseInstructionFormatterContext *ctx, bool uppercase);*/
|
||||
|
||||
/**
|
||||
* @brief Returns the string representation of a given register.
|
||||
* @param ctx The context.
|
||||
* @param reg The register.
|
||||
* @return The string representation of the given register.
|
||||
*/
|
||||
static char const* VXBaseInstructionFormatter_RegisterToString(
|
||||
const VXBaseInstructionFormatterContext *ctx, VXRegister reg);
|
||||
|
||||
/**
|
||||
* @brief Resolves a symbol.
|
||||
* @param ctx The context.
|
||||
* @param info The instruction info.
|
||||
* @param address The address.
|
||||
* @param offset Reference to an unsigned 64 bit integer that receives an offset relative
|
||||
* to the base address of the symbol.
|
||||
* @return The name of the symbol, if the symbol was found, @c NULL if not.
|
||||
*/
|
||||
static char const* VXBaseInstructionFormatter_ResolveSymbol(
|
||||
const VXBaseInstructionFormatterContext *ctx, const VXInstructionInfo *info, uint64_t address,
|
||||
uint64_t *offset);
|
||||
VXBaseSymbolResolverContext* VXBaseInstructionFormatter_GetSymbolResolver(
|
||||
const VXBaseInstructionFormatterContext *ctx);
|
||||
void VXBaseInstructionFormatter_SetSymbolResolver(VXBaseInstructionFormatterContext *ctx,
|
||||
VXBaseSymbolResolverContext *symbolResolver);
|
||||
const char* VXBaseInstructionFormatter_FormatInstruction(VXBaseInstructionFormatterContext *ctx,
|
||||
const VXInstructionInfo *info);
|
||||
|
||||
/**
|
||||
* @brief Clears the output string buffer.
|
||||
* @param ctx The context.
|
||||
*/
|
||||
static void VXBaseInstructionFormatter_OutputClear(VXBaseInstructionFormatterContext *ctx);
|
||||
|
||||
/**
|
||||
* @brief Returns the content of the output string buffer.
|
||||
* @param ctx The context.
|
||||
* @return Pointer to the content of the ouput string buffer.
|
||||
*/
|
||||
static char const* VXBaseInstructionFormatter_OutputString(VXBaseInstructionFormatterContext *ctx);
|
||||
|
||||
/**
|
||||
* @brief Appends text to the ouput string buffer.
|
||||
* @param ctx The context.
|
||||
* @param text The text.
|
||||
*/
|
||||
static void VXBaseInstructionFormatter_OutputAppend(VXBaseInstructionFormatterContext *ctx,
|
||||
char const *text);
|
||||
|
||||
/**
|
||||
* @brief Appends formatted text to the output string buffer.
|
||||
* @param ctx The context.
|
||||
* @param format The format string.
|
||||
*/
|
||||
static void VXBaseInstructionFormatter_OutputAppendFormatted(
|
||||
VXBaseInstructionFormatterContext *ctx, char const *format, ...);
|
||||
|
||||
/**
|
||||
* @brief Appends a formatted address to the output string buffer.
|
||||
* @param ctx The context.
|
||||
* @param info The instruction info.
|
||||
* @param address The address.
|
||||
* @param resolveSymbols If this parameter is true, the function will try to display a
|
||||
* smybol name instead of the numeric value.
|
||||
*/
|
||||
static void VXBaseInstructionFormatter_OutputAppendAddress(VXBaseInstructionFormatterContext *ctx,
|
||||
const VXInstructionInfo *info, uint64_t address, bool resolveSymbols);
|
||||
const VXInstructionInfo *info, uint64_t address, bool resolveSymbols);
|
||||
|
||||
/**
|
||||
* @brief Appends a formatted immediate value to the output string buffer.
|
||||
* @param ctx The context.
|
||||
* @param info The instruction info.
|
||||
* @param operand The immediate operand.
|
||||
* @param resolveSymbols If this parameter is true, the function will try to display a
|
||||
* smybol name instead of the numeric value.
|
||||
*/
|
||||
static void VXBaseInstructionFormatter_OutputAppendImmediate(
|
||||
VXBaseInstructionFormatterContext *ctx, const VXInstructionInfo *info,
|
||||
const VXOperandInfo *operand, bool resolveSymbols);
|
||||
|
||||
/**
|
||||
* @brief Appends a formatted memory displacement value to the output string buffer.
|
||||
* @param ctx The context.
|
||||
* @param info The instruction info.
|
||||
* @param operand The memory operand.
|
||||
*/
|
||||
static void VXBaseInstructionFormatter_OutputAppendDisplacement(
|
||||
VXBaseInstructionFormatterContext *ctx, const VXInstructionInfo *info,
|
||||
const VXOperandInfo *operand);
|
||||
|
@ -123,11 +199,24 @@ typedef struct _VXCustomSymbolResolver
|
|||
void *userData;
|
||||
} VXCustomSymbolResolver;
|
||||
|
||||
/**
|
||||
* @brief Constructor.
|
||||
* @param ctx The context.
|
||||
* @param resolverCb The resolver callback.
|
||||
* @param userData User defined data passed to the resolver callback.
|
||||
*/
|
||||
static void VXCustomSymbolResolver_Construct(VXBaseSymbolResolverContext *ctx,
|
||||
VXCustomSymbolResolver_ResolveSymbolCallback resolverCb, void *userData);
|
||||
|
||||
/**
|
||||
* @brief Destructor.
|
||||
* @param ctx The context.
|
||||
*/
|
||||
static void VXCustomSymbolResolver_Destruct(VXBaseSymbolResolverContext *ctx);
|
||||
VXBaseSymbolResolverContext* VXCustomSymbolResolver_Create(
|
||||
VXCustomSymbolResolver_ResolveSymbolCallback resolverCb, void *userData);
|
||||
|
||||
/**
|
||||
* @copydoc VXBaseSymbolResolver_Resolve
|
||||
*/
|
||||
static const char* VXCustomSymbolResolver_Resolve(VXBaseSymbolResolverContext *ctx,
|
||||
const VXInstructionInfo *info, uint64_t address, uint64_t *offset);
|
||||
|
||||
|
@ -138,17 +227,43 @@ typedef struct _VXIntelInstructionFormatter
|
|||
VXBaseInstructionFormatter super;
|
||||
} VXIntelInstructionFormatter;
|
||||
|
||||
VXBaseInstructionFormatterContext* VXIntelInstructionFormatter_Create(void);
|
||||
VXBaseInstructionFormatterContext* VXIntelInstructionFormatter_CreateEx(
|
||||
VXBaseSymbolResolverContext *resolver);
|
||||
/**
|
||||
* @brief Constructor.
|
||||
* @param ctx The context.
|
||||
* @param symbolResolver The symbol resolver used to resolve addresses.
|
||||
* @param userData User defined data passed to the resolver callback.
|
||||
*/
|
||||
static void VXIntelInstructionFormatter_Construct(VXBaseInstructionFormatterContext *ctx,
|
||||
VXBaseSymbolResolverContext *symbolResolver);
|
||||
|
||||
/**
|
||||
* @brief Destructor.
|
||||
* @param ctx The context.
|
||||
*/
|
||||
static void VXIntelInstructionFormatter_Destruct(VXBaseInstructionFormatterContext *ctx);
|
||||
|
||||
/**
|
||||
* @brief Appends an operand cast to the output string buffer.
|
||||
* @param ctx The context.
|
||||
* @param info The instruction info.
|
||||
* @param operand The operand.
|
||||
*/
|
||||
static void VXIntelInstructionFormatter_OutputAppendOperandCast(
|
||||
VXBaseInstructionFormatterContext *ctx, const VXInstructionInfo *info,
|
||||
const VXOperandInfo *operand);
|
||||
|
||||
/**
|
||||
* @brief Formats the specified operand and appends it to the output buffer.
|
||||
* @param ctx The context.
|
||||
* @param info The instruction info.
|
||||
* @param operand The operand.
|
||||
*/
|
||||
static void VXIntelInstructionFormatter_FormatOperand(VXBaseInstructionFormatterContext *ctx,
|
||||
const VXInstructionInfo *info, const VXOperandInfo *operand);
|
||||
|
||||
/**
|
||||
* @coypdoc VXBaseInstructionFormatter_InternalFormatInstruction
|
||||
*/
|
||||
static void VXIntelInstructionFormatter_InternalFormatInstruction(
|
||||
VXBaseInstructionFormatterContext *ctx, const VXInstructionInfo *info);
|
||||
|
||||
|
|
Loading…
Reference in New Issue