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 1452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1463 KeyedStoreIC::GeneratePreMonomorphic(masm); | 1463 KeyedStoreIC::GeneratePreMonomorphic(masm); |
1464 } | 1464 } |
1465 | 1465 |
1466 | 1466 |
1467 static void Generate_KeyedStoreIC_SloppyArguments(MacroAssembler* masm) { | 1467 static void Generate_KeyedStoreIC_SloppyArguments(MacroAssembler* masm) { |
1468 KeyedStoreIC::GenerateSloppyArguments(masm); | 1468 KeyedStoreIC::GenerateSloppyArguments(masm); |
1469 } | 1469 } |
1470 | 1470 |
1471 | 1471 |
1472 #ifdef ENABLE_DEBUGGER_SUPPORT | 1472 #ifdef ENABLE_DEBUGGER_SUPPORT |
| 1473 static void Generate_CallICStub_DebugBreak(MacroAssembler* masm) { |
| 1474 Debug::GenerateCallICStubDebugBreak(masm); |
| 1475 } |
| 1476 |
| 1477 |
1473 static void Generate_LoadIC_DebugBreak(MacroAssembler* masm) { | 1478 static void Generate_LoadIC_DebugBreak(MacroAssembler* masm) { |
1474 Debug::GenerateLoadICDebugBreak(masm); | 1479 Debug::GenerateLoadICDebugBreak(masm); |
1475 } | 1480 } |
1476 | 1481 |
1477 | 1482 |
1478 static void Generate_StoreIC_DebugBreak(MacroAssembler* masm) { | 1483 static void Generate_StoreIC_DebugBreak(MacroAssembler* masm) { |
1479 Debug::GenerateStoreICDebugBreak(masm); | 1484 Debug::GenerateStoreICDebugBreak(masm); |
1480 } | 1485 } |
1481 | 1486 |
1482 | 1487 |
(...skipping 15 matching lines...) Expand all Loading... |
1498 static void Generate_Return_DebugBreak(MacroAssembler* masm) { | 1503 static void Generate_Return_DebugBreak(MacroAssembler* masm) { |
1499 Debug::GenerateReturnDebugBreak(masm); | 1504 Debug::GenerateReturnDebugBreak(masm); |
1500 } | 1505 } |
1501 | 1506 |
1502 | 1507 |
1503 static void Generate_CallFunctionStub_DebugBreak(MacroAssembler* masm) { | 1508 static void Generate_CallFunctionStub_DebugBreak(MacroAssembler* masm) { |
1504 Debug::GenerateCallFunctionStubDebugBreak(masm); | 1509 Debug::GenerateCallFunctionStubDebugBreak(masm); |
1505 } | 1510 } |
1506 | 1511 |
1507 | 1512 |
1508 static void Generate_CallFunctionStub_Recording_DebugBreak( | |
1509 MacroAssembler* masm) { | |
1510 Debug::GenerateCallFunctionStubRecordDebugBreak(masm); | |
1511 } | |
1512 | |
1513 | |
1514 static void Generate_CallConstructStub_DebugBreak(MacroAssembler* masm) { | 1513 static void Generate_CallConstructStub_DebugBreak(MacroAssembler* masm) { |
1515 Debug::GenerateCallConstructStubDebugBreak(masm); | 1514 Debug::GenerateCallConstructStubDebugBreak(masm); |
1516 } | 1515 } |
1517 | 1516 |
1518 | 1517 |
1519 static void Generate_CallConstructStub_Recording_DebugBreak( | 1518 static void Generate_CallConstructStub_Recording_DebugBreak( |
1520 MacroAssembler* masm) { | 1519 MacroAssembler* masm) { |
1521 Debug::GenerateCallConstructStubRecordDebugBreak(masm); | 1520 Debug::GenerateCallConstructStubRecordDebugBreak(masm); |
1522 } | 1521 } |
1523 | 1522 |
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1773 } | 1772 } |
1774 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) | 1773 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) |
1775 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) | 1774 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) |
1776 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) | 1775 BUILTIN_LIST_H(DEFINE_BUILTIN_ACCESSOR_H) |
1777 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) | 1776 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) |
1778 #undef DEFINE_BUILTIN_ACCESSOR_C | 1777 #undef DEFINE_BUILTIN_ACCESSOR_C |
1779 #undef DEFINE_BUILTIN_ACCESSOR_A | 1778 #undef DEFINE_BUILTIN_ACCESSOR_A |
1780 | 1779 |
1781 | 1780 |
1782 } } // namespace v8::internal | 1781 } } // namespace v8::internal |
OLD | NEW |