summaryrefslogtreecommitdiff
path: root/src/ToolBox
diff options
context:
space:
mode:
authorKoundinya Veluri <kouvel@users.noreply.github.com>2019-05-23 10:49:10 -0700
committerGitHub <noreply@github.com>2019-05-23 10:49:10 -0700
commit61a02edb7fb443b92f0682a00c42200def2bd33a (patch)
tree7a40753df7c7935d0bddb05688d1c96b498d26d1 /src/ToolBox
parent9271757d2c917c5650c459a4c3fa648c2968a591 (diff)
downloadcoreclr-61a02edb7fb443b92f0682a00c42200def2bd33a.tar.gz
coreclr-61a02edb7fb443b92f0682a00c42200def2bd33a.tar.bz2
coreclr-61a02edb7fb443b92f0682a00c42200def2bd33a.zip
Add some perf events/data for tiered compilation (#24607)
Add some perf events/data for tiered compilation New events: - `Settings` - Sent when TC is enabled - `Flags` - Currently indicates whether QuickJit and QuickJitForLoops are enabled - `Pause` - Sent when TC is paused (due to a new method being called for the first time) - `Resume` - Sent when TC resumes - `NewMethodCount` - Number of methods called for the first time while tiering was paused - `BackgroundJitStart` - Sent when starting to JIT methods in the background - `PendingMethodCount` - Number of methods currently scheduled for background JIT - `BackgroundJitStop` - Sent when background jitting stops - `PendingMethodCount` - Same as above. When 0, background jitting has completed. - `JittedMethodCount` - Number of methods jitted in the background since the previous BackgroundJitStart event on the same thread Miscellaneous: - Updated method JIT events to include the optimization tier - Added a couple more cases where tiered compilation is disabled for methods that have JIT optimization disabled for some reason - Renamed `Duration` field of the new version of the `ContentionEnd` to `DurationNs` to indicate the units of time - Added `OptimizationTierOptimized` to `NativeCodeVersion::OptimizationTier` to distinguish it from `OptimizationTier1`. `OptimizationTierOptimized` is now used for methods that QuickJit is disabled for, and does not send the tier 1 flag. - For info about the code being generated by the JIT, added info to `PrepareCodeConfig` and stored a pointer to it on the thread object for the current JIT invocation. Info is updated in `PrepareCodeConfig` and used for updating the tier on the code version and for sending the ETL event. - If the JIT decides to use MinOpt when `MethodDesc::IsJitOptimizationDisabled()` is false, the info is not stored. The runtime method event will reflect the JIT's choice, the rundown event will not. - Updated to show optimization tiers in SOS similarly to PerfView
Diffstat (limited to 'src/ToolBox')
-rw-r--r--src/ToolBox/SOS/Strike/util.cpp22
1 files changed, 14 insertions, 8 deletions
diff --git a/src/ToolBox/SOS/Strike/util.cpp b/src/ToolBox/SOS/Strike/util.cpp
index f9fe957922..9ff51d45f6 100644
--- a/src/ToolBox/SOS/Strike/util.cpp
+++ b/src/ToolBox/SOS/Strike/util.cpp
@@ -3252,21 +3252,27 @@ void DumpTieredNativeCodeAddressInfo(struct DacpTieredVersionData * pTieredVersi
for(int i = cTieredVersionData - 1; i >= 0; --i)
{
const char *descriptor = NULL;
- switch(pTieredVersionData[i].TieredInfo)
+ switch(pTieredVersionData[i].OptimizationTier)
{
- case DacpTieredVersionData::TIERED_UNKNOWN:
+ case DacpTieredVersionData::OptimizationTier_Unknown:
default:
_ASSERTE(!"Update SOS to understand the new tier");
descriptor = "Unknown Tier";
break;
- case DacpTieredVersionData::NON_TIERED:
- descriptor = "Non-Tiered";
+ case DacpTieredVersionData::OptimizationTier_MinOptJitted:
+ descriptor = "MinOptJitted";
break;
- case DacpTieredVersionData::TIERED_0:
- descriptor = "Tier 0";
+ case DacpTieredVersionData::OptimizationTier_Optimized:
+ descriptor = "Optimized";
break;
- case DacpTieredVersionData::TIERED_1:
- descriptor = "Tier 1";
+ case DacpTieredVersionData::OptimizationTier_QuickJitted:
+ descriptor = "QuickJitted";
+ break;
+ case DacpTieredVersionData::OptimizationTier_OptimizedTier1:
+ descriptor = "OptimizedTier1";
+ break;
+ case DacpTieredVersionData::OptimizationTier_ReadyToRun:
+ descriptor = "ReadyToRun";
break;
}