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 1520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1531 static void Generate_ConstructCall_DebugBreak(MacroAssembler* masm) { | 1531 static void Generate_ConstructCall_DebugBreak(MacroAssembler* masm) { |
1532 Debug::GenerateConstructCallDebugBreak(masm); | 1532 Debug::GenerateConstructCallDebugBreak(masm); |
1533 } | 1533 } |
1534 | 1534 |
1535 | 1535 |
1536 static void Generate_Return_DebugBreak(MacroAssembler* masm) { | 1536 static void Generate_Return_DebugBreak(MacroAssembler* masm) { |
1537 Debug::GenerateReturnDebugBreak(masm); | 1537 Debug::GenerateReturnDebugBreak(masm); |
1538 } | 1538 } |
1539 | 1539 |
1540 | 1540 |
1541 static void Generate_StubNoRegisters_DebugBreak(MacroAssembler* masm) { | 1541 static void Generate_CallFunctionStub_DebugBreak(MacroAssembler* masm) { |
1542 Debug::GenerateStubNoRegistersDebugBreak(masm); | 1542 Debug::GenerateCallFunctionStubDebugBreak(masm); |
1543 } | 1543 } |
1544 | 1544 |
1545 | 1545 |
1546 static void Generate_Slot_DebugBreak(MacroAssembler* masm) { | 1546 static void Generate_Slot_DebugBreak(MacroAssembler* masm) { |
1547 Debug::GenerateSlotDebugBreak(masm); | 1547 Debug::GenerateSlotDebugBreak(masm); |
1548 } | 1548 } |
1549 | 1549 |
1550 | 1550 |
1551 static void Generate_PlainReturn_LiveEdit(MacroAssembler* masm) { | 1551 static void Generate_PlainReturn_LiveEdit(MacroAssembler* masm) { |
1552 Debug::GeneratePlainReturnLiveEdit(masm); | 1552 Debug::GeneratePlainReturnLiveEdit(masm); |
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1764 return Handle<Code>(code_address); \ | 1764 return Handle<Code>(code_address); \ |
1765 } | 1765 } |
1766 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) | 1766 BUILTIN_LIST_C(DEFINE_BUILTIN_ACCESSOR_C) |
1767 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) | 1767 BUILTIN_LIST_A(DEFINE_BUILTIN_ACCESSOR_A) |
1768 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) | 1768 BUILTIN_LIST_DEBUG_A(DEFINE_BUILTIN_ACCESSOR_A) |
1769 #undef DEFINE_BUILTIN_ACCESSOR_C | 1769 #undef DEFINE_BUILTIN_ACCESSOR_C |
1770 #undef DEFINE_BUILTIN_ACCESSOR_A | 1770 #undef DEFINE_BUILTIN_ACCESSOR_A |
1771 | 1771 |
1772 | 1772 |
1773 } } // namespace v8::internal | 1773 } } // namespace v8::internal |
OLD | NEW |