OLD | NEW |
1 // Copyright 2016 the V8 project authors. All rights reserved. | 1 // Copyright 2016 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 #include "src/builtins/builtins.h" | 5 #include "src/builtins/builtins.h" |
6 #include "src/builtins/builtins-utils.h" | 6 #include "src/builtins/builtins-utils.h" |
7 #include "src/debug/debug.h" | 7 #include "src/debug/debug.h" |
8 | 8 |
9 namespace v8 { | 9 namespace v8 { |
10 namespace internal { | 10 namespace internal { |
11 | 11 |
12 void Builtins::Generate_Return_DebugBreak(MacroAssembler* masm) { | 12 void Builtins::Generate_Return_DebugBreak(MacroAssembler* masm) { |
13 DebugCodegen::GenerateDebugBreakStub(masm, | 13 DebugCodegen::GenerateDebugBreakStub(masm, |
14 DebugCodegen::SAVE_RESULT_REGISTER); | 14 DebugCodegen::SAVE_RESULT_REGISTER); |
15 } | 15 } |
16 | 16 |
17 void Builtins::Generate_Slot_DebugBreak(MacroAssembler* masm) { | 17 void Builtins::Generate_Slot_DebugBreak(MacroAssembler* masm) { |
18 DebugCodegen::GenerateDebugBreakStub(masm, | 18 DebugCodegen::GenerateDebugBreakStub(masm, |
19 DebugCodegen::IGNORE_RESULT_REGISTER); | 19 DebugCodegen::IGNORE_RESULT_REGISTER); |
20 } | 20 } |
21 | 21 |
22 void Builtins::Generate_FrameDropper_LiveEdit(MacroAssembler* masm) { | 22 void Builtins::Generate_FrameDropperTrampoline(MacroAssembler* masm) { |
23 DebugCodegen::GenerateFrameDropperLiveEdit(masm); | 23 DebugCodegen::GenerateFrameDropperTrampoline(masm); |
| 24 } |
| 25 |
| 26 void Builtins::Generate_HandleDebuggerStatement(MacroAssembler* masm) { |
| 27 DebugCodegen::GenerateHandleDebuggerStatement(masm); |
24 } | 28 } |
25 | 29 |
26 } // namespace internal | 30 } // namespace internal |
27 } // namespace v8 | 31 } // namespace v8 |
OLD | NEW |