`DisableHotCold` | Master hot/cold splitting switch in Jit64 | `DWORD` | `UNSUPPORTED` | |
`DisableIBC` | Disables the use of IBC data | `DWORD` | `UNSUPPORTED` | `0` | REGUTIL_default
`UseIBCFile` | | `DWORD` | `EXTERNAL` | `0` | REGUTIL_default
+`IBCFileDir` | Directory to search for IBC files | `STRING` | `EXTERNAL` | |
#### Interop Configuration Knobs
RETAIL_CONFIG_DWORD_INFO_DIRECT_ACCESS(UNSUPPORTED_DisableHotCold, W("DisableHotCold"), "Master hot/cold splitting switch in Jit64")
RETAIL_CONFIG_DWORD_INFO_EX(UNSUPPORTED_DisableIBC, W("DisableIBC"), 0, "Disables the use of IBC data", CLRConfig::REGUTIL_default)
RETAIL_CONFIG_DWORD_INFO_EX(EXTERNAL_UseIBCFile, W("UseIBCFile"), 0, "", CLRConfig::REGUTIL_default)
-
+RETAIL_CONFIG_STRING_INFO(EXTERNAL_IBCFileDir, W("IBCFileDir"), "Directory to search for IBC files")
///
/// JIT
// Couldn't find profile resource--let's see if there's an ibc file to use instead
//
- SString path(m_pModuleFileName);
+ SString path;
+
+ LPWSTR ibcDir = CLRConfig::GetConfigValue(CLRConfig::EXTERNAL_IBCFileDir);
+ if (ibcDir != NULL)
+ {
+ LPCWSTR moduleFileName = wcsrchr(m_pModuleFileName, DIRECTORY_SEPARATOR_CHAR_W);
+ path.Set(ibcDir);
+ path.Append(DIRECTORY_SEPARATOR_CHAR_W);
+ path.Append(moduleFileName);
+ }
+ else
+ {
+ path.Set(m_pModuleFileName); // the same directory as the IL dll
+ }
SString::Iterator dot = path.End();
if (path.FindBack(dot, '.'))