Record Class JitCallOtherOp

java.lang.Object
java.lang.Record
ghidra.pcode.emu.jit.op.JitCallOtherOp
Record Components:
op - the p-code op
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, 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 Details

  • Method Details

    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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 with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • op

      public PcodeOp op()
      Returns the value of the op record component.
      Specified by:
      op in interface JitOp
      Returns:
      the value of the op record component
    • userop

      Returns the value of the userop record component.
      Specified by:
      userop in interface JitCallOtherOpIf
      Returns:
      the value of the userop record component
    • args

      public List<JitVal> args()
      Returns the value of the args record component.
      Specified by:
      args in interface JitCallOtherOpIf
      Returns:
      the value of the args record component
    • inputTypes

      public List<JitTypeBehavior> inputTypes()
      Returns the value of the inputTypes record component.
      Specified by:
      inputTypes in interface JitCallOtherOpIf
      Returns:
      the value of the inputTypes record component
    • dfState

      public JitDataFlowState.MiniDFState dfState()
      Returns the value of the dfState record component.
      Specified by:
      dfState in interface JitCallOtherOpIf
      Returns:
      the value of the dfState record component