|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<CountingResultCollectorMode>
de.uka.ipd.sdq.ByCounter.execution.CountingResultCollectorMode
public enum CountingResultCollectorMode
This enum lists modes in which the CountingResultCollector
can
handle the counting of results.
Enum Constant Summary | |
---|---|
DiscardAllIncomingCountingResults
Do not save any counting results at all. |
|
ForceInlineDisregardingInstrumentMethodWishes_InstructionAndMethodCounts
Inline counting results (instruction and method counts) in all cases. |
|
ForceInlineDisregardingInstrumentMethodWishes_InstructionAndMethodCounts_ButCountReportsPerSignature
Inline counting results (instruction and method counts) in all cases, but save the method signatures of individuall reporting methods. |
|
UseReportingMethodChoiceByInstrumentedMethods
default |
|
UseThresholdPerReportingMethod_UntilTotalThresholdReachedThenForceInline
Force inlining of a methods results once a threshold of results reported from that method is reached. |
|
UseTotalThreshold_RegardlessOfIndividualMethodCountsThenForceInline
Force inlining of a methods results once a total threshold of results reported from any method is reached. |
Method Summary | |
---|---|
boolean |
getCountReportsPerSignature()
|
boolean |
getForceInliningAlways()
|
boolean |
getForceInliningPossible()
|
static CountingResultCollectorMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static CountingResultCollectorMode[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final CountingResultCollectorMode DiscardAllIncomingCountingResults
public static final CountingResultCollectorMode ForceInlineDisregardingInstrumentMethodWishes_InstructionAndMethodCounts
public static final CountingResultCollectorMode ForceInlineDisregardingInstrumentMethodWishes_InstructionAndMethodCounts_ButCountReportsPerSignature
public static final CountingResultCollectorMode UseReportingMethodChoiceByInstrumentedMethods
public static final CountingResultCollectorMode UseThresholdPerReportingMethod_UntilTotalThresholdReachedThenForceInline
public static final CountingResultCollectorMode UseTotalThreshold_RegardlessOfIndividualMethodCountsThenForceInline
Method Detail |
---|
public static CountingResultCollectorMode[] values()
for (CountingResultCollectorMode c : CountingResultCollectorMode.values()) System.out.println(c);
public static CountingResultCollectorMode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is nullpublic boolean getCountReportsPerSignature()
public boolean getForceInliningAlways()
public boolean getForceInliningPossible()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |