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-12-02 00:17:39 +0300
committerJan Kotas <jkotas@microsoft.com>2015-12-02 00:40:39 +0300
commit0af51ef1d09729db310cf0d3b626b039823465fc (patch)
treeae37051259c7d625aeb8ab3cb5b9fb4d2edcdb1b /src/Native/Runtime/eventtracebase.h
parent4b7f00d51ac53677af1b0372a9b16e62613d8389 (diff)
Rollback unintentional renames
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 a3045c094..8ca5b5b68 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,
- MethodDCStartILCompilerMap= 0x00010000,
- MethodDCEndILCompilerMap= 0x00020000,
- JitMethodILCompilerMap= 0x00040000,
+ MethodDCStartILToNativeMap= 0x00010000,
+ MethodDCEndILToNativeMap= 0x00020000,
+ JitMethodILToNativeMap= 0x00040000,
TypeUnload= 0x00080000,
// Helpers
ModuleRangeEnabledAny = ModuleRangeLoad | ModuleRangeDCStart | ModuleRangeDCEnd | ModuleRangeLoadPrivate,
- JitMethodLoadOrDCStartAny = JitMethodLoad | JitMethodDCStart | MethodDCStartILCompilerMap,
- JitMethodUnloadOrDCEndAny = JitMethodUnload | JitMethodDCEnd | MethodDCEndILCompilerMap,
+ JitMethodLoadOrDCStartAny = JitMethodLoad | JitMethodDCStart | MethodDCStartILToNativeMap,
+ JitMethodUnloadOrDCEndAny = JitMethodUnload | JitMethodDCEnd | MethodDCEndILToNativeMap,
}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 SendMethodILCompilerMapEvent(MethodDesc * pMethodDesc, DWORD dwEventOptions, ReJITID rejitID);
+ static VOID SendMethodILToNativeMapEvent(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);