Skip to content
Snippets Groups Projects
Commit 8d416bf5 authored by jdh8d's avatar jdh8d
Browse files

changed to remove BEA engine from API

parent 29bbb0ae
No related branches found
No related tags found
No related merge requests found
......@@ -35,6 +35,7 @@
#include "utils.hpp"
#include "Rewrite_Utility.hpp"
#include "nonce_relocs.h"
#include <bea_deprecated.hpp>
// get constants for dladdr,dlsym,dlopen, etc.
#include <dlfcn.h>
......@@ -769,7 +770,7 @@ bool NonceRelocs_t::WillPluginPlop(libIRDB::Instruction_t* insn)
return false;
DISASM d;
insn->Disassemble(d);
Disassemble(insn,d);
// plop calls
if(string(d.Instruction.Mnemonic) == "call ")
......@@ -789,7 +790,7 @@ size_t NonceRelocs_t::DollopEntryOpeningSize(DollopEntry_t* entry)
{
DISASM d;
entry->Instruction()->Disassemble(d);
Disassemble(entry->Instruction(),d);
if(!m_on)
return 0;
......@@ -804,7 +805,7 @@ size_t NonceRelocs_t::DollopEntryClosingSize(DollopEntry_t* entry)
{
DISASM d;
entry->Instruction()->Disassemble(d);
Disassemble(entry->Instruction(),d);
if(!m_on)
return 0;
......@@ -916,7 +917,7 @@ RangeAddress_t NonceRelocs_t::PlopDollopEntry(Zipr_SDK::DollopEntry_t *de,
//placed_addr=de->Place();
RangeAddress_t ret=placed_addr+instruction_size;
Instruction_t* insn=de->Instruction();
insn->Disassemble(d);
Disassemble(insn,d);
if (m_verbose)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment