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 1490 matching lines...) Loading... |
1501 } | 1501 } |
1502 | 1502 |
1503 static void Generate_KeyedLoadIC_IndexedInterceptor(MacroAssembler* masm) { | 1503 static void Generate_KeyedLoadIC_IndexedInterceptor(MacroAssembler* masm) { |
1504 KeyedLoadIC::GenerateIndexedInterceptor(masm); | 1504 KeyedLoadIC::GenerateIndexedInterceptor(masm); |
1505 } | 1505 } |
1506 | 1506 |
1507 static void Generate_KeyedLoadIC_NonStrictArguments(MacroAssembler* masm) { | 1507 static void Generate_KeyedLoadIC_NonStrictArguments(MacroAssembler* masm) { |
1508 KeyedLoadIC::GenerateNonStrictArguments(masm); | 1508 KeyedLoadIC::GenerateNonStrictArguments(masm); |
1509 } | 1509 } |
1510 | 1510 |
| 1511 static void Generate_StoreIC_Slow(MacroAssembler* masm) { |
| 1512 StoreIC::GenerateSlow(masm); |
| 1513 } |
| 1514 |
| 1515 |
1511 static void Generate_StoreIC_Initialize(MacroAssembler* masm) { | 1516 static void Generate_StoreIC_Initialize(MacroAssembler* masm) { |
1512 StoreIC::GenerateInitialize(masm); | 1517 StoreIC::GenerateInitialize(masm); |
1513 } | 1518 } |
1514 | 1519 |
1515 | 1520 |
1516 static void Generate_StoreIC_Initialize_Strict(MacroAssembler* masm) { | 1521 static void Generate_StoreIC_Initialize_Strict(MacroAssembler* masm) { |
1517 StoreIC::GenerateInitialize(masm); | 1522 StoreIC::GenerateInitialize(masm); |
1518 } | 1523 } |
1519 | 1524 |
1520 | 1525 |
(...skipping 357 matching lines...) Loading... |
1878 return Handle<Code>(code_address); \ | 1883 return Handle<Code>(code_address); \ |
1879 } | 1884 } |
1880 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) | 1885 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) |
1881 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) | 1886 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) |
1882 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) | 1887 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) |
1883 #undef DEFINE_BUILTIN_ACCESSOR_C | 1888 #undef DEFINE_BUILTIN_ACCESSOR_C |
1884 #undef DEFINE_BUILTIN_ACCESSOR_A | 1889 #undef DEFINE_BUILTIN_ACCESSOR_A |
1885 | 1890 |
1886 | 1891 |
1887 } } // namespace v8::internal | 1892 } } // namespace v8::internal |
OLD | NEW |