Home
last modified time | relevance | path

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

/llvm-project/llvm/include/llvm/Transforms/Instrumentation/
H A DBlockCoverageInference.h78 static std::string getBlockNames(ArrayRef<const BasicBlock *> BBs);
79 static std::string getBlockNames(BlockSet BBs) { in getBlockNames() function
80 return getBlockNames(ArrayRef<const BasicBlock *>(BBs.begin(), BBs.end())); in getBlockNames()
/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DBlockCoverageInference.cpp213 LLVM_DEBUG(dbgs() << "Found path: " << getBlockNames(Path) << "\n"); in findDependencies()
346 OS << " PredDeps = " << getBlockNames(It->second) << "\n"; in dump()
349 OS << " SuccDeps = " << getBlockNames(It->second) << "\n"; in dump()
356 BlockCoverageInference::getBlockNames(ArrayRef<const BasicBlock *> BBs) { in getBlockNames() function in BlockCoverageInference