Use macro rather than manually setting thumb bit in debugger.cpp
[platform/upstream/coreclr.git] / Documentation / project-docs / clr-configuration-knobs.md
1 There are two primary ways to configure runtime behavior: CoreCLR hosts can pass in key-value string pairs during runtime initialization, or users can set special variables in the environment or registry. Today, the set of configuration options that can be set via the former method is relatively small, but moving forward, we expect to add more options there. Each set of options is described below.
2
3 ## Host Configuration Knobs
4 These can be passed in by a host during initialization. Note that the values are all passed in as strings, so if the type is boolean, the value would be the string "true" or "false", and if it's a numeric value, it would be in the form "123".
5
6
7 Name | Description | Type
8 -----|-------------|------
9 `System.GC.Concurrent` | Enable concurrent GC | boolean
10 `System.GC.Server` | Enable server GC | boolean
11 `System.GC.RetainVM` | Put segments that should be deleted on a standby list for future use instead of releasing them back to the OS | boolean
12 `System.Runtime.TieredCompilation` | Enable tiered compilation | boolean
13 `System.Threading.ThreadPool.MinThreads` | Override MinThreads for the ThreadPool worker pool | numeric
14 `System.Threading.ThreadPool.MaxThreads` | Override MaxThreads for the ThreadPool worker pool | numeric
15
16
17
18 ## Environment/Registry Configuration Knobs
19
20 This table was machine-generated using `clr-configuration-knobs.csx` script from repository commit [041d508](https://github.com/dotnet/coreclr/commit/041d50833ecf6779583edcb4bab50db744e5c9e8) on 4/30/2018. It might be out of date. To generate latest documentation run `{dotnet} csi clr-configuration-knobs.csx` from this file directory.
21
22 When using these configurations from environment variables, the variables need to have the `COMPlus_` prefix in their names. e.g. To set DumpJittedMethods to 1, add the environment variable `COMPlus_DumpJittedMethods=1`.
23
24 See also [Setting configuration variables](../building/viewing-jit-dumps.md#setting-configuration-variables) for more information.
25
26 #### Tables
27 1. [AppDomain Configuration Knobs](#appdomain-configuration-knobs)
28 2. [ARM Configuration Knobs](#arm-configuration-knobs)
29 3. [Assembly Loader Configuration Knobs](#assembly-loader-configuration-knobs)
30 4. [Conditional breakpoints Configuration Knobs](#conditional-breakpoints-configuration-knobs)
31 5. [Debugger Configuration Knobs](#debugger-configuration-knobs)
32 6. [Diagnostics (internal general-purpose) Configuration Knobs](#diagnostics-internal-general-purpose-configuration-knobs)
33 7. [Exception Handling Configuration Knobs](#exception-handling-configuration-knobs)
34 8. [Garbage collector Configuration Knobs](#garbage-collector-configuration-knobs)
35 9. [GDBJIT Configuration Knobs](#gdbjit-configuration-knobs)
36 10. [IBC Configuration Knobs](#ibc-configuration-knobs)
37 11. [Interop Configuration Knobs](#interop-configuration-knobs)
38 12. [Interpreter Configuration Knobs](#interpreter-configuration-knobs)
39 13. [JIT Configuration Knobs](#jit-configuration-knobs)
40 14. [JIT Hardware Intrinsics Configuration Knobs](#jit-hardware-intrinsics-configuration-knobs)
41 15. [Jit Pitching Configuration Knobs](#jit-pitching-configuration-knobs)
42 16. [Loader Configuration Knobs](#loader-configuration-knobs)
43 17. [Loader heap Configuration Knobs](#loader-heap-configuration-knobs)
44 18. [Log Configuration Knobs](#log-configuration-knobs)
45 19. [MetaData Configuration Knobs](#metadata-configuration-knobs)
46 20. [Native Binder Configuration Knobs](#native-binder-configuration-knobs)
47 21. [NGEN Configuration Knobs](#ngen-configuration-knobs)
48 22. [Performance Configuration Knobs](#performance-configuration-knobs)
49 23. [Profiling API / ETW Configuration Knobs](#profiling-api--etw-configuration-knobs)
50 24. [Spinning heuristics Configuration Knobs](#spinning-heuristics-configuration-knobs)
51 25. [Stress Configuration Knobs](#stress-configuration-knobs)
52 26. [Thread (miscellaneous) Configuration Knobs](#thread-miscellaneous-configuration-knobs)
53 27. [Thread Suspend Configuration Knobs](#thread-suspend-configuration-knobs)
54 28. [Threadpool Configuration Knobs](#threadpool-configuration-knobs)
55 29. [Tiered Compilation Configuration Knobs](#tiered-compilation-configuration-knobs)
56 30. [TypeLoader Configuration Knobs](#typeloader-configuration-knobs)
57 31. [Uncategorized Configuration Knobs](#uncategorized-configuration-knobs)
58 32. [Virtual call stubs Configuration Knobs](#virtual-call-stubs-configuration-knobs)
59 33. [Watson Configuration Knobs](#watson-configuration-knobs)
60 34. [Zap Configuration Knobs](#zap-configuration-knobs)
61
62 #### AppDomain Configuration Knobs
63
64 Name | Description | Type | Class | Default Value | Flags 
65 -----|-------------|------|-------|---------------|-------
66 `ADBreakOnCannotUnload` | Used to troubleshoot failures to unload appdomain (e.g. someone sitting in unmanged code). In some cases by the time we throw the appropriate exception the thread has moved from the offending call. This setting allows in an instrumented build to stop exactly at the right moment. | `DWORD` | `INTERNAL` | `0` | 
67 `AddRejitNops` | Control for the profiler rejit feature infrastructure | `DWORD` | `UNSUPPORTED` |  | 
68 `ADDumpSB` | Not used | `DWORD` | `INTERNAL` | `0` | 
69 `ADForceSB` | Forces sync block creation for all objects | `DWORD` | `INTERNAL` | `0` | 
70 `ADLogMemory` | Superseded by test hooks | `DWORD` | `INTERNAL` | `0` | 
71 `ADTakeDHSnapShot` | Superseded by test hooks | `DWORD` | `INTERNAL` | `0` | 
72 `ADTakeSnapShot` | Superseded by test hooks | `DWORD` | `INTERNAL` | `0` | 
73 `ADULazyMemoryRelease` | On by default. Turned off in cases when people try to catch memory leaks, in which case AD unload should be immediately followed by GC) | `DWORD` | `EXTERNAL` | `1` | 
74 `ADURetryCount` | Controls timeout of AD unload. Used for workarounds when machine is too slow, there are network issues etc. | `DWORD` | `EXTERNAL` |  | 
75 `EnableFullDebug` | Heavy-weight checking for AD boundary violations (AD leaks) | `DWORD` | `INTERNAL` |  | 
76 `FinalizeOnShutdown` | When enabled, on shutdown, blocks all user threads and calls finalizers for all finalizable objects, including live objects | `DWORD` | `EXTERNAL` | `DEFAULT_FinalizeOnShutdown` | 
77
78 #### ARM Configuration Knobs
79
80 Name | Description | Type | Class | Default Value | Flags 
81 -----|-------------|------|-------|---------------|-------
82 `ARMEnabled` | Set it to 1 to enable ARM | `DWORD` | `UNSUPPORTED` | `(DWORD)0` | 
83
84 #### Assembly Loader Configuration Knobs
85
86 Name | Description | Type | Class | Default Value | Flags 
87 -----|-------------|------|-------|---------------|-------
88 `designerNamespaceResolution` | Set it to 1 to enable DesignerNamespaceResolve event for WinRT types | `DWORD` | `EXTERNAL` | `FALSE` | IgnoreEnv \| IgnoreHKLM \| IgnoreHKCU \| FavorConfigFile
89 `GetAssemblyIfLoadedIgnoreRidMap` | Used to force loader to ignore assemblies cached in the rid-map | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
90
91 #### Conditional breakpoints Configuration Knobs
92
93 Name | Description | Type | Class | Default Value | Flags 
94 -----|-------------|------|-------|---------------|-------
95 `BreakOnBadExit` |  | `DWORD` | `UNSUPPORTED` | `0` | REGUTIL_default
96 `BreakOnClassBuild` | Very useful for debugging class layout code. | `STRING` | `INTERNAL` |  | 
97 `BreakOnClassLoad` | Very useful for debugging class loading code. | `STRING` | `INTERNAL` |  | 
98 `BreakOnComToClrNativeInfoInit` | Throws an assert when native information about a COM -> CLR call are about to be gathered. | `STRING` | `INTERNAL` |  | 
99 `BreakOnDebugBreak` | Allows an assert in debug builds when a user break is hit | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
100 `BreakOnDILoad` | Allows an assert when the DI is loaded | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
101 `BreakOnDumpToken` | Breaks when using internal logging on a particular token value. | `DWORD` | `INTERNAL` | `0xffffffff` | REGUTIL_default
102 `BreakOnEELoad` |  | `DWORD` | `UNSUPPORTED` | `0` | REGUTIL_default
103 `BreakOnEEShutdown` |  | `DWORD` | `INTERNAL` | `0` | 
104 `BreakOnExceptionInGetThrowable` |  | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
105 `BreakOnFinalizeTimeOut` | Triggers a debug break on the finalizer thread when it has exceeded the maximum wait time | `DWORD` | `UNSUPPORTED` | `0` | 
106 `BreakOnFindMethod` | Breaks in findMethodInternal when it searches for the specified token. | `DWORD` | `INTERNAL` | `0` | 
107 `BreakOnFirstPass` |  | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
108 `BreakOnHR` | Debug.cpp, IfFailxxx use this macro to stop if hr matches  | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
109 `BreakOnInstantiation` | Very useful for debugging generic class instantiation. | `STRING` | `INTERNAL` |  | 
110 `BreakOnInteropStubSetup` | Throws an assert when marshaling stub for the given method is about to be built. | `STRING` | `INTERNAL` |  | 
111 `BreakOnInteropVTableBuild` | Specifies a type name for which an assert should be thrown when building interop v-table. | `STRING` | `INTERNAL` |  | REGUTIL_default
112 `BreakOnMethodName` | Very useful for debugging method override placement code. | `STRING` | `INTERNAL` |  | 
113 `BreakOnNGenRegistryAccessCount` | Breaks on the Nth' root store write | `DWORD` | `UNSUPPORTED` | `0` | REGUTIL_default
114 `BreakOnNotify` |  | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
115 `BreakOnRetailAssert` | Used for debugging \"retail\" asserts (fatal errors) | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
116 `BreakOnSecondPass` |  | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
117 `BreakOnSO` |  | `DWORD` | `UNSUPPORTED` | `0` | REGUTIL_default
118 `BreakOnStructMarshalSetup` | Throws an assert when field marshalers for the given type with layout are about to be created. | `STRING` | `INTERNAL` |  | 
119 `BreakOnUEF` |  | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
120 `BreakOnUncaughtException` |  | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
121
122 #### Debugger Configuration Knobs
123
124 Name | Description | Type | Class | Default Value | Flags 
125 -----|-------------|------|-------|---------------|-------
126 `D::FCE` | Allows an assert when crawling the managed stack for an exception handler | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
127 `DbgAssertOnDebuggeeDebugBreak` | If non-zero causes the managed-only debugger to assert on unhandled breakpoints in the debuggee | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
128 `DbgBreakIfLocksUnavailable` | Allows an assert when the debugger can't take a lock  | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
129 `DbgBreakOnErr` | Allows an assert when we get a failing hresult | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
130 `DbgBreakOnMapPatchToDJI` | Allows an assert when mapping a patch to an address | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
131 `DbgBreakOnRawInt3` | Allows an assert for test coverage for debug break or other int3 breaks | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
132 `DbgBreakOnSendBreakpoint` | Allows an assert when sending a breakpoint to the right side | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
133 `DbgBreakOnSetIP` | Allows an assert when setting the IP | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
134 `DbgCheckInt3` | Asserts if the debugger explicitly writes int3 instead of calling SetUnmanagedBreakpoint | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
135 `DbgDACAssertOnMismatch` | Allows an assert when the mscordacwks and mscorwks dll versions don't match | `DWORD` | `INTERNAL` |  | 
136 `DbgDACEnableAssert` | Enables extra validity checking in DAC - assumes target isn't corrupt | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
137 `DbgDACSkipVerifyDlls` | Allows disabling the check to ensure mscordacwks and mscorwks dll versions match | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
138 `DbgDelayHelper` | Varies the wait in the helper thread startup for testing race between threads | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
139 `DbgDisableDynamicSymsCompat` |  | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
140 `DbgDisableTargetConsistencyAsserts` | Allows explicitly testing with corrupt targets | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
141 `DbgDontResumeThreadsOnUnhandledException` | If non-zero, then don't try to unsuspend threads after continuing a 2nd-chance native exception | `DWORD` | `UNSUPPORTED` | `0` | 
142 `DbgEnableMixedModeDebuggingInternalOnly` |  | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
143 `DbgExtraThreads` | Allows extra unmanaged threads to run and throw debug events for stress testing | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
144 `DbgExtraThreadsCantStop` | Allows extra unmanaged threads in can't stop region to run and throw debug events for stress testing | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
145 `DbgExtraThreadsIB` | Allows extra in-band unmanaged threads to run and throw debug events for stress testing | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
146 `DbgExtraThreadsOOB` | Allows extra out of band unmanaged threads to run and throw debug events for stress testing | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
147 `DbgFaultInHandleIPCEvent` | Allows testing the unhandled event filter | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
148 `DbgInjectFEE` | Allows injecting a fatal execution error for testing Watson | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
149 `DbgLeakCheck` | Allows checking for leaked Cordb objects | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
150 `DbgNativeCodeBpBindsAcrossVersions` | If non-zero causes native breakpoints at offset 0 to bind in all tiered compilation versions of the given method | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
151 `DbgNo2ndChance` | Allows breaking on (and catching bogus) 2nd chance exceptions | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
152 `DbgNoDebugger` | Allows breaking if we don't want to lazily initialize the debugger | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
153 `DbgNoForceContinue` | Used to force a continue on longhorn | `DWORD` | `UNSUPPORTED` | `1` | REGUTIL_default
154 `DbgNoOpenMDByFile` | Allows opening MD by memory for perf testing | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
155 `DbgOOBinFEEE` | Allows forcing oob breakpoints when a fatal error occurs | `DWORD` | `INTERNAL` | `0` | 
156 `DbgPackShimPath` | CoreCLR path to dbgshim.dll - we are trying to figure out if we can remove this | `STRING` | `EXTERNAL` |  | 
157 `DbgPingInterop` | Allows checking for deadlocks in interop debugging | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
158 `DbgRace` | Allows pausing for native debug events to get hijicked | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
159 `DbgRedirect` | Allows for redirecting the event pipeline | `DWORD` | `UNSUPPORTED` | `0` | REGUTIL_default
160 `DbgRedirectApplication` | Specifies the auxiliary debugger application to launch. | `STRING` | `EXTERNAL` |  | 
161 `DbgRedirectAttachCmd` | Specifies command parameters for attaching the auxiliary debugger. | `STRING` | `EXTERNAL` |  | 
162 `DbgRedirectCommonCmd` | Specifies a command line format string for the auxiliary debugger. | `STRING` | `EXTERNAL` |  | 
163 `DbgRedirectCreateCmd` | Specifies command parameters when creating the auxiliary debugger. | `STRING` | `EXTERNAL` |  | 
164 `DbgShortcutCanary` | Allows a way to force canary to fail to be able to test failure paths | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
165 `DbgSkipMEOnStep` | Turns off MethodEnter checks | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
166 `DbgSkipStackCheck` | Skip the stack pointer check during stackwalking | `DWORD` | `UNSUPPORTED` | `0` | REGUTIL_default
167 `DbgSkipVerCheck` | Allows different RS and LS versions (for servicing work) | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
168 `DbgTC` | Allows checking boundary compression for offset mappings | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
169 `DbgTransportFaultInject` | Allows injecting a fault for testing the debug transport | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
170 `DbgTransportLog` | Turns on logging for the debug transport | `DWORD` | `INTERNAL` |  | 
171 `DbgTransportLogClass` | Mask to control what is logged in DbgTransportLog | `DWORD` | `INTERNAL` |  | 
172 `DbgTransportProxyAddress` | Allows specifying the transport proxy address | `STRING` | `UNSUPPORTED` |  | REGUTIL_default
173 `DbgTrapOnSkip` | Allows breaking when we skip a breakpoint | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
174 `DbgWaitTimeout` | Specifies the timeout value for waits | `DWORD` | `INTERNAL` | `1` | REGUTIL_default
175 `DbgWFDETimeout` | Specifies the timeout value for wait when waiting for a debug event | `DWORD` | `UNSUPPORTED` | `25` | REGUTIL_default
176 `DebugBreakOnAssert` | If DACCESS_COMPILE is defined, break on asserts. | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
177 `DebugBreakOnVerificationFailure` | Halts the jit on verification failure | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
178 `DebuggerBreakPoint` | Allows counting various debug events | `STRING` | `INTERNAL` |  | REGUTIL_default
179 `Debugging_RequiredVersion` | The lowest ICorDebug version we should attempt to emulate, or 0 for default policy.  Use 2 for CLRv2, 4 for CLRv4, etc. | `DWORD` | `UNSUPPORTED` | `0` | 
180 `DebugVerify` | Control for tracing in peverify | `STRING` | `INTERNAL` |  | REGUTIL_default
181 `EnableDiagnostics` | Allows the debugger and profiler diagnostics to be disabled | `DWORD` | `EXTERNAL` | `1` | REGUTIL_default
182 `EncApplyChanges` | Allows breaking when ApplyEditAndContinue is called | `DWORD` | `INTERNAL` | `0` | 
183 `EnCBreakOnRemapComplete` | Allows breaking after N RemapCompletes | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
184 `EnCBreakOnRemapOpportunity` | Allows breaking after N RemapOpportunities | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
185 `EncDumpApplyChanges` | Allows dumping edits in delta metadata and il files | `DWORD` | `INTERNAL` | `0` | 
186 `EncFixupFieldBreak` | Unlikely that this is used anymore. | `DWORD` | `INTERNAL` | `0` | 
187 `EncJitUpdatedFunction` | Allows breaking when an updated function is jitted | `DWORD` | `INTERNAL` | `0` | 
188 `EnCResolveField` | Allows breaking when computing the address of an EnC-added field | `DWORD` | `INTERNAL` | `0` | 
189 `EncResumeInUpdatedFunction` | Allows breaking when execution resumes in a new EnC version of a function | `DWORD` | `INTERNAL` | `0` | 
190 `IntentionallyCorruptDataFromTarget` | Intentionally fakes bad data retrieved from target to try and break dump generation. | `DWORD` | `INTERNAL` | `0` | 
191 `MiniMdBufferCapacity` | The max size of the buffer to store mini metadata information for triage- and mini-dumps. | `DWORD` | `INTERNAL` | `64 * 1024` | 
192 `RaiseExceptionOnAssert` | Raise a first chance (if set to 1) or second chance (if set to 2) exception on asserts. | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
193
194 #### Diagnostics (internal general-purpose) Configuration Knobs
195
196 Name | Description | Type | Class | Default Value | Flags 
197 -----|-------------|------|-------|---------------|-------
198 `ConditionalContracts` | If ENABLE_CONTRACTS_IMPL is defined, sets whether contracts are conditional. (?) | `DWORD` | `INTERNAL` |  | 
199 `ConsistencyCheck` |  | `DWORD` | `INTERNAL` | `0` | 
200 `ContinueOnAssert` | If set, doesn't break on asserts. | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
201 `disableStackOverflowProbing` |  | `DWORD` | `UNSUPPORTED` | `0` | FavorConfigFile
202 `InjectFatalError` |  | `DWORD` | `INTERNAL` |  | 
203 `InjectFault` |  | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
204 `SuppressChecks` |  | `DWORD` | `INTERNAL` |  | 
205 `SuppressLockViolationsOnReentryFromOS` | 64 bit OOM tests re-enter the CLR via RtlVirtualUnwind.  This indicates whether to suppress resulting locking violations. | `DWORD` | `INTERNAL` | `0` | 
206 `TestHooks` | Used by tests to get test an insight on various CLR workings | `STRING` | `INTERNAL` |  | 
207
208 #### Exception Handling Configuration Knobs
209
210 Name | Description | Type | Class | Default Value | Flags 
211 -----|-------------|------|-------|---------------|-------
212 `AssertOnFailFast` |  | `DWORD` | `INTERNAL` |  | 
213 `FailFastOnCorruptedStateException` | Failfast if a CSE is encountered | `DWORD` | `UNSUPPORTED` | `0` | FavorConfigFile
214 `legacyCorruptedStateExceptionsPolicy` | Enabled Pre-V4 CSE behavior | `DWORD` | `UNSUPPORTED` | `0` | FavorConfigFile
215 `SuppressLostExceptionTypeAssert` |  | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
216
217 #### Garbage collector Configuration Knobs
218
219 Name | Description | Type | Class | Default Value | Flags 
220 -----|-------------|------|-------|---------------|-------
221 `BGCSpin` | Specifies the bgc spin time | `DWORD` | `UNSUPPORTED` | `2` | 
222 `BGCSpinCount` | Specifies the bgc spin count | `DWORD` | `UNSUPPORTED` | `140` | 
223 `FastGCCheckStack` |  | `DWORD` | `INTERNAL` | `0` | 
224 `FastGCStress` | Reduce the number of GCs done by enabling GCStress | `DWORD` | `INTERNAL` |  | 
225 `gcAllowVeryLargeObjects` | Allow allocation of 2GB+ objects on GC heap | `DWORD` | `EXTERNAL` | `1` | 
226 `GCBreakOnOOM` | Does a DebugBreak at the soonest time we detect an OOM | `DWORD` | `UNSUPPORTED` |  | 
227 `GCCompactRatio` | Specifies the ratio compacting GCs vs sweeping  | `DWORD` | `UNSUPPORTED` | `0` | 
228 `gcConcurrent` | Enables/Disables concurrent GC | `DWORD` | `UNSUPPORTED` | `(DWORD)-1` | 
229 `GCConfigLogEnabled` | Specifies if you want to turn on config logging in GC | `DWORD` | `UNSUPPORTED` | `0` | 
230 `GCConfigLogFile` | Specifies the name of the GC config log file | `STRING` | `UNSUPPORTED` |  | 
231 `gcConservative` | Enables/Disables conservative GC | `DWORD` | `UNSUPPORTED` | `0` | 
232 `GcCoverage` | Specify a method or regular expression of method names to run with GCStress | `STRING` | `INTERNAL` |  | 
233 `GCCpuGroup` | Specifies if to enable GC to support CPU groups | `DWORD` | `EXTERNAL` | `0` | 
234 `gcForceCompact` | When set to true, always do compacting GC | `DWORD` | `UNSUPPORTED` |  | 
235 `GCgen0size` | Specifies the smallest gen0 size | `DWORD` | `UNSUPPORTED` |  | 
236 `GCHeapCount` |  | `DWORD` | `UNSUPPORTED` | `0` | 
237 `GCLatencyLevel` | Specifies the GC latency level that you want to optimize for | `DWORD` | `EXTERNAL` | `1` | 
238 `GCLatencyMode` | Specifies the GC latency mode - batch, interactive or low latency (note that the same thing can be specified via API which is the supported way) | `DWORD` | `INTERNAL` |  | 
239 `GCLogEnabled` | Specifies if you want to turn on logging in GC | `DWORD` | `UNSUPPORTED` | `0` | 
240 `GCLogFile` | Specifies the name of the GC log file | `STRING` | `UNSUPPORTED` |  | 
241 `GCLogFileSize` | Specifies the GC log file size | `DWORD` | `UNSUPPORTED` | `0` | 
242 `GCLOHCompact` | Specifies the LOH compaction mode | `DWORD` | `UNSUPPORTED` |  | 
243 `GCMixLog` | Specifies the name of the log file for GC mix statistics | `STRING` | `UNSUPPORTED` |  | 
244 `GCName` |  | `STRING` | `EXTERNAL` |  | 
245 `GCNoAffinitize` |  | `DWORD` | `UNSUPPORTED` | `0` | 
246 `GCNumaAware` | Specifies if to enable GC NUMA aware | `DWORD` | `UNSUPPORTED` | `1` | 
247 `GCPollType` |  | `DWORD` | `EXTERNAL` |  | 
248 `GCRetainVM` | When set we put the segments that should be deleted on a standby list (instead of releasing them back to the OS) which will be considered to satisfy new segment requests (note that the same thing can be specified via API which is the supported way) | `DWORD` | `UNSUPPORTED` | `0` | 
249 `GCSegmentSize` | Specifies the managed heap segment size | `DWORD` | `UNSUPPORTED` |  | 
250 `gcServer` | Enables server GC | `DWORD` | `UNSUPPORTED` | `0` | 
251 `GCStress` | Trigger GCs at regular intervals | `DWORD` | `EXTERNAL` | `0` | REGUTIL_default
252 `GCStressMaxFGCsPerBGC` | Specifies how many FGCs will occur during one BGC in GCStressMix mode | `DWORD` | `INTERNAL` | `~0U` | 
253 `GCStressMix` | Specifies whether the GC mix mode is enabled or not | `DWORD` | `INTERNAL` | `0` | 
254 `GcStressOnDirectCalls` | Whether to trigger a GC on direct calls | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
255 `GCStressStart` | Start GCStress after N stress GCs have been attempted | `DWORD` | `EXTERNAL` | `0` | 
256 `GCStressStartAtJit` | Start GCStress after N items are jitted | `DWORD` | `INTERNAL` | `0` | 
257 `GCStressStep` | Specifies how often StressHeap will actually do a GC in GCStressMix mode | `DWORD` | `INTERNAL` | `1` | 
258 `gcTrimCommitOnLowMemory` | When set we trim the committed space more aggressively for the ephemeral seg. This is used for running many instances of server processes where they want to keep as little memory committed as possible | `DWORD` | `EXTERNAL` |  | 
259 `HeapVerify` | When set verifies the integrity of the managed heap on entry and exit of each GC | `DWORD` | `UNSUPPORTED` |  | 
260 `SetupGcCoverage` | This doesn't appear to be a config flag | `STRING` | `EXTERNAL` |  | REGUTIL_default
261 `SkipGcCoverage` | Specify a list of assembly names to skip with GC Coverage | `STRING` | `INTERNAL` |  | 
262 `StatsUpdatePeriod` | Specifies the interval, in seconds, at which to update the statistics | `DWORD` | `UNSUPPORTED` | `60` | 
263 `SuspendTimeLog` | Specifies the name of the log file for suspension statistics | `STRING` | `UNSUPPORTED` |  | 
264
265 #### GDBJIT Configuration Knobs
266
267 Name | Description | Type | Class | Default Value | Flags 
268 -----|-------------|------|-------|---------------|-------
269 `GDBJitElfDump` | Dump ELF for specified method | `STRING` | `INTERNAL` |  | 
270 `GDBJitEmitDebugFrame` | Enable .debug_frame generation | `DWORD` | `INTERNAL` | `TRUE` | 
271
272 #### IBC Configuration Knobs
273
274 Name | Description | Type | Class | Default Value | Flags 
275 -----|-------------|------|-------|---------------|-------
276 `ConvertIbcData` | Converts between v1 and v2 IBC data | `DWORD` | `UNSUPPORTED` | `1` | REGUTIL_default
277 `DisableHotCold` | Master hot/cold splitting switch in Jit64 | `DWORD` | `UNSUPPORTED` |  | 
278 `DisableIBC` | Disables the use of IBC data | `DWORD` | `UNSUPPORTED` | `0` | REGUTIL_default
279 `UseIBCFile` |  | `DWORD` | `EXTERNAL` | `0` | REGUTIL_default
280
281 #### Interop Configuration Knobs
282
283 Name | Description | Type | Class | Default Value | Flags 
284 -----|-------------|------|-------|---------------|-------
285 `AllowDComReflection` | Allows out of process DCOM clients to marshal blocked reflection types. | `DWORD` | `EXTERNAL` | `0` | 
286 `EnableEventPipe` | Enable/disable event pipe.  Non-zero values enable tracing. | `DWORD` | `INTERNAL` | `0` | 
287 `EnableRCWCleanupOnSTAShutdown` | Performs RCW cleanup when STA shutdown is detected using IInitializeSpy in classic processes. | `DWORD` | `INTERNAL` | `0` | 
288 `EventPipeConfig` | Configuration for EventPipe. | `STRING` | `INTERNAL` |  | 
289 `EventPipeOutputFile` | The full path including file name for the trace file that will be written when COMPlus_EnableEventPipe&=1 | `STRING` | `INTERNAL` |  | 
290 `EventPipeRundown` | Enable/disable eventpipe rundown. | `DWORD` | `INTERNAL` | `1` | 
291 `ExposeExceptionsInCOM` |  | `DWORD` | `INTERNAL` |  | 
292 `GenerateStubForHost` | Forces the host hook stub to be built for all unmanaged calls, even when not running hosted. | `DWORD` | `INTERNAL` | `0` | 
293 `InteropLogArguments` | Log all pinned arguments passed to an interop call | `DWORD` | `EXTERNAL` | `0` | 
294 `InteropValidatePinnedObjects` | After returning from a managed-to-unmanaged interop call, validate GC heap around objects pinned by IL stubs. | `DWORD` | `UNSUPPORTED` | `0` | 
295 `legacyComHierarchyVisibility` |  | `DWORD` | `EXTERNAL` |  | 
296 `legacyComVTableLayout` |  | `DWORD` | `EXTERNAL` |  | 
297 `LocalWinMDPath` | Additional path to probe for WinMD files in if a WinRT type is not resolved using the standard paths. | `STRING` | `INTERNAL` |  | 
298 `LogCCWRefCountChange` | Outputs debug information and calls LogCCWRefCountChange_BREAKPOINT when AddRef or Release is called on a CCW. | `STRING` | `UNSUPPORTED` |  | 
299 `newComVTableLayout` |  | `DWORD` | `EXTERNAL` |  | 
300 `PInvokeInline` |  | `STRING` | `EXTERNAL` |  | REGUTIL_default
301 `PreferComInsteadOfManagedRemoting` | When communicating with a cross app domain CCW, use COM instead of managed remoting. | `DWORD` | `EXTERNAL` | `0` | 
302
303 #### Interpreter Configuration Knobs
304
305 Name | Description | Type | Class | Default Value | Flags 
306 -----|-------------|------|-------|---------------|-------
307 `DumpInterpreterStubs` | Prints all interpreter stubs that are created to the console | `DWORD` | `INTERNAL` | `0` | 
308 `Interpret` | Selectively uses the interpreter to execute the specified methods | `STRING` | `INTERNAL` |  | REGUTIL_default
309 `InterpreterDoLoopMethods` | If set, don't check for loops, start by interpreting *all* methods | `DWORD` | `INTERNAL` | `0` | 
310 `InterpreterFallback` | Fallback to the interpreter when the JIT compiler fails | `DWORD` | `INTERNAL` | `0` | 
311 `InterpreterJITThreshold` | The number of times a method should be interpreted before being JITted | `DWORD` | `INTERNAL` | `10` | 
312 `InterpreterLogFile` | If non-null, append interpreter logging to this file, else use stdout | `STRING` | `INTERNAL` |  | REGUTIL_default
313 `InterpreterLooseRules` | If non-zero, allow ECMA spec violations required by managed C++. | `DWORD` | `INTERNAL` | `1` | REGUTIL_default
314 `InterpreterMethHashMax` | If non-zero, only interpret methods selected by 'Interpret' whose hash is at most this value | `DWORD` | `INTERNAL` | `UINT32_MAX` | 
315 `InterpreterMethHashMin` | Only interpret methods selected by 'Interpret' whose hash is at least this value. or after nth | `DWORD` | `INTERNAL` | `0` | 
316 `InterpreterPrintPostMortem` | Prints summary information about the execution to the console | `DWORD` | `INTERNAL` | `0` | 
317 `InterpreterStubMax` | If non-zero, only interpret methods selected by 'Interpret' whose stub number is at most this value. | `DWORD` | `INTERNAL` | `UINT32_MAX` | 
318 `InterpreterStubMin` | Only interpret methods selected by 'Interpret' whose stub num is at least this value. | `DWORD` | `INTERNAL` | `0` | 
319 `InterpreterUseCaching` | If non-zero, use the caching mechanism. | `DWORD` | `INTERNAL` | `1` | REGUTIL_default
320 `InterpretExclude` | Excludes the specified methods from the set selected by 'Interpret' | `STRING` | `INTERNAL` |  | REGUTIL_default
321 `TraceInterpreterEntries` | Logs entries to interpreted methods to the console | `DWORD` | `INTERNAL` | `0` | 
322 `TraceInterpreterIL` | Logs individual instructions of interpreted methods to the console | `DWORD` | `INTERNAL` | `0` | 
323 `TraceInterpreterJITTransition` | Logs when the interpreter determines a method should be JITted | `DWORD` | `INTERNAL` | `0` | 
324 `TraceInterpreterOstack` | Logs operand stack after each IL instruction of interpreted methods to the console | `DWORD` | `INTERNAL` | `0` | 
325 `TraceInterpreterVerbose` | Logs interpreter progress with detailed messages to the console | `DWORD` | `INTERNAL` | `0` | 
326
327 #### JIT Configuration Knobs
328
329 Name | Description | Type | Class | Default Value | Flags 
330 -----|-------------|------|-------|---------------|-------
331 `` |  | `STRING` | `JitMeasureNowayAssertFile` |  | 
332 `AltJit` | Enables AltJit and selectively limits it to the specified methods. | `STRING` | `EXTERNAL` |  | REGUTIL_default
333 `AltJitAssertOnNYI` | Controls the AltJit behavior of NYI stuff | `DWORD` | `INTERNAL` | `0` | 
334 `AltJitExcludeAssemblies` | Do not use AltJit on this semicolon-delimited list of assemblies. | `STRING` | `EXTERNAL` |  | REGUTIL_default
335 `AltJitLimit` | Max number of functions to use altjit for (decimal) | `DWORD` |  | `0` | 
336 `AltJitName` | Alternative Jit to use, will fall back to primary jit. | `STRING` | `EXTERNAL` |  | REGUTIL_default
337 `AltJitNgen` | Enables AltJit for NGEN and selectively limits it to the specified methods. | `STRING` | `INTERNAL` |  | REGUTIL_default
338 `AltJitSkipOnAssert` | If AltJit hits an assert, fall back to the fallback JIT. Useful in conjunction with COMPlus_ContinueOnAssert=1 | `DWORD` |  | `0` | 
339 `BreakOnDumpToken` | Breaks when using internal logging on a particular token value. | `DWORD` |  | `0xffffffff` | 
340 `DebugBreakOnVerificationFailure` | Halts the jit on verification failure | `DWORD` |  | `0` | 
341 `DumpJittedMethods` | Prints all jitted methods to the console | `DWORD` |  | `0` | 
342 `EnableAVX` | Enable AVX instruction set for wide operations as default | `DWORD` | `EXTERNAL` | `EXTERNAL_JitEnableAVX_Default` | REGUTIL_default
343 `FeatureSIMD` | Enable SIMD intrinsics recognition in System.Numerics.dll and/or System.Numerics.Vectors.dll | `DWORD` | `EXTERNAL` | `EXTERNAL_FeatureSIMD_Default` | REGUTIL_default
344 `InjectFault` |  | `DWORD` | `Should` | `0` | 
345 `InterpreterFallback` | Fallback to the interpreter when the JIT compiler fails | `DWORD` |  | `0` | 
346 `JitAggressiveInlining` | Aggressive inlining of all methods | `DWORD` |  | `0` | 
347 `JitAlignLoops` | Aligns loop targets to 8 byte boundaries | `DWORD` | `UNSUPPORTED` |  | 
348 `JitAssertOnMaxRAPasses` |  | `DWORD` |  | `0` | 
349 `JitBreak` | Stops in the importer when compiling a specified method | `SSV` |  |  | 
350 `JitBreakEmit` |  | `DWORD` | `INTERNAL` | `(DWORD)-1` | REGUTIL_default
351 `JitBreakEmitOutputInstr` |  | `DWORD` |  | `-1` | 
352 `JitBreakMorphTree` |  | `DWORD` |  | `0xffffffff` | 
353 `JitBreakOnBadCode` |  | `DWORD` |  | `0` | 
354 `JITBreakOnMinOpts` | Halt if jit switches to MinOpts | `DWORD` | `JitBreakOnMinOpts` | `0` | 
355 `JitBreakOnUnsafeCode` |  | `DWORD` |  | `0` | 
356 `JitCanUseSSE2` |  | `DWORD` |  | `-1` | 
357 `JitCloneLoops` | If 0, don't clone. Otherwise clone loops for optimizations. | `DWORD` |  | `1` | 
358 `JitComponentUnitTests` | Run JIT component unit tests | `DWORD` | `RunComponentUnitTests` | `0` | 
359 `JitDebugBreak` |  | `SSV` |  |  | 
360 `JitDebuggable` |  | `DWORD` | `INTERNAL` |  | 
361 `JitDebugLogLoopCloning` | In debug builds log places where loop cloning optimizations are performed on the fast path. | `DWORD` |  | `0` | 
362 `JitDefaultFill` | In debug builds, initialize the memory allocated by the nra with this byte. | `DWORD` |  | `0xdd` | 
363 `JitDiffableDasm` | Make the disassembly diff-able | `DWORD` | `DiffableDasm` | `0` | 
364 `JitDirectAlloc` |  | `DWORD` |  | `0` | 
365 `JitDisasm` | Dumps disassembly for specified method | `SSV` |  |  | 
366 `JitDoAssertionProp` | Perform assertion propagation optimization | `DWORD` |  | `1` | 
367 `JitDoCopyProp` | Perform copy propagation on variables that appear redundant | `DWORD` |  | `1` | 
368 `JitDoEarlyProp` | Perform Early Value Propagation | `DWORD` |  | `1` | 
369 `JitDoLoopHoisting` | Perform loop hoisting on loop invariant values | `DWORD` |  | `1` | 
370 `JitDoRangeAnalysis` | Perform range check analysis | `DWORD` |  | `1` | 
371 `JitDoSsa` | Perform Static Single Assignment (SSA) numbering on the variables | `DWORD` |  | `1` | 
372 `JitDoubleAlign` |  | `DWORD` |  | `1` | 
373 `JitDoValueNumber` | Perform value numbering on method expressions | `DWORD` |  | `1` | 
374 `JitDump` | Dumps trees for specified method | `SSV` |  |  | 
375 `JitDumpASCII` | Uses only ASCII characters in tree dumps | `DWORD` |  | `1` | 
376 `JitDumpBeforeAfterMorph` | If 1, display each tree before/after morphing | `DWORD` | `TreesBeforeAfterMorph` | `0` | 
377 `JitDumpFg` | Dumps Xml/Dot Flowgraph for specified method | `STRING` |  |  | 
378 `JitDumpFgDir` | Directory for Xml/Dot flowgraph dump(s) | `STRING` |  |  | 
379 `JitDumpFgDot` | Set to non-zero to emit Dot instead of Xml Flowgraph dump | `DWORD` |  | `0` | 
380 `JitDumpFgFile` | Filename for Xml/Dot flowgraph dump(s) | `STRING` |  |  | 
381 `JitDumpFgPhase` | Phase-based Xml/Dot flowgraph support. Set to the short name of a phase to see the flowgraph after that phase. Leave unset to dump after COLD-BLK (determine first cold block) or set to * for all phases | `STRING` |  |  | 
382 `JitDumpIR` | Dumps trees (in linear IR form) for specified method | `SSV` |  |  | 
383 `JitDumpIRFormat` | Comma separated format control for JitDumpIR, values = {types \| locals \| ssa \| valnums \| kinds \| flags \| nodes \| nolists \| nostmts \| noleafs \| trees \| dataflow} | `STRING` |  |  | 
384 `JitDumpIRPhase` | Phase control for JitDumpIR, values = {* \| phasename} | `STRING` |  |  | 
385 `JitDumpTerseLsra` | Produce terse dump output for LSRA | `DWORD` |  | `1` | 
386 `JitDumpToDebugger` | Output JitDump output to the debugger | `DWORD` |  | `0` | 
387 `JitDumpVerboseSsa` | Produce especially verbose dump output for SSA | `DWORD` |  | `0` | 
388 `JitDumpVerboseTrees` | Enable more verbose tree dumps | `DWORD` |  | `0` | 
389 `JitEECallTimingInfo` |  | `DWORD` |  | `0` | 
390 `JitEHDump` | Dump the EH table for the method, as reported to the VM | `SSV` |  |  | 
391 `JitELTHookEnabled` | On ARM, setting this will emit Enter/Leave/TailCall callbacks | `DWORD` | `INTERNAL` | `0` | 
392 `JitEmitPrintRefRegs` |  | `DWORD` |  | `0` | 
393 `JitEnableDevirtualization` | Enable devirtualization in importer | `DWORD` |  | `1` | 
394 `JitEnableFinallyCloning` |  | `DWORD` |  | `1` | 
395 `JitEnableLateDevirtualization` | Enable devirtualization after inlining | `DWORD` |  | `1` | 
396 `JitEnableNoWayAssert` |  | `DWORD` | `INTERNAL` | `INTERNAL_JitEnableNoWayAssert_Default` | REGUTIL_default
397 `JitEnablePCRelAddr` | Whether absolute addr be encoded as PC-rel offset by RyuJIT where possible | `DWORD` | `EnablePCRelAddr` | `1` | 
398 `JitEnableRemoveEmptyTry` |  | `DWORD` |  | `1` | 
399 `JitExclude` |  | `SSV` |  |  | 
400 `JitExpensiveDebugCheckLevel` | Level indicates how much checking beyond the default to do in debug builds (currently 1-2) | `DWORD` |  | `0` | 
401 `JitForceFallback` | Set to non-zero to test NOWAY assert by forcing a retry | `DWORD` |  | `0` | 
402 `JitForceProcedureSplitting` |  | `SSV` |  |  | 
403 `JitForceVer` |  | `DWORD` |  | `0` | 
404 `JitFramed` | Forces EBP frames | `DWORD` | `UNSUPPORTED` |  | 
405 `JitFullyInt` | Forces Fully interruptible code | `DWORD` |  | `0` | 
406 `JitFuncInfoLogFile` | If set, gather JIT function info and write to this file. | `STRING` | `INTERNAL` |  | 
407 `JitFunctionTrace` | If non-zero, print JIT start/end logging | `DWORD` |  | `0` | 
408 `JitGCChecks` |  | `DWORD` |  | `0` | 
409 `JitGCDump` |  | `SSV` |  |  | 
410 `JitGCInfoLogging` | If true, prints GCInfo-related output to standard output. | `DWORD` |  | `0` | 
411 `JitGCStress` | GC stress mode for jit | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
412 `JitHalt` | Emits break instruction into jitted code | `SSV` |  |  | 
413 `JitHashBreak` | Same as JitBreak, but for a method hash | `DWORD` |  | `-1` | 
414 `JitHashDump` | Same as JitDump, but for a method hash | `DWORD` |  | `-1` | 
415 `JitHashDumpIR` | Same as JitDumpIR, but for a method hash | `DWORD` |  | `-1` | 
416 `JitHashHalt` | Same as JitHalt, but for a method hash | `DWORD` |  | `-1` | 
417 `JitHeartbeat` |  | `DWORD` | `INTERNAL` | `0` | 
418 `JitHelperLogging` |  | `DWORD` | `INTERNAL` | `0` | 
419 `JitImportBreak` |  | `SSV` |  |  | 
420 `JitInclude` |  | `SSV` |  |  | 
421 `JitInlineAdditionalMultiplier` |  | `DWORD` |  | `0` | 
422 `JITInlineDepth` |  | `DWORD` | `JitInlineDepth` | `DEFAULT_MAX_INLINE_DEPTH` | 
423 `JitInlineDumpData` |  | `DWORD` |  | `0` | 
424 `JitInlineDumpXml` | 1 = full xml (+ failures in DEBUG) 2 = only methods with inlines (+ failures in DEBUG) 3 = only methods with inlines, no failures | `DWORD` |  | `0` | 
425 `JitInlineLimit` |  | `DWORD` |  | `-1` | 
426 `JitInlinePolicyDiscretionary` |  | `DWORD` |  | `0` | 
427 `JitInlinePolicyFull` |  | `DWORD` |  | `0` | 
428 `JitInlinePolicyModel` |  | `DWORD` |  | `0` | 
429 `JitInlinePolicyRandom` | nonzero enables; value is the external random seed | `DWORD` |  | `0` | 
430 `JitInlinePolicyReplay` |  | `DWORD` |  | `0` | 
431 `JitInlinePolicySize` |  | `DWORD` |  | `0` | 
432 `JitInlinePrintStats` |  | `DWORD` |  | `0` | 
433 `JitInlineReplayFile` |  | `STRING` |  |  | 
434 `JitInlineSIMDMultiplier` |  | `DWORD` |  | `3` | 
435 `JITInlineSize` |  | `DWORD` | `JitInlineSize` | `DEFAULT_MAX_INLINE_SIZE` | 
436 `JitLargeBranches` | Force using the largest conditional branch format | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
437 `JitLateDisasm` |  | `SSV` |  |  | 
438 `JITLateDisasmTo` |  | `STRING` | `JitLateDisasmTo` |  | 
439 `JitLockWrite` | Force all volatile writes to be 'locked' | `DWORD` | `INTERNAL` | `0` | 
440 `JitLongAddress` | Force using the large pseudo instruction form for long address | `DWORD` |  | `0` | 
441 `JitLoopHoistStats` | Display JIT loop hoisting statistics | `DWORD` | `DisplayLoopHoistStats` | `0` | 
442 `JitLsraStats` | Display JIT Linear Scan Register Allocator statistics | `DWORD` | `DisplayLsraStats` | `0` | 
443 `JITMaxTempAssert` |  | `DWORD` | `JitMaxTempAssert` | `1` | 
444 `JitMaxUncheckedOffset` |  | `DWORD` |  | `8` | 
445 `JitMeasureIR` | If set, measure the IR size after some phases and report it in the time log. | `DWORD` |  | `0` | 
446 `JitMeasureNowayAssert` | Set to 1 to measure noway_assert usage. Only valid if MEASURE_NOWAY is defined. | `DWORD` |  | `0` | 
447 `JitMemStats` | Display JIT memory usage statistics | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
448 `JITMinOpts` | Forces MinOpts | `DWORD` | `UNSUPPORTED` |  | 
449 `JITMinOptsBbCount` | Internal jit control of MinOpts | `DWORD` | `JitMinOptsBbCount` | `DEFAULT_MIN_OPTS_BB_COUNT` | 
450 `JITMinOptsCodeSize` | Internal jit control of MinOpts | `DWORD` | `JitMinOptsCodeSize` | `DEFAULT_MIN_OPTS_CODE_SIZE` | 
451 `JITMinOptsInstrCount` | Internal jit control of MinOpts | `DWORD` | `JitMinOptsInstrCount` | `DEFAULT_MIN_OPTS_INSTR_COUNT` | 
452 `JITMinOptsLvNumcount` | Internal jit control of MinOpts | `DWORD` | `JitMinOptsLvNumCount` | `DEFAULT_MIN_OPTS_LV_NUM_COUNT` | 
453 `JITMinOptsLvRefcount` | Internal jit control of MinOpts | `DWORD` | `JitMinOptsLvRefCount` | `DEFAULT_MIN_OPTS_LV_REF_COUNT` | 
454 `JITMinOptsName` | Forces MinOpts for a named function | `SSV` | `JitMinOptsName` |  | 
455 `JitMinOptsTrackGCrefs` | Track GC roots | `DWORD` |  | `JitMinOptsTrackGCrefs_Default` | 
456 `JitName` | Primary Jit to use | `STRING` | `EXTERNAL` |  | 
457 `JitNoCMOV` |  | `DWORD` |  | `0` | 
458 `JitNoCSE` |  | `DWORD` |  | `0` | 
459 `JitNoCSE2` |  | `DWORD` |  | `0` | 
460 `JitNoForceFallback` | Set to non-zero to prevent NOWAY assert testing. Overrides COMPlus_JitForceFallback and JIT stress flags. | `DWORD` |  | `0` | 
461 `JitNoHoist` |  | `DWORD` |  | `0` | 
462 `JitNoInline` | Disables inlining of all methods | `DWORD` |  | `0` | 
463 `JitNoInlineRange` |  | `STRING` |  |  | 
464 `JitNoMemoryBarriers` | If 1, don't generate memory barriers | `DWORD` |  | `0` | 
465 `JitNoProcedureSplitting` | Disallow procedure splitting for specified methods | `SSV` |  |  | 
466 `JitNoProcedureSplittingEH` | Disallow procedure splitting for specified methods if they contain exception handling | `SSV` |  |  | 
467 `JitNoRegLoc` |  | `DWORD` |  | `0` | 
468 `JitNoRngChks` | If 1, don't generate range checks | `DWORD` | `JitNoRangeChks` | `0` | 
469 `JitNoStructPromotion` | Disables struct promotion in Jit32 | `DWORD` |  | `0` | 
470 `JitNoUnroll` |  | `DWORD` |  | `0` | 
471 `JitOptimizeType` |  | `DWORD` | `EXTERNAL` |  | 
472 `JitOptRepeat` | Runs optimizer multiple times on the method | `SSV` |  |  | 
473 `JitOptRepeatCount` | Number of times to repeat opts when repeating | `DWORD` |  | `2` | 
474 `JitOrder` |  | `DWORD` |  | `0` | 
475 `JITPInvokeCheckEnabled` |  | `DWORD` | `JitPInvokeCheckEnabled` | `0` | 
476 `JITPInvokeEnabled` |  | `DWORD` | `JitPInvokeEnabled` | `1` | 
477 `JitPrintDevirtualizedMethods` |  | `DWORD` |  | `0` | 
478 `JitPrintInlinedMethods` |  | `DWORD` | `EXTERNAL` | `0` | REGUTIL_default
479 `JitRange` |  | `STRING` |  |  | 
480 `JitRegisterFP` | Control FP enregistration | `DWORD` | `EXTERNAL` | `3` | REGUTIL_default
481 `JitReportFastTailCallDecisions` |  | `DWORD` |  | `0` | 
482 `JITRequired` |  | `DWORD` | `JitRequired` | `-1` | 
483 `JITRoundFloat` |  | `DWORD` | `JitRoundFloat` | `DEFAULT_ROUND_LEVEL` | 
484 `JitSkipArrayBoundCheck` |  | `DWORD` |  | `0` | 
485 `JitSlowDebugChecksEnabled` | Turn on slow debug checks | `DWORD` |  | `1` | 
486 `JitSplitFunctionSize` | On ARM, use this as the maximum function/funclet size for creating function fragments (and creating multiple RUNTIME_FUNCTION entries) | `DWORD` |  | `0` | 
487 `JitSsaStress` | Perturb order of processing of blocks in SSA; 0 = no stress; 1 = use method hash; * = supplied value as random hash | `DWORD` |  | `0` | 
488 `JitStackAllocToLocalSize` |  | `DWORD` |  | `DEFAULT_MAX_LOCALLOC_TO_LOCAL_SIZE` | 
489 `JitStackChecks` |  | `DWORD` |  | `0` | 
490 `JitStackProbes` |  | `DWORD` | `StackProbesOverride` | `0` | 
491 `JitStress` | Internal Jit stress mode: 0 = no stress, 2 = all stress, other = vary stress based on a hash of the method and this value | `DWORD` |  | `0` | 
492 `JitStressBBProf` | Internal Jit stress mode | `DWORD` |  | `0` | 
493 `JitStressBiasedCSE` | Internal Jit stress mode: decimal bias value between (0,100) to perform CSE on a candidate. 100% = All CSEs. 0% = 0 CSE. (> 100) means no stress. | `DWORD` |  | `0x101` | 
494 `JitStressFP` | Internal Jit stress mode | `DWORD` |  | `0` | 
495 `JitStressModeNames` | Internal Jit stress mode: stress using the given set of stress mode names, e.g. STRESS_REGS, STRESS_TAILCALL | `STRING` |  |  | 
496 `JitStressModeNamesNot` | Internal Jit stress mode: do NOT stress using the given set of stress mode names, e.g. STRESS_REGS, STRESS_TAILCALL | `STRING` |  |  | 
497 `JitStressModeNamesOnly` | Internal Jit stress: if nonzero, only enable stress modes listed in JitStressModeNames | `DWORD` |  | `0` | 
498 `JitStressOnly` | Internal Jit stress mode: stress only the specified method(s) | `SSV` |  |  | 
499 `JitStressRange` | Internal Jit stress mode | `STRING` |  |  | 
500 `JitStressRegs` |  | `DWORD` |  | `0` | 
501 `JitStrictCheckForNonVirtualCallToVirtualMethod` |  | `DWORD` |  | `1` | 
502 `JitTelemetry` | If non-zero, gather JIT telemetry data | `DWORD` | `EXTERNAL` | `1` | 
503 `JitTimeLogCsv` | If set, gather JIT throughput data and write to a CSV file. This mode must be used in internal retail builds. | `STRING` | `INTERNAL` |  | 
504 `JitTimeLogFile` | If set, gather JIT throughput data and write to this file. | `STRING` | `INTERNAL` |  | 
505 `JitUnwindDump` | Dump the unwind codes for the method | `SSV` |  |  | 
506 `JitVerificationDisable` |  | `DWORD` | `INTERNAL` |  | 
507 `JitVNMapSelBudget` | Max # of MapSelect's considered for a particular top-level invocation. | `DWORD` | `INTERNAL` | `100` | 
508 `JitVNMapSelLimit` | If non-zero, assert if # of VNF_MapSelect applications considered reaches this | `DWORD` |  | `0` | 
509 `MultiCoreJitProfile` | If set, use the file to store/control multi-core JIT. | `STRING` | `INTERNAL` |  | 
510 `MultiCoreJitProfileWriteDelay` | Set the delay after which the multi-core JIT profile will be written to disk. | `DWORD` | `INTERNAL` | `12` | 
511 `NetFx40_PInvokeStackResilience` | Makes P/Invoke resilient against mismatched signature and calling convention (significant perf penalty). | `DWORD` | `EXTERNAL` | `(DWORD)-1` | 
512 `NgenHashDump` | same as JitHashDump, but for ngen | `DWORD` |  | `-1` | 
513 `NgenHashDumpIR` | same as JitHashDumpIR, but for ngen | `DWORD` |  | `-1` | 
514 `NgenOrder` |  | `DWORD` |  | `0` | 
515 `RunAltJitCode` | If non-zero, and the compilation succeeds for an AltJit, then use the code. If zero, then we always throw away the generated code and fall back to the default compiler. | `DWORD` |  | `1` | 
516 `SIMD16ByteOnly` | Limit maximum SIMD vector length to 16 bytes (used by x64_arm64_altjit) | `DWORD` | `INTERNAL` | `0` | 
517 `StackSamplingAfter` | When to start sampling (for some sort of app steady state), i.e., initial delay for sampling start in milliseconds. | `DWORD` | `UNSUPPORTED` | `0` | 
518 `StackSamplingEnabled` | Is stack sampling based tracking of evolving hot methods enabled. | `DWORD` | `UNSUPPORTED` | `0` | 
519 `StackSamplingEvery` | How frequent should thread stacks be sampled in milliseconds. | `DWORD` | `UNSUPPORTED` | `100` | 
520 `StackSamplingNumMethods` | Number of evolving methods to track as hot and JIT them in the background at a given point of execution. | `DWORD` | `UNSUPPORTED` | `32` | 
521 `StressCOMCall` |  | `DWORD` |  | `0` | 
522 `TailCallLoopOpt` | Convert recursive tail calls to loops | `DWORD` | `EXTERNAL` | `1` | 
523 `TailCallMax` |  | `STRING` | `INTERNAL` |  | REGUTIL_default
524 `TailCallOpt` |  | `STRING` | `EXTERNAL` |  | REGUTIL_default
525 `TailcallStress` |  | `DWORD` |  | `0` | 
526
527 #### JIT Hardware Intrinsics Configuration Knobs
528
529 Name | Description | Type | Class | Default Value | Flags 
530 -----|-------------|------|-------|---------------|-------
531 `EnableAES` | Enable AES | `DWORD` |  | `1` | 
532 `EnableAVX` |  | `DWORD` |  | `1` | 
533 `EnableAVX2` | Enable AVX2 | `DWORD` |  | `1` | 
534 `EnableBMI1` | Enable BMI1 | `DWORD` |  | `1` | 
535 `EnableBMI2` | Enable BMI2 | `DWORD` |  | `1` | 
536 `EnableFMA` | Enable FMA | `DWORD` |  | `1` | 
537 `EnableIncompleteISAClass` | Enable testing not-yet-implemented intrinsic classes | `DWORD` |  | `0` | 
538 `EnableLZCNT` | Enable AES | `DWORD` |  | `1` | 
539 `EnablePCLMULQDQ` | Enable PCLMULQDQ | `DWORD` |  | `1` | 
540 `EnablePOPCNT` | Enable POPCNT | `DWORD` |  | `1` | 
541 `EnableSSE` | Enable SSE | `DWORD` |  | `1` | 
542 `EnableSSE2` | Enable SSE2 | `DWORD` |  | `1` | 
543 `EnableSSE3` | Enable SSE3 | `DWORD` |  | `1` | 
544 `EnableSSE3_4` | Enable SSE3, SSSE3, SSE 4.1 and 4.2 instruction set as default | `DWORD` |  | `1` | 
545 `EnableSSE41` | Enable SSE41 | `DWORD` |  | `1` | 
546 `EnableSSE42` | Enable SSE42 EnableAVX is already defined for DEBUG and non-DEBUG mode both | `DWORD` |  | `1` | 
547 `EnableSSSE3` | Enable SSSE3 | `DWORD` |  | `1` | 
548
549 #### Jit Pitching Configuration Knobs
550
551 Name | Description | Type | Class | Default Value | Flags 
552 -----|-------------|------|-------|---------------|-------
553 `JitPitchEnabled` | Set it to 1 to enable Jit Pitching | `DWORD` | `INTERNAL` | `(DWORD)0` | 
554 `JitPitchMaxVal` | Do Jit Pitching the value of the inner counter less then this value (for debuggin purpose only) | `DWORD` | `INTERNAL` | `(DWORD)0xffffffff` | 
555 `JitPitchMemThreshold` | Do Jit Pitching when code heap usage is larger than this (in bytes) | `DWORD` | `INTERNAL` | `(DWORD)0` | 
556 `JitPitchMethodSizeThreshold` | Do Jit Pitching for methods whose native code size larger than this (in bytes) | `DWORD` | `INTERNAL` | `(DWORD)0` | 
557 `JitPitchMinVal` | Do Jit Pitching if the value of the inner counter greater than this value (for debugging purpose only) | `DWORD` | `INTERNAL` | `(DWORD)0` | 
558 `JitPitchPrintStat` | Print statistics about Jit Pitching | `DWORD` | `INTERNAL` | `(DWORD)0` | 
559 `JitPitchTimeInterval` | Time interval between Jit Pitchings in ms | `DWORD` | `INTERNAL` | `(DWORD)0` | 
560
561 #### Loader Configuration Knobs
562
563 Name | Description | Type | Class | Default Value | Flags 
564 -----|-------------|------|-------|---------------|-------
565 `APIThreadStress` | Used to test Loader for race conditions | `DWORD` | `INTERNAL` |  | 
566 `CoreClrBinderLog` | Debug flag that enabled detailed log for new binder (similar to stress logging). | `STRING` | `INTERNAL` |  | 
567 `DisableFXClosureWalk` | Disable full closure walks even in the presence of FX binding redirects | `DWORD` | `INTERNAL` | `0` | 
568 `DisableIJWVersionCheck` | Don't perform the new version check that prevents unsupported IJW in-proc SxS. | `DWORD` | `EXTERNAL` | `0` | 
569 `EnableFastBindClosure` | If set to >0 the binder uses CFastAssemblyBindingClosure instances | `DWORD` | `UNSUPPORTED` | `0` | 
570 `ForceLog` | Fusion flag to enforce assembly binding log. Heavily used and documented in MSDN and BLOGS. | `DWORD` | `EXTERNAL` |  | 
571 `LoaderOptimization` | Controls code sharing behavior | `DWORD` | `EXTERNAL` |  | 
572 `TagAssemblyNames` | Enable CAssemblyName::_tag field for more convenient debugging. | `DWORD` | `INTERNAL` | `0` | 
573 `WinMDPath` | Path for Windows WinMD files | `STRING` | `INTERNAL` |  | 
574
575 #### Loader heap Configuration Knobs
576
577 Name | Description | Type | Class | Default Value | Flags 
578 -----|-------------|------|-------|---------------|-------
579 `BreakOnOutOfMemoryWithinRange` | Break before out of memory within range exception is thrown | `DWORD` | `INTERNAL` | `0` | 
580 `CodeHeapReserveForJumpStubs` | Percentage of code heap to reserve for jump stubs | `DWORD` | `INTERNAL` | `1` | 
581 `LoaderHeapCallTracing` | Loader heap troubleshooting | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
582 `NGenReserveForJumpStubs` | Percentage of ngen image size to reserve for jump stubs | `DWORD` | `INTERNAL` | `0` | 
583
584 #### Log Configuration Knobs
585
586 Name | Description | Type | Class | Default Value | Flags 
587 -----|-------------|------|-------|---------------|-------
588 `LogEnable` | Turns on the traditional CLR log. | `DWORD` | `INTERNAL` |  | 
589 `LogFacility` | Specifies a facility mask for CLR log. (See 'loglf.h'; VM interprets string value as hex number.) Also used by stresslog. | `DWORD` | `INTERNAL` |  | 
590 `LogFacility2` | Specifies a facility mask for CLR log. (See 'loglf.h'; VM interprets string value as hex number.) Also used by stresslog. | `DWORD` | `INTERNAL` |  | 
591 `logFatalError` | Specifies whether EventReporter logs fatal errors in the Windows event log. | `DWORD` | `EXTERNAL` | `1` | 
592 `LogFile` | Specifies a file name for the CLR log. | `STRING` | `INTERNAL` |  | REGUTIL_default
593 `LogFileAppend` | Specifies whether to append to or replace the CLR log file. | `DWORD` | `INTERNAL` |  | 
594 `LogFlushFile` | Specifies whether to flush the CLR log file on each write. | `DWORD` | `INTERNAL` |  | 
595 `LogLevel` | 4=10 msgs, 9=1000000, 10=everything | `DWORD` | `EXTERNAL` |  | 
596 `LogPath` | ?Fusion debug log path. | `STRING` | `INTERNAL` |  | 
597 `LogToConsole` | Writes the CLR log to console. | `DWORD` | `INTERNAL` |  | 
598 `LogToDebugger` | Writes the CLR log to debugger (OutputDebugStringA). | `DWORD` | `INTERNAL` |  | 
599 `LogToFile` | Writes the CLR log to a file. | `DWORD` | `INTERNAL` |  | 
600 `LogWithPid` | Appends pid to filename for the CLR log. | `DWORD` | `INTERNAL` |  | 
601
602 #### MetaData Configuration Knobs
603
604 Name | Description | Type | Class | Default Value | Flags 
605 -----|-------------|------|-------|---------------|-------
606 `AssertOnBadImageFormat` | ASSERT when invalid MD read | `DWORD` | `INTERNAL` |  | 
607 `MD_ApplyDeltaBreak` | ASSERT when applying EnC | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
608 `MD_DeltaCheck` | Some checks of GUID when applying EnC (?) | `DWORD` | `INTERNAL` | `1` | REGUTIL_default
609 `MD_EncDelta` | Forces EnC Delta format in MD (?) | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
610 `MD_ForceNoColDesSharing` | Don't know - the only usage I could find is #if 0 (?) | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
611 `MD_KeepKnownCA` | Something with known CAs (?) | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
612 `MD_MiniMDBreak` | ASSERT when creating CMiniMdRw class | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
613 `MD_PreSaveBreak` | ASSERT when calling CMiniMdRw::PreSave | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
614 `MD_PreserveDebuggerMetadataMemory` | Save all versions of metadata memory in the debugger when debuggee metadata is updated | `DWORD` | `EXTERNAL` | `0` | REGUTIL_default
615 `MD_RegMetaBreak` | ASSERT when creating RegMeta class | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
616 `MD_RegMetaDump` | Dump MD in 4 functions (?) | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
617 `MD_WinMD_AssertOnIllegalUsage` | ASSERT if a WinMD import adapter detects a tool incompatibility | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
618 `MD_WinMD_Disable` | Never activate the WinMD import adapter | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
619
620 #### Native Binder Configuration Knobs
621
622 Name | Description | Type | Class | Default Value | Flags 
623 -----|-------------|------|-------|---------------|-------
624 `NgenBind_ZapForbid` | Assert if an assembly succeeds in binding to a native image | `DWORD` | `INTERNAL` | `0` | 
625 `NgenBind_ZapForbidExcludeList` |  | `STRING` | `INTERNAL` |  | 
626 `NgenBind_ZapForbidList` |  | `STRING` | `INTERNAL` |  | 
627 `SymDiffDump` | Used to create the map file while binding the assembly. Used by SemanticDiffer | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
628
629 #### NGEN Configuration Knobs
630
631 Name | Description | Type | Class | Default Value | Flags 
632 -----|-------------|------|-------|---------------|-------
633 `CrossGenAssumeInputSigned` | CrossGen should assume that its input assemblies will be signed before deployment | `DWORD` | `INTERNAL` | `1` | 
634 `EnableHardbinding` | Enables the use of hardbinding | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
635 `HardPrejitEnabled` |  | `DWORD` | `EXTERNAL` |  | 
636 `NGen_JitName` |  | `STRING` | `EXTERNAL` |  | REGUTIL_default
637 `NgenAllowMscorlibSoftbind` | Disable forced hard-binding to mscorlib | `DWORD` | `INTERNAL` | `0` | 
638 `NgenDisasm` | Same as JitDisasm, but for ngen | `SSV` |  |  | 
639 `NgenDump` | Same as JitDump, but for ngen | `SSV` |  |  | 
640 `NgenDumpFg` | Ngen Xml Flowgraph support | `STRING` |  |  | 
641 `NgenDumpFgDir` | Ngen Xml Flowgraph support | `STRING` |  |  | 
642 `NgenDumpFgFile` | Ngen Xml Flowgraph support | `STRING` |  |  | 
643 `NgenDumpIR` | Same as JitDumpIR, but for ngen | `SSV` |  |  | 
644 `NgenDumpIRFormat` | Same as JitDumpIRFormat, but for ngen | `STRING` |  |  | 
645 `NgenDumpIRPhase` | Same as JitDumpIRPhase, but for ngen | `STRING` |  |  | 
646 `NgenEHDump` | Dump the EH table for the method, as reported to the VM | `SSV` |  |  | 
647 `NGenEnableCreatePdb` | If set to >0 ngen.exe displays help on, recognizes createpdb in the command line | `DWORD` | `UNSUPPORTED` | `0` | 
648 `NgenForceFailureCount` | If set to >0 and we have IBC data we will force a failure after we reference an IBC data item <value> times | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
649 `NgenForceFailureKind` | If set to 1, We will throw a TypeLoad exception; If set to 2, We will cause an A/V | `DWORD` | `INTERNAL` | `1` | REGUTIL_default
650 `NgenForceFailureMask` | Bitmask used to control which locations will check and raise the failure (defaults to bits: -1) | `DWORD` | `INTERNAL` | `-1` | REGUTIL_default
651 `NGenFramed` | Same as JitFramed, but for ngen | `DWORD` | `UNSUPPORTED` | `-1` | REGUTIL_default
652 `NgenGCDump` |  | `SSV` |  |  | 
653 `NGenOnlyOneMethod` |  | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
654 `NgenOrder` |  | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
655 `NGenSimulateDiskFull` | If set to 1, ngen will throw a Disk full exception in ZapWriter.cpp:Save() | `DWORD` | `INTERNAL` | `0` | 
656 `NgenUnwindDump` | Dump the unwind codes for the method | `SSV` |  |  | 
657 `NoASLRForNgen` | Turn off IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE bit in generated ngen images. Makes nidump output repeatable from run to run. | `DWORD` | `INTERNAL` | `0` | 
658 `PartialNGen` | Generate partial NGen images | `DWORD` | `INTERNAL` | `-1` | 
659 `partialNGenStress` |  | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
660 `ZapDoNothing` |  | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
661
662 #### Performance Configuration Knobs
663
664 Name | Description | Type | Class | Default Value | Flags 
665 -----|-------------|------|-------|---------------|-------
666 `performanceScenario` | Activates a set of workload-specific default values for performance settings | `STRING` | `EXTERNAL` |  | 
667
668 #### Profiling API / ETW Configuration Knobs
669
670 Name | Description | Type | Class | Default Value | Flags 
671 -----|-------------|------|-------|---------------|-------
672 `AttachThreadAlwaysOn` | Forces profapi attach thread to be created on startup, instead of on-demand. | `DWORD` | `EXTERNAL` |  | 
673 `COR_ENABLE_PROFILING` | Flag to indicate whether profiling should be enabled for the currently running process. | `DWORD` | `EXTERNAL` | `0` | DontPrependCOMPlus_ \| IgnoreConfigFiles
674 `COR_PROFILER` | Specifies GUID of profiler to load into currently running process | `STRING` | `EXTERNAL` |  | DontPrependCOMPlus_
675 `COR_PROFILER_PATH` | Specifies the path to the DLL of profiler to load into currently running process | `STRING` | `EXTERNAL` |  | DontPrependCOMPlus_
676 `COR_PROFILER_PATH_32` | Specifies the path to the DLL of profiler to load into currently running 32 bits process | `STRING` | `EXTERNAL` |  | DontPrependCOMPlus_
677 `COR_PROFILER_PATH_64` | Specifies the path to the DLL of profiler to load into currently running 64 bits process | `STRING` | `EXTERNAL` |  | DontPrependCOMPlus_
678 `CORECLR_ENABLE_PROFILING` | CoreCLR only: Flag to indicate whether profiling should be enabled for the currently running process. | `DWORD` | `EXTERNAL` | `0` | DontPrependCOMPlus_ \| IgnoreConfigFiles
679 `CORECLR_PROFILER` | CoreCLR only: Specifies GUID of profiler to load into currently running process | `STRING` | `EXTERNAL` |  | DontPrependCOMPlus_
680 `CORECLR_PROFILER_PATH` | CoreCLR only: Specifies the path to the DLL of profiler to load into currently running process | `STRING` | `EXTERNAL` |  | DontPrependCOMPlus_
681 `CORECLR_PROFILER_PATH_32` | CoreCLR only: Specifies the path to the DLL of profiler to load into currently running 32 process | `STRING` | `EXTERNAL` |  | DontPrependCOMPlus_
682 `CORECLR_PROFILER_PATH_64` | CoreCLR only: Specifies the path to the DLL of profiler to load into currently running 64 process | `STRING` | `EXTERNAL` |  | DontPrependCOMPlus_
683 `ETW_ObjectAllocationEventsPerTypePerSec` | Desired number of GCSampledObjectAllocation ETW events to be logged per type per second.  If 0, then the default built in to the implementation for the enabled event (e.g., High, Low), will be used. | `STRING` | `UNSUPPORTED` |  | REGUTIL_default
684 `ETWEnabled` | This flag is used on OSes < Vista to enable/disable ETW. It is disabled by default | `DWORD` | `EXTERNAL` | `0` | REGUTIL_default
685 `MsBetweenAttachCheck` |  | `DWORD` | `EXTERNAL` | `500` | 
686 `PerfMapEnabled` | This flag is used on Linux to enable writing /tmp/perf-$pid.map. It is disabled by default | `DWORD` | `EXTERNAL` | `0` | REGUTIL_default
687 `PerfMapIgnoreSignal` | When perf map is enabled, this option will configure the specified signal to be accepted and ignored as a marker in the perf logs.  It is disabled by default | `DWORD` | `EXTERNAL` | `0` | REGUTIL_default
688 `ProfAPI_AttachProfilerMinTimeoutInMs` | Timeout in ms for the minimum time out value of AttachProfiler | `DWORD` | `EXTERNAL` | `10*1000` | 
689 `ProfAPI_DetachMaxSleepMs` | The maximum time, in milliseconds, the CLR will wait before checking whether a profiler that is in the process of detaching is ready to be unloaded. | `DWORD` | `EXTERNAL` | `0` | 
690 `ProfAPI_DetachMinSleepMs` | The minimum time, in milliseconds, the CLR will wait before checking whether a profiler that is in the process of detaching is ready to be unloaded. | `DWORD` | `EXTERNAL` | `0` | 
691 `ProfAPI_EnableRejitDiagnostics` | Enable extra dumping to stdout of rejit structures | `DWORD` | `INTERNAL` | `0` | 
692 `ProfAPI_ProfilerCompatibilitySetting` | Specifies the profiler loading policy (the default is not to load a V2 profiler in V4) | `STRING` | `EXTERNAL` |  | REGUTIL_default \| TrimWhiteSpaceFromStringValue
693 `ProfAPI_TestOnlyEnableICorProfilerInfo` | Test-only flag to allow attaching profiler tests to call ICorProfilerInfo interface, which would otherwise be disallowed for attaching profilers | `DWORD` | `INTERNAL` | `0` | 
694 `ProfAPI_ValidateNGENInstrumentation` | This flag enables additional validations when using the IMetaDataEmit APIs for NGEN'ed images to ensure only supported edits are made. | `DWORD` | `UNSUPPORTED` | `0` | 
695 `ProfAPIFault` | Test-only bitmask to inject various types of faults in the profapi code | `DWORD` | `INTERNAL` | `0` | 
696 `ProfAPIMaxWaitForTriggerMs` | Timeout in ms for profilee to wait for each blocking operation performed by trigger app. | `DWORD` | `EXTERNAL` | `5*60*1000` | 
697 `StartupDelayMS` |  | `STRING` | `EXTERNAL` |  | 
698 `TestOnlyAllowedEventMask` | Test-only bitmask to allow profiler tests to override CLR enforcement of COR_PRF_ALLOWABLE_AFTER_ATTACH and COR_PRF_MONITOR_IMMUTABLE | `DWORD` | `INTERNAL` | `0` | 
699 `TestOnlyEnableObjectAllocatedHook` | Test-only flag that forces CLR to initialize on startup as if ObjectAllocated callback were requested, to enable post-attach ObjectAllocated functionality. | `DWORD` | `INTERNAL` | `0` | 
700 `TestOnlyEnableSlowELTHooks` | Test-only flag that forces CLR to initialize on startup as if slow-ELT were requested, to enable post-attach ELT functionality. | `DWORD` | `INTERNAL` | `0` | 
701
702 #### Spinning heuristics Configuration Knobs
703
704 Name | Description | Type | Class | Default Value | Flags 
705 -----|-------------|------|-------|---------------|-------
706 `Monitor_SpinCount` | Hex value specifying the maximum number of spin iterations Monitor may perform upon contention on acquiring the lock before waiting. | `DWORD` | `INTERNAL` | `0x1e` | EEConfig_default
707 `SpinBackoffFactor` | Hex value specifying the growth of each successive spin duration | `DWORD` | `EXTERNAL` | `0x3` | EEConfig_default
708 `SpinInitialDuration` | Hex value specifying the first spin duration | `DWORD` | `EXTERNAL` | `0x32` | EEConfig_default
709 `SpinLimitConstant` | Hex value specifying the constant to add when calculating the maximum spin duration | `DWORD` | `EXTERNAL` | `0x0` | EEConfig_default
710 `SpinLimitProcCap` | Hex value specifying the largest value of NumProcs to use when calculating the maximum spin duration | `DWORD` | `EXTERNAL` | `0xFFFFFFFF` | EEConfig_default
711 `SpinLimitProcFactor` | Hex value specifying the multiplier on NumProcs to use when calculating the maximum spin duration | `DWORD` | `EXTERNAL` | `0x4E20` | EEConfig_default
712 `SpinRetryCount` | Hex value specifying the number of times the entire spin process is repeated (when applicable) | `DWORD` | `EXTERNAL` | `0xA` | EEConfig_default
713
714 #### Stress Configuration Knobs
715
716 Name | Description | Type | Class | Default Value | Flags 
717 -----|-------------|------|-------|---------------|-------
718 `ForceEnc` | Forces Edit and Continue to be on for all eligible modules. | `DWORD` | `UNSUPPORTED` |  | 
719 `StressCOMCall` |  | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
720 `StressLog` | Turns on the stress log. | `DWORD` | `UNSUPPORTED` |  | 
721 `StressLogSize` | Stress log size in bytes per thread. | `DWORD` | `UNSUPPORTED` |  | 
722 `StressOn` | Enables the STRESS_ASSERT macro that stops runtime quickly (to prevent the clr state from changing significantly before breaking) | `DWORD` | `INTERNAL` |  | 
723 `stressSynchronized` | Unknown if or where this is used; unless a test is specifically depending on this, it can be removed. | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
724 `StressThreadCount` |  | `DWORD` | `EXTERNAL` |  | 
725
726 #### Thread (miscellaneous) Configuration Knobs
727
728 Name | Description | Type | Class | Default Value | Flags 
729 -----|-------------|------|-------|---------------|-------
730 `Thread_DeadThreadCountThresholdForGCTrigger` | In the heuristics to clean up dead threads, this threshold must be reached before triggering a GC will be considered. Set to 0 to disable triggering a GC based on dead threads. | `DWORD` | `INTERNAL` | `75` | 
731 `Thread_DeadThreadGCTriggerPeriodMilliseconds` | In the heuristics to clean up dead threads, this much time must have elapsed since the previous max-generation GC before triggering another GC will be considered | `DWORD` | `INTERNAL` | `1000 * 60 * 30` | 
732
733 #### Thread Suspend Configuration Knobs
734
735 Name | Description | Type | Class | Default Value | Flags 
736 -----|-------------|------|-------|---------------|-------
737 `DiagnosticSuspend` |  | `DWORD` | `INTERNAL` | `0` | 
738 `SuspendDeadlockTimeout` |  | `DWORD` | `INTERNAL` | `40000` | 
739 `SuspendThreadDeadlockTimeoutMs` |  | `DWORD` | `INTERNAL` | `2000` | 
740 `ThreadSuspendInjection` | Specifies whether to inject activations for thread suspension on Unix | `DWORD` | `INTERNAL` | `1` | 
741
742 #### Threadpool Configuration Knobs
743
744 Name | Description | Type | Class | Default Value | Flags 
745 -----|-------------|------|-------|---------------|-------
746 `HillClimbing_Bias` | The 'cost' of a thread.  0 means drive for increased throughput regardless of thread count; higher values bias more against higher thread counts. | `DWORD` | `INTERNAL` | `15` | 
747 `HillClimbing_Disable` | Disables hill climbing for thread adjustments in the thread pool | `DWORD` | `INTERNAL` | `0` | 
748 `HillClimbing_ErrorSmoothingFactor` |  | `DWORD` | `INTERNAL` | `1` | 
749 `HillClimbing_GainExponent` | The exponent to apply to the gain, times 100.  100 means to use linear gain, higher values will enhance large moves and damp small ones. | `DWORD` | `INTERNAL` | `200` | 
750 `HillClimbing_MaxChangePerSample` |  | `DWORD` | `INTERNAL` | `20` | 
751 `HillClimbing_MaxChangePerSecond` |  | `DWORD` | `INTERNAL` | `4` | 
752 `HillClimbing_MaxSampleErrorPercent` |  | `DWORD` | `INTERNAL` | `15` | 
753 `HillClimbing_MaxWaveMagnitude` |  | `DWORD` | `INTERNAL` | `20` | 
754 `HillClimbing_SampleIntervalHigh` |  | `DWORD` | `INTERNAL` | `200` | 
755 `HillClimbing_SampleIntervalLow` |  | `DWORD` | `INTERNAL` | `10` | 
756 `HillClimbing_TargetSignalToNoiseRatio` |  | `DWORD` | `INTERNAL` | `300` | 
757 `HillClimbing_WaveHistorySize` |  | `DWORD` | `INTERNAL` | `8` | 
758 `HillClimbing_WaveMagnitudeMultiplier` |  | `DWORD` | `INTERNAL` | `100` | 
759 `HillClimbing_WavePeriod` |  | `DWORD` | `INTERNAL` | `4` | 
760 `Thread_UseAllCpuGroups` | Specifies if to automatically distribute thread across CPU Groups | `DWORD` | `EXTERNAL` | `0` | 
761 `ThreadPool_DebugBreakOnWorkerStarvation` | Breaks into the debugger if the ThreadPool detects work queue starvation | `DWORD` | `INTERNAL` | `0` | 
762 `ThreadPool_DisableStarvationDetection` | Disables the ThreadPool feature that forces new threads to be added when workitems run for too long | `DWORD` | `INTERNAL` | `0` | 
763 `ThreadPool_EnableWorkerTracking` | Enables extra expensive tracking of how many workers threads are working simultaneously | `DWORD` | `INTERNAL` | `0` | 
764 `ThreadPool_ForceMaxWorkerThreads` | Overrides the MaxThreads setting for the ThreadPool worker pool | `DWORD` | `INTERNAL` | `0` | 
765 `ThreadPool_ForceMinWorkerThreads` | Overrides the MinThreads setting for the ThreadPool worker pool | `DWORD` | `INTERNAL` | `0` | 
766 `ThreadPool_UnfairSemaphoreSpinLimit` | Maximum number of spins per processor a thread pool worker thread performs before waiting for work | `DWORD` | `INTERNAL` | `0x32` | 
767 `ThreadpoolTickCountAdjustment` |  | `DWORD` | `INTERNAL` | `0` | 
768
769 #### Tiered Compilation Configuration Knobs
770
771 Name | Description | Type | Class | Default Value | Flags 
772 -----|-------------|------|-------|---------------|-------
773 `EXPERIMENTAL_TieredCompilation` | Deprecated - Use COMPLUS_TieredCompilation | `DWORD` | `UNSUPPORTED` | `0` | 
774 `TieredCompilation` | Enables tiered compilation | `DWORD` | `EXTERNAL` | `0` | 
775 `TieredCompilation_Test_CallCounting` | Enabled by default (only activates when TieredCompilation is also enabled). If disabled immediately backpatches prestub, and likely prevents any tier1 promotion | `DWORD` | `UNSUPPORTED` | `1` | 
776 `TieredCompilation_Test_OptimizeTier0` | Use optimized codegen (normally used by tier1) in tier0 | `DWORD` | `UNSUPPORTED` | `0` | 
777 `TieredCompilation_Tier1CallCountingDelayMs` | Delay in milliseconds since process startup or the last tier 0 JIT before call counting begins for tier 1 promotion. | `DWORD` | `UNSUPPORTED` | `100` | 
778 `TieredCompilation_Tier1CallCountThreshold` | Number of times a method must be called after which it is promoted to tier 1. | `DWORD` | `UNSUPPORTED` | `30` | 
779
780 #### TypeLoader Configuration Knobs
781
782 Name | Description | Type | Class | Default Value | Flags 
783 -----|-------------|------|-------|---------------|-------
784 `TypeLoader_InjectInterfaceDuplicates` | Injects duplicates in interface map for all types. | `DWORD` | `INTERNAL` | `0` | 
785
786 #### Uncategorized Configuration Knobs
787
788 Name | Description | Type | Class | Default Value | Flags 
789 -----|-------------|------|-------|---------------|-------
790 `ActivatePatchSkip` | Allows an assert when ActivatePatchSkip is called | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
791 `AlwaysUseMetadataInterfaceMapLayout` | Used for debugging generic interface map layout. | `DWORD` | `INTERNAL` |  | 
792 `AssertOnUnneededThis` | While the ConfigDWORD is unnecessary, the contained ASSERT should be kept. This may result in some work tracking down violating MethodDescCallSites. | `DWORD` | `INTERNAL` | `0` | 
793 `AssertStacktrace` |  | `DWORD` | `INTERNAL` | `1` | REGUTIL_default
794 `clearNativeImageStress` |  | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
795 `CPUFamily` |  | `DWORD` | `INTERNAL` |  | 
796 `CPUFeatures` |  | `DWORD` | `INTERNAL` |  | 
797 `DisableConfigCache` | Used to disable the \"probabilistic\" config cache, which walks through the appropriate config registry keys on init and probabilistically keeps track of which exist. | `DWORD` | `EXTERNAL` | `0` | REGUTIL_default
798 `DisableStackwalkCache` |  | `DWORD` | `EXTERNAL` |  | 
799 `DoubleArrayToLargeObjectHeap` | Controls double[] placement | `DWORD` | `UNSUPPORTED` |  | 
800 `DumpConfiguration` | Dumps runtime properties of xml configuration files to the log. | `DWORD` | `INTERNAL` | `0` | 
801 `DumpOnClassLoad` | Dumps information about loaded class to log. | `STRING` | `INTERNAL` |  | 
802 `ExpandAllOnLoad` |  | `DWORD` | `INTERNAL` |  | 
803 `ForcedRuntime` | Verify version of CLR loaded | `STRING` | `INTERNAL` |  | 
804 `ForceRelocs` |  | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
805 `GenerateLongJumpDispatchStubRatio` | Useful for testing VSD on AMD64 | `DWORD` | `INTERNAL` |  | 
806 `HashStack` |  | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
807 `HostManagerConfig` |  | `DWORD` | `INTERNAL` | `(DWORD)-1` | 
808 `HostTestADUnload` | Allows setting Rude unload as default | `DWORD` | `INTERNAL` | `0` | 
809 `HostTestThreadAbort` |  | `DWORD` | `INTERNAL` | `0` | 
810 `IgnoreDllMainReturn` | Don't check the return value of DllMain if this is set | `DWORD` | `UNSUPPORTED` | `0` | ConfigFile_ApplicationFirst
811 `InvokeHalt` | Throws an assert when the given method is invoked through reflection. | `STRING` | `INTERNAL` |  | 
812 `legacyNullReferenceExceptionPolicy` |  | `DWORD` | `UNSUPPORTED` |  | 
813 `legacyUnhandledExceptionPolicy` |  | `DWORD` | `UNSUPPORTED` |  | 
814 `MaxStackDepth` |  | `DWORD` | `INTERNAL` |  | 
815 `MaxStubUnwindInfoSegmentSize` |  | `DWORD` | `INTERNAL` |  | 
816 `MaxThreadRecord` |  | `DWORD` | `INTERNAL` |  | 
817 `MessageDebugOut` |  | `DWORD` | `INTERNAL` | `0` | 
818 `MscorsnLogging` | Enables strong name logging | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
819 `NativeImageRequire` |  | `DWORD` | `EXTERNAL` | `0` | REGUTIL_default
820 `NestedEhOom` |  | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
821 `NO_SO_NOT_MAINLINE` |  | `DWORD` | `EXTERNAL` | `0` | REGUTIL_default
822 `NoGuiOnAssert` |  | `DWORD` | `INTERNAL` | `INTERNAL_NoGuiOnAssert_Default` | REGUTIL_default
823 `NoProcedureSplitting` |  | `DWORD` | `EXTERNAL` | `0` | REGUTIL_default
824 `NoStringInterning` | Disallows string interning. I see no value in it anymore. | `DWORD` | `INTERNAL` | `1` | REGUTIL_default
825 `NotifyBadAppCfg` | Whether to show a message box for bad application config file. | `DWORD` | `EXTERNAL` |  | 
826 `PauseOnLoad` | Stops in SystemDomain::init. I think it can be removed. | `DWORD` | `INTERNAL` |  | 
827 `PerfAllocsSizeThreshold` | Log facility LF_GCALLOC logs object allocations. This flag controls which ones also log stacktraces. Predates ClrProfiler. | `DWORD` | `INTERNAL` | `0x3FFFFFFF` | 
828 `PerfNumAllocsThreshold` | Log facility LF_GCALLOC logs object allocations. This flag controls which ones also log stacktraces. Predates ClrProfiler. | `DWORD` | `INTERNAL` | `0x3FFFFFFF` | 
829 `PerfTypesToLog` | Log facility LF_GCALLOC logs object allocations. This flag controls which ones also log stacktraces. Predates ClrProfiler. | `STRING` | `INTERNAL` |  | 
830 `Prepopulate1` |  | `DWORD` | `EXTERNAL` | `1` | 
831 `PrestubGC` |  | `STRING` | `INTERNAL` |  | 
832 `PrestubHalt` |  | `STRING` | `INTERNAL` |  | 
833 `RestrictedGCStressExe` |  | `STRING` | `EXTERNAL` |  | 
834 `ReturnSourceTypeForTesting` | Allows returning the (internal only) source type of an IL to Native mapping for debugging purposes | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
835 `RSStressLog` | Allows turning on logging for RS startup | `DWORD` | `UNSUPPORTED` | `0` | REGUTIL_default
836 `SaveThreadInfo` |  | `DWORD` | `INTERNAL` |  | 
837 `SaveThreadInfoMask` |  | `DWORD` | `INTERNAL` |  | 
838 `SBDumpOnNewIndex` | Used for Syncblock debugging. It's been a while since any of those have been used. | `DWORD` | `INTERNAL` | `0` | 
839 `SBDumpOnResize` | Used for Syncblock debugging. It's been a while since any of those have been used. | `DWORD` | `INTERNAL` | `0` | 
840 `SBDumpStyle` | Used for Syncblock debugging. It's been a while since any of those have been used. | `DWORD` | `INTERNAL` | `0` | 
841 `ShimDatabaseVersion` | Force using shim database version in registry | `STRING` | `UNSUPPORTED` |  | 
842 `SleepOnExit` | Used for lrak detection. I'd say deprecated by umdh. | `DWORD` | `UNSUPPORTED` | `0` | 
843 `StubLinkerUnwindInfoVerificationOn` |  | `DWORD` | `INTERNAL` |  | 
844 `SuccessExit` |  | `DWORD` | `UNSUPPORTED` | `0` | REGUTIL_default
845 `SupressAllowUntrustedCallerChecks` | Disable APTCA | `DWORD` | `INTERNAL` | `0` | 
846 `SymbolReadingPolicy` | Specifies when PDBs may be read | `DWORD` | `EXTERNAL` |  | 
847 `TestDataConsistency` | Allows ensuring the left side is not holding locks (and may thus be in an inconsistent state) when inspection occurs | `DWORD` | `UNSUPPORTED` | `FALSE` | 
848 `ThreadGuardPages` |  | `DWORD` | `EXTERNAL` | `0` | REGUTIL_default
849 `Timeline` |  | `DWORD` | `EXTERNAL` | `0` | REGUTIL_default
850 `TotalStressLogSize` | Total stress log size in bytes. | `DWORD` | `UNSUPPORTED` |  | 
851 `TraceIUnknown` |  | `DWORD` | `EXTERNAL` |  | 
852 `TraceWrap` |  | `DWORD` | `EXTERNAL` |  | 
853 `TURNOFFDEBUGINFO` |  | `DWORD` | `EXTERNAL` |  | 
854 `UseMethodDataCache` | Used during feature development; may now be removed. | `DWORD` | `EXTERNAL` | `FALSE` | 
855 `UseParentMethodData` | Used during feature development; may now be removed. | `DWORD` | `EXTERNAL` | `TRUE` | 
856 `VerifierOff` |  | `DWORD` | `INTERNAL` |  | 
857 `VerifyAllOnLoad` |  | `DWORD` | `EXTERNAL` |  | 
858
859 #### Virtual call stubs Configuration Knobs
860
861 Name | Description | Type | Class | Default Value | Flags 
862 -----|-------------|------|-------|---------------|-------
863 `VirtualCallStubCollideMonoPct` | Used only when STUB_LOGGING is defined, which by default is not. | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
864 `VirtualCallStubCollideWritePct` | Used only when STUB_LOGGING is defined, which by default is not. | `DWORD` | `INTERNAL` | `100` | REGUTIL_default
865 `VirtualCallStubDumpLogCounter` | Used only when STUB_LOGGING is defined, which by default is not. | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
866 `VirtualCallStubDumpLogIncr` | Used only when STUB_LOGGING is defined, which by default is not. | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
867 `VirtualCallStubLogging` | Worth keeping, but should be moved into \"#ifdef STUB_LOGGING\" blocks. This goes for most (or all) of the stub logging infrastructure. | `DWORD` | `EXTERNAL` | `0` | REGUTIL_default
868 `VirtualCallStubMissCount` | Used only when STUB_LOGGING is defined, which by default is not. | `DWORD` | `INTERNAL` | `100` | REGUTIL_default
869 `VirtualCallStubResetCacheCounter` | Used only when STUB_LOGGING is defined, which by default is not. | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
870 `VirtualCallStubResetCacheIncr` | Used only when STUB_LOGGING is defined, which by default is not. | `DWORD` | `INTERNAL` | `0` | REGUTIL_default
871
872 #### Watson Configuration Knobs
873
874 Name | Description | Type | Class | Default Value | Flags 
875 -----|-------------|------|-------|---------------|-------
876 `DisableWatsonForManagedExceptions` | Disable Watson and debugger launching for managed exceptions | `DWORD` | `INTERNAL` | `0` | 
877
878 #### Zap Configuration Knobs
879
880 Name | Description | Type | Class | Default Value | Flags 
881 -----|-------------|------|-------|---------------|-------
882 `DebugAssertOnMissedCOWPage` |  | `DWORD` | `INTERNAL` | `1` | 
883 `EnableEventLog` | Enable/disable use of EnableEventLogging mechanism  | `DWORD` | `EXTERNAL` | `0` | 
884 `EventNameFilter` |  | `STRING` | `INTERNAL` |  | 
885 `EventSourceFilter` |  | `STRING` | `INTERNAL` |  | 
886 `ReadyToRun` | Enable/disable use of ReadyToRun native code | `DWORD` | `EXTERNAL` | `1` | 
887 `ReadyToRunExcludeList` | List of assemblies that cannot use Ready to Run images | `STRING` | `EXTERNAL` |  | 
888 `ReadyToRunLogFile` | Name of file to log success/failure of using Ready to Run images | `STRING` | `EXTERNAL` |  | 
889 `ZapBBInstr` |  | `STRING` | `INTERNAL` |  | REGUTIL_default
890 `ZapBBInstrDir` |  | `STRING` | `EXTERNAL` |  | 
891 `ZapDisable` |  | `DWORD` | `EXTERNAL` | `0` | 
892 `ZapExclude` |  | `STRING` | `INTERNAL` |  | REGUTIL_default
893 `ZapLazyCOWPagesEnabled` |  | `DWORD` | `INTERNAL` | `1` | 
894 `ZapOnly` |  | `STRING` | `INTERNAL` |  | REGUTIL_default
895 `ZapRequire` |  | `DWORD` | `EXTERNAL` |  | 
896 `ZapRequireExcludeList` |  | `STRING` | `EXTERNAL` |  | 
897 `ZapRequireList` |  | `STRING` | `EXTERNAL` |  | 
898 `ZapSet` |  | `STRING` | `EXTERNAL` |  | REGUTIL_default
899
900
901 ## PAL Configuration Knobs
902 All the names below need to be prefixed by `COMPlus_`.
903
904 Name | Description | Type | Default Value
905 -----|-------------|------|---------------
906 `DefaultStackSize` | Overrides the default stack size for secondary threads | `STRING` | `0`
907 `DbgEnableMiniDump` | If set to 1, enables this core dump generation. The default is NOT to generate a dump | `DWORD` | `0`
908 `DbgMiniDumpName` | If set, use as the template to create the dump path and file name. The pid can be placed in the name with %d. | `STRING` | `_/tmp/coredump.%d_`
909 `DbgMiniDumpType` | If set to 1 generates _MiniDumpNormal_, 2 _MiniDumpWithPrivateReadWriteMemory_, 3 _MiniDumpFilterTriage_, 4 _MiniDumpWithFullMemory_ | `DWORD` | `1`
910 `CreateDumpDiagnostics` | If set to 1, enables the _createdump_ utilities diagnostic messages (TRACE macro) | `DWORD` | `0`
911