/openbsd/gnu/llvm/llvm/lib/Transforms/Utils/ |
H A D | CodeLayout.cpp | 505 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 D | LoopUnrollAndJam.cpp | 758 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 D | SanitizerCoverage.cpp | 747 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 D | AddressSanitizer.cpp | 2715 SmallVector<BasicBlock *, 16> AllBlocks; in instrumentFunction() local 2720 AllBlocks.push_back(&BB); in instrumentFunction()
|
/openbsd/gnu/llvm/llvm/tools/llvm-cov/ |
H A D | gcov.cpp | 89 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 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()
|
/openbsd/gnu/llvm/llvm/include/llvm/ProfileData/ |
H A D | GCOV.h | 47 : AllBlocks(A), BranchInfo(B), BranchCount(C), FuncCoverage(F), in Options() 52 bool AllBlocks; member
|
/openbsd/gnu/llvm/llvm/lib/CodeGen/LiveDebugValues/ |
H A D | InstrRefBasedImpl.cpp | 2491 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 D | InstrRefBasedImpl.h | 1285 SmallPtrSetImpl<MachineBasicBlock *> &AllBlocks, 1304 void BlockPHIPlacement(const SmallPtrSetImpl<MachineBasicBlock *> &AllBlocks,
|
/openbsd/gnu/llvm/llvm/lib/ProfileData/ |
H A D | GCOV.cpp | 781 if (options.AllBlocks) { in annotateSource()
|