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

Side by Side Diff: src/compiler/code-assembler.cc

Issue 1995543003: [turbofan] Add DebugBreak machine operator and support (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Review feedback Created 4 years, 7 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/compiler/code-assembler.h ('k') | src/compiler/ia32/code-generator-ia32.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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/compiler/code-assembler.h" 5 #include "src/compiler/code-assembler.h"
6 6
7 #include <ostream> 7 #include <ostream>
8 8
9 #include "src/code-factory.h" 9 #include "src/code-factory.h"
10 #include "src/compiler/graph.h" 10 #include "src/compiler/graph.h"
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 } 124 }
125 125
126 Node* CodeAssembler::Parameter(int value) { 126 Node* CodeAssembler::Parameter(int value) {
127 return raw_assembler_->Parameter(value); 127 return raw_assembler_->Parameter(value);
128 } 128 }
129 129
130 void CodeAssembler::Return(Node* value) { 130 void CodeAssembler::Return(Node* value) {
131 return raw_assembler_->Return(value); 131 return raw_assembler_->Return(value);
132 } 132 }
133 133
134 void CodeAssembler::DebugBreak() { raw_assembler_->DebugBreak(); }
135
134 void CodeAssembler::Bind(CodeAssembler::Label* label) { return label->Bind(); } 136 void CodeAssembler::Bind(CodeAssembler::Label* label) { return label->Bind(); }
135 137
136 Node* CodeAssembler::LoadFramePointer() { 138 Node* CodeAssembler::LoadFramePointer() {
137 return raw_assembler_->LoadFramePointer(); 139 return raw_assembler_->LoadFramePointer();
138 } 140 }
139 141
140 Node* CodeAssembler::LoadParentFramePointer() { 142 Node* CodeAssembler::LoadParentFramePointer() {
141 return raw_assembler_->LoadParentFramePointer(); 143 return raw_assembler_->LoadParentFramePointer();
142 } 144 }
143 145
(...skipping 555 matching lines...) Expand 10 before | Expand all | Expand 10 after
699 } 701 }
700 } 702 }
701 } 703 }
702 704
703 bound_ = true; 705 bound_ = true;
704 } 706 }
705 707
706 } // namespace compiler 708 } // namespace compiler
707 } // namespace internal 709 } // namespace internal
708 } // namespace v8 710 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/code-assembler.h ('k') | src/compiler/ia32/code-generator-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698