Package ghidra.pcode.emu.jit.op
Record Class JitSubPieceOp
java.lang.Object
java.lang.Record
ghidra.pcode.emu.jit.op.JitSubPieceOp
- Record Components:
op
- the p-code opout
- the use-def variable node for the outputu
- the use-def node for the input operandoffset
- the number of bytes to shift right
- All Implemented Interfaces:
JitDefOp
,JitIntUnOp
,JitOp
,JitUnOp
public record JitSubPieceOp(PcodeOp op, JitOutVar out, JitVal u, int offset)
extends Record
implements JitIntUnOp
The use-def node for a
PcodeOp.SUBPIECE
.-
Constructor Summary
ConstructorsConstructorDescriptionJitSubPieceOp
(PcodeOp op, JitOutVar out, JitVal u, int offset) Creates an instance of aJitSubPieceOp
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.int
offset()
Returns the value of theoffset
record component.op()
Returns the value of theop
record component.out()
Returns the value of theout
record component.final String
toString()
Returns a string representation of this record class.u()
Returns the value of theu
record component.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.JitIntUnOp
type, uType
-
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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
op
Returns the value of theop
record component. -
out
Returns the value of theout
record component. -
u
Returns the value of theu
record component. -
offset
public int offset()Returns the value of theoffset
record component.- Returns:
- the value of the
offset
record component
-