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

Side by Side Diff: src/builtins.cc

Issue 6323002: Add custom typed ICs for pixel array loads. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 9 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 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 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 1264 matching lines...) Expand 10 before | Expand all | Expand 10 after
1275 static void Generate_KeyedLoadIC_Generic(MacroAssembler* masm) { 1275 static void Generate_KeyedLoadIC_Generic(MacroAssembler* masm) {
1276 KeyedLoadIC::GenerateGeneric(masm); 1276 KeyedLoadIC::GenerateGeneric(masm);
1277 } 1277 }
1278 1278
1279 1279
1280 static void Generate_KeyedLoadIC_String(MacroAssembler* masm) { 1280 static void Generate_KeyedLoadIC_String(MacroAssembler* masm) {
1281 KeyedLoadIC::GenerateString(masm); 1281 KeyedLoadIC::GenerateString(masm);
1282 } 1282 }
1283 1283
1284 1284
1285 static void Generate_KeyedLoadIC_PixelArray(MacroAssembler* masm) {
1286 KeyedLoadIC::GeneratePixelArray(masm);
1287 }
1288
1289
1285 static void Generate_KeyedLoadIC_PreMonomorphic(MacroAssembler* masm) { 1290 static void Generate_KeyedLoadIC_PreMonomorphic(MacroAssembler* masm) {
1286 KeyedLoadIC::GeneratePreMonomorphic(masm); 1291 KeyedLoadIC::GeneratePreMonomorphic(masm);
1287 } 1292 }
1288 1293
1289 static void Generate_KeyedLoadIC_IndexedInterceptor(MacroAssembler* masm) { 1294 static void Generate_KeyedLoadIC_IndexedInterceptor(MacroAssembler* masm) {
1290 KeyedLoadIC::GenerateIndexedInterceptor(masm); 1295 KeyedLoadIC::GenerateIndexedInterceptor(masm);
1291 } 1296 }
1292 1297
1293 1298
1294 static void Generate_StoreIC_Initialize(MacroAssembler* masm) { 1299 static void Generate_StoreIC_Initialize(MacroAssembler* masm) {
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
1531 if (entry->contains(pc)) { 1536 if (entry->contains(pc)) {
1532 return names_[i]; 1537 return names_[i];
1533 } 1538 }
1534 } 1539 }
1535 } 1540 }
1536 return NULL; 1541 return NULL;
1537 } 1542 }
1538 1543
1539 1544
1540 } } // namespace v8::internal 1545 } } // namespace v8::internal
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698