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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: src/compiler/code-assembler.cc
diff --git a/src/compiler/code-assembler.cc b/src/compiler/code-assembler.cc
index 0a90b9e9251130c1b5fe1d872aa9d3d24f73ef8d..3ceb2ab03e7095af496204041e368a19132b11ef 100644
--- a/src/compiler/code-assembler.cc
+++ b/src/compiler/code-assembler.cc
@@ -532,6 +532,8 @@ void CodeAssembler::Branch(Node* condition, CodeAssembler::Label* true_label,
false_label->label_);
}
+void CodeAssembler::DebugBreak() { raw_assembler_->DebugBreak(); }
Michael Starzinger 2016/05/19 08:53:23 nit: Likewise.
danno 2016/05/19 09:05:04 Done.
+
void CodeAssembler::Switch(Node* index, Label* default_label,
int32_t* case_values, Label** case_labels,
size_t case_count) {

Powered by Google App Engine
This is Rietveld 408576698