Lines Matching full:traces

60     "Reads temporal profiling traces from a profile and outputs a function "
61 "order that reduces the number of page faults for those traces. See "
242 cl::desc("The maximum number of stored temporal profile traces (default: "
435 "temporal-profile-traces",
436 cl::desc("Show temporal profile traces in the profile."),
450 NumTestTraces("num-test-traces", cl::init(0),
451 cl::desc("Keep aside the last <num-test-traces> traces in "
784 auto &Traces = Reader->getTemporalProfTraces(Input.Weight); in loadInput() local
785 if (!Traces.empty()) in loadInput()
787 Traces, Reader->getTemporalProfTraceStreamSize()); in loadInput()
2983 auto &Traces = Reader->getTemporalProfTraces(); in showInstrProfile() local
2984 OS << "Temporal Profile Traces (samples=" << Traces.size() in showInstrProfile()
2986 for (unsigned i = 0; i < Traces.size(); i++) { in showInstrProfile()
2987 OS << " Temporal Profile Trace " << i << " (weight=" << Traces[i].Weight in showInstrProfile()
2988 << " count=" << Traces[i].FunctionNameRefs.size() << "):\n"; in showInstrProfile()
2989 for (auto &NameRef : Traces[i].FunctionNameRefs) in showInstrProfile()
3297 ArrayRef Traces = Reader->getTemporalProfTraces(); in order_main() local
3298 if (NumTestTraces && NumTestTraces >= Traces.size()) in order_main()
3301 " must be smaller than the total number of traces: expected: < " + in order_main()
3302 Twine(Traces.size()) + ", actual: " + Twine(NumTestTraces)); in order_main()
3303 ArrayRef TestTraces = Traces.take_back(NumTestTraces); in order_main()
3304 Traces = Traces.drop_back(NumTestTraces); in order_main()
3307 TemporalProfTraceTy::createBPFunctionNodes(Traces, Nodes); in order_main()