Package ghidra.pcode.emu.jit.op
Record Class JitFloatInt2FloatOp
java.lang.Object
java.lang.Record
ghidra.pcode.emu.jit.op.JitFloatInt2FloatOp
- Record Components:
op
- the p-code opout
- the use-def variable node for the outputu
- the use-def node for the input operand
public record JitFloatInt2FloatOp(PcodeOp op, JitOutVar out, JitVal u)
extends Record
implements JitUnOp
The use-def node for a
PcodeOp.FLOAT_INT2FLOAT
.-
Constructor Summary
ConstructorsConstructorDescriptionJitFloatInt2FloatOp
(PcodeOp op, JitOutVar out, JitVal u) Creates an instance of aJitFloatInt2FloatOp
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.uType()
The required type behavior for the operandMethods 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
-
Constructor Details
-
Method Details
-
uType
Description copied from interface:JitUnOp
The required type behavior for the operand -
type
Description copied from interface:JitDefOp
The required type behavior for the output -
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.
-