Package ghidra.pcode.emu.jit.op
Record Class JitBoolOrOp
java.lang.Object
java.lang.Record
ghidra.pcode.emu.jit.op.JitBoolOrOp
- 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 JitBoolOrOp(PcodeOp op, JitOutVar out, JitVal l, JitVal r)
extends Record
implements JitBoolBinOp
The use-def node for a
PcodeOp.BOOL_OR
.-
Constructor Summary
ConstructorsConstructorDescriptionJitBoolOrOp
(PcodeOp op, JitOutVar out, JitVal l, JitVal r) Creates an instance of aJitBoolOrOp
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.JitBoolBinOp
lType, rType, type
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. -
l
Returns the value of thel
record component. -
r
Returns the value of ther
record component.
-