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

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: GC fixes 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
« no previous file with comments | « src/arm/lithium-codegen-arm.cc ('k') | src/elements.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 552 matching lines...) Expand 10 before | Expand all | Expand 10 after
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:
573 UNREACHABLE(); 582 UNREACHABLE();
574 break; 583 break;
575 case DICTIONARY_ELEMENTS: 584 case DICTIONARY_ELEMENTS:
576 KeyedStoreStubCompiler::GenerateStoreDictionaryElement(masm); 585 KeyedStoreStubCompiler::GenerateStoreDictionaryElement(masm);
577 break; 586 break;
578 case NON_STRICT_ARGUMENTS_ELEMENTS: 587 case NON_STRICT_ARGUMENTS_ELEMENTS:
579 UNREACHABLE(); 588 UNREACHABLE();
580 break; 589 break;
581 } 590 }
582 } 591 }
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after
812 InstallDescriptor(isolate, &stub3); 821 InstallDescriptor(isolate, &stub3);
813 } 822 }
814 823
815 InternalArrayConstructorStub::InternalArrayConstructorStub( 824 InternalArrayConstructorStub::InternalArrayConstructorStub(
816 Isolate* isolate) { 825 Isolate* isolate) {
817 InternalArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate); 826 InternalArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate);
818 } 827 }
819 828
820 829
821 } } // namespace v8::internal 830 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/arm/lithium-codegen-arm.cc ('k') | src/elements.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698