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

Unified Diff: src/lithium.h

Issue 10700115: Break Crankshaft into phases. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Clean up dependencies Created 8 years, 5 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/lithium.h
diff --git a/src/lithium.h b/src/lithium.h
index ff644ee5f36188f0e4f3dce7f1fbb68f53365ed1..3e682ec528a8be6fd28d87f15711a044d77c9cd1 100644
--- a/src/lithium.h
+++ b/src/lithium.h
@@ -622,6 +622,13 @@ class DeepIterator BASE_EMBEDDED {
};
+class Lithium: public AllStatic {
+ public:
+ static LChunk* CreateChunk(HGraph* graph, HGraphBuilder* builder);
danno 2012/07/11 10:04:57 Why not make this a static method on LChunk?
+ static Handle<Code> Codegen(LChunk* chunk);
danno 2012/07/11 10:04:57 Can you make this a method on the chunk?
+};
+
+
int ElementsKindToShiftSize(ElementsKind elements_kind);

Powered by Google App Engine
This is Rietveld 408576698