Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/llvm/lib/Transforms/Utils/
H A DCodeLayout.cpp505 AllBlocks.reserve(NumNodes); in initialize()
532 auto &Block = AllBlocks[Pred]; in initialize()
533 auto &SuccBlock = AllBlocks[Succ]; in initialize()
547 for (Block &Block : AllBlocks) { in initialize()
557 for (Block &Block : AllBlocks) { in initialize()
581 for (auto &Block : AllBlocks) { in mergeForcedPairs()
586 Block.ForcedSucc = &AllBlocks[SuccIndex]; in mergeForcedPairs()
587 AllBlocks[SuccIndex].ForcedPred = &Block; in mergeForcedPairs()
597 for (auto &Block : AllBlocks) { in mergeForcedPairs()
613 for (auto &Block : AllBlocks) { in mergeForcedPairs()
[all …]
H A DLoopUnrollAndJam.cpp758 SmallVector<BasicBlockSet, 8> AllBlocks; in checkDependencies() local
761 AllBlocks.push_back(ForeBlocksMap.lookup(L)); in checkDependencies()
762 AllBlocks.push_back(SubLoopBlocks); in checkDependencies()
765 AllBlocks.push_back(AftBlocksMap.lookup(L)); in checkDependencies()
770 for (BasicBlockSet &Blocks : AllBlocks) { in checkDependencies()
/openbsd/gnu/llvm/llvm/lib/Transforms/Instrumentation/
H A DSanitizerCoverage.cpp747 size_t N = AllBlocks.size(); in CreatePCArray()
752 if (&F.getEntryBlock() == AllBlocks[i]) { in CreatePCArray()
758 BlockAddress::get(AllBlocks[i]), IntptrPtrTy)); in CreatePCArray()
772 Function &F, ArrayRef<BasicBlock *> AllBlocks) { in CreateFunctionLocalArrays() argument
775 AllBlocks.size(), F, Int32Ty, SanCovGuardsSectionName); in CreateFunctionLocalArrays()
779 AllBlocks.size(), F, Int8Ty, SanCovCountersSectionName); in CreateFunctionLocalArrays()
785 FunctionPCsArray = CreatePCArray(F, AllBlocks); in CreateFunctionLocalArrays()
791 if (AllBlocks.empty()) return false; in InjectCoverage()
792 CreateFunctionLocalArrays(F, AllBlocks); in InjectCoverage()
793 for (size_t i = 0, N = AllBlocks.size(); i < N; i++) in InjectCoverage()
[all …]
H A DAddressSanitizer.cpp2715 SmallVector<BasicBlock *, 16> AllBlocks; in instrumentFunction() local
2720 AllBlocks.push_back(&BB); in instrumentFunction()
/openbsd/gnu/llvm/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()
/openbsd/gnu/llvm/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()
/openbsd/gnu/llvm/llvm/include/llvm/ProfileData/
H A DGCOV.h47 : AllBlocks(A), BranchInfo(B), BranchCount(C), FuncCoverage(F), in Options()
52 bool AllBlocks; member
/openbsd/gnu/llvm/llvm/lib/CodeGen/LiveDebugValues/
H A DInstrRefBasedImpl.cpp2491 MachineFunction &MF, SmallPtrSetImpl<MachineBasicBlock *> &AllBlocks, in placeMLocPHIs() argument
2559 BlockPHIPlacement(AllBlocks, DefBlocks, PHIBlocks); in placeMLocPHIs()
2634 SmallPtrSet<MachineBasicBlock *, 32> AllBlocks; in buildMLocValueMap() local
2638 AllBlocks.insert(OrderToBB[I]); in buildMLocValueMap()
2650 placeMLocPHIs(MF, AllBlocks, MInLocs, MLocTransfer); in buildMLocValueMap()
2748 const SmallPtrSetImpl<MachineBasicBlock *> &AllBlocks, in BlockPHIPlacement() argument
2756 IDF.setLiveInBlocks(AllBlocks); in BlockPHIPlacement()
H A DInstrRefBasedImpl.h1285 SmallPtrSetImpl<MachineBasicBlock *> &AllBlocks,
1304 void BlockPHIPlacement(const SmallPtrSetImpl<MachineBasicBlock *> &AllBlocks,
/openbsd/gnu/llvm/llvm/lib/ProfileData/
H A DGCOV.cpp781 if (options.AllBlocks) { in annotateSource()