• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //===- xray-stacks.cpp: XRay Function Call Stack Accounting ---------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file implements stack-based accounting. It takes XRay traces, and
10 // collates statistics across these traces to show a breakdown of time spent
11 // at various points of the stack to provide insight into which functions
12 // spend the most time in terms of a call stack. We provide a few
13 // sorting/filtering options for zero'ing in on the useful stacks.
14 //
15 //===----------------------------------------------------------------------===//
16 
17 #include <forward_list>
18 #include <numeric>
19 
20 #include "func-id-helper.h"
21 #include "trie-node.h"
22 #include "xray-registry.h"
23 #include "llvm/ADT/StringExtras.h"
24 #include "llvm/Support/CommandLine.h"
25 #include "llvm/Support/Errc.h"
26 #include "llvm/Support/ErrorHandling.h"
27 #include "llvm/Support/FormatAdapters.h"
28 #include "llvm/Support/FormatVariadic.h"
29 #include "llvm/XRay/Graph.h"
30 #include "llvm/XRay/InstrumentationMap.h"
31 #include "llvm/XRay/Trace.h"
32 
33 using namespace llvm;
34 using namespace llvm::xray;
35 
36 static cl::SubCommand Stack("stack", "Call stack accounting");
37 static cl::list<std::string> StackInputs(cl::Positional,
38                                          cl::desc("<xray trace>"), cl::Required,
39                                          cl::sub(Stack), cl::OneOrMore);
40 
41 static cl::opt<bool>
42     StackKeepGoing("keep-going", cl::desc("Keep going on errors encountered"),
43                    cl::sub(Stack), cl::init(false));
44 static cl::alias StackKeepGoing2("k", cl::aliasopt(StackKeepGoing),
45                                  cl::desc("Alias for -keep-going"));
46 
47 // TODO: Does there need to be an option to deduce tail or sibling calls?
48 
49 static cl::opt<std::string> StacksInstrMap(
50     "instr_map",
51     cl::desc("instrumentation map used to identify function ids. "
52              "Currently supports elf file instrumentation maps."),
53     cl::sub(Stack), cl::init(""));
54 static cl::alias StacksInstrMap2("m", cl::aliasopt(StacksInstrMap),
55                                  cl::desc("Alias for -instr_map"));
56 
57 static cl::opt<bool>
58     SeparateThreadStacks("per-thread-stacks",
59                          cl::desc("Report top stacks within each thread id"),
60                          cl::sub(Stack), cl::init(false));
61 
62 static cl::opt<bool>
63     AggregateThreads("aggregate-threads",
64                      cl::desc("Aggregate stack times across threads"),
65                      cl::sub(Stack), cl::init(false));
66 
67 static cl::opt<bool>
68     DumpAllStacks("all-stacks",
69                   cl::desc("Dump sum of timings for all stacks. "
70                            "By default separates stacks per-thread."),
71                   cl::sub(Stack), cl::init(false));
72 static cl::alias DumpAllStacksShort("all", cl::aliasopt(DumpAllStacks),
73                                     cl::desc("Alias for -all-stacks"));
74 
75 // TODO(kpw): Add other interesting formats. Perhaps chrome trace viewer format
76 // possibly with aggregations or just a linear trace of timings.
77 enum StackOutputFormat { HUMAN, FLAMETOOL };
78 
79 static cl::opt<StackOutputFormat> StacksOutputFormat(
80     "stack-format",
81     cl::desc("The format that output stacks should be "
82              "output in. Only applies with all-stacks."),
83     cl::values(
84         clEnumValN(HUMAN, "human",
85                    "Human readable output. Only valid without -all-stacks."),
86         clEnumValN(FLAMETOOL, "flame",
87                    "Format consumable by Brendan Gregg's FlameGraph tool. "
88                    "Only valid with -all-stacks.")),
89     cl::sub(Stack), cl::init(HUMAN));
90 
91 // Types of values for each stack in a CallTrie.
92 enum class AggregationType {
93   TOTAL_TIME,      // The total time spent in a stack and its callees.
94   INVOCATION_COUNT // The number of times the stack was invoked.
95 };
96 
97 static cl::opt<AggregationType> RequestedAggregation(
98     "aggregation-type",
99     cl::desc("The type of aggregation to do on call stacks."),
100     cl::values(
101         clEnumValN(
102             AggregationType::TOTAL_TIME, "time",
103             "Capture the total time spent in an all invocations of a stack."),
104         clEnumValN(AggregationType::INVOCATION_COUNT, "count",
105                    "Capture the number of times a stack was invoked. "
106                    "In flamegraph mode, this count also includes invocations "
107                    "of all callees.")),
108     cl::sub(Stack), cl::init(AggregationType::TOTAL_TIME));
109 
110 /// A helper struct to work with formatv and XRayRecords. Makes it easier to
111 /// use instrumentation map names or addresses in formatted output.
112 struct format_xray_record : public FormatAdapter<XRayRecord> {
format_xray_recordformat_xray_record113   explicit format_xray_record(XRayRecord record,
114                               const FuncIdConversionHelper &conv)
115       : FormatAdapter<XRayRecord>(std::move(record)), Converter(&conv) {}
formatformat_xray_record116   void format(raw_ostream &Stream, StringRef Style) override {
117     Stream << formatv(
118         "{FuncId: \"{0}\", ThreadId: \"{1}\", RecordType: \"{2}\"}",
119         Converter->SymbolOrNumber(Item.FuncId), Item.TId,
120         DecodeRecordType(Item.RecordType));
121   }
122 
123 private:
DecodeRecordTypeformat_xray_record124   Twine DecodeRecordType(uint16_t recordType) {
125     switch (recordType) {
126     case 0:
127       return Twine("Fn Entry");
128     case 1:
129       return Twine("Fn Exit");
130     default:
131       // TODO: Add Tail exit when it is added to llvm/XRay/XRayRecord.h
132       return Twine("Unknown");
133     }
134   }
135 
136   const FuncIdConversionHelper *Converter;
137 };
138 
139 /// The stack command will take a set of XRay traces as arguments, and collects
140 /// information about the stacks of instrumented functions that appear in the
141 /// traces. We track the following pieces of information:
142 ///
143 ///   - Total time: amount of time/cycles accounted for in the traces.
144 ///   - Stack count: number of times a specific stack appears in the
145 ///     traces. Only instrumented functions show up in stacks.
146 ///   - Cumulative stack time: amount of time spent in a stack accumulated
147 ///     across the invocations in the traces.
148 ///   - Cumulative local time: amount of time spent in each instrumented
149 ///     function showing up in a specific stack, accumulated across the traces.
150 ///
151 /// Example output for the kind of data we'd like to provide looks like the
152 /// following:
153 ///
154 ///   Total time: 3.33234 s
155 ///   Stack ID: ...
156 ///   Stack Count: 2093
157 ///   #     Function                  Local Time     (%)      Stack Time     (%)
158 ///   0     main                         2.34 ms   0.07%      3.33234  s    100%
159 ///   1     foo()                     3.30000  s  99.02%         3.33  s  99.92%
160 ///   2     bar()                          30 ms   0.90%           30 ms   0.90%
161 ///
162 /// We can also show distributions of the function call durations with
163 /// statistics at each level of the stack. This works by doing the following
164 /// algorithm:
165 ///
166 ///   1. When unwinding, record the duration of each unwound function associated
167 ///   with the path up to which the unwinding stops. For example:
168 ///
169 ///        Step                         Duration (? means has start time)
170 ///
171 ///        push a <start time>           a = ?
172 ///        push b <start time>           a = ?, a->b = ?
173 ///        push c <start time>           a = ?, a->b = ?, a->b->c = ?
174 ///        pop  c <end time>             a = ?, a->b = ?, emit duration(a->b->c)
175 ///        pop  b <end time>             a = ?, emit duration(a->b)
176 ///        push c <start time>           a = ?, a->c = ?
177 ///        pop  c <end time>             a = ?, emit duration(a->c)
178 ///        pop  a <end time>             emit duration(a)
179 ///
180 ///   2. We then account for the various stacks we've collected, and for each of
181 ///      them will have measurements that look like the following (continuing
182 ///      with the above simple example):
183 ///
184 ///        c : [<id("a->b->c"), [durations]>, <id("a->c"), [durations]>]
185 ///        b : [<id("a->b"), [durations]>]
186 ///        a : [<id("a"), [durations]>]
187 ///
188 ///      This allows us to compute, for each stack id, and each function that
189 ///      shows up in the stack,  some important statistics like:
190 ///
191 ///        - median
192 ///        - 99th percentile
193 ///        - mean + stddev
194 ///        - count
195 ///
196 ///   3. For cases where we don't have durations for some of the higher levels
197 ///   of the stack (perhaps instrumentation wasn't activated when the stack was
198 ///   entered), we can mark them appropriately.
199 ///
200 ///  Computing this data also allows us to implement lookup by call stack nodes,
201 ///  so that we can find functions that show up in multiple stack traces and
202 ///  show the statistical properties of that function in various contexts. We
203 ///  can compute information similar to the following:
204 ///
205 ///    Function: 'c'
206 ///    Stacks: 2 / 2
207 ///    Stack ID: ...
208 ///    Stack Count: ...
209 ///    #     Function  ...
210 ///    0     a         ...
211 ///    1     b         ...
212 ///    2     c         ...
213 ///
214 ///    Stack ID: ...
215 ///    Stack Count: ...
216 ///    #     Function  ...
217 ///    0     a         ...
218 ///    1     c         ...
219 ///    ----------------...
220 ///
221 ///    Function: 'b'
222 ///    Stacks:  1 / 2
223 ///    Stack ID: ...
224 ///    Stack Count: ...
225 ///    #     Function  ...
226 ///    0     a         ...
227 ///    1     b         ...
228 ///    2     c         ...
229 ///
230 ///
231 /// To do this we require a Trie data structure that will allow us to represent
232 /// all the call stacks of instrumented functions in an easily traversible
233 /// manner when we do the aggregations and lookups. For instrumented call
234 /// sequences like the following:
235 ///
236 ///   a()
237 ///    b()
238 ///     c()
239 ///     d()
240 ///    c()
241 ///
242 /// We will have a representation like so:
243 ///
244 ///   a -> b -> c
245 ///   |    |
246 ///   |    +--> d
247 ///   |
248 ///   +--> c
249 ///
250 /// We maintain a sequence of durations on the leaves and in the internal nodes
251 /// as we go through and process every record from the XRay trace. We also
252 /// maintain an index of unique functions, and provide a means of iterating
253 /// through all the instrumented call stacks which we know about.
254 
255 namespace {
256 struct StackDuration {
257   llvm::SmallVector<int64_t, 4> TerminalDurations;
258   llvm::SmallVector<int64_t, 4> IntermediateDurations;
259 };
260 } // namespace
261 
mergeStackDuration(const StackDuration & Left,const StackDuration & Right)262 static StackDuration mergeStackDuration(const StackDuration &Left,
263                                         const StackDuration &Right) {
264   StackDuration Data{};
265   Data.TerminalDurations.reserve(Left.TerminalDurations.size() +
266                                  Right.TerminalDurations.size());
267   Data.IntermediateDurations.reserve(Left.IntermediateDurations.size() +
268                                      Right.IntermediateDurations.size());
269   // Aggregate the durations.
270   for (auto duration : Left.TerminalDurations)
271     Data.TerminalDurations.push_back(duration);
272   for (auto duration : Right.TerminalDurations)
273     Data.TerminalDurations.push_back(duration);
274 
275   for (auto duration : Left.IntermediateDurations)
276     Data.IntermediateDurations.push_back(duration);
277   for (auto duration : Right.IntermediateDurations)
278     Data.IntermediateDurations.push_back(duration);
279   return Data;
280 }
281 
282 using StackTrieNode = TrieNode<StackDuration>;
283 
284 template <AggregationType AggType>
285 static std::size_t GetValueForStack(const StackTrieNode *Node);
286 
287 // When computing total time spent in a stack, we're adding the timings from
288 // its callees and the timings from when it was a leaf.
289 template <>
290 std::size_t
GetValueForStack(const StackTrieNode * Node)291 GetValueForStack<AggregationType::TOTAL_TIME>(const StackTrieNode *Node) {
292   auto TopSum = std::accumulate(Node->ExtraData.TerminalDurations.begin(),
293                                 Node->ExtraData.TerminalDurations.end(), 0uLL);
294   return std::accumulate(Node->ExtraData.IntermediateDurations.begin(),
295                          Node->ExtraData.IntermediateDurations.end(), TopSum);
296 }
297 
298 // Calculates how many times a function was invoked.
299 // TODO: Hook up option to produce stacks
300 template <>
301 std::size_t
GetValueForStack(const StackTrieNode * Node)302 GetValueForStack<AggregationType::INVOCATION_COUNT>(const StackTrieNode *Node) {
303   return Node->ExtraData.TerminalDurations.size() +
304          Node->ExtraData.IntermediateDurations.size();
305 }
306 
307 // Make sure there are implementations for each enum value.
308 template <AggregationType T> struct DependentFalseType : std::false_type {};
309 
310 template <AggregationType AggType>
GetValueForStack(const StackTrieNode * Node)311 std::size_t GetValueForStack(const StackTrieNode *Node) {
312   static_assert(DependentFalseType<AggType>::value,
313                 "No implementation found for aggregation type provided.");
314   return 0;
315 }
316 
317 class StackTrie {
318   // Avoid the magic number of 4 propagated through the code with an alias.
319   // We use this SmallVector to track the root nodes in a call graph.
320   using RootVector = SmallVector<StackTrieNode *, 4>;
321 
322   // We maintain pointers to the roots of the tries we see.
323   DenseMap<uint32_t, RootVector> Roots;
324 
325   // We make sure all the nodes are accounted for in this list.
326   std::forward_list<StackTrieNode> NodeStore;
327 
328   // A map of thread ids to pairs call stack trie nodes and their start times.
329   DenseMap<uint32_t, SmallVector<std::pair<StackTrieNode *, uint64_t>, 8>>
330       ThreadStackMap;
331 
createTrieNode(uint32_t ThreadId,int32_t FuncId,StackTrieNode * Parent)332   StackTrieNode *createTrieNode(uint32_t ThreadId, int32_t FuncId,
333                                 StackTrieNode *Parent) {
334     NodeStore.push_front(StackTrieNode{FuncId, Parent, {}, {{}, {}}});
335     auto I = NodeStore.begin();
336     auto *Node = &*I;
337     if (!Parent)
338       Roots[ThreadId].push_back(Node);
339     return Node;
340   }
341 
findRootNode(uint32_t ThreadId,int32_t FuncId)342   StackTrieNode *findRootNode(uint32_t ThreadId, int32_t FuncId) {
343     const auto &RootsByThread = Roots[ThreadId];
344     auto I = find_if(RootsByThread,
345                      [&](StackTrieNode *N) { return N->FuncId == FuncId; });
346     return (I == RootsByThread.end()) ? nullptr : *I;
347   }
348 
349 public:
350   enum class AccountRecordStatus {
351     OK,              // Successfully processed
352     ENTRY_NOT_FOUND, // An exit record had no matching call stack entry
353     UNKNOWN_RECORD_TYPE
354   };
355 
356   struct AccountRecordState {
357     // We keep track of whether the call stack is currently unwinding.
358     bool wasLastRecordExit;
359 
CreateInitialStateStackTrie::AccountRecordState360     static AccountRecordState CreateInitialState() { return {false}; }
361   };
362 
accountRecord(const XRayRecord & R,AccountRecordState * state)363   AccountRecordStatus accountRecord(const XRayRecord &R,
364                                     AccountRecordState *state) {
365     auto &TS = ThreadStackMap[R.TId];
366     switch (R.Type) {
367     case RecordTypes::CUSTOM_EVENT:
368     case RecordTypes::TYPED_EVENT:
369       return AccountRecordStatus::OK;
370     case RecordTypes::ENTER:
371     case RecordTypes::ENTER_ARG: {
372       state->wasLastRecordExit = false;
373       // When we encounter a new function entry, we want to record the TSC for
374       // that entry, and the function id. Before doing so we check the top of
375       // the stack to see if there are callees that already represent this
376       // function.
377       if (TS.empty()) {
378         auto *Root = findRootNode(R.TId, R.FuncId);
379         TS.emplace_back(Root ? Root : createTrieNode(R.TId, R.FuncId, nullptr),
380                         R.TSC);
381         return AccountRecordStatus::OK;
382       }
383 
384       auto &Top = TS.back();
385       auto I = find_if(Top.first->Callees,
386                        [&](StackTrieNode *N) { return N->FuncId == R.FuncId; });
387       if (I == Top.first->Callees.end()) {
388         // We didn't find the callee in the stack trie, so we're going to
389         // add to the stack then set up the pointers properly.
390         auto N = createTrieNode(R.TId, R.FuncId, Top.first);
391         Top.first->Callees.emplace_back(N);
392 
393         // Top may be invalidated after this statement.
394         TS.emplace_back(N, R.TSC);
395       } else {
396         // We found the callee in the stack trie, so we'll use that pointer
397         // instead, add it to the stack associated with the TSC.
398         TS.emplace_back(*I, R.TSC);
399       }
400       return AccountRecordStatus::OK;
401     }
402     case RecordTypes::EXIT:
403     case RecordTypes::TAIL_EXIT: {
404       bool wasLastRecordExit = state->wasLastRecordExit;
405       state->wasLastRecordExit = true;
406       // The exit case is more interesting, since we want to be able to deduce
407       // missing exit records. To do that properly, we need to look up the stack
408       // and see whether the exit record matches any of the entry records. If it
409       // does match, we attempt to record the durations as we pop the stack to
410       // where we see the parent.
411       if (TS.empty()) {
412         // Short circuit, and say we can't find it.
413 
414         return AccountRecordStatus::ENTRY_NOT_FOUND;
415       }
416 
417       auto FunctionEntryMatch = find_if(
418           reverse(TS), [&](const std::pair<StackTrieNode *, uint64_t> &E) {
419             return E.first->FuncId == R.FuncId;
420           });
421       auto status = AccountRecordStatus::OK;
422       if (FunctionEntryMatch == TS.rend()) {
423         status = AccountRecordStatus::ENTRY_NOT_FOUND;
424       } else {
425         // Account for offset of 1 between reverse and forward iterators. We
426         // want the forward iterator to include the function that is exited.
427         ++FunctionEntryMatch;
428       }
429       auto I = FunctionEntryMatch.base();
430       for (auto &E : make_range(I, TS.end() - 1))
431         E.first->ExtraData.IntermediateDurations.push_back(
432             std::max(E.second, R.TSC) - std::min(E.second, R.TSC));
433       auto &Deepest = TS.back();
434       if (wasLastRecordExit)
435         Deepest.first->ExtraData.IntermediateDurations.push_back(
436             std::max(Deepest.second, R.TSC) - std::min(Deepest.second, R.TSC));
437       else
438         Deepest.first->ExtraData.TerminalDurations.push_back(
439             std::max(Deepest.second, R.TSC) - std::min(Deepest.second, R.TSC));
440       TS.erase(I, TS.end());
441       return status;
442     }
443     }
444     return AccountRecordStatus::UNKNOWN_RECORD_TYPE;
445   }
446 
isEmpty() const447   bool isEmpty() const { return Roots.empty(); }
448 
printStack(raw_ostream & OS,const StackTrieNode * Top,FuncIdConversionHelper & FN)449   void printStack(raw_ostream &OS, const StackTrieNode *Top,
450                   FuncIdConversionHelper &FN) {
451     // Traverse the pointers up to the parent, noting the sums, then print
452     // in reverse order (callers at top, callees down bottom).
453     SmallVector<const StackTrieNode *, 8> CurrentStack;
454     for (auto *F = Top; F != nullptr; F = F->Parent)
455       CurrentStack.push_back(F);
456     int Level = 0;
457     OS << formatv("{0,-5} {1,-60} {2,+12} {3,+16}\n", "lvl", "function",
458                   "count", "sum");
459     for (auto *F :
460          reverse(make_range(CurrentStack.begin() + 1, CurrentStack.end()))) {
461       auto Sum = std::accumulate(F->ExtraData.IntermediateDurations.begin(),
462                                  F->ExtraData.IntermediateDurations.end(), 0LL);
463       auto FuncId = FN.SymbolOrNumber(F->FuncId);
464       OS << formatv("#{0,-4} {1,-60} {2,+12} {3,+16}\n", Level++,
465                     FuncId.size() > 60 ? FuncId.substr(0, 57) + "..." : FuncId,
466                     F->ExtraData.IntermediateDurations.size(), Sum);
467     }
468     auto *Leaf = *CurrentStack.begin();
469     auto LeafSum =
470         std::accumulate(Leaf->ExtraData.TerminalDurations.begin(),
471                         Leaf->ExtraData.TerminalDurations.end(), 0LL);
472     auto LeafFuncId = FN.SymbolOrNumber(Leaf->FuncId);
473     OS << formatv("#{0,-4} {1,-60} {2,+12} {3,+16}\n", Level++,
474                   LeafFuncId.size() > 60 ? LeafFuncId.substr(0, 57) + "..."
475                                          : LeafFuncId,
476                   Leaf->ExtraData.TerminalDurations.size(), LeafSum);
477     OS << "\n";
478   }
479 
480   /// Prints top stacks for each thread.
printPerThread(raw_ostream & OS,FuncIdConversionHelper & FN)481   void printPerThread(raw_ostream &OS, FuncIdConversionHelper &FN) {
482     for (auto iter : Roots) {
483       OS << "Thread " << iter.first << ":\n";
484       print(OS, FN, iter.second);
485       OS << "\n";
486     }
487   }
488 
489   /// Prints timing sums for each stack in each threads.
490   template <AggregationType AggType>
printAllPerThread(raw_ostream & OS,FuncIdConversionHelper & FN,StackOutputFormat format)491   void printAllPerThread(raw_ostream &OS, FuncIdConversionHelper &FN,
492                          StackOutputFormat format) {
493     for (auto iter : Roots) {
494       uint32_t threadId = iter.first;
495       RootVector &perThreadRoots = iter.second;
496       bool reportThreadId = true;
497       printAll<AggType>(OS, FN, perThreadRoots, threadId, reportThreadId);
498     }
499   }
500 
501   /// Prints top stacks from looking at all the leaves and ignoring thread IDs.
502   /// Stacks that consist of the same function IDs but were called in different
503   /// thread IDs are not considered unique in this printout.
printIgnoringThreads(raw_ostream & OS,FuncIdConversionHelper & FN)504   void printIgnoringThreads(raw_ostream &OS, FuncIdConversionHelper &FN) {
505     RootVector RootValues;
506 
507     // Function to pull the values out of a map iterator.
508     using RootsType = decltype(Roots.begin())::value_type;
509     auto MapValueFn = [](const RootsType &Value) { return Value.second; };
510 
511     for (const auto &RootNodeRange :
512          make_range(map_iterator(Roots.begin(), MapValueFn),
513                     map_iterator(Roots.end(), MapValueFn))) {
514       for (auto *RootNode : RootNodeRange)
515         RootValues.push_back(RootNode);
516     }
517 
518     print(OS, FN, RootValues);
519   }
520 
521   /// Creates a merged list of Tries for unique stacks that disregards their
522   /// thread IDs.
mergeAcrossThreads(std::forward_list<StackTrieNode> & NodeStore)523   RootVector mergeAcrossThreads(std::forward_list<StackTrieNode> &NodeStore) {
524     RootVector MergedByThreadRoots;
525     for (auto MapIter : Roots) {
526       const auto &RootNodeVector = MapIter.second;
527       for (auto *Node : RootNodeVector) {
528         auto MaybeFoundIter =
529             find_if(MergedByThreadRoots, [Node](StackTrieNode *elem) {
530               return Node->FuncId == elem->FuncId;
531             });
532         if (MaybeFoundIter == MergedByThreadRoots.end()) {
533           MergedByThreadRoots.push_back(Node);
534         } else {
535           MergedByThreadRoots.push_back(mergeTrieNodes(
536               **MaybeFoundIter, *Node, nullptr, NodeStore, mergeStackDuration));
537           MergedByThreadRoots.erase(MaybeFoundIter);
538         }
539       }
540     }
541     return MergedByThreadRoots;
542   }
543 
544   /// Print timing sums for all stacks merged by Thread ID.
545   template <AggregationType AggType>
printAllAggregatingThreads(raw_ostream & OS,FuncIdConversionHelper & FN,StackOutputFormat format)546   void printAllAggregatingThreads(raw_ostream &OS, FuncIdConversionHelper &FN,
547                                   StackOutputFormat format) {
548     std::forward_list<StackTrieNode> AggregatedNodeStore;
549     RootVector MergedByThreadRoots = mergeAcrossThreads(AggregatedNodeStore);
550     bool reportThreadId = false;
551     printAll<AggType>(OS, FN, MergedByThreadRoots,
552                       /*threadId*/ 0, reportThreadId);
553   }
554 
555   /// Merges the trie by thread id before printing top stacks.
printAggregatingThreads(raw_ostream & OS,FuncIdConversionHelper & FN)556   void printAggregatingThreads(raw_ostream &OS, FuncIdConversionHelper &FN) {
557     std::forward_list<StackTrieNode> AggregatedNodeStore;
558     RootVector MergedByThreadRoots = mergeAcrossThreads(AggregatedNodeStore);
559     print(OS, FN, MergedByThreadRoots);
560   }
561 
562   // TODO: Add a format option when more than one are supported.
563   template <AggregationType AggType>
printAll(raw_ostream & OS,FuncIdConversionHelper & FN,RootVector RootValues,uint32_t ThreadId,bool ReportThread)564   void printAll(raw_ostream &OS, FuncIdConversionHelper &FN,
565                 RootVector RootValues, uint32_t ThreadId, bool ReportThread) {
566     SmallVector<const StackTrieNode *, 16> S;
567     for (const auto *N : RootValues) {
568       S.clear();
569       S.push_back(N);
570       while (!S.empty()) {
571         auto *Top = S.pop_back_val();
572         printSingleStack<AggType>(OS, FN, ReportThread, ThreadId, Top);
573         for (const auto *C : Top->Callees)
574           S.push_back(C);
575       }
576     }
577   }
578 
579   /// Prints values for stacks in a format consumable for the flamegraph.pl
580   /// tool. This is a line based format that lists each level in the stack
581   /// hierarchy in a semicolon delimited form followed by a space and a numeric
582   /// value. If breaking down by thread, the thread ID will be added as the
583   /// root level of the stack.
584   template <AggregationType AggType>
printSingleStack(raw_ostream & OS,FuncIdConversionHelper & Converter,bool ReportThread,uint32_t ThreadId,const StackTrieNode * Node)585   void printSingleStack(raw_ostream &OS, FuncIdConversionHelper &Converter,
586                         bool ReportThread, uint32_t ThreadId,
587                         const StackTrieNode *Node) {
588     if (ReportThread)
589       OS << "thread_" << ThreadId << ";";
590     SmallVector<const StackTrieNode *, 5> lineage{};
591     lineage.push_back(Node);
592     while (lineage.back()->Parent != nullptr)
593       lineage.push_back(lineage.back()->Parent);
594     while (!lineage.empty()) {
595       OS << Converter.SymbolOrNumber(lineage.back()->FuncId) << ";";
596       lineage.pop_back();
597     }
598     OS << " " << GetValueForStack<AggType>(Node) << "\n";
599   }
600 
print(raw_ostream & OS,FuncIdConversionHelper & FN,RootVector RootValues)601   void print(raw_ostream &OS, FuncIdConversionHelper &FN,
602              RootVector RootValues) {
603     // Go through each of the roots, and traverse the call stack, producing the
604     // aggregates as you go along. Remember these aggregates and stacks, and
605     // show summary statistics about:
606     //
607     //   - Total number of unique stacks
608     //   - Top 10 stacks by count
609     //   - Top 10 stacks by aggregate duration
610     SmallVector<std::pair<const StackTrieNode *, uint64_t>, 11>
611         TopStacksByCount;
612     SmallVector<std::pair<const StackTrieNode *, uint64_t>, 11> TopStacksBySum;
613     auto greater_second =
614         [](const std::pair<const StackTrieNode *, uint64_t> &A,
615            const std::pair<const StackTrieNode *, uint64_t> &B) {
616           return A.second > B.second;
617         };
618     uint64_t UniqueStacks = 0;
619     for (const auto *N : RootValues) {
620       SmallVector<const StackTrieNode *, 16> S;
621       S.emplace_back(N);
622 
623       while (!S.empty()) {
624         auto *Top = S.pop_back_val();
625 
626         // We only start printing the stack (by walking up the parent pointers)
627         // when we get to a leaf function.
628         if (!Top->ExtraData.TerminalDurations.empty()) {
629           ++UniqueStacks;
630           auto TopSum =
631               std::accumulate(Top->ExtraData.TerminalDurations.begin(),
632                               Top->ExtraData.TerminalDurations.end(), 0uLL);
633           {
634             auto E = std::make_pair(Top, TopSum);
635             TopStacksBySum.insert(
636                 llvm::lower_bound(TopStacksBySum, E, greater_second), E);
637             if (TopStacksBySum.size() == 11)
638               TopStacksBySum.pop_back();
639           }
640           {
641             auto E =
642                 std::make_pair(Top, Top->ExtraData.TerminalDurations.size());
643             TopStacksByCount.insert(std::lower_bound(TopStacksByCount.begin(),
644                                                      TopStacksByCount.end(), E,
645                                                      greater_second),
646                                     E);
647             if (TopStacksByCount.size() == 11)
648               TopStacksByCount.pop_back();
649           }
650         }
651         for (const auto *C : Top->Callees)
652           S.push_back(C);
653       }
654     }
655 
656     // Now print the statistics in the end.
657     OS << "\n";
658     OS << "Unique Stacks: " << UniqueStacks << "\n";
659     OS << "Top 10 Stacks by leaf sum:\n\n";
660     for (const auto &P : TopStacksBySum) {
661       OS << "Sum: " << P.second << "\n";
662       printStack(OS, P.first, FN);
663     }
664     OS << "\n";
665     OS << "Top 10 Stacks by leaf count:\n\n";
666     for (const auto &P : TopStacksByCount) {
667       OS << "Count: " << P.second << "\n";
668       printStack(OS, P.first, FN);
669     }
670     OS << "\n";
671   }
672 };
673 
CreateErrorMessage(StackTrie::AccountRecordStatus Error,const XRayRecord & Record,const FuncIdConversionHelper & Converter)674 static std::string CreateErrorMessage(StackTrie::AccountRecordStatus Error,
675                                       const XRayRecord &Record,
676                                       const FuncIdConversionHelper &Converter) {
677   switch (Error) {
678   case StackTrie::AccountRecordStatus::ENTRY_NOT_FOUND:
679     return std::string(
680         formatv("Found record {0} with no matching function entry\n",
681                 format_xray_record(Record, Converter)));
682   default:
683     return std::string(formatv("Unknown error type for record {0}\n",
684                                format_xray_record(Record, Converter)));
685   }
686 }
687 
__anona4728a560802() 688 static CommandRegistration Unused(&Stack, []() -> Error {
689   // Load each file provided as a command-line argument. For each one of them
690   // account to a single StackTrie, and just print the whole trie for now.
691   StackTrie ST;
692   InstrumentationMap Map;
693   if (!StacksInstrMap.empty()) {
694     auto InstrumentationMapOrError = loadInstrumentationMap(StacksInstrMap);
695     if (!InstrumentationMapOrError)
696       return joinErrors(
697           make_error<StringError>(
698               Twine("Cannot open instrumentation map: ") + StacksInstrMap,
699               std::make_error_code(std::errc::invalid_argument)),
700           InstrumentationMapOrError.takeError());
701     Map = std::move(*InstrumentationMapOrError);
702   }
703 
704   if (SeparateThreadStacks && AggregateThreads)
705     return make_error<StringError>(
706         Twine("Can't specify options for per thread reporting and reporting "
707               "that aggregates threads."),
708         std::make_error_code(std::errc::invalid_argument));
709 
710   if (!DumpAllStacks && StacksOutputFormat != HUMAN)
711     return make_error<StringError>(
712         Twine("Can't specify a non-human format without -all-stacks."),
713         std::make_error_code(std::errc::invalid_argument));
714 
715   if (DumpAllStacks && StacksOutputFormat == HUMAN)
716     return make_error<StringError>(
717         Twine("You must specify a non-human format when reporting with "
718               "-all-stacks."),
719         std::make_error_code(std::errc::invalid_argument));
720 
721   symbolize::LLVMSymbolizer Symbolizer;
722   FuncIdConversionHelper FuncIdHelper(StacksInstrMap, Symbolizer,
723                                       Map.getFunctionAddresses());
724   // TODO: Someday, support output to files instead of just directly to
725   // standard output.
726   for (const auto &Filename : StackInputs) {
727     auto TraceOrErr = loadTraceFile(Filename);
728     if (!TraceOrErr) {
729       if (!StackKeepGoing)
730         return joinErrors(
731             make_error<StringError>(
732                 Twine("Failed loading input file '") + Filename + "'",
733                 std::make_error_code(std::errc::invalid_argument)),
734             TraceOrErr.takeError());
735       logAllUnhandledErrors(TraceOrErr.takeError(), errs());
736       continue;
737     }
738     auto &T = *TraceOrErr;
739     StackTrie::AccountRecordState AccountRecordState =
740         StackTrie::AccountRecordState::CreateInitialState();
741     for (const auto &Record : T) {
742       auto error = ST.accountRecord(Record, &AccountRecordState);
743       if (error != StackTrie::AccountRecordStatus::OK) {
744         if (!StackKeepGoing)
745           return make_error<StringError>(
746               CreateErrorMessage(error, Record, FuncIdHelper),
747               make_error_code(errc::illegal_byte_sequence));
748         errs() << CreateErrorMessage(error, Record, FuncIdHelper);
749       }
750     }
751   }
752   if (ST.isEmpty()) {
753     return make_error<StringError>(
754         "No instrumented calls were accounted in the input file.",
755         make_error_code(errc::result_out_of_range));
756   }
757 
758   // Report the stacks in a long form mode for another tool to analyze.
759   if (DumpAllStacks) {
760     if (AggregateThreads) {
761       switch (RequestedAggregation) {
762       case AggregationType::TOTAL_TIME:
763         ST.printAllAggregatingThreads<AggregationType::TOTAL_TIME>(
764             outs(), FuncIdHelper, StacksOutputFormat);
765         break;
766       case AggregationType::INVOCATION_COUNT:
767         ST.printAllAggregatingThreads<AggregationType::INVOCATION_COUNT>(
768             outs(), FuncIdHelper, StacksOutputFormat);
769         break;
770       }
771     } else {
772       switch (RequestedAggregation) {
773       case AggregationType::TOTAL_TIME:
774         ST.printAllPerThread<AggregationType::TOTAL_TIME>(outs(), FuncIdHelper,
775                                                           StacksOutputFormat);
776         break;
777       case AggregationType::INVOCATION_COUNT:
778         ST.printAllPerThread<AggregationType::INVOCATION_COUNT>(
779             outs(), FuncIdHelper, StacksOutputFormat);
780         break;
781       }
782     }
783     return Error::success();
784   }
785 
786   // We're only outputting top stacks.
787   if (AggregateThreads) {
788     ST.printAggregatingThreads(outs(), FuncIdHelper);
789   } else if (SeparateThreadStacks) {
790     ST.printPerThread(outs(), FuncIdHelper);
791   } else {
792     ST.printIgnoringThreads(outs(), FuncIdHelper);
793   }
794   return Error::success();
795 });
796