Skip to content

Commit

Permalink
Rename TieredCompilation keyword to Compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
kouvel committed Jan 13, 2020
1 parent 7a1d684 commit e17fe01
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/TraceEvent/Parsers/ClrTraceEventParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,9 @@ public enum Keywords : long
/// </summary>
Codesymbols = 0x400000000,
/// <summary>
/// Events that provide information about tiered compilation.
/// Events that provide information about compilation.
/// </summary>
TieredCompilation = 0x1000000000,
Compilation = 0x1000000000,
/// <summary>
/// Diagnostic events for diagnosing compilation and pre-compilation features.
/// </summary>
Expand All @@ -184,7 +184,7 @@ public enum Keywords : long
/// </summary>
Default = GC | Type | GCHeapSurvivalAndMovement | Binder | Loader | Jit | NGen | SupressNGen
| StopEnumeration | Security | AppDomainResourceManagement | Exception | Threading | Contention | Stack | JittedMethodILToNativeMap
| ThreadTransfer | GCHeapAndTypeNames | Codesymbols | TieredCompilation,
| ThreadTransfer | GCHeapAndTypeNames | Codesymbols | Compilation,

/// <summary>
/// What is needed to get symbols for JIT compiled code.
Expand Down Expand Up @@ -11962,12 +11962,12 @@ public enum Keywords : long
/// </summary>
CodeSymbolsRundown = 0x80000000,
/// <summary>
/// Events that provide information about tiered compilation.
/// Events that provide information about compilation.
/// </summary>
TieredCompilation = 0x1000000000,
Compilation = 0x1000000000,

Default = ForceEndRundown + NGen + Jit + SupressNGen + JittedMethodILToNativeMap + Loader + CodeSymbolsRundown +
TieredCompilation,
Compilation,
};

public ClrRundownTraceEventParser(TraceEventSource source) : base(source) { }
Expand Down

0 comments on commit e17fe01

Please sign in to comment.