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

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, 10 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 1269 matching lines...) Expand 10 before | Expand all | Expand 10 after
1280 static void Generate_KeyedLoadIC_Generic(MacroAssembler* masm) { 1280 static void Generate_KeyedLoadIC_Generic(MacroAssembler* masm) {
1281 KeyedLoadIC::GenerateGeneric(masm); 1281 KeyedLoadIC::GenerateGeneric(masm);
1282 } 1282 }
1283 1283
1284 1284
1285 static void Generate_KeyedLoadIC_String(MacroAssembler* masm) { 1285 static void Generate_KeyedLoadIC_String(MacroAssembler* masm) {
1286 KeyedLoadIC::GenerateString(masm); 1286 KeyedLoadIC::GenerateString(masm);
1287 } 1287 }
1288 1288
1289 1289
1290 static void Generate_KeyedLoadIC_PixelArray(MacroAssembler* masm) {
1291 KeyedLoadIC::GeneratePixelArray(masm);
1292 }
1293
1294
1290 static void Generate_KeyedLoadIC_PreMonomorphic(MacroAssembler* masm) { 1295 static void Generate_KeyedLoadIC_PreMonomorphic(MacroAssembler* masm) {
1291 KeyedLoadIC::GeneratePreMonomorphic(masm); 1296 KeyedLoadIC::GeneratePreMonomorphic(masm);
1292 } 1297 }
1293 1298
1294 static void Generate_KeyedLoadIC_IndexedInterceptor(MacroAssembler* masm) { 1299 static void Generate_KeyedLoadIC_IndexedInterceptor(MacroAssembler* masm) {
1295 KeyedLoadIC::GenerateIndexedInterceptor(masm); 1300 KeyedLoadIC::GenerateIndexedInterceptor(masm);
1296 } 1301 }
1297 1302
1298 1303
1299 static void Generate_StoreIC_Initialize(MacroAssembler* masm) { 1304 static void Generate_StoreIC_Initialize(MacroAssembler* masm) {
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
1536 if (entry->contains(pc)) { 1541 if (entry->contains(pc)) {
1537 return names_[i]; 1542 return names_[i];
1538 } 1543 }
1539 } 1544 }
1540 } 1545 }
1541 return NULL; 1546 return NULL;
1542 } 1547 }
1543 1548
1544 1549
1545 } } // namespace v8::internal 1550 } } // namespace v8::internal
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698