Index: src/v8.h |
diff --git a/src/v8.h b/src/v8.h |
index b8a5ae438006bc9e65e89cd97aabc9fc619c585a..8f1e5a24132aef8fe39d1a5ed3b9df7baa29e01e 100644 |
--- a/src/v8.h |
+++ b/src/v8.h |
@@ -104,6 +104,8 @@ class V8 : public AllStatic { |
// Support for return-address rewriting profilers. |
static void SetReturnAddressLocationResolver( |
ReturnAddressLocationResolver resolver); |
+ // Support for entry hooking JITed code. |
+ static void SetFunctionEntryHook(FunctionEntryHook entry_hook); |
// Random number generation support. Not cryptographically safe. |
static uint32_t Random(Context* context); |
// We use random numbers internally in memory allocation and in the |