Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(456)

Unified Diff: include/v8.h

Issue 960493003: Remove JITCodeEvent::CODE_REMOVED (Closed) Base URL: https://chromium.googlesource.com/v8/v8@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/cpu-profiler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/v8.h
diff --git a/include/v8.h b/include/v8.h
index aa077cda239ab935d0188da30752f609be1465a4..cf9e4ca3ebf1e7bb753a4c0bb1eb52dbc75669cd 100644
--- a/include/v8.h
+++ b/include/v8.h
@@ -4528,15 +4528,12 @@ typedef void (*FunctionEntryHook)(uintptr_t function,
uintptr_t return_addr_location);
/**
- * A JIT code event is issued each time code is added, moved or removed.
- *
- * \note removal events are not currently issued.
+ * A JIT code event is issued each time code is added or moved.
*/
struct JitCodeEvent {
enum EventType {
CODE_ADDED,
CODE_MOVED,
- CODE_REMOVED,
CODE_ADD_LINE_POS_INFO,
CODE_START_LINE_INFO_RECORDING,
CODE_END_LINE_INFO_RECORDING
@@ -4658,7 +4655,7 @@ class V8_EXPORT Isolate {
/**
* Allows the host application to provide the address of a function that is
- * notified each time code is added, moved or removed.
+ * notified each time code is added or moved.
*/
JitCodeEventHandler code_event_handler;
@@ -5166,11 +5163,11 @@ class V8_EXPORT Isolate {
/**
* Allows the host application to provide the address of a function that is
- * notified each time code is added, moved or removed.
+ * notified each time code is added or moved.
*
* \param options options for the JIT code event handler.
* \param event_handler the JIT code event handler, which will be invoked
- * each time code is added, moved or removed.
+ * each time code is added or moved.
* \note \p event_handler won't get notified of existent code.
* \note since code removal notifications are not currently issued, the
* \p event_handler may get notifications of code that overlaps earlier
« no previous file with comments | « no previous file | src/cpu-profiler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698