OLD | NEW |
1 // Copyright 2011 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 |
(...skipping 1333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1344 | 1344 |
1345 | 1345 |
1346 static void Generate_KeyedLoadIC_PreMonomorphic(MacroAssembler* masm) { | 1346 static void Generate_KeyedLoadIC_PreMonomorphic(MacroAssembler* masm) { |
1347 KeyedLoadIC::GeneratePreMonomorphic(masm); | 1347 KeyedLoadIC::GeneratePreMonomorphic(masm); |
1348 } | 1348 } |
1349 | 1349 |
1350 static void Generate_KeyedLoadIC_IndexedInterceptor(MacroAssembler* masm) { | 1350 static void Generate_KeyedLoadIC_IndexedInterceptor(MacroAssembler* masm) { |
1351 KeyedLoadIC::GenerateIndexedInterceptor(masm); | 1351 KeyedLoadIC::GenerateIndexedInterceptor(masm); |
1352 } | 1352 } |
1353 | 1353 |
| 1354 static void Generate_KeyedLoadIC_NonStrictArguments(MacroAssembler* masm) { |
| 1355 KeyedLoadIC::GenerateNonStrictArguments(masm); |
| 1356 } |
1354 | 1357 |
1355 static void Generate_StoreIC_Initialize(MacroAssembler* masm) { | 1358 static void Generate_StoreIC_Initialize(MacroAssembler* masm) { |
1356 StoreIC::GenerateInitialize(masm); | 1359 StoreIC::GenerateInitialize(masm); |
1357 } | 1360 } |
1358 | 1361 |
1359 | 1362 |
1360 static void Generate_StoreIC_Initialize_Strict(MacroAssembler* masm) { | 1363 static void Generate_StoreIC_Initialize_Strict(MacroAssembler* masm) { |
1361 StoreIC::GenerateInitialize(masm); | 1364 StoreIC::GenerateInitialize(masm); |
1362 } | 1365 } |
1363 | 1366 |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1434 | 1437 |
1435 static void Generate_KeyedStoreIC_Initialize(MacroAssembler* masm) { | 1438 static void Generate_KeyedStoreIC_Initialize(MacroAssembler* masm) { |
1436 KeyedStoreIC::GenerateInitialize(masm); | 1439 KeyedStoreIC::GenerateInitialize(masm); |
1437 } | 1440 } |
1438 | 1441 |
1439 | 1442 |
1440 static void Generate_KeyedStoreIC_Initialize_Strict(MacroAssembler* masm) { | 1443 static void Generate_KeyedStoreIC_Initialize_Strict(MacroAssembler* masm) { |
1441 KeyedStoreIC::GenerateInitialize(masm); | 1444 KeyedStoreIC::GenerateInitialize(masm); |
1442 } | 1445 } |
1443 | 1446 |
| 1447 static void Generate_KeyedStoreIC_NonStrictArguments(MacroAssembler* masm) { |
| 1448 KeyedStoreIC::GenerateNonStrictArguments(masm); |
| 1449 } |
1444 | 1450 |
1445 #ifdef ENABLE_DEBUGGER_SUPPORT | 1451 #ifdef ENABLE_DEBUGGER_SUPPORT |
1446 static void Generate_LoadIC_DebugBreak(MacroAssembler* masm) { | 1452 static void Generate_LoadIC_DebugBreak(MacroAssembler* masm) { |
1447 Debug::GenerateLoadICDebugBreak(masm); | 1453 Debug::GenerateLoadICDebugBreak(masm); |
1448 } | 1454 } |
1449 | 1455 |
1450 | 1456 |
1451 static void Generate_StoreIC_DebugBreak(MacroAssembler* masm) { | 1457 static void Generate_StoreIC_DebugBreak(MacroAssembler* masm) { |
1452 Debug::GenerateStoreICDebugBreak(masm); | 1458 Debug::GenerateStoreICDebugBreak(masm); |
1453 } | 1459 } |
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1698 return Handle<Code>(code_address); \ | 1704 return Handle<Code>(code_address); \ |
1699 } | 1705 } |
1700 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) | 1706 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) |
1701 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) | 1707 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) |
1702 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) | 1708 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) |
1703 #undef DEFINE_BUILTIN_ACCESSOR_C | 1709 #undef DEFINE_BUILTIN_ACCESSOR_C |
1704 #undef DEFINE_BUILTIN_ACCESSOR_A | 1710 #undef DEFINE_BUILTIN_ACCESSOR_A |
1705 | 1711 |
1706 | 1712 |
1707 } } // namespace v8::internal | 1713 } } // namespace v8::internal |
OLD | NEW |