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 1333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1344 KeyedLoadIC::GenerateInitialize(masm); | 1344 KeyedLoadIC::GenerateInitialize(masm); |
1345 } | 1345 } |
1346 | 1346 |
1347 | 1347 |
1348 static void Generate_KeyedLoadIC_Slow(MacroAssembler* masm) { | 1348 static void Generate_KeyedLoadIC_Slow(MacroAssembler* masm) { |
1349 KeyedLoadIC::GenerateRuntimeGetProperty(masm); | 1349 KeyedLoadIC::GenerateRuntimeGetProperty(masm); |
1350 } | 1350 } |
1351 | 1351 |
1352 | 1352 |
1353 static void Generate_KeyedLoadIC_Miss(MacroAssembler* masm) { | 1353 static void Generate_KeyedLoadIC_Miss(MacroAssembler* masm) { |
1354 KeyedLoadIC::GenerateMiss(masm, MISS); | 1354 KeyedLoadIC::GenerateMiss(masm); |
1355 } | 1355 } |
1356 | 1356 |
1357 | 1357 |
1358 static void Generate_KeyedLoadIC_MissForceGeneric(MacroAssembler* masm) { | |
1359 KeyedLoadIC::GenerateMiss(masm, MISS_FORCE_GENERIC); | |
1360 } | |
1361 | |
1362 | |
1363 static void Generate_KeyedLoadIC_Generic(MacroAssembler* masm) { | 1358 static void Generate_KeyedLoadIC_Generic(MacroAssembler* masm) { |
1364 KeyedLoadIC::GenerateGeneric(masm); | 1359 KeyedLoadIC::GenerateGeneric(masm); |
1365 } | 1360 } |
1366 | 1361 |
1367 | 1362 |
1368 static void Generate_KeyedLoadIC_String(MacroAssembler* masm) { | 1363 static void Generate_KeyedLoadIC_String(MacroAssembler* masm) { |
1369 KeyedLoadIC::GenerateString(masm); | 1364 KeyedLoadIC::GenerateString(masm); |
1370 } | 1365 } |
1371 | 1366 |
1372 | 1367 |
(...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1818 } | 1813 } |
1819 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) | 1814 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) |
1820 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) | 1815 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) |
1821 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) | 1816 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) |
1822 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) | 1817 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) |
1823 #undef DEFINE_BUILTIN_ACCESSOR_C | 1818 #undef DEFINE_BUILTIN_ACCESSOR_C |
1824 #undef DEFINE_BUILTIN_ACCESSOR_A | 1819 #undef DEFINE_BUILTIN_ACCESSOR_A |
1825 | 1820 |
1826 | 1821 |
1827 } } // namespace v8::internal | 1822 } } // namespace v8::internal |
OLD | NEW |