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/api-natives.h" | 8 #include "src/api-natives.h" |
9 #include "src/arguments.h" | 9 #include "src/arguments.h" |
10 #include "src/base/once.h" | 10 #include "src/base/once.h" |
(...skipping 1293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1304 static void Generate_KeyedLoadIC_Miss(MacroAssembler* masm) { | 1304 static void Generate_KeyedLoadIC_Miss(MacroAssembler* masm) { |
1305 KeyedLoadIC::GenerateMiss(masm); | 1305 KeyedLoadIC::GenerateMiss(masm); |
1306 } | 1306 } |
1307 | 1307 |
1308 | 1308 |
1309 static void Generate_KeyedLoadIC_Megamorphic(MacroAssembler* masm) { | 1309 static void Generate_KeyedLoadIC_Megamorphic(MacroAssembler* masm) { |
1310 KeyedLoadIC::GenerateMegamorphic(masm); | 1310 KeyedLoadIC::GenerateMegamorphic(masm); |
1311 } | 1311 } |
1312 | 1312 |
1313 | 1313 |
1314 static void Generate_KeyedLoadIC_PreMonomorphic(MacroAssembler* masm) { | |
1315 KeyedLoadIC::GeneratePreMonomorphic(masm); | |
1316 } | |
1317 | |
1318 | |
1319 static void Generate_StoreIC_Miss(MacroAssembler* masm) { | 1314 static void Generate_StoreIC_Miss(MacroAssembler* masm) { |
1320 StoreIC::GenerateMiss(masm); | 1315 StoreIC::GenerateMiss(masm); |
1321 } | 1316 } |
1322 | 1317 |
1323 | 1318 |
1324 static void Generate_StoreIC_Normal(MacroAssembler* masm) { | 1319 static void Generate_StoreIC_Normal(MacroAssembler* masm) { |
1325 StoreIC::GenerateNormal(masm); | 1320 StoreIC::GenerateNormal(masm); |
1326 } | 1321 } |
1327 | 1322 |
1328 | 1323 |
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1672 } | 1667 } |
1673 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) | 1668 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) |
1674 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) | 1669 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) |
1675 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) | 1670 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) |
1676 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) | 1671 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) |
1677 #undef DEFINE_BUILTIN_ACCESSOR_C | 1672 #undef DEFINE_BUILTIN_ACCESSOR_C |
1678 #undef DEFINE_BUILTIN_ACCESSOR_A | 1673 #undef DEFINE_BUILTIN_ACCESSOR_A |
1679 | 1674 |
1680 | 1675 |
1681 } } // namespace v8::internal | 1676 } } // namespace v8::internal |
OLD | NEW |