Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2015-11-14 03:54:12 +0300
committerJan Kotas <jkotas@microsoft.com>2015-11-14 04:11:57 +0300
commit636f8d3a976044ebb5b70d32dfdca42af4391f49 (patch)
tree755ad15d0b05610a99b1c00d5ec98646d9941377 /src/Native/Runtime/eventtracebase.h
parent3c1639cbf1f0ea9708b8addf8cbd624b024d1d34 (diff)
Rename ILToNative
- Rename the compiler .exe to ilc.exe - Rename ILToNative.* to ILCompiler.* everywhere else
Diffstat (limited to 'src/Native/Runtime/eventtracebase.h')
-rw-r--r--src/Native/Runtime/eventtracebase.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Native/Runtime/eventtracebase.h b/src/Native/Runtime/eventtracebase.h
index 8ca5b5b68..a3045c094 100644
--- a/src/Native/Runtime/eventtracebase.h
+++ b/src/Native/Runtime/eventtracebase.h
@@ -352,15 +352,15 @@ namespace ETW
ModuleRangeDCStart= 0x00002000,
ModuleRangeDCEnd= 0x00004000,
ModuleRangeLoadPrivate= 0x00008000,
- MethodDCStartILToNativeMap= 0x00010000,
- MethodDCEndILToNativeMap= 0x00020000,
- JitMethodILToNativeMap= 0x00040000,
+ MethodDCStartILCompilerMap= 0x00010000,
+ MethodDCEndILCompilerMap= 0x00020000,
+ JitMethodILCompilerMap= 0x00040000,
TypeUnload= 0x00080000,
// Helpers
ModuleRangeEnabledAny = ModuleRangeLoad | ModuleRangeDCStart | ModuleRangeDCEnd | ModuleRangeLoadPrivate,
- JitMethodLoadOrDCStartAny = JitMethodLoad | JitMethodDCStart | MethodDCStartILToNativeMap,
- JitMethodUnloadOrDCEndAny = JitMethodUnload | JitMethodDCEnd | MethodDCEndILToNativeMap,
+ JitMethodLoadOrDCStartAny = JitMethodLoad | JitMethodDCStart | MethodDCStartILCompilerMap,
+ JitMethodUnloadOrDCEndAny = JitMethodUnload | JitMethodDCEnd | MethodDCEndILCompilerMap,
}EnumerationOptions;
}EnumerationStructs;
@@ -480,7 +480,7 @@ namespace ETW
static VOID SendEventsForNgenMethods(Module *pModule, DWORD dwEventOptions);
static VOID SendMethodJitStartEvent(MethodDesc *pMethodDesc, SString *namespaceOrClassName=NULL, SString *methodName=NULL, SString *methodSignature=NULL);
#ifndef WINXP_AND_WIN2K3_BUILD_SUPPORT
- static VOID SendMethodILToNativeMapEvent(MethodDesc * pMethodDesc, DWORD dwEventOptions, ReJITID rejitID);
+ static VOID SendMethodILCompilerMapEvent(MethodDesc * pMethodDesc, DWORD dwEventOptions, ReJITID rejitID);
#endif // WINXP_AND_WIN2K3_BUILD_SUPPORT
static VOID SendMethodEvent(MethodDesc *pMethodDesc, DWORD dwEventOptions, BOOL bIsJit, SString *namespaceOrClassName=NULL, SString *methodName=NULL, SString *methodSignature=NULL, SIZE_T pCode = 0, ReJITID rejitID = 0);
static VOID SendHelperEvent(ULONGLONG ullHelperStartAddress, ULONG ulHelperSize, LPCWSTR pHelperName);