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

Unified Diff: vm/isolate.cc

Issue 10082017: Remove code index table. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 8 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
Index: vm/isolate.cc
===================================================================
--- vm/isolate.cc (revision 6535)
+++ vm/isolate.cc (working copy)
@@ -6,7 +6,6 @@
#include "include/dart_api.h"
#include "platform/assert.h"
-#include "vm/code_index_table.h"
#include "vm/compiler_stats.h"
#include "vm/dart_api_state.h"
#include "vm/dart_entry.h"
@@ -105,7 +104,6 @@
library_tag_handler_(NULL),
api_state_(NULL),
stub_code_(NULL),
- code_index_table_(NULL),
debugger_(NULL),
long_jump_base_(NULL),
timer_list_(),
@@ -122,7 +120,6 @@
delete object_store_;
delete api_state_;
delete stub_code_;
- delete code_index_table_;
delete debugger_;
delete mutex_;
mutex_ = NULL; // Fail fast if interrupts are scheduled on a dead isolate.
@@ -458,11 +455,6 @@
api_state()->VisitObjectPointers(visitor, visit_prologue_weak_handles);
}
- // Visit all objects in the code index table.
- if (code_index_table() != NULL) {
- code_index_table()->VisitObjectPointers(visitor);
- }
-
// Visit the top context which is stored in the isolate.
visitor->VisitPointer(reinterpret_cast<RawObject**>(&top_context_));
« vm/find_code_object_test.cc ('K') | « vm/isolate.h ('k') | vm/vm_sources.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698