Record Class JitCallOtherDefOp

java.lang.Object
java.lang.Record
ghidra.pcode.emu.jit.op.JitCallOtherDefOp
Record Components:
op - the p-code op
out - the use-def variable node for the output
type - the behavior of the output
userop - the userop definition
args - the list of use-def values nodes given as arguments
inputTypes - the type behavior for each parameter
dfState - the captured data flow state at the call site
All Implemented Interfaces:
JitCallOtherOpIf, JitDefOp, JitOp

public record JitCallOtherDefOp(PcodeOp op, JitOutVar out, JitTypeBehavior type, PcodeUseropLibrary.PcodeUseropDefinition<Object> userop, List<JitVal> args, List<JitTypeBehavior> inputTypes, JitDataFlowState.MiniDFState dfState) extends Record implements JitCallOtherOpIf, JitDefOp
The use-def node for a PcodeOp.CALLOTHER with an output operand.