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

Unified Diff: runtime/vm/stack_frame.cc

Issue 2396433003: Lazy deopt: (Closed)
Patch Set: . Created 4 years, 2 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
« runtime/vm/stack_frame.h ('K') | « runtime/vm/stack_frame.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/stack_frame.cc
diff --git a/runtime/vm/stack_frame.cc b/runtime/vm/stack_frame.cc
index f93111e41e411e7a8fd1075898fd605590c2ea1e..9c72598a2b00cfb9a130010a9cce231f71095982 100644
--- a/runtime/vm/stack_frame.cc
+++ b/runtime/vm/stack_frame.cc
@@ -566,4 +566,13 @@ intptr_t InlinedFunctionsIterator::GetDeoptFpOffset() const {
}
+void ValidateFrames() {
Florian Schneider 2016/10/04 21:32:41 #ifdef DEBUG
rmacnak 2016/10/04 22:11:28 Done.
+ StackFrameIterator frames(StackFrameIterator::kValidateFrames);
+ StackFrame* frame = frames.NextFrame();
+ while (frame != NULL) {
+ frame = frames.NextFrame();
+ }
+}
+
+
} // namespace dart
« runtime/vm/stack_frame.h ('K') | « runtime/vm/stack_frame.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698