Package ghidra.pcode.emu.jit.op
Record Class JitBoolXorOp
java.lang.Object
java.lang.Record
ghidra.pcode.emu.jit.op.JitBoolXorOp
- 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,JitBoolBinOp,JitDefOp,JitOp
public record JitBoolXorOp(PcodeOp op, JitOutVar out, JitVal l, JitVal r)
extends Record
implements JitBoolBinOp
The use-def node for a
PcodeOp.BOOL_XOR.-
Constructor Summary
ConstructorsConstructorDescriptionJitBoolXorOp(PcodeOp op, JitOutVar out, JitVal l, JitVal r) Creates an instance of aJitBoolXorOprecord 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.JitBoolBinOp
lType, rType, typeMethods 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 theoprecord component. -
out
Returns the value of theoutrecord component. -
l
Returns the value of thelrecord component. -
r
Returns the value of therrecord component.
-