/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
H A D | SanitizerCoverage.cpp | 235 bool InjectCoverage(Function &F, ArrayRef<BasicBlock *> AllBlocks, 240 GlobalVariable *CreatePCArray(Function &F, ArrayRef<BasicBlock *> AllBlocks); 241 void CreateFunctionLocalArrays(Function &F, ArrayRef<BasicBlock *> AllBlocks); 735 ArrayRef<BasicBlock *> AllBlocks) { in CreatePCArray() argument 736 size_t N = AllBlocks.size(); in CreatePCArray() 741 if (&F.getEntryBlock() == AllBlocks[i]) { in CreatePCArray() 747 BlockAddress::get(AllBlocks[i]), PtrTy)); in CreatePCArray() 761 Function &F, ArrayRef<BasicBlock *> AllBlocks) { in CreateFunctionLocalArrays() argument 764 AllBlocks.size(), F, Int32Ty, SanCovGuardsSectionName); in CreateFunctionLocalArrays() 768 AllBlocks.size(), F, Int8Ty, SanCovCountersSectionName); in CreateFunctionLocalArrays() [all …]
|
H A D | AddressSanitizer.cpp | 2987 SmallVector<BasicBlock *, 16> AllBlocks; in instrumentFunction() local 2992 AllBlocks.push_back(&BB); in instrumentFunction()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/ |
H A D | gcov.cpp | 87 cl::opt<bool> AllBlocks("a", cl::Grouping, cl::init(false), in gcovMain() 89 cl::alias AllBlocksA("all-blocks", cl::aliasopt(AllBlocks)); in gcovMain() local 169 GCOV::Options Options(AllBlocks, BranchProb, BranchCount, FuncSummary, in gcovMain()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyFixIrreducibleControlFlow.cpp | 540 BlockSet AllBlocks; in runOnMachineFunction() local 542 AllBlocks.insert(&MBB); in runOnMachineFunction() 545 if (LLVM_UNLIKELY(processRegion(&*MF.begin(), AllBlocks, MF))) { in runOnMachineFunction()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | LoopUnrollAndJam.cpp | 757 SmallVector<BasicBlockSet, 8> AllBlocks; in checkDependencies() local 760 AllBlocks.push_back(ForeBlocksMap.lookup(L)); in checkDependencies() 761 AllBlocks.push_back(SubLoopBlocks); in checkDependencies() 764 AllBlocks.push_back(AftBlocksMap.lookup(L)); in checkDependencies() 769 for (BasicBlockSet &Blocks : AllBlocks) { in checkDependencies()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/ |
H A D | GCOV.h | 48 : AllBlocks(A), BranchInfo(B), BranchCount(C), FuncCoverage(F), in Options() 53 bool AllBlocks; member
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/LiveDebugValues/ |
H A D | InstrRefBasedImpl.cpp | 2526 MachineFunction &MF, SmallPtrSetImpl<MachineBasicBlock *> &AllBlocks, in placeMLocPHIs() argument 2594 BlockPHIPlacement(AllBlocks, DefBlocks, PHIBlocks); in placeMLocPHIs() 2669 SmallPtrSet<MachineBasicBlock *, 32> AllBlocks; in buildMLocValueMap() local 2673 AllBlocks.insert(OrderToBB[I]); in buildMLocValueMap() 2686 placeMLocPHIs(MF, AllBlocks, MInLocs, MLocTransfer); in buildMLocValueMap() 2784 const SmallPtrSetImpl<MachineBasicBlock *> &AllBlocks, in BlockPHIPlacement() argument 2792 IDF.setLiveInBlocks(AllBlocks); in BlockPHIPlacement()
|
H A D | InstrRefBasedImpl.h | 1377 SmallPtrSetImpl<MachineBasicBlock *> &AllBlocks, 1396 void BlockPHIPlacement(const SmallPtrSetImpl<MachineBasicBlock *> &AllBlocks,
|
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/ |
H A D | GCOV.cpp | 815 if (options.AllBlocks) { in annotateSource()
|