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

Side by Side Diff: src/builtins.cc

Issue 6894003: Better support for 'polymorphic' JS and external arrays (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: new strategy Created 9 years, 7 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 2011 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
11 // with the distribution. 11 // with the distribution.
(...skipping 1320 matching lines...) Expand 10 before | Expand all | Expand 10 after
1332 static void Generate_LoadIC_Normal(MacroAssembler* masm) { 1332 static void Generate_LoadIC_Normal(MacroAssembler* masm) {
1333 LoadIC::GenerateNormal(masm); 1333 LoadIC::GenerateNormal(masm);
1334 } 1334 }
1335 1335
1336 1336
1337 static void Generate_KeyedLoadIC_Initialize(MacroAssembler* masm) { 1337 static void Generate_KeyedLoadIC_Initialize(MacroAssembler* masm) {
1338 KeyedLoadIC::GenerateInitialize(masm); 1338 KeyedLoadIC::GenerateInitialize(masm);
1339 } 1339 }
1340 1340
1341 1341
1342 static void Generate_KeyedLoadIC_Slow(MacroAssembler* masm) {
1343 KeyedLoadIC::GenerateRuntimeGetProperty(masm);
1344 }
1345
1346
1342 static void Generate_KeyedLoadIC_Miss(MacroAssembler* masm) { 1347 static void Generate_KeyedLoadIC_Miss(MacroAssembler* masm) {
1343 KeyedLoadIC::GenerateMiss(masm); 1348 KeyedLoadIC::GenerateMiss(masm, false);
1344 } 1349 }
1345 1350
1346 1351
1352 static void Generate_KeyedLoadIC_MissForceGeneric(MacroAssembler* masm) {
1353 KeyedLoadIC::GenerateMiss(masm, true);
1354 }
1355
1356
1347 static void Generate_KeyedLoadIC_Generic(MacroAssembler* masm) { 1357 static void Generate_KeyedLoadIC_Generic(MacroAssembler* masm) {
1348 KeyedLoadIC::GenerateGeneric(masm); 1358 KeyedLoadIC::GenerateGeneric(masm);
1349 } 1359 }
1350 1360
1351 1361
1352 static void Generate_KeyedLoadIC_String(MacroAssembler* masm) { 1362 static void Generate_KeyedLoadIC_String(MacroAssembler* masm) {
1353 KeyedLoadIC::GenerateString(masm); 1363 KeyedLoadIC::GenerateString(masm);
1354 } 1364 }
1355 1365
1356 1366
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
1422 KeyedStoreIC::GenerateGeneric(masm, kNonStrictMode); 1432 KeyedStoreIC::GenerateGeneric(masm, kNonStrictMode);
1423 } 1433 }
1424 1434
1425 1435
1426 static void Generate_KeyedStoreIC_Generic_Strict(MacroAssembler* masm) { 1436 static void Generate_KeyedStoreIC_Generic_Strict(MacroAssembler* masm) {
1427 KeyedStoreIC::GenerateGeneric(masm, kStrictMode); 1437 KeyedStoreIC::GenerateGeneric(masm, kStrictMode);
1428 } 1438 }
1429 1439
1430 1440
1431 static void Generate_KeyedStoreIC_Miss(MacroAssembler* masm) { 1441 static void Generate_KeyedStoreIC_Miss(MacroAssembler* masm) {
1432 KeyedStoreIC::GenerateMiss(masm); 1442 KeyedStoreIC::GenerateMiss(masm, false);
1433 } 1443 }
1434 1444
1435 1445
1446 static void Generate_KeyedStoreIC_MissForceGeneric(MacroAssembler* masm) {
1447 KeyedStoreIC::GenerateMiss(masm, true);
1448 }
1449
1450
1451 static void Generate_KeyedStoreIC_Slow_Strict(MacroAssembler* masm) {
1452 KeyedStoreIC::GenerateRuntimeSetProperty(masm, kStrictMode);
1453 }
1454
1455
1456 static void Generate_KeyedStoreIC_Slow_NonStrict(MacroAssembler* masm) {
1457 KeyedStoreIC::GenerateRuntimeSetProperty(masm, kNonStrictMode);
1458 }
1459
1460
1436 static void Generate_KeyedStoreIC_Initialize(MacroAssembler* masm) { 1461 static void Generate_KeyedStoreIC_Initialize(MacroAssembler* masm) {
1437 KeyedStoreIC::GenerateInitialize(masm); 1462 KeyedStoreIC::GenerateInitialize(masm);
1438 } 1463 }
1439 1464
1440 1465
1441 static void Generate_KeyedStoreIC_Initialize_Strict(MacroAssembler* masm) { 1466 static void Generate_KeyedStoreIC_Initialize_Strict(MacroAssembler* masm) {
1442 KeyedStoreIC::GenerateInitialize(masm); 1467 KeyedStoreIC::GenerateInitialize(masm);
1443 } 1468 }
1444 1469
1445 1470
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
1699 return Handle<Code>(code_address); \ 1724 return Handle<Code>(code_address); \
1700 } 1725 }
1701 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) 1726 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C)
1702 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) 1727 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A)
1703 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) 1728 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A)
1704 #undef DEFINE_BUILTIN_ACCESSOR_C 1729 #undef DEFINE_BUILTIN_ACCESSOR_C
1705 #undef DEFINE_BUILTIN_ACCESSOR_A 1730 #undef DEFINE_BUILTIN_ACCESSOR_A
1706 1731
1707 1732
1708 } } // namespace v8::internal 1733 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/builtins.h ('k') | src/heap.h » ('j') | src/ia32/stub-cache-ia32.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698