Record Class JitAllocationModel.DoubleVarAlloc
java.lang.Object
java.lang.Record
ghidra.pcode.emu.jit.analysis.JitAllocationModel.DoubleVarAlloc
- Record Components:
local- the JVM localtype- the p-code type
- All Implemented Interfaces:
JitAllocationModel.OneLocalVarHandler, JitAllocationModel.VarHandler
- Enclosing class:
JitAllocationModel
public static record JitAllocationModel.DoubleVarAlloc(JitAllocationModel.JvmLocal local, JitType.DoubleJitType type)
extends Record
implements JitAllocationModel.OneLocalVarHandler
The handler for a p-code variable allocated in one JVM
double.-
Constructor Summary
ConstructorsConstructorDescriptionCreates an instance of aDoubleVarAllocrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.local()Returns the value of thelocalrecord component.final StringtoString()Returns a string representation of this record class.type()Returns the value of thetyperecord component.Methods inherited from interface JitAllocationModel.OneLocalVarHandler
generateDeclCode, generateInitCode, generateLoadCode, generateStoreCode
-
Constructor Details
-
Method Details
-
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). -
local
Returns the value of thelocalrecord component.- Specified by:
localin interfaceJitAllocationModel.OneLocalVarHandler- Returns:
- the value of the
localrecord component
-
type
Returns the value of thetyperecord component.- Specified by:
typein interfaceJitAllocationModel.VarHandler- Returns:
- the value of the
typerecord component
-