Package ghidra.pcode.emu.jit.op
Record Class JitFloatTruncOp
java.lang.Object
java.lang.Record
ghidra.pcode.emu.jit.op.JitFloatTruncOp
- Record Components:
op
- the p-code opout
- the use-def variable node for the outputu
- the use-def node for the input operand
- All Implemented Interfaces:
JitDefOp
,JitFloatUnOp
,JitOp
,JitUnOp
public record JitFloatTruncOp(PcodeOp op, JitOutVar out, JitVal u)
extends Record
implements JitFloatUnOp
The use-def node for a
PcodeOp.FLOAT_TRUNC
.-
Constructor Summary
ConstructorsConstructorDescriptionJitFloatTruncOp
(PcodeOp op, JitOutVar out, JitVal u) Creates an instance of aJitFloatTruncOp
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.op()
Returns the value of theop
record component.out()
Returns the value of theout
record component.final String
toString()
Returns a string representation of this record class.type()
The required type behavior for the outputu()
Returns the value of theu
record component.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface ghidra.pcode.emu.jit.op.JitDefOp
canBeRemoved
Methods inherited from interface ghidra.pcode.emu.jit.op.JitFloatUnOp
uType
-
Constructor Details
-
Method Details
-
type
Description copied from interface:JitDefOp
The required type behavior for the output- Specified by:
type
in interfaceJitDefOp
- Specified by:
type
in interfaceJitFloatUnOp
- Returns:
- the behavior
-
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. -
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. -
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
Returns the value of theop
record component. -
out
Returns the value of theout
record component. -
u
Returns the value of theu
record component.
-