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

Unified Diff: src/heap.h

Issue 12317044: Fix bugs in generating and printing of Crankshaft stubs (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Final version 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
« no previous file with comments | « src/deoptimizer.cc ('k') | src/heap.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/heap.h
diff --git a/src/heap.h b/src/heap.h
index eaa4cd03c93d6eeb5a43bc7a5c2b847aa5d833ad..bc79a8688e1ad0fe261393064cb22d9f2fcdbfd1 100644
--- a/src/heap.h
+++ b/src/heap.h
@@ -480,10 +480,13 @@ class Heap {
intptr_t max_executable_size);
bool ConfigureHeapDefault();
- // Initializes the global object heap. If create_heap_objects is true,
- // also creates the basic non-mutable objects.
+ // Prepares the heap, setting up memory areas that are needed in the isolate
+ // without actually creating any objects.
+ bool SetUp();
+
+ // Bootstraps the object heap with the core set of objects required to run.
// Returns whether it succeeded.
- bool SetUp(bool create_heap_objects);
+ bool CreateHeapObjects();
// Destroys all memory allocated by the heap.
void TearDown();
« no previous file with comments | « src/deoptimizer.cc ('k') | src/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698