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

Unified Diff: runtime/vm/profiler_service.cc

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/object.cc ('k') | runtime/vm/raw_object.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/profiler_service.cc
diff --git a/runtime/vm/profiler_service.cc b/runtime/vm/profiler_service.cc
index 0e38cbebb8979c63fa12f5360ab89fc056369707..997aab191597c6a6c17eed9a57fc02144318031b 100644
--- a/runtime/vm/profiler_service.cc
+++ b/runtime/vm/profiler_service.cc
@@ -1316,13 +1316,6 @@ class ProfileBuilder : public ValueObject {
}
if (inclusive_tree_) {
- // Append the inliner.
- current = ProcessFunction(current,
- sample_index,
- sample,
- frame_index + inlined_functions.length(),
- function,
- code_index);
// Append the inlined children.
for (intptr_t i = inlined_functions.length() - 1; i >= 0; i--) {
Function* inlined_function = inlined_functions[i];
@@ -1348,13 +1341,6 @@ class ProfileBuilder : public ValueObject {
inlined_function,
code_index);
}
- // Append the inliner.
- current = ProcessFunction(current,
- sample_index,
- sample,
- frame_index + inlined_functions.length(),
- function,
- code_index);
}
return current;
« no previous file with comments | « runtime/vm/object.cc ('k') | runtime/vm/raw_object.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698