Searched refs:BlockList (Results 1 – 9 of 9) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ |
| H A D | SSAUpdaterImpl.h | 95 SmallVector<BBInfo *, 100> BlockList; in GetValue() local 96 BBInfo *PseudoEntry = BuildBlockList(BB, &BlockList); in GetValue() 99 if (BlockList.size() == 0) { in GetValue() 105 FindDominators(&BlockList, PseudoEntry); in GetValue() 106 FindPHIPlacement(&BlockList); in GetValue() 107 FindAvailableVals(&BlockList); in GetValue() 116 BBInfo *BuildBlockList(BlkT *BB, BlockListTy *BlockList) { in BuildBlockList() argument 184 BlockList->push_back(Info); in BuildBlockList() 240 void FindDominators(BlockListTy *BlockList, BBInfo *PseudoEntry) { in FindDominators() argument 245 for (typename BlockListTy::reverse_iterator I = BlockList->rbegin(), in FindDominators() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Demangle/ |
| H A D | ItaniumDemangle.cpp | 299 BlockMeta* BlockList = nullptr; member in __anon00a841f00211::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/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
| H A D | primary64.h | 162 SinglyLinkedList<BatchGroupT> BlockList = {}; member 430 for (BatchGroupT &BG : Region->FreeListInfo.BlockList) { in verifyAllBlocksAreReleasedTestOnly() 447 for (BatchGroupT &BG : Region->FreeListInfo.BlockList) { in verifyAllBlocksAreReleasedTestOnly() 607 if (Region->FreeListInfo.BlockList.empty()) in popBlocksImpl() 611 Region->FreeListInfo.BlockList.front()->Batches; in popBlocksImpl() 615 BatchGroupT *BG = Region->FreeListInfo.BlockList.front(); in popBlocksImpl() 616 Region->FreeListInfo.BlockList.pop_front(); in popBlocksImpl() 657 BatchGroupT *BG = Region->FreeListInfo.BlockList.front(); in popBlocksImpl() 658 Region->FreeListInfo.BlockList.pop_front(); in popBlocksImpl() 889 BatchGroupT *Cur = Region->FreeListInfo.BlockList.front(); in pushBlocksImpl() [all …]
|
| H A D | primary32.h | 160 SinglyLinkedList<BatchGroupT> BlockList = {}; member 305 for (BatchGroupT &BG : Sci->FreeListInfo.BlockList) { in verifyAllBlocksAreReleasedTestOnly() 320 for (BatchGroupT &BG : Sci->FreeListInfo.BlockList) { in verifyAllBlocksAreReleasedTestOnly() 625 BatchGroupT *BG = Sci->FreeListInfo.BlockList.front(); in pushBatchClassBlocks() 640 Sci->FreeListInfo.BlockList.push_front(BG); in pushBatchClassBlocks() 752 BatchGroupT *Cur = Sci->FreeListInfo.BlockList.front(); in pushBlocksImpl() 768 Sci->FreeListInfo.BlockList.push_front(Cur); in pushBlocksImpl() 770 Sci->FreeListInfo.BlockList.insert(Prev, Cur); in pushBlocksImpl() 801 Sci->FreeListInfo.BlockList.insert(Prev, Cur); in pushBlocksImpl() 817 if (Sci->FreeListInfo.BlockList.empty()) in popBlocksImpl() [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/XRay/ |
| H A D | Profile.h | 116 using BlockList = std::list<Block>; 126 BlockList Blocks; 141 using const_iterator = BlockList::const_iterator;
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/MSF/ |
| H A D | MSFBuilder.h | 131 using BlockList = std::vector<uint32_t>; variable 142 std::vector<std::pair<uint32_t, BlockList>> StreamData;
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
| H A D | YAMLOutputStyle.cpp | 153 pdb::yaml::StreamBlockList BlockList; in dumpStreamDirectory() local 154 BlockList.Blocks.assign(Stream.begin(), Stream.end()); in dumpStreamDirectory() 155 Obj.StreamMap->push_back(BlockList); in dumpStreamDirectory()
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/MSF/ |
| H A D | MSFBuilder.cpp | 300 ulittle32_t *BlockList = in generateLayout() local 302 llvm::uninitialized_copy(StreamData[I].second, BlockList); in generateLayout() 304 ArrayRef<ulittle32_t>(BlockList, StreamData[I].second.size()); in generateLayout()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | PartialInlining.cpp | 369 [&ORE](SmallVectorImpl<BasicBlock *> &BlockList) -> BasicBlock * { in computeOutliningColdRegionsInfo() argument 371 for (auto *Block : BlockList) { in computeOutliningColdRegionsInfo() 373 if (!is_contained(BlockList, Succ)) { in computeOutliningColdRegionsInfo() 379 << ore::NV("Block", BlockList.front()->getName()) in computeOutliningColdRegionsInfo()
|