summaryrefslogtreecommitdiff
path: root/src/vm/util.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/vm/util.hpp')
-rw-r--r--src/vm/util.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/vm/util.hpp b/src/vm/util.hpp
index edfd9161e4..ad1261845f 100644
--- a/src/vm/util.hpp
+++ b/src/vm/util.hpp
@@ -1075,10 +1075,11 @@ public:
EXCEPTION_NOTIFICATION=5,
GC_NOTIFICATION= 6,
CATCH_ENTER_NOTIFICATION = 7,
+ JIT_NOTIFICATION2=8,
};
// called from the runtime
- static void DoJITNotification(MethodDesc *MethodDescPtr);
+ static void DoJITNotification(MethodDesc *MethodDescPtr, TADDR NativeCodeLocation);
static void DoJITPitchingNotification(MethodDesc *MethodDescPtr);
static void DoModuleLoadNotification(Module *Module);
static void DoModuleUnloadNotification(Module *Module);
@@ -1088,7 +1089,7 @@ public:
// called from the DAC
static int GetType(TADDR Args[]);
- static BOOL ParseJITNotification(TADDR Args[], TADDR& MethodDescPtr);
+ static BOOL ParseJITNotification(TADDR Args[], TADDR& MethodDescPtr, TADDR& NativeCodeLocation);
static BOOL ParseJITPitchingNotification(TADDR Args[], TADDR& MethodDescPtr);
static BOOL ParseModuleLoadNotification(TADDR Args[], TADDR& ModulePtr);
static BOOL ParseModuleUnloadNotification(TADDR Args[], TADDR& ModulePtr);