Record Class JitIntRemOp
java.lang.Object
java.lang.Record
ghidra.pcode.emu.jit.op.JitIntRemOp
- 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 JitIntRemOp(PcodeOp op, JitOutVar out, JitVal l, JitVal r)
extends Record
implements JitIntBinOp
The use-def node for a
PcodeOp.INT_REM.-
Constructor Summary
ConstructorsConstructorDescriptionJitIntRemOp(PcodeOp op, JitOutVar out, JitVal l, JitVal r) Creates an instance of aJitIntRemOprecord 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 interface JitDefOp
canBeRemovedMethods inherited from interface JitIntBinOp
lType, rType, type
-
Constructor Details
-
JitIntRemOp
-
-
Method Details
-
toString
-
hashCode
-
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
-
out
-
l
-
r
-