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

Unified Diff: src/frames.cc

Issue 18620002: Do not store fp and sp values in TickSample (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Removed fp Created 7 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
« no previous file with comments | « src/frames.h ('k') | src/log.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/frames.cc
diff --git a/src/frames.cc b/src/frames.cc
index 4afd4d49d15c4d60e3026ad9b5beea20da12ce12..c0e81013deb9082e281dec05959d8a936f1019d6 100644
--- a/src/frames.cc
+++ b/src/frames.cc
@@ -216,9 +216,9 @@ bool StackTraceFrameIterator::IsValidFrame() {
SafeStackFrameIterator::SafeStackFrameIterator(
Isolate* isolate,
- Address fp, Address sp, Address low_bound, Address high_bound) :
+ Address fp, Address sp, Address js_entry_sp) :
StackFrameIteratorBase(isolate, false),
Jakob Kummerow 2013/07/03 14:12:31 nit: while you're here, please move the ':' onto t
yurys 2013/07/03 14:16:41 Done.
- low_bound_(low_bound), high_bound_(high_bound),
+ low_bound_(sp), high_bound_(js_entry_sp),
top_frame_type_(StackFrame::NONE) {
StackFrame::State state;
StackFrame::Type type;
« no previous file with comments | « src/frames.h ('k') | src/log.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698