Searched refs:getBlockNames (Results 1 – 2 of 2) sorted by relevance
78 static std::string getBlockNames(ArrayRef<const BasicBlock *> BBs);79 static std::string getBlockNames(BlockSet BBs) { in getBlockNames() function80 return getBlockNames(ArrayRef<const BasicBlock *>(BBs.begin(), BBs.end())); in getBlockNames()
213 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