Record Class JitUnimplementedOp
java.lang.Object
java.lang.Record
ghidra.pcode.emu.jit.op.JitUnimplementedOp
- Record Components:
op- the p-code op
- All Implemented Interfaces:
JitOp
The use-def node for a
PcodeOp.UNIMPLEMENTED.-
Constructor Summary
ConstructorsConstructorDescriptionCreates an instance of aJitUnimplementedOprecord class. -
Method Summary
Modifier and TypeMethodDescriptionbooleanIndicates the operation can be removed if its output is never used.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.inputs()The input operand use-def nodes in some defined ordervoidlink()Add this op to theJitVal.uses()of each input operand, and (if applicable) set theJitOutVar.definition()of the output operand to this op.op()Returns the value of theoprecord component.final StringtoString()Returns a string representation of this record class.typeFor(int position) Get the required type behavior for the input at the given position inJitOp.inputs()voidunlink()Remove this op from theJitVal.uses()of each input operand, and (if applicable) unset theJitOutVar.definition()of the output operand.
-
Constructor Details
-
JitUnimplementedOp
-
-
Method Details
-
canBeRemoved
public boolean canBeRemoved()Description copied from interface:JitOpIndicates the operation can be removed if its output is never used.- Specified by:
canBeRemovedin interfaceJitOp- Returns:
- true if removable
-
link
public void link()Description copied from interface:JitOpAdd this op to theJitVal.uses()of each input operand, and (if applicable) set theJitOutVar.definition()of the output operand to this op. -
unlink
public void unlink()Description copied from interface:JitOpRemove this op from theJitVal.uses()of each input operand, and (if applicable) unset theJitOutVar.definition()of the output operand. -
inputs
-
typeFor
Description copied from interface:JitOpGet the required type behavior for the input at the given position inJitOp.inputs() -
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
-