Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(427)

Side by Side Diff: src/code-stubs.cc

Issue 101413006: Implement in-heap backing store for typed arrays. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Platform ports Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 553 matching lines...) Expand 10 before | Expand all | Expand 10 after
564 case FAST_HOLEY_DOUBLE_ELEMENTS: 564 case FAST_HOLEY_DOUBLE_ELEMENTS:
565 case EXTERNAL_BYTE_ELEMENTS: 565 case EXTERNAL_BYTE_ELEMENTS:
566 case EXTERNAL_UNSIGNED_BYTE_ELEMENTS: 566 case EXTERNAL_UNSIGNED_BYTE_ELEMENTS:
567 case EXTERNAL_SHORT_ELEMENTS: 567 case EXTERNAL_SHORT_ELEMENTS:
568 case EXTERNAL_UNSIGNED_SHORT_ELEMENTS: 568 case EXTERNAL_UNSIGNED_SHORT_ELEMENTS:
569 case EXTERNAL_INT_ELEMENTS: 569 case EXTERNAL_INT_ELEMENTS:
570 case EXTERNAL_UNSIGNED_INT_ELEMENTS: 570 case EXTERNAL_UNSIGNED_INT_ELEMENTS:
571 case EXTERNAL_FLOAT_ELEMENTS: 571 case EXTERNAL_FLOAT_ELEMENTS:
572 case EXTERNAL_DOUBLE_ELEMENTS: 572 case EXTERNAL_DOUBLE_ELEMENTS:
573 case EXTERNAL_PIXEL_ELEMENTS: 573 case EXTERNAL_PIXEL_ELEMENTS:
574 case UINT8_ELEMENTS:
575 case INT8_ELEMENTS:
576 case UINT16_ELEMENTS:
577 case INT16_ELEMENTS:
578 case UINT32_ELEMENTS:
579 case INT32_ELEMENTS:
580 case FLOAT32_ELEMENTS:
581 case FLOAT64_ELEMENTS:
582 case UINT8_CLAMPED_ELEMENTS:
574 UNREACHABLE(); 583 UNREACHABLE();
575 break; 584 break;
576 case DICTIONARY_ELEMENTS: 585 case DICTIONARY_ELEMENTS:
577 KeyedStoreStubCompiler::GenerateStoreDictionaryElement(masm); 586 KeyedStoreStubCompiler::GenerateStoreDictionaryElement(masm);
578 break; 587 break;
579 case NON_STRICT_ARGUMENTS_ELEMENTS: 588 case NON_STRICT_ARGUMENTS_ELEMENTS:
580 UNREACHABLE(); 589 UNREACHABLE();
581 break; 590 break;
582 } 591 }
583 } 592 }
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
814 InstallDescriptor(isolate, &stub3); 823 InstallDescriptor(isolate, &stub3);
815 } 824 }
816 825
817 InternalArrayConstructorStub::InternalArrayConstructorStub( 826 InternalArrayConstructorStub::InternalArrayConstructorStub(
818 Isolate* isolate) { 827 Isolate* isolate) {
819 InternalArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate); 828 InternalArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate);
820 } 829 }
821 830
822 831
823 } } // namespace v8::internal 832 } } // namespace v8::internal
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698