Package ghidra.pcode.emu.jit.op
Record Class JitBoolNegateOp
java.lang.Object
java.lang.Record
ghidra.pcode.emu.jit.op.JitBoolNegateOp
- Record Components:
op
- the p-code opout
- the use-def variable node for the outputu
- the use-def node for the input operand
- All Implemented Interfaces:
JitBoolUnOp
,JitDefOp
,JitOp
,JitUnOp
public record JitBoolNegateOp(PcodeOp op, JitOutVar out, JitVal u)
extends Record
implements JitBoolUnOp
The use-def node for a
PcodeOp.BOOL_NEGATE
.-
Constructor Summary
ConstructorsConstructorDescriptionJitBoolNegateOp
(PcodeOp op, JitOutVar out, JitVal u) Creates an instance of aJitBoolNegateOp
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.op()
Returns the value of theop
record component.out()
Returns the value of theout
record component.final String
toString()
Returns a string representation of this record class.u()
Returns the value of theu
record component.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface ghidra.pcode.emu.jit.op.JitBoolUnOp
type, uType
Methods inherited from interface ghidra.pcode.emu.jit.op.JitDefOp
canBeRemoved
-
Constructor Details
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object)
. -
op
Returns the value of theop
record component. -
out
Returns the value of theout
record component. -
u
Returns the value of theu
record component.
-