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/ast.h" | 10 #include "src/ast/ast.h" |
(...skipping 509 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
520 F(ClassOf) \ | 520 F(ClassOf) \ |
521 F(StringCharCodeAt) \ | 521 F(StringCharCodeAt) \ |
522 F(SubString) \ | 522 F(SubString) \ |
523 F(RegExpExec) \ | 523 F(RegExpExec) \ |
524 F(RegExpConstructResult) \ | 524 F(RegExpConstructResult) \ |
525 F(ToInteger) \ | 525 F(ToInteger) \ |
526 F(NumberToString) \ | 526 F(NumberToString) \ |
527 F(ToString) \ | 527 F(ToString) \ |
528 F(ToLength) \ | 528 F(ToLength) \ |
529 F(ToNumber) \ | 529 F(ToNumber) \ |
530 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); |
536 FOR_EACH_FULL_CODE_INTRINSIC(GENERATOR_DECLARATION) | 535 FOR_EACH_FULL_CODE_INTRINSIC(GENERATOR_DECLARATION) |
537 #undef GENERATOR_DECLARATION | 536 #undef GENERATOR_DECLARATION |
538 | 537 |
539 void EmitIntrinsicAsStubCall(CallRuntime* expr, const Callable& callable); | 538 void EmitIntrinsicAsStubCall(CallRuntime* expr, const Callable& callable); |
540 | 539 |
(...skipping 516 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1057 Address start_; | 1056 Address start_; |
1058 Address instruction_start_; | 1057 Address instruction_start_; |
1059 uint32_t length_; | 1058 uint32_t length_; |
1060 }; | 1059 }; |
1061 | 1060 |
1062 | 1061 |
1063 } // namespace internal | 1062 } // namespace internal |
1064 } // namespace v8 | 1063 } // namespace v8 |
1065 | 1064 |
1066 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ | 1065 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ |
OLD | NEW |