Package ghidra.pcode.emu.jit.op
Record Class JitIntSubOp
java.lang.Object
java.lang.Record
ghidra.pcode.emu.jit.op.JitIntSubOp
- Record Components:
op
- the p-code opout
- the use-def variable node for the outputl
- the use-def node for the left input operandr
- the use-def node for the right input operand
- All Implemented Interfaces:
JitBinOp
,JitDefOp
,JitIntBinOp
,JitOp
public record JitIntSubOp(PcodeOp op, JitOutVar out, JitVal l, JitVal r)
extends Record
implements JitIntBinOp
The use-def node for a
PcodeOp.INT_SUB
.-
Constructor Summary
ConstructorsConstructorDescriptionJitIntSubOp
(PcodeOp op, JitOutVar out, JitVal l, JitVal r) Creates an instance of aJitIntSubOp
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.l()
Returns the value of thel
record component.op()
Returns the value of theop
record component.out()
Returns the value of theout
record component.r()
Returns the value of ther
record component.final String
toString()
Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface ghidra.pcode.emu.jit.op.JitDefOp
canBeRemoved
Methods inherited from interface ghidra.pcode.emu.jit.op.JitIntBinOp
lType, rType, type
-
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. -
l
Returns the value of thel
record component. -
r
Returns the value of ther
record component.
-