OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 1489 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1500 | 1500 |
1501 | 1501 |
1502 static void Generate_KeyedStoreIC_Initialize_Strict(MacroAssembler* masm) { | 1502 static void Generate_KeyedStoreIC_Initialize_Strict(MacroAssembler* masm) { |
1503 KeyedStoreIC::GenerateInitialize(masm); | 1503 KeyedStoreIC::GenerateInitialize(masm); |
1504 } | 1504 } |
1505 | 1505 |
1506 static void Generate_KeyedStoreIC_NonStrictArguments(MacroAssembler* masm) { | 1506 static void Generate_KeyedStoreIC_NonStrictArguments(MacroAssembler* masm) { |
1507 KeyedStoreIC::GenerateNonStrictArguments(masm); | 1507 KeyedStoreIC::GenerateNonStrictArguments(masm); |
1508 } | 1508 } |
1509 | 1509 |
| 1510 static void Generate_TransitionElementsSmiToDouble(MacroAssembler* masm) { |
| 1511 KeyedStoreIC::GenerateTransitionElementsSmiToDouble(masm); |
| 1512 } |
| 1513 |
| 1514 static void Generate_TransitionElementsDoubleToObject(MacroAssembler* masm) { |
| 1515 KeyedStoreIC::GenerateTransitionElementsDoubleToObject(masm); |
| 1516 } |
| 1517 |
1510 #ifdef ENABLE_DEBUGGER_SUPPORT | 1518 #ifdef ENABLE_DEBUGGER_SUPPORT |
1511 static void Generate_LoadIC_DebugBreak(MacroAssembler* masm) { | 1519 static void Generate_LoadIC_DebugBreak(MacroAssembler* masm) { |
1512 Debug::GenerateLoadICDebugBreak(masm); | 1520 Debug::GenerateLoadICDebugBreak(masm); |
1513 } | 1521 } |
1514 | 1522 |
1515 | 1523 |
1516 static void Generate_StoreIC_DebugBreak(MacroAssembler* masm) { | 1524 static void Generate_StoreIC_DebugBreak(MacroAssembler* masm) { |
1517 Debug::GenerateStoreICDebugBreak(masm); | 1525 Debug::GenerateStoreICDebugBreak(masm); |
1518 } | 1526 } |
1519 | 1527 |
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1764 return Handle<Code>(code_address); \ | 1772 return Handle<Code>(code_address); \ |
1765 } | 1773 } |
1766 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) | 1774 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) |
1767 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) | 1775 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) |
1768 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) | 1776 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) |
1769 #undef DEFINE_BUILTIN_ACCESSOR_C | 1777 #undef DEFINE_BUILTIN_ACCESSOR_C |
1770 #undef DEFINE_BUILTIN_ACCESSOR_A | 1778 #undef DEFINE_BUILTIN_ACCESSOR_A |
1771 | 1779 |
1772 | 1780 |
1773 } } // namespace v8::internal | 1781 } } // namespace v8::internal |
OLD | NEW |