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