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

Side by Side Diff: src/builtins.cc

Issue 26807003: Add a slow stub for store ICs. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 2 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/ic.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 1360 matching lines...) Expand 10 before | Expand all | Expand 10 after
1371 static void Generate_KeyedLoadIC_NonStrictArguments(MacroAssembler* masm) { 1371 static void Generate_KeyedLoadIC_NonStrictArguments(MacroAssembler* masm) {
1372 KeyedLoadIC::GenerateNonStrictArguments(masm); 1372 KeyedLoadIC::GenerateNonStrictArguments(masm);
1373 } 1373 }
1374 1374
1375 1375
1376 static void Generate_StoreIC_Slow(MacroAssembler* masm) { 1376 static void Generate_StoreIC_Slow(MacroAssembler* masm) {
1377 StoreIC::GenerateSlow(masm); 1377 StoreIC::GenerateSlow(masm);
1378 } 1378 }
1379 1379
1380 1380
1381 static void Generate_StoreIC_Slow_Strict(MacroAssembler* masm) {
1382 StoreIC::GenerateSlow(masm);
1383 }
1384
1385
1381 static void Generate_StoreIC_Initialize(MacroAssembler* masm) { 1386 static void Generate_StoreIC_Initialize(MacroAssembler* masm) {
1382 StoreIC::GenerateInitialize(masm); 1387 StoreIC::GenerateInitialize(masm);
1383 } 1388 }
1384 1389
1385 1390
1386 static void Generate_StoreIC_Initialize_Strict(MacroAssembler* masm) { 1391 static void Generate_StoreIC_Initialize_Strict(MacroAssembler* masm) {
1387 StoreIC::GenerateInitialize(masm); 1392 StoreIC::GenerateInitialize(masm);
1388 } 1393 }
1389 1394
1390 1395
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
1466 static void Generate_KeyedStoreIC_MissForceGeneric(MacroAssembler* masm) { 1471 static void Generate_KeyedStoreIC_MissForceGeneric(MacroAssembler* masm) {
1467 KeyedStoreIC::GenerateMiss(masm, MISS_FORCE_GENERIC); 1472 KeyedStoreIC::GenerateMiss(masm, MISS_FORCE_GENERIC);
1468 } 1473 }
1469 1474
1470 1475
1471 static void Generate_KeyedStoreIC_Slow(MacroAssembler* masm) { 1476 static void Generate_KeyedStoreIC_Slow(MacroAssembler* masm) {
1472 KeyedStoreIC::GenerateSlow(masm); 1477 KeyedStoreIC::GenerateSlow(masm);
1473 } 1478 }
1474 1479
1475 1480
1481 static void Generate_KeyedStoreIC_Slow_Strict(MacroAssembler* masm) {
1482 KeyedStoreIC::GenerateSlow(masm);
1483 }
1484
1485
1476 static void Generate_KeyedStoreIC_Initialize(MacroAssembler* masm) { 1486 static void Generate_KeyedStoreIC_Initialize(MacroAssembler* masm) {
1477 KeyedStoreIC::GenerateInitialize(masm); 1487 KeyedStoreIC::GenerateInitialize(masm);
1478 } 1488 }
1479 1489
1480 1490
1481 static void Generate_KeyedStoreIC_Initialize_Strict(MacroAssembler* masm) { 1491 static void Generate_KeyedStoreIC_Initialize_Strict(MacroAssembler* masm) {
1482 KeyedStoreIC::GenerateInitialize(masm); 1492 KeyedStoreIC::GenerateInitialize(masm);
1483 } 1493 }
1484 1494
1485 1495
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after
1800 } 1810 }
1801 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) 1811 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C)
1802 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) 1812 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A)
1803 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) 1813 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H)
1804 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) 1814 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A)
1805 #undef DEFINE_BUILTIN_ACCESSOR_C 1815 #undef DEFINE_BUILTIN_ACCESSOR_C
1806 #undef DEFINE_BUILTIN_ACCESSOR_A 1816 #undef DEFINE_BUILTIN_ACCESSOR_A
1807 1817
1808 1818
1809 } } // namespace v8::internal 1819 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/builtins.h ('k') | src/ic.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698