| 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 1344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1355 | 1355 |
| 1356 | 1356 |
| 1357 static void Generate_KeyedLoadIC_PreMonomorphic(MacroAssembler* masm) { | 1357 static void Generate_KeyedLoadIC_PreMonomorphic(MacroAssembler* masm) { |
| 1358 KeyedLoadIC::GeneratePreMonomorphic(masm); | 1358 KeyedLoadIC::GeneratePreMonomorphic(masm); |
| 1359 } | 1359 } |
| 1360 | 1360 |
| 1361 static void Generate_KeyedLoadIC_IndexedInterceptor(MacroAssembler* masm) { | 1361 static void Generate_KeyedLoadIC_IndexedInterceptor(MacroAssembler* masm) { |
| 1362 KeyedLoadIC::GenerateIndexedInterceptor(masm); | 1362 KeyedLoadIC::GenerateIndexedInterceptor(masm); |
| 1363 } | 1363 } |
| 1364 | 1364 |
| 1365 static void Generate_KeyedLoadIC_NonStrictArguments(MacroAssembler* masm) { |
| 1366 KeyedLoadIC::GenerateNonStrictArguments(masm); |
| 1367 } |
| 1365 | 1368 |
| 1366 static void Generate_StoreIC_Initialize(MacroAssembler* masm) { | 1369 static void Generate_StoreIC_Initialize(MacroAssembler* masm) { |
| 1367 StoreIC::GenerateInitialize(masm); | 1370 StoreIC::GenerateInitialize(masm); |
| 1368 } | 1371 } |
| 1369 | 1372 |
| 1370 | 1373 |
| 1371 static void Generate_StoreIC_Initialize_Strict(MacroAssembler* masm) { | 1374 static void Generate_StoreIC_Initialize_Strict(MacroAssembler* masm) { |
| 1372 StoreIC::GenerateInitialize(masm); | 1375 StoreIC::GenerateInitialize(masm); |
| 1373 } | 1376 } |
| 1374 | 1377 |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1445 | 1448 |
| 1446 static void Generate_KeyedStoreIC_Initialize(MacroAssembler* masm) { | 1449 static void Generate_KeyedStoreIC_Initialize(MacroAssembler* masm) { |
| 1447 KeyedStoreIC::GenerateInitialize(masm); | 1450 KeyedStoreIC::GenerateInitialize(masm); |
| 1448 } | 1451 } |
| 1449 | 1452 |
| 1450 | 1453 |
| 1451 static void Generate_KeyedStoreIC_Initialize_Strict(MacroAssembler* masm) { | 1454 static void Generate_KeyedStoreIC_Initialize_Strict(MacroAssembler* masm) { |
| 1452 KeyedStoreIC::GenerateInitialize(masm); | 1455 KeyedStoreIC::GenerateInitialize(masm); |
| 1453 } | 1456 } |
| 1454 | 1457 |
| 1458 static void Generate_KeyedStoreIC_NonStrictArguments(MacroAssembler* masm) { |
| 1459 KeyedStoreIC::GenerateNonStrictArguments(masm); |
| 1460 } |
| 1455 | 1461 |
| 1456 #ifdef ENABLE_DEBUGGER_SUPPORT | 1462 #ifdef ENABLE_DEBUGGER_SUPPORT |
| 1457 static void Generate_LoadIC_DebugBreak(MacroAssembler* masm) { | 1463 static void Generate_LoadIC_DebugBreak(MacroAssembler* masm) { |
| 1458 Debug::GenerateLoadICDebugBreak(masm); | 1464 Debug::GenerateLoadICDebugBreak(masm); |
| 1459 } | 1465 } |
| 1460 | 1466 |
| 1461 | 1467 |
| 1462 static void Generate_StoreIC_DebugBreak(MacroAssembler* masm) { | 1468 static void Generate_StoreIC_DebugBreak(MacroAssembler* masm) { |
| 1463 Debug::GenerateStoreICDebugBreak(masm); | 1469 Debug::GenerateStoreICDebugBreak(masm); |
| 1464 } | 1470 } |
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1709 return Handle<Code>(code_address); \ | 1715 return Handle<Code>(code_address); \ |
| 1710 } | 1716 } |
| 1711 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) | 1717 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) |
| 1712 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) | 1718 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) |
| 1713 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) | 1719 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) |
| 1714 #undef DEFINE_BUILTIN_ACCESSOR_C | 1720 #undef DEFINE_BUILTIN_ACCESSOR_C |
| 1715 #undef DEFINE_BUILTIN_ACCESSOR_A | 1721 #undef DEFINE_BUILTIN_ACCESSOR_A |
| 1716 | 1722 |
| 1717 | 1723 |
| 1718 } } // namespace v8::internal | 1724 } } // namespace v8::internal |
| OLD | NEW |