Home
last modified time | relevance | path

Searched refs:PathData (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/XRay/
H A DProfile.cpp31 for (const auto &PathData : Block.PathData) in Profile() local
32 B.PathData.push_back({internPath(cantFail(O.expandPath(PathData.first))), in Profile()
33 PathData.second}); in Profile()
122 if (B.PathData.empty()) in addBlock()
197 using PathDataVector = decltype(Profile::Block::PathData); in mergeProfilesByThread()
206 for (const auto &PathAndData : Block.PathData) { in mergeProfilesByThread()
235 PathDataMap PathData; in mergeProfilesByStack() local
236 using PathDataVector = decltype(Profile::Block::PathData); in mergeProfilesByStack()
239 for (const auto &PathAndData : Block.PathData) { in mergeProfilesByStack()
246 std::tie(PathDataIt, Inserted) = PathData.insert({NewPathID, Data}); in mergeProfilesByStack()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/XRay/
H A DProfile.h64 std::vector<std::pair<PathID, Data>> PathData; member