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 492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
503 void EmitPossiblyEvalCall(Call* expr); | 503 void EmitPossiblyEvalCall(Call* expr); |
504 | 504 |
505 #define FOR_EACH_FULL_CODE_INTRINSIC(F) \ | 505 #define FOR_EACH_FULL_CODE_INTRINSIC(F) \ |
506 F(IsSmi) \ | 506 F(IsSmi) \ |
507 F(IsArray) \ | 507 F(IsArray) \ |
508 F(IsTypedArray) \ | 508 F(IsTypedArray) \ |
509 F(IsRegExp) \ | 509 F(IsRegExp) \ |
510 F(IsJSProxy) \ | 510 F(IsJSProxy) \ |
511 F(Call) \ | 511 F(Call) \ |
512 F(NewObject) \ | 512 F(NewObject) \ |
| 513 F(ValueOf) \ |
513 F(StringCharFromCode) \ | 514 F(StringCharFromCode) \ |
514 F(IsJSReceiver) \ | 515 F(IsJSReceiver) \ |
515 F(HasCachedArrayIndex) \ | 516 F(HasCachedArrayIndex) \ |
516 F(GetCachedArrayIndex) \ | 517 F(GetCachedArrayIndex) \ |
517 F(GetSuperConstructor) \ | 518 F(GetSuperConstructor) \ |
518 F(DebugBreakInOptimizedCode) \ | 519 F(DebugBreakInOptimizedCode) \ |
519 F(ClassOf) \ | 520 F(ClassOf) \ |
520 F(StringCharCodeAt) \ | 521 F(StringCharCodeAt) \ |
521 F(SubString) \ | 522 F(SubString) \ |
522 F(RegExpExec) \ | 523 F(RegExpExec) \ |
(...skipping 533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1056 Address start_; | 1057 Address start_; |
1057 Address instruction_start_; | 1058 Address instruction_start_; |
1058 uint32_t length_; | 1059 uint32_t length_; |
1059 }; | 1060 }; |
1060 | 1061 |
1061 | 1062 |
1062 } // namespace internal | 1063 } // namespace internal |
1063 } // namespace v8 | 1064 } // namespace v8 |
1064 | 1065 |
1065 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ | 1066 #endif // V8_FULL_CODEGEN_FULL_CODEGEN_H_ |
OLD | NEW |