| 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 1266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1277 static void Generate_KeyedLoadIC_Generic(MacroAssembler* masm) { | 1277 static void Generate_KeyedLoadIC_Generic(MacroAssembler* masm) { |
| 1278 KeyedLoadIC::GenerateGeneric(masm); | 1278 KeyedLoadIC::GenerateGeneric(masm); |
| 1279 } | 1279 } |
| 1280 | 1280 |
| 1281 | 1281 |
| 1282 static void Generate_KeyedLoadIC_PreMonomorphic(MacroAssembler* masm) { | 1282 static void Generate_KeyedLoadIC_PreMonomorphic(MacroAssembler* masm) { |
| 1283 KeyedLoadIC::GeneratePreMonomorphic(masm); | 1283 KeyedLoadIC::GeneratePreMonomorphic(masm); |
| 1284 } | 1284 } |
| 1285 | 1285 |
| 1286 | 1286 |
| 1287 static void Generate_KeyedLoadIC_IndexedInterceptor(MacroAssembler* masm) { |
| 1288 KeyedLoadIC::GenerateIndexedInterceptor(masm); |
| 1289 } |
| 1290 |
| 1291 |
| 1287 static void Generate_StoreIC_Miss(MacroAssembler* masm) { | 1292 static void Generate_StoreIC_Miss(MacroAssembler* masm) { |
| 1288 StoreIC::GenerateMiss(masm); | 1293 StoreIC::GenerateMiss(masm); |
| 1289 } | 1294 } |
| 1290 | 1295 |
| 1291 | 1296 |
| 1292 static void Generate_StoreIC_Normal(MacroAssembler* masm) { | 1297 static void Generate_StoreIC_Normal(MacroAssembler* masm) { |
| 1293 StoreIC::GenerateNormal(masm); | 1298 StoreIC::GenerateNormal(masm); |
| 1294 } | 1299 } |
| 1295 | 1300 |
| 1296 | 1301 |
| (...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1650 } | 1655 } |
| 1651 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) | 1656 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) |
| 1652 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) | 1657 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) |
| 1653 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) | 1658 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) |
| 1654 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) | 1659 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) |
| 1655 #undef DEFINE_BUILTIN_ACCESSOR_C | 1660 #undef DEFINE_BUILTIN_ACCESSOR_C |
| 1656 #undef DEFINE_BUILTIN_ACCESSOR_A | 1661 #undef DEFINE_BUILTIN_ACCESSOR_A |
| 1657 | 1662 |
| 1658 | 1663 |
| 1659 } } // namespace v8::internal | 1664 } } // namespace v8::internal |
| OLD | NEW |