mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 10:49:34 +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
|
@ -502,5 +502,11 @@ public:
|
|||
virtual uintb evaluateBinary(int4 sizeout,int4 sizein,uintb in1,uintb in2) const;
|
||||
};
|
||||
|
||||
/// CPUI_POPCOUNT behavior
|
||||
class OpBehaviorPopcount : public OpBehavior {
|
||||
public:
|
||||
OpBehaviorPopcount(void) : OpBehavior(CPUI_POPCOUNT,true) {} ///< Constructor
|
||||
virtual uintb evaluateUnary(int4 sizeout,int4 sizein,uintb in1) const;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue