Lines Matching refs:Traces
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()
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()