public static final enum

RoutineIOSlot.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.RoutineIOSlot.Type

Summary

Enum Values
RoutineIOSlot.Type  COMPOSITE  A composite storage area if made of (in order): one or more REGISTER entries, followed by an optional STACK entry. 
RoutineIOSlot.Type  REGISTER  An single-slot storage entry located in a register  
RoutineIOSlot.Type  REGISTER_PAIR  Special value for double-slot entries located in a register pairs  
RoutineIOSlot.Type  REGISTER_QUAD  Special value for quad-slot entries located in 4 registers  
RoutineIOSlot.Type  STACK  An entry located on the stack; it can be any slot length  
Public Methods
static RoutineIOSlot.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 RoutineIOSlot.Type COMPOSITE

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

public static final RoutineIOSlot.Type REGISTER

An single-slot storage entry located in a register

public static final RoutineIOSlot.Type REGISTER_PAIR

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

public static final RoutineIOSlot.Type REGISTER_QUAD

Special value for quad-slot entries located in 4 registers

public static final RoutineIOSlot.Type STACK

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

Public Methods

public static RoutineIOSlot.Type valueOf (String name)

public static final Type[] values ()