/freebsd-src/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ |
H A D | SSAUpdaterImpl.h | 94 SmallVector<BBInfo *, 100> BlockList; in GetValue() local 95 BBInfo *PseudoEntry = BuildBlockList(BB, &BlockList); in GetValue() 98 if (BlockList.size() == 0) { in GetValue() 104 FindDominators(&BlockList, PseudoEntry); in GetValue() 105 FindPHIPlacement(&BlockList); in GetValue() 106 FindAvailableVals(&BlockList); in GetValue() 115 BBInfo *BuildBlockList(BlkT *BB, BlockListTy *BlockList) { in BuildBlockList() argument 182 // If not a root, put it on the BlockList. in BuildBlockList() 184 BlockList->push_back(Info); in BuildBlockList() 231 /// corresponding to the basic blocks on the BlockList 240 FindDominators(BlockListTy * BlockList,BBInfo * PseudoEntry) FindDominators() argument 294 FindPHIPlacement(BlockListTy * BlockList) FindPHIPlacement() argument 353 FindAvailableVals(BlockListTy * BlockList) FindAvailableVals() argument 415 FindExistingPHI(BlkT * BB,BlockListTy * BlockList) FindExistingPHI() argument 477 RecordMatchingPHIs(BlockListTy * BlockList) RecordMatchingPHIs() argument [all...] |
/freebsd-src/contrib/llvm-project/llvm/lib/Demangle/ |
H A D | ItaniumDemangle.cpp | 299 BlockMeta* BlockList = nullptr; member in __anonc8b2f5c20211::BumpPointerAllocator 305 BlockList = new (NewMeta) BlockMeta{BlockList, 0}; in grow() 313 BlockList->Next = new (NewMeta) BlockMeta{BlockList->Next, 0}; in allocateMassive() 319 : BlockList(new (InitialBuffer) BlockMeta{nullptr, 0}) {} in BumpPointerAllocator() 323 if (N + BlockList->Current >= UsableAllocSize) { in allocate() 328 BlockList->Current += N; in allocate() 329 return static_cast<void*>(reinterpret_cast<char*>(BlockList + 1) + in allocate() 330 BlockList->Current - N); in allocate() 334 while (BlockList) { in reset() 335 BlockMeta* Tmp = BlockList; in reset() [all …]
|
/freebsd-src/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
H A D | primary64.h | 182 for (BatchGroupT &BG : Region->FreeListInfo.BlockList) { in verifyAllBlocksAreReleasedTestOnly() 199 for (BatchGroupT &BG : Region->FreeListInfo.BlockList) { in verifyAllBlocksAreReleasedTestOnly() 527 SinglyLinkedList<BatchGroupT> BlockList = {}; 670 BatchGroupT *BG = Region->FreeListInfo.BlockList.front(); in pushBatchClassBlocks() 688 Region->FreeListInfo.BlockList.push_front(BG); in pushBatchClassBlocks() 743 // FreeListInfo.BlockList - > BG -> BG -> BG 806 BatchGroupT *Cur = Region->FreeListInfo.BlockList.front(); 822 Region->FreeListInfo.BlockList.push_front(Cur); 824 Region->FreeListInfo.BlockList.insert(Prev, Cur); 855 Region->FreeListInfo.BlockList 547 SinglyLinkedList<BatchGroupT> BlockList = {}; global() member [all...] |
H A D | primary32.h | 136 for (BatchGroupT &BG : Sci->FreeListInfo.BlockList) { in verifyAllBlocksAreReleasedTestOnly() 151 for (BatchGroupT &BG : Sci->FreeListInfo.BlockList) { in verifyAllBlocksAreReleasedTestOnly() 393 SinglyLinkedList<BatchGroupT> BlockList = {}; 517 BatchGroupT *BG = Sci->FreeListInfo.BlockList.front(); in pushBatchClassBlocks() 535 Sci->FreeListInfo.BlockList.push_front(BG); in pushBatchClassBlocks() 589 // FreeListInfo.BlockList - > BG -> BG -> BG in pushBatchClassBlocks() 654 BatchGroupT *Cur = Sci->FreeListInfo.BlockList.front(); 670 Sci->FreeListInfo.BlockList.push_front(Cur); 672 Sci->FreeListInfo.BlockList.insert(Prev, Cur); 703 Sci->FreeListInfo.BlockList 407 SinglyLinkedList<BatchGroupT> BlockList = {}; global() member [all...] |
/freebsd-src/contrib/llvm-project/llvm/include/llvm/XRay/ |
H A D | Profile.h | 115 using BlockList = std::list<Block>; 125 BlockList Blocks; 140 using const_iterator = BlockList::const_iterator;
|
/freebsd-src/contrib/llvm-project/llvm/include/llvm/DebugInfo/MSF/ |
H A D | MSFBuilder.h | 128 using BlockList = std::vector<uint32_t>; variable 139 std::vector<std::pair<uint32_t, BlockList>> StreamData;
|
/freebsd-src/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
H A D | PPCExpandISEL.cpp | 194 for (auto &BlockList : ISELInstructions) { in expandAndMergeISELs() local 197 << printMBBReference(*MF->getBlockNumbered(BlockList.first)) in expandAndMergeISELs() 199 BlockISELList &CurrentISELList = BlockList.second; in expandAndMergeISELs()
|
/freebsd-src/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
H A D | YAMLOutputStyle.cpp | 144 pdb::yaml::StreamBlockList BlockList; in dumpStreamDirectory() local 145 BlockList.Blocks.assign(Stream.begin(), Stream.end()); in dumpStreamDirectory() 146 Obj.StreamMap->push_back(BlockList); in dumpStreamDirectory()
|
/freebsd-src/contrib/llvm-project/llvm/lib/DebugInfo/MSF/ |
H A D | MSFBuilder.cpp | 301 ulittle32_t *BlockList = in generateLayout() local 304 StreamData[I].second.size(), BlockList); in generateLayout() 306 ArrayRef<ulittle32_t>(BlockList, StreamData[I].second.size()); in generateLayout()
|
/freebsd-src/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | PartialInlining.cpp | 370 [&ORE](SmallVectorImpl<BasicBlock *> &BlockList) -> BasicBlock * { in computeOutliningColdRegionsInfo() argument 372 for (auto *Block : BlockList) { in computeOutliningColdRegionsInfo() 374 if (!is_contained(BlockList, Succ)) { in computeOutliningColdRegionsInfo() 380 << ore::NV("Block", BlockList.front()->getName()) in computeOutliningColdRegionsInfo()
|