Chromium Code Reviews| 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); |