| OLD | NEW |
| 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 1302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1313 LoadIC::GenerateMiss(masm); | 1313 LoadIC::GenerateMiss(masm); |
| 1314 } | 1314 } |
| 1315 | 1315 |
| 1316 | 1316 |
| 1317 static void Generate_LoadIC_Normal(MacroAssembler* masm) { | 1317 static void Generate_LoadIC_Normal(MacroAssembler* masm) { |
| 1318 LoadIC::GenerateNormal(masm); | 1318 LoadIC::GenerateNormal(masm); |
| 1319 } | 1319 } |
| 1320 | 1320 |
| 1321 | 1321 |
| 1322 static void Generate_LoadIC_Getter_ForDeopt(MacroAssembler* masm) { | 1322 static void Generate_LoadIC_Getter_ForDeopt(MacroAssembler* masm) { |
| 1323 LoadStubCompiler::GenerateLoadViaGetter( | 1323 LoadStubCompiler::GenerateLoadViaGetterForDeopt(masm); |
| 1324 masm, Handle<HeapType>::null(), | |
| 1325 LoadStubCompiler::registers()[0], Handle<JSFunction>()); | |
| 1326 } | 1324 } |
| 1327 | 1325 |
| 1328 | 1326 |
| 1329 static void Generate_LoadIC_Slow(MacroAssembler* masm) { | 1327 static void Generate_LoadIC_Slow(MacroAssembler* masm) { |
| 1330 LoadIC::GenerateRuntimeGetProperty(masm); | 1328 LoadIC::GenerateRuntimeGetProperty(masm); |
| 1331 } | 1329 } |
| 1332 | 1330 |
| 1333 | 1331 |
| 1334 static void Generate_KeyedLoadIC_Initialize(MacroAssembler* masm) { | 1332 static void Generate_KeyedLoadIC_Initialize(MacroAssembler* masm) { |
| 1335 KeyedLoadIC::GenerateInitialize(masm); | 1333 KeyedLoadIC::GenerateInitialize(masm); |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1380 StoreIC::GenerateMiss(masm); | 1378 StoreIC::GenerateMiss(masm); |
| 1381 } | 1379 } |
| 1382 | 1380 |
| 1383 | 1381 |
| 1384 static void Generate_StoreIC_Normal(MacroAssembler* masm) { | 1382 static void Generate_StoreIC_Normal(MacroAssembler* masm) { |
| 1385 StoreIC::GenerateNormal(masm); | 1383 StoreIC::GenerateNormal(masm); |
| 1386 } | 1384 } |
| 1387 | 1385 |
| 1388 | 1386 |
| 1389 static void Generate_StoreIC_Setter_ForDeopt(MacroAssembler* masm) { | 1387 static void Generate_StoreIC_Setter_ForDeopt(MacroAssembler* masm) { |
| 1390 StoreStubCompiler::GenerateStoreViaSetter( | 1388 StoreStubCompiler::GenerateStoreViaSetterForDeopt(masm); |
| 1391 masm, Handle<HeapType>::null(), Handle<JSFunction>()); | |
| 1392 } | 1389 } |
| 1393 | 1390 |
| 1394 | 1391 |
| 1395 static void Generate_KeyedStoreIC_Generic(MacroAssembler* masm) { | 1392 static void Generate_KeyedStoreIC_Generic(MacroAssembler* masm) { |
| 1396 KeyedStoreIC::GenerateGeneric(masm, kNonStrictMode); | 1393 KeyedStoreIC::GenerateGeneric(masm, kNonStrictMode); |
| 1397 } | 1394 } |
| 1398 | 1395 |
| 1399 | 1396 |
| 1400 static void Generate_KeyedStoreIC_Generic_Strict(MacroAssembler* masm) { | 1397 static void Generate_KeyedStoreIC_Generic_Strict(MacroAssembler* masm) { |
| 1401 KeyedStoreIC::GenerateGeneric(masm, kStrictMode); | 1398 KeyedStoreIC::GenerateGeneric(masm, kStrictMode); |
| (...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1741 } | 1738 } |
| 1742 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) | 1739 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) |
| 1743 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) | 1740 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) |
| 1744 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) | 1741 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) |
| 1745 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) | 1742 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) |
| 1746 #undef DEFINE_BUILTIN_ACCESSOR_C | 1743 #undef DEFINE_BUILTIN_ACCESSOR_C |
| 1747 #undef DEFINE_BUILTIN_ACCESSOR_A | 1744 #undef DEFINE_BUILTIN_ACCESSOR_A |
| 1748 | 1745 |
| 1749 | 1746 |
| 1750 } } // namespace v8::internal | 1747 } } // namespace v8::internal |
| OLD | NEW |