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

Unified Diff: vm/dart.cc

Issue 8787012: - Add free list to be used for sweep phase of mark-sweep collector. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: '' Created 9 years 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 | vm/freelist.h » ('j') | vm/freelist.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/dart.cc
===================================================================
--- vm/dart.cc (revision 2052)
+++ vm/dart.cc (working copy)
@@ -5,6 +5,7 @@
#include "vm/dart.h"
#include "vm/code_index_table.h"
+#include "vm/freelist.h"
antonm 2011/12/15 10:00:25 nit: sorting
Ivan Posva 2011/12/16 23:22:14 Done.
#include "vm/flags.h"
#include "vm/handles.h"
#include "vm/heap.h"
@@ -32,6 +33,7 @@
VirtualMemory::InitOnce();
Isolate::InitOnce();
PortMap::InitOnce();
+ FreeListElement::InitOnce();
// Create the VM isolate and finish the VM initialization.
{
ASSERT(vm_isolate_ == NULL);
« no previous file with comments | « no previous file | vm/freelist.h » ('j') | vm/freelist.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698