summaryrefslogtreecommitdiff
path: root/src/vm/eeconfig.cpp
diff options
context:
space:
mode:
authorKoundinya Veluri <kouvel@users.noreply.github.com>2018-08-17 08:31:44 -0700
committerGitHub <noreply@github.com>2018-08-17 08:31:44 -0700
commitf6174b93d100d46f4641f040b6de5fa254c1ee71 (patch)
treebfe4f7b09fc8ce854c37cdd68025e19be161a57f /src/vm/eeconfig.cpp
parenta81d9103d23f714a0bd3efb900321b0b9f383311 (diff)
downloadcoreclr-f6174b93d100d46f4641f040b6de5fa254c1ee71.tar.gz
coreclr-f6174b93d100d46f4641f040b6de5fa254c1ee71.tar.bz2
coreclr-f6174b93d100d46f4641f040b6de5fa254c1ee71.zip
Enable Tiered Compilation by default (#19525)
Enable Tiered Compilation by default 1) Changes the default state of the tiered compilation feature check to be ON BY DEFAULT 2) Removed comments about the source about this being a work in progress. Although it will surely continue to evolve and improve, remaining issues would be better tracked in our issue tracking system with the same default presumption as other runtime features - assume it works unless noted otherwise. 3) Adjusts a number of tests and automated scripts that made assumptions that the default setting of this feature is off. 4) Stop accepting the deprecated env var COMPLUS_EXPERIMENTAL_TieredCompilation. I'm not aware it has any remaining usage but if so we're going to find out. 5) Adjust config names for JitBench
Diffstat (limited to 'src/vm/eeconfig.cpp')
-rw-r--r--src/vm/eeconfig.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/vm/eeconfig.cpp b/src/vm/eeconfig.cpp
index 41f80d8ba3..37864f1f83 100644
--- a/src/vm/eeconfig.cpp
+++ b/src/vm/eeconfig.cpp
@@ -1237,9 +1237,7 @@ HRESULT EEConfig::sync()
dwSleepOnExit = CLRConfig::GetConfigValue(CLRConfig::UNSUPPORTED_SleepOnExit);
#if defined(FEATURE_TIERED_COMPILATION)
- fTieredCompilation = Configuration::GetKnobBooleanValue(W("System.Runtime.TieredCompilation"), CLRConfig::EXTERNAL_TieredCompilation) ||
- //this older name is deprecated, but still accepted for a time. Preserving it is a very small overhead not to needlessly break things.
- CLRConfig::GetConfigValue(CLRConfig::UNSUPPORTED_LEGACY_TieredCompilation) != 0;
+ fTieredCompilation = Configuration::GetKnobBooleanValue(W("System.Runtime.TieredCompilation"), CLRConfig::EXTERNAL_TieredCompilation) != 0;
fTieredCompilation_CallCounting = CLRConfig::GetConfigValue(CLRConfig::UNSUPPORTED_TieredCompilation_Test_CallCounting) != 0;
fTieredCompilation_OptimizeTier0 = CLRConfig::GetConfigValue(CLRConfig::UNSUPPORTED_TieredCompilation_Test_OptimizeTier0) != 0;