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 1458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1469 KeyedStoreIC::GenerateGeneric(masm, kNonStrictMode); | 1469 KeyedStoreIC::GenerateGeneric(masm, kNonStrictMode); |
1470 } | 1470 } |
1471 | 1471 |
1472 | 1472 |
1473 static void Generate_KeyedStoreIC_Generic_Strict(MacroAssembler* masm) { | 1473 static void Generate_KeyedStoreIC_Generic_Strict(MacroAssembler* masm) { |
1474 KeyedStoreIC::GenerateGeneric(masm, kStrictMode); | 1474 KeyedStoreIC::GenerateGeneric(masm, kStrictMode); |
1475 } | 1475 } |
1476 | 1476 |
1477 | 1477 |
1478 static void Generate_KeyedStoreIC_Miss(MacroAssembler* masm) { | 1478 static void Generate_KeyedStoreIC_Miss(MacroAssembler* masm) { |
1479 KeyedStoreIC::GenerateMiss(masm, MISS); | 1479 KeyedStoreIC::GenerateMiss(masm); |
1480 } | 1480 } |
1481 | 1481 |
1482 | 1482 |
1483 static void Generate_KeyedStoreIC_MissForceGeneric(MacroAssembler* masm) { | |
1484 KeyedStoreIC::GenerateMiss(masm, MISS_FORCE_GENERIC); | |
1485 } | |
1486 | |
1487 | |
1488 static void Generate_KeyedStoreIC_Slow(MacroAssembler* masm) { | 1483 static void Generate_KeyedStoreIC_Slow(MacroAssembler* masm) { |
1489 KeyedStoreIC::GenerateSlow(masm); | 1484 KeyedStoreIC::GenerateSlow(masm); |
1490 } | 1485 } |
1491 | 1486 |
1492 | 1487 |
1493 static void Generate_KeyedStoreIC_Slow_Strict(MacroAssembler* masm) { | 1488 static void Generate_KeyedStoreIC_Slow_Strict(MacroAssembler* masm) { |
1494 KeyedStoreIC::GenerateSlow(masm); | 1489 KeyedStoreIC::GenerateSlow(masm); |
1495 } | 1490 } |
1496 | 1491 |
1497 | 1492 |
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1823 } | 1818 } |
1824 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) | 1819 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) |
1825 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) | 1820 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) |
1826 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) | 1821 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) |
1827 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) | 1822 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) |
1828 #undef DEFINE_BUILTIN_ACCESSOR_C | 1823 #undef DEFINE_BUILTIN_ACCESSOR_C |
1829 #undef DEFINE_BUILTIN_ACCESSOR_A | 1824 #undef DEFINE_BUILTIN_ACCESSOR_A |
1830 | 1825 |
1831 | 1826 |
1832 } } // namespace v8::internal | 1827 } } // namespace v8::internal |
OLD | NEW |