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

Side by Side Diff: src/compiler/instruction-selector.h

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/instruction-scheduler.cc ('k') | src/compiler/instruction-selector.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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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_COMPILER_INSTRUCTION_SELECTOR_H_ 5 #ifndef V8_COMPILER_INSTRUCTION_SELECTOR_H_
6 #define V8_COMPILER_INSTRUCTION_SELECTOR_H_ 6 #define V8_COMPILER_INSTRUCTION_SELECTOR_H_
7 7
8 #include <map> 8 #include <map>
9 9
10 #include "src/compiler/common-operator.h" 10 #include "src/compiler/common-operator.h"
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 void VisitCall(Node* call, BasicBlock* handler = nullptr); 256 void VisitCall(Node* call, BasicBlock* handler = nullptr);
257 void VisitDeoptimizeIf(Node* node); 257 void VisitDeoptimizeIf(Node* node);
258 void VisitDeoptimizeUnless(Node* node); 258 void VisitDeoptimizeUnless(Node* node);
259 void VisitTailCall(Node* call); 259 void VisitTailCall(Node* call);
260 void VisitGoto(BasicBlock* target); 260 void VisitGoto(BasicBlock* target);
261 void VisitBranch(Node* input, BasicBlock* tbranch, BasicBlock* fbranch); 261 void VisitBranch(Node* input, BasicBlock* tbranch, BasicBlock* fbranch);
262 void VisitSwitch(Node* node, const SwitchInfo& sw); 262 void VisitSwitch(Node* node, const SwitchInfo& sw);
263 void VisitDeoptimize(DeoptimizeKind kind, Node* value); 263 void VisitDeoptimize(DeoptimizeKind kind, Node* value);
264 void VisitReturn(Node* ret); 264 void VisitReturn(Node* ret);
265 void VisitThrow(Node* value); 265 void VisitThrow(Node* value);
266 void VisitDebugBreak();
266 267
267 void EmitPrepareArguments(ZoneVector<compiler::PushParameter>* arguments, 268 void EmitPrepareArguments(ZoneVector<compiler::PushParameter>* arguments,
268 const CallDescriptor* descriptor, Node* node); 269 const CallDescriptor* descriptor, Node* node);
269 270
270 // =========================================================================== 271 // ===========================================================================
271 272
272 Schedule* schedule() const { return schedule_; } 273 Schedule* schedule() const { return schedule_; }
273 Linkage* linkage() const { return linkage_; } 274 Linkage* linkage() const { return linkage_; }
274 InstructionSequence* sequence() const { return sequence_; } 275 InstructionSequence* sequence() const { return sequence_; }
275 Zone* instruction_zone() const { return sequence()->zone(); } 276 Zone* instruction_zone() const { return sequence()->zone(); }
(...skipping 16 matching lines...) Expand all
292 IntVector virtual_registers_; 293 IntVector virtual_registers_;
293 InstructionScheduler* scheduler_; 294 InstructionScheduler* scheduler_;
294 Frame* frame_; 295 Frame* frame_;
295 }; 296 };
296 297
297 } // namespace compiler 298 } // namespace compiler
298 } // namespace internal 299 } // namespace internal
299 } // namespace v8 300 } // namespace v8
300 301
301 #endif // V8_COMPILER_INSTRUCTION_SELECTOR_H_ 302 #endif // V8_COMPILER_INSTRUCTION_SELECTOR_H_
OLDNEW
« no previous file with comments | « src/compiler/instruction-scheduler.cc ('k') | src/compiler/instruction-selector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698