Skip to content
Snippets Groups Projects
Commit a43084f0 authored by whh8b's avatar whh8b
Browse files

Update Plop* functions to take dollop entries.

parent a8e69a0f
No related branches found
No related tags found
No related merge requests found
...@@ -66,9 +66,22 @@ class Zipr_t ...@@ -66,9 +66,22 @@ class Zipr_t
* way want to use. * way want to use.
*/ */
virtual int DetermineWorstCaseInsnSize(libIRDB::Instruction_t*, bool account_for_jump = true) = 0; virtual int DetermineWorstCaseInsnSize(libIRDB::Instruction_t*, bool account_for_jump = true) = 0;
virtual Zipr_SDK::RangeAddress_t PlopDollopEntry(Zipr_SDK::DollopEntry_t *) = 0;
virtual Zipr_SDK::RangeAddress_t PlopWithTarget(Zipr_SDK::DollopEntry_t*) = 0; virtual Zipr_SDK::RangeAddress_t PlopDollopEntry(
virtual Zipr_SDK::RangeAddress_t PlopWithCallback(DollopEntry_t *) = 0; DollopEntry_t *,
RangeAddress_t = 0)
= 0;
virtual Zipr_SDK::RangeAddress_t PlopDollopEntryWithTarget(
DollopEntry_t *,
RangeAddress_t = 0)
= 0;
virtual Zipr_SDK::RangeAddress_t PlopDollopEntryWithCallback(
DollopEntry_t *,
RangeAddress_t = 0)
= 0;
virtual Zipr_SDK::MemorySpace_t *GetMemorySpace()=0; virtual Zipr_SDK::MemorySpace_t *GetMemorySpace()=0;
virtual ELFIO::elfio *GetELFIO()=0; virtual ELFIO::elfio *GetELFIO()=0;
virtual libIRDB::FileIR_t *GetFileIR()=0; virtual libIRDB::FileIR_t *GetFileIR()=0;
......
...@@ -40,12 +40,11 @@ class ZiprPluginInterface_t ...@@ -40,12 +40,11 @@ class ZiprPluginInterface_t
{ {
return false; return false;
} }
virtual size_t WorstCaseInsnSize(libIRDB::Instruction_t*, Zipr_t *) virtual size_t WorstCaseInsnSize(libIRDB::Instruction_t*, bool, Zipr_t *)
{ {
return 0; return 0;
} }
virtual RangeAddress_t PlopInstruction(libIRDB::Instruction_t*, virtual RangeAddress_t PlopDollopEntry(Zipr_SDK::DollopEntry_t *,
RangeAddress_t,
RangeAddress_t &, RangeAddress_t &,
Zipr_t *) Zipr_t *)
{ {
......
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