Record Class JitCallOtherOp
java.lang.Object
java.lang.Record
ghidra.pcode.emu.jit.op.JitCallOtherOp
- Record Components:
op- the p-code opuserop- the userop definitionargs- the list of use-def values nodes given as argumentsinputTypes- the type behavior for each parameterdfState- the captured data flow state at the call site
- All Implemented Interfaces:
JitCallOtherOpIf, JitOp
public record JitCallOtherOp(PcodeOp op, PcodeUseropLibrary.PcodeUseropDefinition<Object> userop, List<JitVal> args, List<JitTypeBehavior> inputTypes, JitDataFlowState.MiniDFState dfState)
extends Record
implements JitCallOtherOpIf
The use-def node for a
PcodeOp.CALLOTHER without an output operand.-
Constructor Summary
ConstructorsConstructorDescriptionJitCallOtherOp(PcodeOp op, PcodeUseropLibrary.PcodeUseropDefinition<Object> userop, List<JitVal> args, List<JitTypeBehavior> inputTypes, JitDataFlowState.MiniDFState dfState) Creates an instance of aJitCallOtherOprecord class. -
Method Summary
Modifier and TypeMethodDescriptionargs()Returns the value of theargsrecord component.dfState()Returns the value of thedfStaterecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of theinputTypesrecord component.op()Returns the value of theoprecord component.final StringtoString()Returns a string representation of this record class.userop()Returns the value of theuseroprecord component.Methods inherited from interface JitCallOtherOpIf
canBeRemoved, inputs, link, typeFor, unlink
-
Constructor Details
-
JitCallOtherOp
public JitCallOtherOp(PcodeOp op, PcodeUseropLibrary.PcodeUseropDefinition<Object> userop, List<JitVal> args, List<JitTypeBehavior> inputTypes, JitDataFlowState.MiniDFState dfState) Creates an instance of aJitCallOtherOprecord class.- Parameters:
op- the value for theoprecord componentuserop- the value for theuseroprecord componentargs- the value for theargsrecord componentinputTypes- the value for theinputTypesrecord componentdfState- the value for thedfStaterecord component
-
-
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
-
userop
Returns the value of theuseroprecord component.- Specified by:
useropin interfaceJitCallOtherOpIf- Returns:
- the value of the
useroprecord component
-
args
-
inputTypes
Returns the value of theinputTypesrecord component.- Specified by:
inputTypesin interfaceJitCallOtherOpIf- Returns:
- the value of the
inputTypesrecord component
-
dfState
Returns the value of thedfStaterecord component.- Specified by:
dfStatein interfaceJitCallOtherOpIf- Returns:
- the value of the
dfStaterecord component
-