Package ghidra.pcode.emu.jit.op
Record Class JitIntNotEqualOp
java.lang.Object
java.lang.Record
ghidra.pcode.emu.jit.op.JitIntNotEqualOp
- 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,JitIntTestOp,JitOp
public record JitIntNotEqualOp(PcodeOp op, JitOutVar out, JitVal l, JitVal r)
extends Record
implements JitIntTestOp
The use-def node for a
PcodeOp.INT_NOTEQUAL.-
Constructor Summary
ConstructorsConstructorDescriptionJitIntNotEqualOp(PcodeOp op, JitOutVar out, JitVal l, JitVal r) Creates an instance of aJitIntNotEqualOprecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.l()Returns the value of thelrecord component.op()Returns the value of theoprecord component.out()Returns the value of theoutrecord component.r()Returns the value of therrecord component.final StringtoString()Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface ghidra.pcode.emu.jit.op.JitDefOp
canBeRemovedMethods inherited from interface ghidra.pcode.emu.jit.op.JitIntBinOp
lType, rTypeMethods inherited from interface ghidra.pcode.emu.jit.op.JitIntTestOp
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 theoprecord component. -
out
Returns the value of theoutrecord component. -
l
Returns the value of thelrecord component. -
r
Returns the value of therrecord component.
-