Home
last modified time | relevance | path

Searched refs:AllBlocks (Results 1 – 7 of 7) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DSanitizerCoverage.cpp713 size_t N = AllBlocks.size(); in CreatePCArray()
718 if (&F.getEntryBlock() == AllBlocks[i]) { in CreatePCArray()
724 BlockAddress::get(AllBlocks[i]), IntptrPtrTy)); in CreatePCArray()
739 Function &F, ArrayRef<BasicBlock *> AllBlocks) { in CreateFunctionLocalArrays() argument
742 AllBlocks.size(), F, Int32Ty, SanCovGuardsSectionName); in CreateFunctionLocalArrays()
746 AllBlocks.size(), F, Int8Ty, SanCovCountersSectionName); in CreateFunctionLocalArrays()
752 FunctionPCsArray = CreatePCArray(F, AllBlocks); in CreateFunctionLocalArrays()
758 if (AllBlocks.empty()) return false; in InjectCoverage()
759 CreateFunctionLocalArrays(F, AllBlocks); in InjectCoverage()
760 for (size_t i = 0, N = AllBlocks.size(); i < N; i++) in InjectCoverage()
[all …]
H A DAddressSanitizer.cpp2810 SmallVector<BasicBlock *, 16> AllBlocks; in instrumentFunction() local
2816 AllBlocks.push_back(&BB); in instrumentFunction()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-cov/
H A Dgcov.cpp89 cl::opt<bool> AllBlocks("a", cl::Grouping, cl::init(false), in gcovMain() local
91 cl::alias AllBlocksA("all-blocks", cl::aliasopt(AllBlocks)); in gcovMain()
171 GCOV::Options Options(AllBlocks, BranchProb, BranchCount, FuncSummary, in gcovMain()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyFixIrreducibleControlFlow.cpp501 BlockSet AllBlocks; in runOnMachineFunction() local
503 AllBlocks.insert(&MBB); in runOnMachineFunction()
506 if (LLVM_UNLIKELY(processRegion(&*MF.begin(), AllBlocks, MF))) { in runOnMachineFunction()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLoopUnrollAndJam.cpp765 SmallVector<BasicBlockSet, 8> AllBlocks; in checkDependencies() local
768 AllBlocks.push_back(ForeBlocksMap.lookup(L)); in checkDependencies()
769 AllBlocks.push_back(SubLoopBlocks); in checkDependencies()
772 AllBlocks.push_back(AftBlocksMap.lookup(L)); in checkDependencies()
777 for (BasicBlockSet &Blocks : AllBlocks) { in checkDependencies()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DGCOV.h51 : AllBlocks(A), BranchInfo(B), BranchCount(C), FuncCoverage(F), in Options()
56 bool AllBlocks; member
/freebsd-13.1/contrib/llvm-project/llvm/lib/ProfileData/
H A DGCOV.cpp778 if (options.AllBlocks) { in annotateSource()