Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DSanitizerCoverage.cpp262 bool InjectCoverage(Function &F, ArrayRef<BasicBlock *> AllBlocks,
267 GlobalVariable *CreatePCArray(Function &F, ArrayRef<BasicBlock *> AllBlocks);
268 void CreateFunctionLocalArrays(Function &F, ArrayRef<BasicBlock *> AllBlocks);
778 ArrayRef<BasicBlock *> AllBlocks) { in CreatePCArray() argument
779 size_t N = AllBlocks.size(); in CreatePCArray()
784 if (&F.getEntryBlock() == AllBlocks[i]) { in CreatePCArray()
790 BlockAddress::get(AllBlocks[i]), PtrTy)); in CreatePCArray()
804 Function &F, ArrayRef<BasicBlock *> AllBlocks) { in CreateFunctionLocalArrays() argument
807 AllBlocks.size(), F, Int32Ty, SanCovGuardsSectionName); in CreateFunctionLocalArrays()
811 AllBlocks.size(), F, Int8Ty, SanCovCountersSectionName); in CreateFunctionLocalArrays()
[all …]
H A DAddressSanitizer.cpp3044 SmallVector<BasicBlock *, 16> AllBlocks; in instrumentFunction() local
3049 AllBlocks.push_back(&BB); in instrumentFunction()
/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/
H A Dgcov.cpp87 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 DWebAssemblyFixIrreducibleControlFlow.cpp540 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 DLoopUnrollAndJam.cpp760 SmallVector<BasicBlockSet, 8> AllBlocks; in checkDependencies() local
763 AllBlocks.push_back(ForeBlocksMap.lookup(L)); in checkDependencies()
764 AllBlocks.push_back(SubLoopBlocks); in checkDependencies()
767 AllBlocks.push_back(AftBlocksMap.lookup(L)); in checkDependencies()
772 for (BasicBlockSet &Blocks : AllBlocks) { in checkDependencies()
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DGCOV.h49 : AllBlocks(A), BranchInfo(B), BranchCount(C), FuncCoverage(F), in Options()
54 bool AllBlocks; member
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/LiveDebugValues/
H A DInstrRefBasedImpl.cpp2556 MachineFunction &MF, SmallPtrSetImpl<MachineBasicBlock *> &AllBlocks, in placeMLocPHIs() argument
2623 BlockPHIPlacement(AllBlocks, DefBlocks, PHIBlocks); in placeMLocPHIs()
2698 SmallPtrSet<MachineBasicBlock *, 32> AllBlocks; in buildMLocValueMap() local
2702 AllBlocks.insert(OrderToBB[I]); in buildMLocValueMap()
2715 placeMLocPHIs(MF, AllBlocks, MInLocs, MLocTransfer); in buildMLocValueMap()
2814 const SmallPtrSetImpl<MachineBasicBlock *> &AllBlocks, in BlockPHIPlacement() argument
2822 IDF.setLiveInBlocks(AllBlocks); in BlockPHIPlacement()
H A DInstrRefBasedImpl.h1370 MachineFunction &MF, SmallPtrSetImpl<MachineBasicBlock *> &AllBlocks,
1388 void BlockPHIPlacement(const SmallPtrSetImpl<MachineBasicBlock *> &AllBlocks,
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DGCOV.cpp822 if (options.AllBlocks) { in annotateSource()