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