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

Unified Diff: src/gdb-jit.cc

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 | « src/cpu-profiler.cc ('k') | src/heap/mark-compact.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/gdb-jit.cc
diff --git a/src/gdb-jit.cc b/src/gdb-jit.cc
index 00c7789828e99a6233d5860591d91b8ef3e41c80..155e6a589a7ead1b10f9120ad03e4fd1b5c8d288 100644
--- a/src/gdb-jit.cc
+++ b/src/gdb-jit.cc
@@ -2140,10 +2140,6 @@ void EventHandler(const v8::JitCodeEvent* event) {
// Enabling the GDB JIT interface should disable code compaction.
UNREACHABLE();
break;
- case v8::JitCodeEvent::CODE_REMOVED:
- // Do nothing. Instead, adding code causes eviction of any entry whose
- // address range intersects the address range of the added code.
- break;
case v8::JitCodeEvent::CODE_ADD_LINE_POS_INFO: {
LineInfo* line_info = reinterpret_cast<LineInfo*>(event->user_data);
line_info->SetPosition(static_cast<intptr_t>(event->line_info.offset),
« no previous file with comments | « src/cpu-profiler.cc ('k') | src/heap/mark-compact.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698