Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/Transforms/Utils/
H A DSSAUpdaterImpl.h95 SmallVector<BBInfo *, 100> BlockList; in GetValue() local
99 if (BlockList.size() == 0) { in GetValue()
105 FindDominators(&BlockList, PseudoEntry); in GetValue()
106 FindPHIPlacement(&BlockList); in GetValue()
107 FindAvailableVals(&BlockList); in GetValue()
185 BlockList->push_back(Info); in BuildBlockList()
337 E = BlockList->end(); I != E; ++I) { in FindAvailableVals()
344 FindExistingPHI(Info->BB, BlockList); in FindAvailableVals()
393 RecordMatchingPHIs(BlockList); in FindExistingPHI()
398 E = BlockList->end(); I != E; ++I) in FindExistingPHI()
[all …]
/freebsd-12.1/contrib/llvm/lib/Demangle/
H A DItaniumDemangle.cpp257 BlockMeta* BlockList = nullptr; member in __anon937b61150211::BumpPointerAllocator
263 BlockList = new (NewMeta) BlockMeta{BlockList, 0}; in grow()
271 BlockList->Next = new (NewMeta) BlockMeta{BlockList->Next, 0}; in allocateMassive()
277 : BlockList(new (InitialBuffer) BlockMeta{nullptr, 0}) {} in BumpPointerAllocator()
281 if (N + BlockList->Current >= UsableAllocSize) { in allocate()
286 BlockList->Current += N; in allocate()
288 BlockList->Current - N); in allocate()
292 while (BlockList) { in reset()
293 BlockMeta* Tmp = BlockList; in reset()
294 BlockList = BlockList->Next; in reset()
[all …]
/freebsd-12.1/contrib/llvm/include/llvm/XRay/
H A DProfile.h116 using BlockList = std::list<Block>;
126 BlockList Blocks;
141 using const_iterator = BlockList::const_iterator;
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/MSF/
H A DMSFBuilder.h128 using BlockList = std::vector<uint32_t>; variable
139 std::vector<std::pair<uint32_t, BlockList>> StreamData;
/freebsd-12.1/contrib/llvm/lib/Target/PowerPC/
H A DPPCExpandISEL.cpp195 for (auto &BlockList : ISELInstructions) { in expandAndMergeISELs() local
198 << printMBBReference(*MF->getBlockNumbered(BlockList.first)) in expandAndMergeISELs()
200 BlockISELList &CurrentISELList = BlockList.second; in expandAndMergeISELs()
/freebsd-12.1/contrib/llvm/tools/llvm-pdbutil/
H A DYAMLOutputStyle.cpp145 pdb::yaml::StreamBlockList BlockList; in dumpStreamDirectory() local
146 BlockList.Blocks.assign(Stream.begin(), Stream.end()); in dumpStreamDirectory()
147 Obj.StreamMap->push_back(BlockList); in dumpStreamDirectory()
/freebsd-12.1/contrib/llvm/lib/DebugInfo/MSF/
H A DMSFBuilder.cpp300 ulittle32_t *BlockList = in generateLayout() local
303 StreamData[I].second.size(), BlockList); in generateLayout()
305 ArrayRef<ulittle32_t>(BlockList, StreamData[I].second.size()); in generateLayout()
/freebsd-12.1/contrib/llvm/lib/Transforms/IPO/
H A DPartialInlining.cpp404 auto IsSingleEntry = [](SmallVectorImpl<BasicBlock *> &BlockList) { in computeOutliningColdRegionsInfo() argument
405 BasicBlock *Dom = BlockList.front(); in computeOutliningColdRegionsInfo()
406 return BlockList.size() > 1 && Dom->hasNPredecessors(1); in computeOutliningColdRegionsInfo()
410 [&ORE](SmallVectorImpl<BasicBlock *> &BlockList) -> BasicBlock * { in computeOutliningColdRegionsInfo() argument
412 for (auto *Block : BlockList) { in computeOutliningColdRegionsInfo()
414 if (!is_contained(BlockList, *SI)) { in computeOutliningColdRegionsInfo()
420 << ore::NV("Block", BlockList.front()->getName()) in computeOutliningColdRegionsInfo()
/freebsd-12.1/contrib/llvm/include/llvm/ExecutionEngine/Orc/
H A DOrcRemoteTargetServer.h277 auto &BlockList = StubOwnerItr->second; in handleEmitIndirectStubs() local
278 BlockList.push_back(std::move(IS)); in handleEmitIndirectStubs()