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_FULL_CODEGEN_FULL_CODEGEN_H_ | 5 #ifndef V8_FULL_CODEGEN_FULL_CODEGEN_H_ |
6 #define V8_FULL_CODEGEN_FULL_CODEGEN_H_ | 6 #define V8_FULL_CODEGEN_FULL_CODEGEN_H_ |
7 | 7 |
8 #include "src/allocation.h" | 8 #include "src/allocation.h" |
9 #include "src/assert-scope.h" | 9 #include "src/assert-scope.h" |
10 #include "src/ast.h" | 10 #include "src/ast.h" |
(...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
497 F(MathPow) \ | 497 F(MathPow) \ |
498 F(IsMinusZero) \ | 498 F(IsMinusZero) \ |
499 F(HasCachedArrayIndex) \ | 499 F(HasCachedArrayIndex) \ |
500 F(GetCachedArrayIndex) \ | 500 F(GetCachedArrayIndex) \ |
501 F(FastOneByteArrayJoin) \ | 501 F(FastOneByteArrayJoin) \ |
502 F(GeneratorNext) \ | 502 F(GeneratorNext) \ |
503 F(GeneratorThrow) \ | 503 F(GeneratorThrow) \ |
504 F(DebugBreakInOptimizedCode) \ | 504 F(DebugBreakInOptimizedCode) \ |
505 F(ClassOf) \ | 505 F(ClassOf) \ |
506 F(StringCharCodeAt) \ | 506 F(StringCharCodeAt) \ |
507 F(StringAdd) \ | |
508 F(SubString) \ | 507 F(SubString) \ |
509 F(RegExpExec) \ | 508 F(RegExpExec) \ |
510 F(RegExpConstructResult) \ | 509 F(RegExpConstructResult) \ |
511 F(ToInteger) \ | 510 F(ToInteger) \ |
512 F(NumberToString) \ | 511 F(NumberToString) \ |
513 F(ToString) \ | 512 F(ToString) \ |
514 F(ToLength) \ | 513 F(ToLength) \ |
515 F(ToNumber) \ | 514 F(ToNumber) \ |
516 F(ToName) \ | 515 F(ToName) \ |
517 F(ToObject) \ | 516 F(ToObject) \ |
(...skipping 528 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1046 Address start_; | 1045 Address start_; |
1047 Address instruction_start_; | 1046 Address instruction_start_; |
1048 uint32_t length_; | 1047 uint32_t length_; |
1049 }; | 1048 }; |
1050 | 1049 |
1051 | 1050 |
1052 } // namespace internal | 1051 } // namespace internal |
1053 } // namespace v8 | 1052 } // namespace v8 |
1054 | 1053 |
1055 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ | 1054 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ |
OLD | NEW |