Package ghidra.pcode.emu.jit.analysis
Record Class JitAllocationModel.FloatVarAlloc
java.lang.Object
java.lang.Record
ghidra.pcode.emu.jit.analysis.JitAllocationModel.FloatVarAlloc
- Record Components:
local
- the JVM localtype
- the p-code type
- All Implemented Interfaces:
JitAllocationModel.OneLocalVarHandler
,JitAllocationModel.VarHandler
- Enclosing class:
JitAllocationModel
public static record JitAllocationModel.FloatVarAlloc(JitAllocationModel.JvmLocal local, JitType.FloatJitType type)
extends Record
implements JitAllocationModel.OneLocalVarHandler
The handler for a p-code variable allocated in one JVM
float
.-
Constructor Summary
ConstructorsConstructorDescriptionFloatVarAlloc
(JitAllocationModel.JvmLocal local, JitType.FloatJitType type) Creates an instance of aFloatVarAlloc
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.local()
Returns the value of thelocal
record component.final String
toString()
Returns a string representation of this record class.type()
Returns the value of thetype
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.analysis.JitAllocationModel.OneLocalVarHandler
generateDeclCode, generateInitCode, generateLoadCode, generateStoreCode
-
Constructor Details
-
Method Details
-
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)
. -
local
Returns the value of thelocal
record component.- Specified by:
local
in interfaceJitAllocationModel.OneLocalVarHandler
- Returns:
- the value of the
local
record component
-
type
Returns the value of thetype
record component.- Specified by:
type
in interfaceJitAllocationModel.VarHandler
- Returns:
- the value of the
type
record component
-