Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(207)

Side by Side Diff: src/builtins/builtins-debug.cc

Issue 2168273004: [builtins] move conversions, debugger, handlers, interpreter builtins. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebase yet again Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/builtins/builtins-conversion.cc ('k') | src/builtins/builtins-handler.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "src/builtins/builtins.h"
6 #include "src/builtins/builtins-utils.h"
7 #include "src/debug/debug.h"
8
9 namespace v8 {
10 namespace internal {
11
12 void Builtins::Generate_Return_DebugBreak(MacroAssembler* masm) {
13 DebugCodegen::GenerateDebugBreakStub(masm,
14 DebugCodegen::SAVE_RESULT_REGISTER);
15 }
16
17 void Builtins::Generate_Slot_DebugBreak(MacroAssembler* masm) {
18 DebugCodegen::GenerateDebugBreakStub(masm,
19 DebugCodegen::IGNORE_RESULT_REGISTER);
20 }
21
22 void Builtins::Generate_FrameDropper_LiveEdit(MacroAssembler* masm) {
23 DebugCodegen::GenerateFrameDropperLiveEdit(masm);
24 }
25
26 } // namespace internal
27 } // namespace v8
OLDNEW
« no previous file with comments | « src/builtins/builtins-conversion.cc ('k') | src/builtins/builtins-handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698