Package ghidra.pcode.emu.jit.analysis
Record Class JitAllocationModel.LongVarAlloc
java.lang.Object
java.lang.Record
ghidra.pcode.emu.jit.analysis.JitAllocationModel.LongVarAlloc
- Record Components:
- local- the JVM local
- type- the p-code type
- All Implemented Interfaces:
- JitAllocationModel.OneLocalVarHandler,- JitAllocationModel.VarHandler
- Enclosing class:
- JitAllocationModel
public static record JitAllocationModel.LongVarAlloc(JitAllocationModel.JvmLocal local, JitType.LongJitType type)
extends Record
implements JitAllocationModel.OneLocalVarHandler
The handler for a p-code variable allocated in one JVM 
long.- 
Constructor SummaryConstructorsConstructorDescriptionLongVarAlloc(JitAllocationModel.JvmLocal local, JitType.LongJitType type) Creates an instance of aLongVarAllocrecord class.
- 
Method SummaryModifier 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 class java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface ghidra.pcode.emu.jit.analysis.JitAllocationModel.OneLocalVarHandlergenerateDeclCode, generateInitCode, generateLoadCode, generateStoreCode
- 
Constructor Details
- 
Method Details- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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).
- 
localReturns the value of thelocalrecord component.- Specified by:
- localin interface- JitAllocationModel.OneLocalVarHandler
- Returns:
- the value of the localrecord component
 
- 
typeReturns the value of thetyperecord component.- Specified by:
- typein interface- JitAllocationModel.VarHandler
- Returns:
- the value of the typerecord component
 
 
-