OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 728 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
739 | 739 |
740 Major MajorKey() { return CallFunction; } | 740 Major MajorKey() { return CallFunction; } |
741 int MinorKey() { | 741 int MinorKey() { |
742 // Encode the parameters in a unique 32 bit value. | 742 // Encode the parameters in a unique 32 bit value. |
743 return InLoopBits::encode(in_loop_) | 743 return InLoopBits::encode(in_loop_) |
744 | FlagBits::encode(flags_) | 744 | FlagBits::encode(flags_) |
745 | ArgcBits::encode(argc_); | 745 | ArgcBits::encode(argc_); |
746 } | 746 } |
747 | 747 |
748 InLoopFlag InLoop() { return in_loop_; } | 748 InLoopFlag InLoop() { return in_loop_; } |
749 bool ReceiverMightBeValue() { | 749 |
750 return (flags_ & RECEIVER_MIGHT_BE_VALUE) != 0; | 750 bool ReceiverMightBeImplicit() { |
| 751 return (flags_ & RECEIVER_MIGHT_BE_IMPLICIT) != 0; |
751 } | 752 } |
752 }; | 753 }; |
753 | 754 |
754 | 755 |
755 enum StringIndexFlags { | 756 enum StringIndexFlags { |
756 // Accepts smis or heap numbers. | 757 // Accepts smis or heap numbers. |
757 STRING_INDEX_IS_NUMBER, | 758 STRING_INDEX_IS_NUMBER, |
758 | 759 |
759 // Accepts smis or heap numbers that are valid array indices | 760 // Accepts smis or heap numbers that are valid array indices |
760 // (ECMA-262 15.4). Invalid indices are reported as being out of | 761 // (ECMA-262 15.4). Invalid indices are reported as being out of |
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1002 DECLARE_ARRAY_STUB_PRINT(KeyedStoreExternalArrayStub) | 1003 DECLARE_ARRAY_STUB_PRINT(KeyedStoreExternalArrayStub) |
1003 | 1004 |
1004 protected: | 1005 protected: |
1005 ExternalArrayType array_type_; | 1006 ExternalArrayType array_type_; |
1006 }; | 1007 }; |
1007 | 1008 |
1008 | 1009 |
1009 } } // namespace v8::internal | 1010 } } // namespace v8::internal |
1010 | 1011 |
1011 #endif // V8_CODE_STUBS_H_ | 1012 #endif // V8_CODE_STUBS_H_ |
OLD | NEW |