OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "src/v8.h" | 5 #include "src/v8.h" |
6 | 6 |
7 #include "src/api.h" | 7 #include "src/api.h" |
8 #include "src/arguments.h" | 8 #include "src/arguments.h" |
9 #include "src/base/once.h" | 9 #include "src/base/once.h" |
10 #include "src/bootstrapper.h" | 10 #include "src/bootstrapper.h" |
(...skipping 1292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1303 ElementHandlerCompiler::GenerateStoreSlow(masm); | 1303 ElementHandlerCompiler::GenerateStoreSlow(masm); |
1304 } | 1304 } |
1305 | 1305 |
1306 | 1306 |
1307 static void Generate_StoreIC_Setter_ForDeopt(MacroAssembler* masm) { | 1307 static void Generate_StoreIC_Setter_ForDeopt(MacroAssembler* masm) { |
1308 NamedStoreHandlerCompiler::GenerateStoreViaSetterForDeopt(masm); | 1308 NamedStoreHandlerCompiler::GenerateStoreViaSetterForDeopt(masm); |
1309 } | 1309 } |
1310 | 1310 |
1311 | 1311 |
1312 static void Generate_KeyedStoreIC_Megamorphic(MacroAssembler* masm) { | 1312 static void Generate_KeyedStoreIC_Megamorphic(MacroAssembler* masm) { |
1313 KeyedStoreIC::GenerateGeneric(masm, SLOPPY, kMissOnMissingHandler); | 1313 KeyedStoreIC::GenerateMegamorphic(masm, SLOPPY); |
1314 } | 1314 } |
1315 | 1315 |
1316 | 1316 |
1317 static void Generate_KeyedStoreIC_Megamorphic_Strict(MacroAssembler* masm) { | 1317 static void Generate_KeyedStoreIC_Megamorphic_Strict(MacroAssembler* masm) { |
1318 KeyedStoreIC::GenerateGeneric(masm, STRICT, kMissOnMissingHandler); | 1318 KeyedStoreIC::GenerateMegamorphic(masm, STRICT); |
1319 } | 1319 } |
1320 | 1320 |
1321 | 1321 |
1322 static void Generate_KeyedStoreIC_Generic(MacroAssembler* masm) { | 1322 static void Generate_KeyedStoreIC_Generic(MacroAssembler* masm) { |
1323 KeyedStoreIC::GenerateGeneric(masm, SLOPPY, kCallRuntimeOnMissingHandler); | 1323 KeyedStoreIC::GenerateGeneric(masm, SLOPPY); |
1324 } | 1324 } |
1325 | 1325 |
1326 | 1326 |
1327 static void Generate_KeyedStoreIC_Generic_Strict(MacroAssembler* masm) { | 1327 static void Generate_KeyedStoreIC_Generic_Strict(MacroAssembler* masm) { |
1328 KeyedStoreIC::GenerateGeneric(masm, STRICT, kCallRuntimeOnMissingHandler); | 1328 KeyedStoreIC::GenerateGeneric(masm, STRICT); |
1329 } | 1329 } |
1330 | 1330 |
1331 | 1331 |
1332 static void Generate_KeyedStoreIC_Miss(MacroAssembler* masm) { | 1332 static void Generate_KeyedStoreIC_Miss(MacroAssembler* masm) { |
1333 KeyedStoreIC::GenerateMiss(masm); | 1333 KeyedStoreIC::GenerateMiss(masm); |
1334 } | 1334 } |
1335 | 1335 |
1336 | 1336 |
1337 static void Generate_KeyedStoreIC_Initialize(MacroAssembler* masm) { | 1337 static void Generate_KeyedStoreIC_Initialize(MacroAssembler* masm) { |
1338 KeyedStoreIC::GenerateInitialize(masm); | 1338 KeyedStoreIC::GenerateInitialize(masm); |
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1650 } | 1650 } |
1651 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) | 1651 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) |
1652 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) | 1652 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) |
1653 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) | 1653 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) |
1654 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) | 1654 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) |
1655 #undef DEFINE_BUILTIN_ACCESSOR_C | 1655 #undef DEFINE_BUILTIN_ACCESSOR_C |
1656 #undef DEFINE_BUILTIN_ACCESSOR_A | 1656 #undef DEFINE_BUILTIN_ACCESSOR_A |
1657 | 1657 |
1658 | 1658 |
1659 } } // namespace v8::internal | 1659 } } // namespace v8::internal |
OLD | NEW |