remill icon indicating copy to clipboard operation
remill copied to clipboard

Have InstructionLifters Attached to Arches Share Operand Lifters

Open 2over12 opened this issue 3 years ago • 0 comments

Currently, each instruction lifter attached to an instruction has a different operand lifter, preventing effective use of the operand cache. Potentially, LiftIntoBlock should take a reference to an OperandLifter and InstructionLifter is no longer a subtype of OperandLifter. The point here being that the client manages a single OperandLifter instance for the arch (clearing the cache when needed ie. between functions) and that single operand lifter is passed to all instruction lifters that need to lift operands.

2over12 avatar Aug 20 '22 13:08 2over12