public static final enum

StorageEntry.Type

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.pnfsoftware.jeb.core.units.code.asm.type.StorageEntry.Type

Class Overview

Type of storage requirements (on the stack, in registers, etc.).

Summary

Enum Values
StorageEntry.Type  MIXED  A mixed storage area if made of (in order): one or more REGISTER entries, followed by an optional STACK entry. 
StorageEntry.Type  REGISTER  An single-slot storage entry located in a register  
StorageEntry.Type  REGISTER_PAIR  Special value for double-slot entries located in a register pairs  
StorageEntry.Type  REGISTER_QUAD  Special value for quad-slot entries located in 4 registers  
StorageEntry.Type  STACK  An entry located on the stack; it can be any slot length  
Public Methods
static StorageEntry.Type valueOf(String name)
final static Type[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final StorageEntry.Type MIXED

A mixed storage area if made of (in order): one or more REGISTER entries, followed by an optional STACK entry.

public static final StorageEntry.Type REGISTER

An single-slot storage entry located in a register

public static final StorageEntry.Type REGISTER_PAIR

Special value for double-slot entries located in a register pairs

public static final StorageEntry.Type REGISTER_QUAD

Special value for quad-slot entries located in 4 registers

public static final StorageEntry.Type STACK

An entry located on the stack; it can be any slot length

Public Methods

public static StorageEntry.Type valueOf (String name)

public static final Type[] values ()