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

Unified Diff: src/profile-generator.h

Issue 14253015: Skip samples where top function's stack frame is not setup properly (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Removed printf Created 7 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
Index: src/profile-generator.h
diff --git a/src/profile-generator.h b/src/profile-generator.h
index 761291e1215d8f4e0b16609220ab6af293280890..44969bc3ba2ab675c4294d49a74155348ff94f29 100644
--- a/src/profile-generator.h
+++ b/src/profile-generator.h
@@ -112,6 +112,15 @@ class CodeEntry {
INLINE(static bool is_js_function_tag(Logger::LogEventsAndTags tag));
+ INLINE(int frame_setup_offset() const) { return frame_setup_offset_; }
+ INLINE(void set_frame_setup_offset(int offset)) {
+ frame_setup_offset_ = offset;
+ }
+ INLINE(int frame_destroy_offset() const) { return frame_destroy_offset_; }
+ INLINE(void set_frame_destroy_offset(int offset)) {
+ frame_destroy_offset_ = offset;
+ }
+
void CopyData(const CodeEntry& source);
uint32_t GetCallUid() const;
bool IsSameAs(CodeEntry* entry) const;
@@ -126,6 +135,8 @@ class CodeEntry {
int line_number_;
int shared_id_;
int security_token_id_;
+ int frame_setup_offset_;
+ int frame_destroy_offset_;
DISALLOW_COPY_AND_ASSIGN(CodeEntry);
};
@@ -251,7 +262,7 @@ class CodeMap {
CodeMap() : next_shared_id_(1) { }
void AddCode(Address addr, CodeEntry* entry, unsigned size);
void MoveCode(Address from, Address to);
- CodeEntry* FindEntry(Address addr);
+ CodeEntry* FindEntry(Address addr, Address* start = NULL);
int GetSharedId(Address addr);
void Print();
« no previous file with comments | « src/log.cc ('k') | src/profile-generator.cc » ('j') | src/x64/lithium-codegen-x64.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698