public static enum GraphDecoder.LoopExplosionKind extends Enum<GraphDecoder.LoopExplosionKind>
Enum Constant and Description |
---|
FULL_EXPLODE
Fully explode all loops.
|
FULL_UNROLL
Fully unroll all loops.
|
MERGE_EXPLODE
like
FULL_EXPLODE , but copies of the loop body that have the exact same state
are merged. |
NONE
No loop explosion.
|
Modifier and Type | Method and Description |
---|---|
static GraphDecoder.LoopExplosionKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GraphDecoder.LoopExplosionKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GraphDecoder.LoopExplosionKind NONE
public static final GraphDecoder.LoopExplosionKind FULL_UNROLL
public static final GraphDecoder.LoopExplosionKind FULL_EXPLODE
public static final GraphDecoder.LoopExplosionKind MERGE_EXPLODE
FULL_EXPLODE
, but copies of the loop body that have the exact same state
are merged. This reduces the number of copies necessary, but can introduce loops again.public static GraphDecoder.LoopExplosionKind[] values()
for (GraphDecoder.LoopExplosionKind c : GraphDecoder.LoopExplosionKind.values()) System.out.println(c);
public static GraphDecoder.LoopExplosionKind valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null