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

Unified Diff: src/heap.cc

Issue 12317044: Fix bugs in generating and printing of Crankshaft stubs (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 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
Index: src/heap.cc
diff --git a/src/heap.cc b/src/heap.cc
index e641991cc574e4bae49535e929991adda6f51a7d..23ec9472d8d7b78d588f35b5f79b1eac7fb1a41c 100644
--- a/src/heap.cc
+++ b/src/heap.cc
@@ -6209,7 +6209,7 @@ static void InitializeGCOnce() {
MarkCompactCollector::Initialize();
}
-bool Heap::SetUp(bool create_heap_objects) {
+bool Heap::Prepare() {
Michael Starzinger 2013/02/21 19:39:23 I think it makes more sense to keep this method be
danno 2013/02/25 11:11:23 Done.
#ifdef DEBUG
allocation_timeout_ = FLAG_gc_interval;
#endif
@@ -6300,6 +6300,10 @@ bool Heap::SetUp(bool create_heap_objects) {
}
}
+ return true;
+}
+
+bool Heap::SetUp(bool create_heap_objects) {
if (create_heap_objects) {
// Create initial maps.
if (!CreateInitialMaps()) return false;

Powered by Google App Engine
This is Rietveld 408576698