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_H_ | 5 #ifndef V8_FULL_CODEGEN_H_ |
6 #define V8_FULL_CODEGEN_H_ | 6 #define V8_FULL_CODEGEN_H_ |
7 | 7 |
8 #include "src/v8.h" | 8 #include "src/v8.h" |
9 | 9 |
10 #include "src/allocation.h" | 10 #include "src/allocation.h" |
(...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
522 F(IsArray) \ | 522 F(IsArray) \ |
523 F(IsRegExp) \ | 523 F(IsRegExp) \ |
524 F(IsJSProxy) \ | 524 F(IsJSProxy) \ |
525 F(IsConstructCall) \ | 525 F(IsConstructCall) \ |
526 F(CallFunction) \ | 526 F(CallFunction) \ |
527 F(DefaultConstructorCallSuper) \ | 527 F(DefaultConstructorCallSuper) \ |
528 F(ArgumentsLength) \ | 528 F(ArgumentsLength) \ |
529 F(Arguments) \ | 529 F(Arguments) \ |
530 F(ValueOf) \ | 530 F(ValueOf) \ |
531 F(SetValueOf) \ | 531 F(SetValueOf) \ |
| 532 F(ThrowIfNotADate) \ |
532 F(DateField) \ | 533 F(DateField) \ |
533 F(StringCharFromCode) \ | 534 F(StringCharFromCode) \ |
534 F(StringCharAt) \ | 535 F(StringCharAt) \ |
535 F(OneByteSeqStringSetChar) \ | 536 F(OneByteSeqStringSetChar) \ |
536 F(TwoByteSeqStringSetChar) \ | 537 F(TwoByteSeqStringSetChar) \ |
537 F(ObjectEquals) \ | 538 F(ObjectEquals) \ |
538 F(IsObject) \ | 539 F(IsObject) \ |
539 F(IsFunction) \ | 540 F(IsFunction) \ |
540 F(IsUndetectableObject) \ | 541 F(IsUndetectableObject) \ |
541 F(IsSpecObject) \ | 542 F(IsSpecObject) \ |
(...skipping 544 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1086 | 1087 |
1087 Address start_; | 1088 Address start_; |
1088 Address instruction_start_; | 1089 Address instruction_start_; |
1089 uint32_t length_; | 1090 uint32_t length_; |
1090 }; | 1091 }; |
1091 | 1092 |
1092 | 1093 |
1093 } } // namespace v8::internal | 1094 } } // namespace v8::internal |
1094 | 1095 |
1095 #endif // V8_FULL_CODEGEN_H_ | 1096 #endif // V8_FULL_CODEGEN_H_ |
OLD | NEW |