Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Transforms/Instrumentation/
H A DSanitizerCoverage.cpp589 size_t N = AllBlocks.size(); in CreatePCArray()
594 if (&F.getEntryBlock() == AllBlocks[i]) { in CreatePCArray()
600 BlockAddress::get(AllBlocks[i]), IntptrPtrTy)); in CreatePCArray()
615 Function &F, ArrayRef<BasicBlock *> AllBlocks) { in CreateFunctionLocalArrays() argument
618 AllBlocks.size(), F, Int32Ty, SanCovGuardsSectionName); in CreateFunctionLocalArrays()
622 AllBlocks.size(), F, Int8Ty, SanCovCountersSectionName); in CreateFunctionLocalArrays()
625 FunctionPCsArray = CreatePCArray(F, AllBlocks); in CreateFunctionLocalArrays()
631 if (AllBlocks.empty()) return false; in InjectCoverage()
632 CreateFunctionLocalArrays(F, AllBlocks); in InjectCoverage()
633 for (size_t i = 0, N = AllBlocks.size(); i < N; i++) in InjectCoverage()
[all …]
H A DAddressSanitizer.cpp2529 SmallVector<BasicBlock *, 16> AllBlocks; in runOnFunction() local
2540 AllBlocks.push_back(&BB); in runOnFunction()
/freebsd-12.1/contrib/llvm/tools/llvm-cov/
H A Dgcov.cpp88 cl::opt<bool> AllBlocks("a", cl::Grouping, cl::init(false), in gcovMain() local
90 cl::alias AllBlocksA("all-blocks", cl::aliasopt(AllBlocks)); in gcovMain()
138 GCOV::Options Options(AllBlocks, BranchProb, BranchCount, FuncSummary, in gcovMain()
/freebsd-12.1/contrib/llvm/include/llvm/ProfileData/
H A DGCOV.h49 : AllBlocks(A), BranchInfo(B), BranchCount(C), FuncCoverage(F), in Options()
52 bool AllBlocks; member
/freebsd-12.1/contrib/llvm/lib/ProfileData/
H A DGCOV.cpp803 if (Options.AllBlocks) in print()