mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 18:29:37 +02:00
Addition of INSERT,EXTRACT, and POPCOUNT opcodes to decompiler code
This commit is contained in:
parent
2cafb27574
commit
0fdd29b98d
17 changed files with 164 additions and 8 deletions
|
@ -538,6 +538,9 @@ public:
|
|||
virtual void opSegmentOp(const PcodeOp *op)=0; ///< Emit a SEGMENTOP operator
|
||||
virtual void opCpoolRefOp(const PcodeOp *op)=0; ///< Emit a CPOOLREF operator
|
||||
virtual void opNewOp(const PcodeOp *op)=0; ///< Emit a NEW operator
|
||||
virtual void opInsertOp(const PcodeOp *op)=0; ///< Emit an INSERT operator
|
||||
virtual void opExtractOp(const PcodeOp *op)=0; ///< Emit an EXTRACT operator
|
||||
virtual void opPopcountOp(const PcodeOp *op)=0; ///< Emit a POPCOUNT operator
|
||||
|
||||
static int4 mostNaturalBase(uintb val); ///< Determine the most natural base for an integer
|
||||
static void formatBinary(ostream &s,uintb val); ///< Print a number in binary form
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue