Home
last modified time | relevance | path

Searched refs:BlockList (Results 1 – 9 of 9) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DSSAUpdaterImpl.h94 SmallVector<BBInfo *, 100> BlockList; in GetValue() local
98 if (BlockList.size() == 0) { in GetValue()
104 FindDominators(&BlockList, PseudoEntry); in GetValue()
105 FindPHIPlacement(&BlockList); in GetValue()
106 FindAvailableVals(&BlockList); in GetValue()
184 BlockList->push_back(Info); in BuildBlockList()
336 E = BlockList->end(); I != E; ++I) { in FindAvailableVals()
343 FindExistingPHI(Info->BB, BlockList); in FindAvailableVals()
392 RecordMatchingPHIs(BlockList); in FindExistingPHI()
397 E = BlockList->end(); I != E; ++I) in FindExistingPHI()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Demangle/
H A DItaniumDemangle.cpp256 BlockMeta* BlockList = nullptr; member in __anon58513fa40211::BumpPointerAllocator
262 BlockList = new (NewMeta) BlockMeta{BlockList, 0}; in grow()
270 BlockList->Next = new (NewMeta) BlockMeta{BlockList->Next, 0}; in allocateMassive()
276 : BlockList(new (InitialBuffer) BlockMeta{nullptr, 0}) {} in BumpPointerAllocator()
280 if (N + BlockList->Current >= UsableAllocSize) { in allocate()
285 BlockList->Current += N; in allocate()
287 BlockList->Current - N); in allocate()
291 while (BlockList) { in reset()
292 BlockMeta* Tmp = BlockList; in reset()
293 BlockList = BlockList->Next; in reset()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/XRay/
H A DProfile.h115 using BlockList = std::list<Block>;
125 BlockList Blocks;
140 using const_iterator = BlockList::const_iterator;
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/MSF/
H A DMSFBuilder.h127 using BlockList = std::vector<uint32_t>; variable
138 std::vector<std::pair<uint32_t, BlockList>> StreamData;
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCExpandISEL.cpp194 for (auto &BlockList : ISELInstructions) { in expandAndMergeISELs() local
197 << printMBBReference(*MF->getBlockNumbered(BlockList.first)) in expandAndMergeISELs()
199 BlockISELList &CurrentISELList = BlockList.second; in expandAndMergeISELs()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DYAMLOutputStyle.cpp144 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-13.1/contrib/llvm-project/llvm/lib/DebugInfo/MSF/
H A DMSFBuilder.cpp298 ulittle32_t *BlockList = in generateLayout() local
301 StreamData[I].second.size(), BlockList); in generateLayout()
303 ArrayRef<ulittle32_t>(BlockList, StreamData[I].second.size()); in generateLayout()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DOrcRemoteTargetServer.h290 auto &BlockList = StubOwnerItr->second; in handleEmitIndirectStubs() local
291 BlockList.push_back(std::move(*IS)); in handleEmitIndirectStubs()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DPartialInlining.cpp420 [&ORE](SmallVectorImpl<BasicBlock *> &BlockList) -> BasicBlock * { in computeOutliningColdRegionsInfo() argument
422 for (auto *Block : BlockList) { in computeOutliningColdRegionsInfo()
424 if (!is_contained(BlockList, Succ)) { in computeOutliningColdRegionsInfo()
430 << ore::NV("Block", BlockList.front()->getName()) in computeOutliningColdRegionsInfo()