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 op
- out- the use-def variable node for the output
- u- the use-def node for the input operand
- offset- 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 SummaryConstructorsConstructorDescriptionJitSubPieceOp(PcodeOp op, JitOutVar out, JitVal u, int offset) Creates an instance of aJitSubPieceOprecord class.
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intoffset()Returns the value of theoffsetrecord component.op()Returns the value of theoprecord component.out()Returns the value of theoutrecord component.final StringtoString()Returns a string representation of this record class.u()Returns the value of theurecord component.Methods inherited from class java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface ghidra.pcode.emu.jit.op.JitDefOpcanBeRemovedMethods inherited from interface ghidra.pcode.emu.jit.op.JitIntUnOptype, uType
- 
Constructor Details
- 
Method Details- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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 '=='.
- 
opReturns the value of theoprecord component.
- 
outReturns the value of theoutrecord component.
- 
uReturns the value of theurecord component.
- 
offsetpublic int offset()Returns the value of theoffsetrecord component.- Returns:
- the value of the offsetrecord component
 
 
-