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

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

Issue 90643003: Experimental implementation: Exposing SIMD instructions into JavaScript Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years 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/bootstrapper.cc ('k') | src/contexts.h » ('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 981 matching lines...) Expand 10 before | Expand all | Expand 10 after
992 case FAST_HOLEY_SMI_ELEMENTS: 992 case FAST_HOLEY_SMI_ELEMENTS:
993 case FAST_DOUBLE_ELEMENTS: 993 case FAST_DOUBLE_ELEMENTS:
994 case FAST_HOLEY_DOUBLE_ELEMENTS: 994 case FAST_HOLEY_DOUBLE_ELEMENTS:
995 case EXTERNAL_BYTE_ELEMENTS: 995 case EXTERNAL_BYTE_ELEMENTS:
996 case EXTERNAL_UNSIGNED_BYTE_ELEMENTS: 996 case EXTERNAL_UNSIGNED_BYTE_ELEMENTS:
997 case EXTERNAL_SHORT_ELEMENTS: 997 case EXTERNAL_SHORT_ELEMENTS:
998 case EXTERNAL_UNSIGNED_SHORT_ELEMENTS: 998 case EXTERNAL_UNSIGNED_SHORT_ELEMENTS:
999 case EXTERNAL_INT_ELEMENTS: 999 case EXTERNAL_INT_ELEMENTS:
1000 case EXTERNAL_UNSIGNED_INT_ELEMENTS: 1000 case EXTERNAL_UNSIGNED_INT_ELEMENTS:
1001 case EXTERNAL_FLOAT_ELEMENTS: 1001 case EXTERNAL_FLOAT_ELEMENTS:
1002 case EXTERNAL_FLOAT32x4_ELEMENTS:
1003 case EXTERNAL_INT32x4_ELEMENTS:
1002 case EXTERNAL_DOUBLE_ELEMENTS: 1004 case EXTERNAL_DOUBLE_ELEMENTS:
1003 case EXTERNAL_PIXEL_ELEMENTS: 1005 case EXTERNAL_PIXEL_ELEMENTS:
1004 UNREACHABLE(); 1006 UNREACHABLE();
1005 break; 1007 break;
1006 case DICTIONARY_ELEMENTS: 1008 case DICTIONARY_ELEMENTS:
1007 KeyedStoreStubCompiler::GenerateStoreDictionaryElement(masm); 1009 KeyedStoreStubCompiler::GenerateStoreDictionaryElement(masm);
1008 break; 1010 break;
1009 case NON_STRICT_ARGUMENTS_ELEMENTS: 1011 case NON_STRICT_ARGUMENTS_ELEMENTS:
1010 UNREACHABLE(); 1012 UNREACHABLE();
1011 break; 1013 break;
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
1208 InstallDescriptor(isolate, &stub3); 1210 InstallDescriptor(isolate, &stub3);
1209 } 1211 }
1210 1212
1211 InternalArrayConstructorStub::InternalArrayConstructorStub( 1213 InternalArrayConstructorStub::InternalArrayConstructorStub(
1212 Isolate* isolate) { 1214 Isolate* isolate) {
1213 InternalArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate); 1215 InternalArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate);
1214 } 1216 }
1215 1217
1216 1218
1217 } } // namespace v8::internal 1219 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/contexts.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698