| 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 460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 471 | 471 |
| 472 #define FOR_EACH_FULL_CODE_INTRINSIC(F) \ | 472 #define FOR_EACH_FULL_CODE_INTRINSIC(F) \ |
| 473 F(IsSmi) \ | 473 F(IsSmi) \ |
| 474 F(IsArray) \ | 474 F(IsArray) \ |
| 475 F(IsTypedArray) \ | 475 F(IsTypedArray) \ |
| 476 F(IsRegExp) \ | 476 F(IsRegExp) \ |
| 477 F(IsJSProxy) \ | 477 F(IsJSProxy) \ |
| 478 F(Call) \ | 478 F(Call) \ |
| 479 F(NewObject) \ | 479 F(NewObject) \ |
| 480 F(IsJSReceiver) \ | 480 F(IsJSReceiver) \ |
| 481 F(HasCachedArrayIndex) \ | |
| 482 F(GetCachedArrayIndex) \ | |
| 483 F(GetSuperConstructor) \ | 481 F(GetSuperConstructor) \ |
| 484 F(DebugBreakInOptimizedCode) \ | 482 F(DebugBreakInOptimizedCode) \ |
| 485 F(ClassOf) \ | 483 F(ClassOf) \ |
| 486 F(StringCharCodeAt) \ | 484 F(StringCharCodeAt) \ |
| 487 F(SubString) \ | 485 F(SubString) \ |
| 488 F(RegExpExec) \ | 486 F(RegExpExec) \ |
| 489 F(RegExpConstructResult) \ | 487 F(RegExpConstructResult) \ |
| 490 F(ToInteger) \ | 488 F(ToInteger) \ |
| 491 F(NumberToString) \ | 489 F(NumberToString) \ |
| 492 F(ToString) \ | 490 F(ToString) \ |
| (...skipping 531 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1024 Address start_; | 1022 Address start_; |
| 1025 Address instruction_start_; | 1023 Address instruction_start_; |
| 1026 uint32_t length_; | 1024 uint32_t length_; |
| 1027 }; | 1025 }; |
| 1028 | 1026 |
| 1029 | 1027 |
| 1030 } // namespace internal | 1028 } // namespace internal |
| 1031 } // namespace v8 | 1029 } // namespace v8 |
| 1032 | 1030 |
| 1033 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ | 1031 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ |
| OLD | NEW |