OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 531 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
542 case FAST_HOLEY_DOUBLE_ELEMENTS: | 542 case FAST_HOLEY_DOUBLE_ELEMENTS: |
543 case EXTERNAL_BYTE_ELEMENTS: | 543 case EXTERNAL_BYTE_ELEMENTS: |
544 case EXTERNAL_UNSIGNED_BYTE_ELEMENTS: | 544 case EXTERNAL_UNSIGNED_BYTE_ELEMENTS: |
545 case EXTERNAL_SHORT_ELEMENTS: | 545 case EXTERNAL_SHORT_ELEMENTS: |
546 case EXTERNAL_UNSIGNED_SHORT_ELEMENTS: | 546 case EXTERNAL_UNSIGNED_SHORT_ELEMENTS: |
547 case EXTERNAL_INT_ELEMENTS: | 547 case EXTERNAL_INT_ELEMENTS: |
548 case EXTERNAL_UNSIGNED_INT_ELEMENTS: | 548 case EXTERNAL_UNSIGNED_INT_ELEMENTS: |
549 case EXTERNAL_FLOAT_ELEMENTS: | 549 case EXTERNAL_FLOAT_ELEMENTS: |
550 case EXTERNAL_DOUBLE_ELEMENTS: | 550 case EXTERNAL_DOUBLE_ELEMENTS: |
551 case EXTERNAL_PIXEL_ELEMENTS: | 551 case EXTERNAL_PIXEL_ELEMENTS: |
| 552 case UINT8_ELEMENTS: |
| 553 case INT8_ELEMENTS: |
| 554 case UINT16_ELEMENTS: |
| 555 case INT16_ELEMENTS: |
| 556 case UINT32_ELEMENTS: |
| 557 case INT32_ELEMENTS: |
| 558 case FLOAT32_ELEMENTS: |
| 559 case FLOAT64_ELEMENTS: |
| 560 case UINT8_CLAMPED_ELEMENTS: |
552 UNREACHABLE(); | 561 UNREACHABLE(); |
553 break; | 562 break; |
554 case DICTIONARY_ELEMENTS: | 563 case DICTIONARY_ELEMENTS: |
555 KeyedStoreStubCompiler::GenerateStoreDictionaryElement(masm); | 564 KeyedStoreStubCompiler::GenerateStoreDictionaryElement(masm); |
556 break; | 565 break; |
557 case NON_STRICT_ARGUMENTS_ELEMENTS: | 566 case NON_STRICT_ARGUMENTS_ELEMENTS: |
558 UNREACHABLE(); | 567 UNREACHABLE(); |
559 break; | 568 break; |
560 } | 569 } |
561 } | 570 } |
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
785 InstallDescriptor(isolate, &stub3); | 794 InstallDescriptor(isolate, &stub3); |
786 } | 795 } |
787 | 796 |
788 InternalArrayConstructorStub::InternalArrayConstructorStub( | 797 InternalArrayConstructorStub::InternalArrayConstructorStub( |
789 Isolate* isolate) { | 798 Isolate* isolate) { |
790 InternalArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate); | 799 InternalArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate); |
791 } | 800 } |
792 | 801 |
793 | 802 |
794 } } // namespace v8::internal | 803 } } // namespace v8::internal |
OLD | NEW |