mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 10:49:34 +02:00
Unit tests for CircleRange
This commit is contained in:
parent
e83e7004a3
commit
b275a02cdf
6 changed files with 844 additions and 19 deletions
|
@ -227,6 +227,7 @@ class OpBehaviorInt2Comp : public OpBehavior {
|
|||
public:
|
||||
OpBehaviorInt2Comp(void): OpBehavior(CPUI_INT_2COMP,true) {} ///< Constructor
|
||||
virtual uintb evaluateUnary(int4 sizeout,int4 sizein,uintb in1) const;
|
||||
virtual uintb recoverInputUnary(int4 sizeout,uintb out,int4 sizein) const;
|
||||
};
|
||||
|
||||
/// CPUI_INT_NEGATE behavior
|
||||
|
@ -234,6 +235,7 @@ class OpBehaviorIntNegate : public OpBehavior {
|
|||
public:
|
||||
OpBehaviorIntNegate(void): OpBehavior(CPUI_INT_NEGATE,true) {} ///< Constructor
|
||||
virtual uintb evaluateUnary(int4 sizeout,int4 sizein,uintb in1) const;
|
||||
virtual uintb recoverInputUnary(int4 sizeout,uintb out,int4 sizein) const;
|
||||
};
|
||||
|
||||
/// CPUI_INT_XOR behavior
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue