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