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

Unified Diff: src/interpreter/interpreter-assembler.cc

Issue 2067503002: [debugger] fix stepping over await calls for ignition generators. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@test
Patch Set: Created 4 years, 6 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/interpreter/interpreter-assembler.cc
diff --git a/src/interpreter/interpreter-assembler.cc b/src/interpreter/interpreter-assembler.cc
index d878c5c69370b4904e5963b81e6487f34d7a3ae7..10fb9635fd12b334bb196157495524d90a9fc8da 100644
--- a/src/interpreter/interpreter-assembler.cc
+++ b/src/interpreter/interpreter-assembler.cc
@@ -620,6 +620,12 @@ Node* InterpreterAssembler::StackCheckTriggeredInterrupt() {
return UintPtrLessThan(sp, stack_limit);
}
+Node* InterpreterAssembler::DebuggerIsActive() {
+ return Load(
+ MachineType::Pointer(),
Benedikt Meurer 2016/06/14 03:45:36 This doesn't look quite right here. The is_active_
rmcilroy 2016/06/14 06:23:11 Yes, it's implementation defined. It's probably al
Yang 2016/06/14 09:17:02 I changed this. We now don't load is_active_ anymo
+ ExternalConstant(ExternalReference::debug_is_active_address(isolate())));
+}
+
void InterpreterAssembler::Abort(BailoutReason bailout_reason) {
disable_stack_check_across_call_ = true;
Node* abort_id = SmiTag(Int32Constant(bailout_reason));

Powered by Google App Engine
This is Rietveld 408576698