| 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 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 511 F(DebugBreakInOptimizedCode) \ | 511 F(DebugBreakInOptimizedCode) \ |
| 512 F(ClassOf) \ | 512 F(ClassOf) \ |
| 513 F(StringCharCodeAt) \ | 513 F(StringCharCodeAt) \ |
| 514 F(StringAdd) \ | 514 F(StringAdd) \ |
| 515 F(SubString) \ | 515 F(SubString) \ |
| 516 F(RegExpExec) \ | 516 F(RegExpExec) \ |
| 517 F(RegExpConstructResult) \ | 517 F(RegExpConstructResult) \ |
| 518 F(ToInteger) \ | 518 F(ToInteger) \ |
| 519 F(NumberToString) \ | 519 F(NumberToString) \ |
| 520 F(ToString) \ | 520 F(ToString) \ |
| 521 F(ToLength) \ |
| 521 F(ToNumber) \ | 522 F(ToNumber) \ |
| 522 F(ToName) \ | 523 F(ToName) \ |
| 523 F(ToObject) \ | 524 F(ToObject) \ |
| 524 F(DebugIsActive) \ | 525 F(DebugIsActive) \ |
| 525 F(CreateIterResultObject) | 526 F(CreateIterResultObject) |
| 526 | 527 |
| 527 #define GENERATOR_DECLARATION(Name) void Emit##Name(CallRuntime* call); | 528 #define GENERATOR_DECLARATION(Name) void Emit##Name(CallRuntime* call); |
| 528 FOR_EACH_FULL_CODE_INTRINSIC(GENERATOR_DECLARATION) | 529 FOR_EACH_FULL_CODE_INTRINSIC(GENERATOR_DECLARATION) |
| 529 #undef GENERATOR_DECLARATION | 530 #undef GENERATOR_DECLARATION |
| 530 | 531 |
| (...skipping 527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1058 Address start_; | 1059 Address start_; |
| 1059 Address instruction_start_; | 1060 Address instruction_start_; |
| 1060 uint32_t length_; | 1061 uint32_t length_; |
| 1061 }; | 1062 }; |
| 1062 | 1063 |
| 1063 | 1064 |
| 1064 } // namespace internal | 1065 } // namespace internal |
| 1065 } // namespace v8 | 1066 } // namespace v8 |
| 1066 | 1067 |
| 1067 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ | 1068 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ |
| OLD | NEW |