Enum Class CIdentifierClass
java.lang.Object
java.lang.Enum<CIdentifierClass>
com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.CIdentifierClass
- All Implemented Interfaces:
Serializable
,Comparable<CIdentifierClass>
,Constable
Class of a C identifier.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSimilar to a global variable, but does not live in the program memory.Global variable in the program memory.Local variable on the routine stack.Reserved for pseudo-identifiers that do not represent actual variables.Special type of "fake" local: physical register, virtual register, mirror, etc. -
Method Summary
Modifier and TypeMethodDescriptionboolean
isGlobal()
boolean
isLocal()
static CIdentifierClass
Returns the enum constant of this class with the specified name.static CIdentifierClass[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
GLOBAL
Global variable in the program memory. -
LOCAL
Local variable on the routine stack. -
BUILTIN
Similar to a global variable, but does not live in the program memory. -
SYNTHETIC
Special type of "fake" local: physical register, virtual register, mirror, etc. -
SPECIAL
Reserved for pseudo-identifiers that do not represent actual variables.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
isGlobal
public boolean isGlobal() -
isLocal
public boolean isLocal()
-