Chromium Code Reviews| Index: src/hydrogen.h |
| diff --git a/src/hydrogen.h b/src/hydrogen.h |
| index 85977c132654265721d62de343a8fc3aacd8ac24..e0c39e2a72c88fae3b78b8d3ac5c37f341454153 100644 |
| --- a/src/hydrogen.h |
| +++ b/src/hydrogen.h |
| @@ -287,6 +287,8 @@ class HGraph: public ZoneObject { |
| undefined_constant_.set(constant); |
| } |
| HConstant* GetConstantUndefined() const { return undefined_constant_.get(); } |
| + HConstant* GetConstantInt32(SetOncePointer<HConstant>* pointer, |
|
Michael Starzinger
2012/07/10 12:05:51
This should be moved into the private section righ
sanjoy
2012/07/10 19:25:17
Done.
|
| + int32_t integer_value); |
| HConstant* GetConstant1(); |
| HConstant* GetConstantMinus1(); |
| HConstant* GetConstantTrue(); |
| @@ -1195,6 +1197,9 @@ class HGraphBuilder: public AstVisitor { |
| bool inline_bailout_; |
| + HConstant* constant_undefined_; |
|
Michael Starzinger
2012/07/10 12:05:51
I don't think this change is actually needed.
sanjoy
2012/07/10 19:25:17
Done.
|
| + HConstant* constant_null_; |
| + |
| friend class FunctionState; // Pushes and pops the state stack. |
| friend class AstContext; // Pushes and pops the AST context stack. |