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

Unified Diff: runtime/vm/object.h

Issue 1268783002: Fix inlining information: (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: sync Created 5 years, 5 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/il_printer.cc ('k') | runtime/vm/object.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object.h
diff --git a/runtime/vm/object.h b/runtime/vm/object.h
index 17e80f46ef9e98ac0a08d8117f5b3b6e4d452094..772cd87f95adb0ab842a8a03a5b4f3362bbfd32c 100644
--- a/runtime/vm/object.h
+++ b/runtime/vm/object.h
@@ -4145,8 +4145,7 @@ class Code : public Object {
enum InlinedIntervalEntries {
kInlIntStart = 0,
kInlIntInliningId = 1,
- kInlIntCallerId = 2,
- kInlIntNumEntries = 3,
+ kInlIntNumEntries = 2,
};
RawArray* GetInlinedIntervals() const;
@@ -4155,6 +4154,9 @@ class Code : public Object {
RawArray* GetInlinedIdToFunction() const;
void SetInlinedIdToFunction(const Array& value) const;
+ RawArray* GetInlinedCallerIdMap() const;
+ void SetInlinedCallerIdMap(const Array& value) const;
+
void GetInlinedFunctionsAt(
intptr_t offset, GrowableArray<Function*>* fs) const;
« no previous file with comments | « runtime/vm/il_printer.cc ('k') | runtime/vm/object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698