Chromium Code Reviews| Index: src/hydrogen.h |
| diff --git a/src/hydrogen.h b/src/hydrogen.h |
| index ee9e298eabed85ea375c9f27b55e73c5ca5aab85..63639fc0e8c2bd90c57b4ee1738e6e668e9d4bf6 100644 |
| --- a/src/hydrogen.h |
| +++ b/src/hydrogen.h |
| @@ -2231,7 +2231,11 @@ class HOptimizedGraphBuilder : public HGraphBuilder, public AstVisitor { |
| F(SetInitialize) \ |
| /* Arrays */ \ |
| F(HasFastPackedElements) \ |
| - F(GetPrototype) |
| + F(GetPrototype) \ |
| + /* Strings */ \ |
| + F(StringLength) \ |
| + /* JSValue */ \ |
|
titzer
2015/03/18 09:25:53
We need a better name for this operation.
|
| + F(JSValueValue) |
| #define GENERATOR_DECLARATION(Name) void Generate##Name(CallRuntime* call); |
| FOR_EACH_HYDROGEN_INTRINSIC(GENERATOR_DECLARATION) |