| 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 552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 563 case FAST_HOLEY_DOUBLE_ELEMENTS: | 563 case FAST_HOLEY_DOUBLE_ELEMENTS: |
| 564 case EXTERNAL_BYTE_ELEMENTS: | 564 case EXTERNAL_BYTE_ELEMENTS: |
| 565 case EXTERNAL_UNSIGNED_BYTE_ELEMENTS: | 565 case EXTERNAL_UNSIGNED_BYTE_ELEMENTS: |
| 566 case EXTERNAL_SHORT_ELEMENTS: | 566 case EXTERNAL_SHORT_ELEMENTS: |
| 567 case EXTERNAL_UNSIGNED_SHORT_ELEMENTS: | 567 case EXTERNAL_UNSIGNED_SHORT_ELEMENTS: |
| 568 case EXTERNAL_INT_ELEMENTS: | 568 case EXTERNAL_INT_ELEMENTS: |
| 569 case EXTERNAL_UNSIGNED_INT_ELEMENTS: | 569 case EXTERNAL_UNSIGNED_INT_ELEMENTS: |
| 570 case EXTERNAL_FLOAT_ELEMENTS: | 570 case EXTERNAL_FLOAT_ELEMENTS: |
| 571 case EXTERNAL_DOUBLE_ELEMENTS: | 571 case EXTERNAL_DOUBLE_ELEMENTS: |
| 572 case EXTERNAL_PIXEL_ELEMENTS: | 572 case EXTERNAL_PIXEL_ELEMENTS: |
| 573 case UINT8_ELEMENTS: | |
| 574 case INT8_ELEMENTS: | |
| 575 case UINT16_ELEMENTS: | |
| 576 case INT16_ELEMENTS: | |
| 577 case UINT32_ELEMENTS: | |
| 578 case INT32_ELEMENTS: | |
| 579 case FLOAT32_ELEMENTS: | |
| 580 case FLOAT64_ELEMENTS: | |
| 581 case UINT8_CLAMPED_ELEMENTS: | |
| 582 UNREACHABLE(); | 573 UNREACHABLE(); |
| 583 break; | 574 break; |
| 584 case DICTIONARY_ELEMENTS: | 575 case DICTIONARY_ELEMENTS: |
| 585 KeyedStoreStubCompiler::GenerateStoreDictionaryElement(masm); | 576 KeyedStoreStubCompiler::GenerateStoreDictionaryElement(masm); |
| 586 break; | 577 break; |
| 587 case NON_STRICT_ARGUMENTS_ELEMENTS: | 578 case NON_STRICT_ARGUMENTS_ELEMENTS: |
| 588 UNREACHABLE(); | 579 UNREACHABLE(); |
| 589 break; | 580 break; |
| 590 } | 581 } |
| 591 } | 582 } |
| (...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 821 InstallDescriptor(isolate, &stub3); | 812 InstallDescriptor(isolate, &stub3); |
| 822 } | 813 } |
| 823 | 814 |
| 824 InternalArrayConstructorStub::InternalArrayConstructorStub( | 815 InternalArrayConstructorStub::InternalArrayConstructorStub( |
| 825 Isolate* isolate) { | 816 Isolate* isolate) { |
| 826 InternalArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate); | 817 InternalArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate); |
| 827 } | 818 } |
| 828 | 819 |
| 829 | 820 |
| 830 } } // namespace v8::internal | 821 } } // namespace v8::internal |
| OLD | NEW |