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

Side by Side Diff: src/builtins.cc

Issue 6298019: Revert "Add custom typed ICs for pixel array loads. " (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge/build/ia32
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
« no previous file with comments | « src/builtins.h ('k') | src/ia32/ic-ia32.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 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
1295 static void Generate_KeyedLoadIC_PreMonomorphic(MacroAssembler* masm) { 1290 static void Generate_KeyedLoadIC_PreMonomorphic(MacroAssembler* masm) {
1296 KeyedLoadIC::GeneratePreMonomorphic(masm); 1291 KeyedLoadIC::GeneratePreMonomorphic(masm);
1297 } 1292 }
1298 1293
1299 static void Generate_KeyedLoadIC_IndexedInterceptor(MacroAssembler* masm) { 1294 static void Generate_KeyedLoadIC_IndexedInterceptor(MacroAssembler* masm) {
1300 KeyedLoadIC::GenerateIndexedInterceptor(masm); 1295 KeyedLoadIC::GenerateIndexedInterceptor(masm);
1301 } 1296 }
1302 1297
1303 1298
1304 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
1541 if (entry->contains(pc)) { 1536 if (entry->contains(pc)) {
1542 return names_[i]; 1537 return names_[i];
1543 } 1538 }
1544 } 1539 }
1545 } 1540 }
1546 return NULL; 1541 return NULL;
1547 } 1542 }
1548 1543
1549 1544
1550 } } // namespace v8::internal 1545 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/builtins.h ('k') | src/ia32/ic-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698