|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<SchedulingPhase>
at.dms.kjc.backendSupport.SchedulingPhase
public enum SchedulingPhase
What phase of Slice graph scheduling is a bit of code generation associated with? This enum should tell: initialization, pump priming for software pipelining, or steady state.
Enum Constant Summary | |
---|---|
INIT
Indicates scheduling for initialization phase |
|
PREINIT
Indicates scheduling for pre-initialization phase |
|
PRIMEPUMP
indicates scheduling for "prime pump" phase in a software pipelined schedule |
|
STEADY
indicates schdulting for the steady state |
Method Summary | |
---|---|
static boolean |
isInitOrPrimepump(SchedulingPhase whichPhase)
to determine if INIT || PRIMEPUMP. |
static SchedulingPhase |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static SchedulingPhase[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final SchedulingPhase PREINIT
public static final SchedulingPhase INIT
public static final SchedulingPhase PRIMEPUMP
public static final SchedulingPhase STEADY
Method Detail |
---|
public static final SchedulingPhase[] values()
for(SchedulingPhase c : SchedulingPhase.values()) System.out.println(c);
public static SchedulingPhase valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified namepublic static boolean isInitOrPrimepump(SchedulingPhase whichPhase)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |