| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8_DEBUG_DEBUG_H_ | 5 #ifndef V8_DEBUG_DEBUG_H_ |
| 6 #define V8_DEBUG_DEBUG_H_ | 6 #define V8_DEBUG_DEBUG_H_ |
| 7 | 7 |
| 8 #include "src/allocation.h" | 8 #include "src/allocation.h" |
| 9 #include "src/arguments.h" | 9 #include "src/arguments.h" |
| 10 #include "src/assembler.h" | 10 #include "src/assembler.h" |
| (...skipping 765 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 776 // FrameDropper is a code replacement for a JavaScript frame with possibly | 776 // FrameDropper is a code replacement for a JavaScript frame with possibly |
| 777 // several frames above. | 777 // several frames above. |
| 778 // There is no calling conventions here, because it never actually gets | 778 // There is no calling conventions here, because it never actually gets |
| 779 // called, it only gets returned to. | 779 // called, it only gets returned to. |
| 780 static void GenerateFrameDropperLiveEdit(MacroAssembler* masm); | 780 static void GenerateFrameDropperLiveEdit(MacroAssembler* masm); |
| 781 | 781 |
| 782 | 782 |
| 783 static void GenerateSlot(MacroAssembler* masm, RelocInfo::Mode mode, | 783 static void GenerateSlot(MacroAssembler* masm, RelocInfo::Mode mode, |
| 784 int call_argc = -1); | 784 int call_argc = -1); |
| 785 | 785 |
| 786 static void PatchDebugBreakSlot(Address pc, Handle<Code> code); | 786 static void PatchDebugBreakSlot(Isolate* isolate, Address pc, |
| 787 static void ClearDebugBreakSlot(Address pc); | 787 Handle<Code> code); |
| 788 static void ClearDebugBreakSlot(Isolate* isolate, Address pc); |
| 788 }; | 789 }; |
| 789 | 790 |
| 790 | 791 |
| 791 } // namespace internal | 792 } // namespace internal |
| 792 } // namespace v8 | 793 } // namespace v8 |
| 793 | 794 |
| 794 #endif // V8_DEBUG_DEBUG_H_ | 795 #endif // V8_DEBUG_DEBUG_H_ |
| OLD | NEW |