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

Unified Diff: runtime/vm/profiler_service.h

Issue 2939853002: [fuchsia] Make profile processing resilient to bogus overlaps from dladdr. (Closed)
Patch Set: verify too slow to leave on Created 3 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 | « no previous file | runtime/vm/profiler_service.cc » ('j') | runtime/vm/profiler_service.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/profiler_service.h
diff --git a/runtime/vm/profiler_service.h b/runtime/vm/profiler_service.h
index 8045906e14442710f4cfed8e2663d27a4d32f1a6..6424cd054a95545f8ae0a01526645dece84f99eb 100644
--- a/runtime/vm/profiler_service.h
+++ b/runtime/vm/profiler_service.h
@@ -171,7 +171,10 @@ class ProfileCode : public ZoneAllocated {
uword end() const { return end_; }
void set_end(uword end) { end_ = end; }
- void AdjustExtent(uword start, uword end);
+ void ExpandLower(uword start);
+ void ExpandUpper(uword end);
+ void TruncateLower(uword start);
+ void TruncateUpper(uword end);
bool Contains(uword pc) const { return (pc >= start_) && (pc < end_); }
« no previous file with comments | « no previous file | runtime/vm/profiler_service.cc » ('j') | runtime/vm/profiler_service.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698