DBG: remove capstone references
This commit is contained in:
parent
a304748d29
commit
c7107374d2
|
@ -202,7 +202,7 @@ void TraceRecordManager::TraceExecute(duint address, duint size)
|
|||
//See https://www.felixcloutier.com/x86/FXSAVE.html, max 512 bytes
|
||||
#define memoryContentSize 512
|
||||
|
||||
static void HandleCapstoneOperand(const Zydis & cp, int opindex, DISASM_ARGTYPE* argType, duint* value, unsigned char memoryContent[memoryContentSize], unsigned char* memorySize)
|
||||
static void HandleZydisOperand(const Zydis & cp, int opindex, DISASM_ARGTYPE* argType, duint* value, unsigned char memoryContent[memoryContentSize], unsigned char* memorySize)
|
||||
{
|
||||
*value = cp.ResolveOpValue(opindex, [&cp](ZydisRegister reg)
|
||||
{
|
||||
|
@ -272,7 +272,7 @@ void TraceRecordManager::TraceExecuteRecord(const Zydis & newInstruction)
|
|||
for(int i = 0; i < newInstruction.OpCount(); i++)
|
||||
{
|
||||
memset(memoryContent, 0, sizeof(memoryContent));
|
||||
HandleCapstoneOperand(newInstruction, i, &argType, &value, memoryContent, &memorySize);
|
||||
HandleZydisOperand(newInstruction, i, &argType, &value, memoryContent, &memorySize);
|
||||
// check for overflow of the memory buffer
|
||||
if(newMemoryArrayCount * sizeof(duint) + memorySize > memoryArrayCount * sizeof(duint))
|
||||
continue;
|
||||
|
|
|
@ -6,8 +6,6 @@
|
|||
#include "jansson/jansson_x64dbg.h"
|
||||
#include <zydis_wrapper.h>
|
||||
|
||||
class Capstone;
|
||||
|
||||
class TraceRecordManager
|
||||
{
|
||||
public:
|
||||
|
|
|
@ -111,7 +111,7 @@ duint disasmnext(unsigned char* data, duint base, duint size, duint ip, int n)
|
|||
return ip;
|
||||
}
|
||||
|
||||
static void HandleCapstoneOperand(Zydis & cp, int opindex, DISASM_ARG* arg, bool getregs)
|
||||
static void HandleZydisOperand(Zydis & cp, int opindex, DISASM_ARG* arg, bool getregs)
|
||||
{
|
||||
auto value = cp.ResolveOpValue(opindex, [&cp, getregs](ZydisRegister reg)
|
||||
{
|
||||
|
@ -217,7 +217,7 @@ void disasmget(Zydis & cp, unsigned char* buffer, duint addr, DISASM_INSTR* inst
|
|||
instr->type = instr_normal;
|
||||
instr->argcount = cp.OpCount() <= 3 ? cp.OpCount() : 3;
|
||||
for(int i = 0; i < instr->argcount; i++)
|
||||
HandleCapstoneOperand(cp, i, &instr->arg[i], getregs);
|
||||
HandleZydisOperand(cp, i, &instr->arg[i], getregs);
|
||||
}
|
||||
|
||||
void disasmget(Zydis & cp, duint addr, DISASM_INSTR* instr, bool getregs)
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
@brief RefFind Find reference to the buffer by a given criterion.
|
||||
@param Address The base address of the buffer
|
||||
@param Size The size of the buffer
|
||||
@param Callback The callback that is invoked to identify whether an instruction satisfies the criterion. prototype: bool callback(Capstone* disasm, BASIC_INSTRUCTION_INFO* basicinfo, REFINFO* refinfo)
|
||||
@param Callback The callback that is invoked to identify whether an instruction satisfies the criterion. prototype: bool callback(Zydis* disasm, BASIC_INSTRUCTION_INFO* basicinfo, REFINFO* refinfo)
|
||||
@param UserData The data that will be passed to Callback
|
||||
@param Silent If true, no log will be outputed.
|
||||
@param Name The name of the reference criterion. Not null.
|
||||
|
|
|
@ -646,7 +646,7 @@ extern "C" DLL_EXPORT const char* _dbg_dbginit()
|
|||
dputs(QT_TRANSLATE_NOOP("DBG", "Setting JSON memory management functions..."));
|
||||
json_set_alloc_funcs(json_malloc, json_free);
|
||||
//#endif //ENABLE_MEM_TRACE
|
||||
dputs(QT_TRANSLATE_NOOP("DBG", "Initializing capstone..."));
|
||||
dputs(QT_TRANSLATE_NOOP("DBG", "Initializing Zydis..."));
|
||||
Zydis::GlobalInitialize();
|
||||
dputs(QT_TRANSLATE_NOOP("DBG", "Initializing Yara..."));
|
||||
if(yr_initialize() != ERROR_SUCCESS)
|
||||
|
|
Loading…
Reference in New Issue