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 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
515 F(HasCachedArrayIndex) \ | 515 F(HasCachedArrayIndex) \ |
516 F(GetCachedArrayIndex) \ | 516 F(GetCachedArrayIndex) \ |
517 F(FastOneByteArrayJoin) \ | 517 F(FastOneByteArrayJoin) \ |
518 F(GeneratorNext) \ | 518 F(GeneratorNext) \ |
519 F(GeneratorThrow) \ | 519 F(GeneratorThrow) \ |
520 F(DebugBreakInOptimizedCode) \ | 520 F(DebugBreakInOptimizedCode) \ |
521 F(ClassOf) \ | 521 F(ClassOf) \ |
522 F(StringCharCodeAt) \ | 522 F(StringCharCodeAt) \ |
523 F(StringAdd) \ | 523 F(StringAdd) \ |
524 F(SubString) \ | 524 F(SubString) \ |
525 F(StringCompare) \ | |
526 F(RegExpExec) \ | 525 F(RegExpExec) \ |
527 F(RegExpConstructResult) \ | 526 F(RegExpConstructResult) \ |
528 F(NumberToString) \ | 527 F(NumberToString) \ |
529 F(ToString) \ | 528 F(ToString) \ |
530 F(ToName) \ | 529 F(ToName) \ |
531 F(ToObject) \ | 530 F(ToObject) \ |
532 F(DebugIsActive) \ | 531 F(DebugIsActive) \ |
533 F(CreateIterResultObject) | 532 F(CreateIterResultObject) |
534 | 533 |
535 #define GENERATOR_DECLARATION(Name) void Emit##Name(CallRuntime* call); | 534 #define GENERATOR_DECLARATION(Name) void Emit##Name(CallRuntime* call); |
(...skipping 547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1083 | 1082 |
1084 Address start_; | 1083 Address start_; |
1085 Address instruction_start_; | 1084 Address instruction_start_; |
1086 uint32_t length_; | 1085 uint32_t length_; |
1087 }; | 1086 }; |
1088 | 1087 |
1089 | 1088 |
1090 } } // namespace v8::internal | 1089 } } // namespace v8::internal |
1091 | 1090 |
1092 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ | 1091 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ |
OLD | NEW |