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

Unified Diff: runtime/vm/stack_frame.h

Issue 227433004: Add runtime and native entry tags (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 8 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
« no previous file with comments | « runtime/vm/runtime_entry.h ('k') | runtime/vm/stub_code_arm.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/stack_frame.h
diff --git a/runtime/vm/stack_frame.h b/runtime/vm/stack_frame.h
index 2727eeef4a7cfc9389a87b0e327b9cdc83595e9b..08443af6ad65aebf78f48278d95e45b2d7fa4c5b 100644
--- a/runtime/vm/stack_frame.h
+++ b/runtime/vm/stack_frame.h
@@ -241,7 +241,9 @@ class DartFrameIterator : public ValueObject {
public:
DartFrameIterator() : frames_(StackFrameIterator::kDontValidateFrames) { }
explicit DartFrameIterator(uword last_fp)
- : frames_(last_fp, StackFrameIterator::kDontValidateFrames) {}
+ : frames_(last_fp, StackFrameIterator::kDontValidateFrames) { }
+ DartFrameIterator(uword fp, uword sp, uword pc)
+ : frames_(fp, sp, pc, StackFrameIterator::kDontValidateFrames) { }
// Get next dart frame.
StackFrame* NextFrame() {
StackFrame* frame = frames_.NextFrame();
« no previous file with comments | « runtime/vm/runtime_entry.h ('k') | runtime/vm/stub_code_arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698