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.cpp235 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 DAddressSanitizer.cpp2987 SmallVector<BasicBlock *, 16> AllBlocks; in instrumentFunction() local
2992 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.cpp757 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 DGCOV.h48 : AllBlocks(A), BranchInfo(B), BranchCount(C), FuncCoverage(F), in Options()
53 bool AllBlocks; member
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/LiveDebugValues/
H A DInstrRefBasedImpl.cpp2526 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 DInstrRefBasedImpl.h1377 SmallPtrSetImpl<MachineBasicBlock *> &AllBlocks,
1396 void BlockPHIPlacement(const SmallPtrSetImpl<MachineBasicBlock *> &AllBlocks,
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DGCOV.cpp815 if (options.AllBlocks) { in annotateSource()