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

Unified Diff: src/full-codegen.cc

Issue 1222093007: Debugger: use debug break slot to break on call. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
Index: src/full-codegen.cc
diff --git a/src/full-codegen.cc b/src/full-codegen.cc
index 03c55d118ca29114e059adfc06005b58ffa8e82a..0df7e5290f95753642763f32c08616054e522846 100644
--- a/src/full-codegen.cc
+++ b/src/full-codegen.cc
@@ -438,6 +438,7 @@ void FullCodeGenerator::SetStatementPosition(
bool recorded = RecordStatementPosition(masm_, stmt->position());
if (recorded && insert_break == INSERT_BREAK && info_->is_debug() &&
!stmt->IsDebuggerStatement()) {
+ masm_->RecordDebugBreakSlot();
DebugCodegen::GenerateSlot(masm_);
}
}
@@ -448,6 +449,7 @@ void FullCodeGenerator::SetExpressionPosition(
if (expr->position() == RelocInfo::kNoPosition) return;
bool recorded = RecordPosition(masm_, expr->position());
if (recorded && insert_break == INSERT_BREAK && info_->is_debug()) {
+ masm_->RecordDebugBreakSlot();
DebugCodegen::GenerateSlot(masm_);
}
}
@@ -456,7 +458,21 @@ void FullCodeGenerator::SetExpressionPosition(
void FullCodeGenerator::SetExpressionAsStatementPosition(Expression* expr) {
if (expr->position() == RelocInfo::kNoPosition) return;
bool recorded = RecordStatementPosition(masm_, expr->position());
- if (recorded && info_->is_debug()) DebugCodegen::GenerateSlot(masm_);
+ if (recorded && info_->is_debug()) {
+ masm_->RecordDebugBreakSlot();
+ DebugCodegen::GenerateSlot(masm_);
+ }
+}
+
+
+void FullCodeGenerator::SetCallPosition(Expression* expr, int argc) {
+ if (expr->position() == RelocInfo::kNoPosition) return;
+ RecordPosition(masm_, expr->position());
+ if (info_->is_debug()) {
+ // Always emit a debug break slot for a call.
+ masm_->RecordDebugBreakSlotForCall(argc);
+ DebugCodegen::GenerateSlot(masm_);
+ }
}
« src/assembler.cc ('K') | « src/full-codegen.h ('k') | src/ia32/assembler-ia32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698