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

Unified Diff: src/debug/debug.h

Issue 1474943005: Revert of [debugger] flood function for stepping before calling it. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 1 month 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
« no previous file with comments | « src/assembler.cc ('k') | src/debug/debug.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/debug/debug.h
diff --git a/src/debug/debug.h b/src/debug/debug.h
index 097a91536554f416df45690983c91f7ff5924b6f..d8e7596a9b53dca5319a0a0a4d2c5258273f7846 100644
--- a/src/debug/debug.h
+++ b/src/debug/debug.h
@@ -31,7 +31,7 @@
// Step actions. NOTE: These values are in macros.py as well.
-enum StepAction : int8_t {
+enum StepAction {
StepNone = -1, // Stepping not prepared.
StepOut = 0, // Step out of the current function.
StepNext = 1, // Step to the next statement in the current function.
@@ -502,8 +502,8 @@
return reinterpret_cast<Address>(address);
}
- Address last_step_action_addr() {
- return reinterpret_cast<Address>(&thread_local_.last_step_action_);
+ Address step_in_fp_addr() {
+ return reinterpret_cast<Address>(&thread_local_.step_into_fp_);
}
StepAction last_step_action() { return thread_local_.last_step_action_; }
« no previous file with comments | « src/assembler.cc ('k') | src/debug/debug.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698