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

Unified Diff: runtime/vm/pages.cc

Issue 14179015: - Remove heap tracing. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 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
« no previous file with comments | « runtime/vm/heap_trace_test.cc ('k') | runtime/vm/raw_object.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/pages.cc
===================================================================
--- runtime/vm/pages.cc (revision 21785)
+++ runtime/vm/pages.cc (working copy)
@@ -8,7 +8,6 @@
#include "vm/compiler_stats.h"
#include "vm/gc_marker.h"
#include "vm/gc_sweeper.h"
-#include "vm/heap_trace.h"
#include "vm/object.h"
#include "vm/virtual_memory.h"
@@ -408,10 +407,6 @@
Isolate* isolate = Isolate::Current();
NoHandleScope no_handles(isolate);
- if (HeapTrace::is_enabled()) {
- isolate->heap()->trace()->TraceMarkSweepStart();
- }
-
if (FLAG_print_free_list_before_gc) {
OS::Print("Data Freelist (before GC):\n");
freelist_[HeapPage::kData].Print();
@@ -503,10 +498,6 @@
OS::PrintErr(" done.\n");
}
- if (HeapTrace::is_enabled()) {
- isolate->heap()->trace()->TraceMarkSweepFinish();
- }
-
// Done, reset the marker.
ASSERT(sweeping_);
sweeping_ = false;
« no previous file with comments | « runtime/vm/heap_trace_test.cc ('k') | runtime/vm/raw_object.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698