OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef V8_HYDROGEN_H_ | 5 #ifndef V8_HYDROGEN_H_ |
6 #define V8_HYDROGEN_H_ | 6 #define V8_HYDROGEN_H_ |
7 | 7 |
8 #include "src/v8.h" | 8 #include "src/v8.h" |
9 | 9 |
10 #include "src/accessors.h" | 10 #include "src/accessors.h" |
(...skipping 2228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2239 F(GetPrototype) \ | 2239 F(GetPrototype) \ |
2240 /* Strings */ \ | 2240 /* Strings */ \ |
2241 F(StringGetLength) \ | 2241 F(StringGetLength) \ |
2242 /* JSValue */ \ | 2242 /* JSValue */ \ |
2243 F(JSValueGetValue) | 2243 F(JSValueGetValue) |
2244 | 2244 |
2245 #define GENERATOR_DECLARATION(Name) void Generate##Name(CallRuntime* call); | 2245 #define GENERATOR_DECLARATION(Name) void Generate##Name(CallRuntime* call); |
2246 FOR_EACH_HYDROGEN_INTRINSIC(GENERATOR_DECLARATION) | 2246 FOR_EACH_HYDROGEN_INTRINSIC(GENERATOR_DECLARATION) |
2247 #undef GENERATOR_DECLARATION | 2247 #undef GENERATOR_DECLARATION |
2248 | 2248 |
2249 void GenerateArrayBufferViewIndirectAccessor(CallRuntime* call, | |
2250 HObjectAccess access); | |
2251 | |
2252 void VisitDelete(UnaryOperation* expr); | 2249 void VisitDelete(UnaryOperation* expr); |
2253 void VisitVoid(UnaryOperation* expr); | 2250 void VisitVoid(UnaryOperation* expr); |
2254 void VisitTypeof(UnaryOperation* expr); | 2251 void VisitTypeof(UnaryOperation* expr); |
2255 void VisitNot(UnaryOperation* expr); | 2252 void VisitNot(UnaryOperation* expr); |
2256 | 2253 |
2257 void VisitComma(BinaryOperation* expr); | 2254 void VisitComma(BinaryOperation* expr); |
2258 void VisitLogicalExpression(BinaryOperation* expr); | 2255 void VisitLogicalExpression(BinaryOperation* expr); |
2259 void VisitArithmeticExpression(BinaryOperation* expr); | 2256 void VisitArithmeticExpression(BinaryOperation* expr); |
2260 | 2257 |
2261 void VisitLoopBody(IterationStatement* stmt, | 2258 void VisitLoopBody(IterationStatement* stmt, |
(...skipping 779 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3041 } | 3038 } |
3042 | 3039 |
3043 private: | 3040 private: |
3044 HGraphBuilder* builder_; | 3041 HGraphBuilder* builder_; |
3045 }; | 3042 }; |
3046 | 3043 |
3047 | 3044 |
3048 } } // namespace v8::internal | 3045 } } // namespace v8::internal |
3049 | 3046 |
3050 #endif // V8_HYDROGEN_H_ | 3047 #endif // V8_HYDROGEN_H_ |
OLD | NEW |