Home
last modified time | relevance | path

Searched refs:getEntry (Results 1 – 25 of 55) sorted by relevance

123

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DRegionIterator.h111 BItor(BlockTraits::child_begin(node->getEntry())) { in RNSuccIterator()
114 while (BlockTraits::child_end(node->getEntry()) != BItor && isExit(*BItor)) in RNSuccIterator()
124 BItor(BlockTraits::child_end(node->getEntry())) {} in RNSuccIterator()
150 while (BItor != BlockTraits::child_end(getNode()->getEntry())
191 : Node(node), Itor(BlockTraits::child_begin(node->getEntry())) { in RNSuccIterator()
197 while (BlockTraits::child_end(Node->getEntry()) != Itor && in RNSuccIterator()
204 : Node(node), Itor(BlockTraits::child_end(node->getEntry())) { in RNSuccIterator()
235 while (Itor != succ_end(Node->getEntry())
294 return R->getNode(R->getEntry()); \
310 return R->getBBNode(R->getEntry()); \
H A DRegionInfoImpl.h70 BlockT *OldEntry = getEntry(); in replaceEntryRecursive()
79 if (Child->getEntry() == OldEntry) in replaceEntryRecursive()
110 BlockT *entry = getEntry(), *exit = getExit(); in contains()
164 BlockT *entry = getEntry(); in getEnteringBlock()
234 if (getEntry()->getName().empty()) { in getNameStr()
237 getEntry()->printAsOperand(OS, false); in getNameStr()
259 BlockT *entry = getEntry(), *exit = getExit(); in verifyBBInRegion()
302 verifyWalk(getEntry(), &visited); in verifyRegion()
352 if (R->getEntry() != BB) in getSubRegionNode()
467 if (R->getEntry() != exit) { in getExpandedRegion()
[all …]
H A DRegionInfo.h174 inline BlockT *getEntry() const { return entry.getPointer(); }
322 BlockT *getEntry() const {
323 return RegionNodeBase<Tr>::getEntry();
459 return contains(SubRegion->getEntry()) &&
609 block_iterator block_begin() { return block_iterator(getEntry(), getExit()); }
614 return const_block_iterator(getEntry(), getExit());
998 return getEntry();
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DStructurizeCFG.cpp431 Loops[Exit] = N->getEntry(); in analyzeLoops()
460 BasicBlock *BB = N->getEntry(); in gatherPredicates()
506 BasicBlock *Entry = R->getEntry(); in gatherPredicates()
536 Visited.insert(RN->getEntry()); in collectInfos()
736 Order.back()->getEntry(); in getNextFlow()
746 BasicBlock *Entry = PrevNode->getEntry(); in needPrefix()
817 Visited.insert(Node->getEntry()); in wireFlow()
830 BasicBlock *Entry = Node->getEntry(); in wireFlow()
852 BasicBlock *LoopStart = Node->getEntry(); in handleLoops()
862 LoopEnd = Loops[Node->getEntry()]; in handleLoops()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanPredicator.cpp188 VPBasicBlock *EntryBlock = cast<VPBasicBlock>(Region->getEntry()); in predicateRegionRec()
208 ReversePostOrderTraversal<VPBlockBase *> RPOT(Region->getEntry()); in linearizeRegionRec()
236 predicateRegionRec(cast<VPRegionBlock>(Plan.getEntry())); in predicate()
239 linearizeRegionRec(cast<VPRegionBlock>(Plan.getEntry())); in predicate()
247 VPDomTree.recalculate(*(cast<VPRegionBlock>(Plan.getEntry()))); in VPlanPredicator()
H A DVPlanTransforms.cpp24 auto *TopRegion = cast<VPRegionBlock>(Plan->getEntry()); in VPInstructionsToVPRecipes()
25 ReversePostOrderTraversal<VPBlockBase *> RPOT(TopRegion->getEntry()); in VPInstructionsToVPRecipes()
105 VPBlockRecursiveTraversalWrapper<VPBlockBase *>(Plan.getEntry())); in sinkScalarOperands()
155 auto *EntryBB = dyn_cast<VPBasicBlock>(R->getEntry()); in getPredicatedMask()
165 auto *EntryBB = cast<VPBasicBlock>(R->getEntry()); in getPredicatedThenBlock()
191 VPBlockRecursiveTraversalWrapper<VPBlockBase *>(Plan.getEntry())))); in mergeReplicateRegions()
H A DVPlanVerifier.cpp47 make_range(df_iterator<const VPBlockBase *>::begin(Region->getEntry()), in verifyBlocksInRegion()
96 const VPBlockBase *Entry = Region->getEntry(); in verifyRegion()
115 make_range(df_iterator<const VPBlockBase *>::begin(Region->getEntry()), in verifyRegionRec()
H A DVPlan.cpp143 Block = Region->getEntry(); in getEntryBasicBlock()
150 Block = Region->getEntry(); in getEntryBasicBlock()
155 assert(ParentPlan->getEntry() == this && in setPlan()
186 assert(Parent->getEntry() == this && in getEnclosingBlockWithPredecessors()
865 for (const VPBlockBase *Block : depth_first(getEntry())) { in print()
952 for (const VPBlockBase *Block : depth_first(Plan.getEntry())) in dump()
1036 assert(Region->getEntry() && "Region contains no inner blocks."); in dumpRegion()
1037 for (const VPBlockBase *Block : depth_first(Region->getEntry())) in dumpRegion()
1401 ReversePostOrderTraversal<VPBlockBase *> RPOT(Region->getEntry()); in visitRegion()
1443 visitRegion(cast<VPRegionBlock>(Plan.getEntry()), Old2New, IAI); in VPInterleavedAccessInfo()
[all …]
H A DVPlan.h1752 const VPBlockBase *getEntry() const { return Entry; } in getEntry() function
1753 VPBlockBase *getEntry() { return Entry; } in getEntry() function
1874 static NodeRef getEntryNode(GraphRef N) { return N->getEntry(); }
1877 return nodes_iterator::begin(N->getEntry());
1896 return nodes_iterator::begin(N->getEntry());
1954 return R->getEntry();
2011 BlockTy getEntry() { return Entry; }
2026 return N.getEntry();
2045 return N.getEntry();
2122 VPBlockBase *getEntry() { return Entry; }
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DNonRelocatableStringpool.h35 EmptyString = getEntry(""); in Translator()
38 DwarfStringPoolEntryRef getEntry(StringRef S);
42 uint64_t getStringOffset(StringRef S) { return getEntry(S).getOffset(); } in getStringOffset()
H A DDwarfStringPoolEntry.h59 DwarfStringPoolEntry getEntry() const { return getMapEntry()->getValue(); } in getEntry() function
H A DDbgEntityHistoryCalculator.h108 Entry &getEntry(InlinedEntity Var, EntryIndex Index) { in getEntry() function
H A DMachineRegionInfo.h115 return getEntry();
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDebugNamesDWARFIndex.cpp109 llvm::Expected<DebugNames::Entry> entry_or = ni.getEntry(&entry_offset); in GetGlobalVariables()
110 for (; entry_or; entry_or = ni.getEntry(&entry_offset)) { in GetGlobalVariables()
131 llvm::Expected<DebugNames::Entry> entry_or = ni.getEntry(&entry_offset); in GetGlobalVariables()
132 for (; entry_or; entry_or = ni.getEntry(&entry_offset)) { in GetGlobalVariables()
270 llvm::Expected<DebugNames::Entry> entry_or = ni.getEntry(&entry_offset); in GetFunctions()
271 for (; entry_or; entry_or = ni.getEntry(&entry_offset)) { in GetFunctions()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUMachineCFGStructurizer.cpp397 MachineBasicBlock *getEntry();
552 MachineBasicBlock *getEntry() { in getEntry() function in __anon9f8240700211::RegionMRT
1232 MachineBasicBlock *Entry = Region->getEntry(); in regionIsSimpleIf()
1258 MachineBasicBlock *Entry = Region->getEntry(); in transformSimpleIfRegion()
1662 auto Entry = Region->getEntry(); in rewriteRegionEntryPHIs()
2360 bool isEntry = CurrentRegion->getEntry() == InnerRegion->getEntry(); in createIfRegion()
2522 MachineBasicBlock *Entry = LRegion->getEntry(); in splitEntry()
2552 LRegion->setEntry(Region->getEntry()); in initLinearizedRegion()
2713 if (isFunctionEntryBlock(LRegion->getEntry())) { in structurizeComplexRegion()
2714 resolvePHIInfos(LRegion->getEntry()); in structurizeComplexRegion()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DRegionPass.cpp92 PassManagerPrettyStackEntry X(P, *CurrentRegion->getEntry()); in runOnFunction()
280 Function &F = *R.getEntry()->getParent(); in skipRegion()
287 if (R.getEntry() == &F.getEntryBlock()) in skipRegion()
H A DRegionPrinter.cpp89 if (R->getParent()->getEntry() == destBB) in getEdgeAttributes()
94 if (R && R->getEntry() == destBB && R->contains(srcBB)) in getEdgeAttributes()
234 llvm::Function *F = RI->getTopLevelRegion()->getEntry()->getParent(); in viewRegionInfo()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DControlHeightReduction.cpp193 return RegInfos.front().R->getEntry(); in getEntryBlock()
712 BasicBlock *EntryBB = R->getEntry(); in getBranchInsertPoint()
748 BasicBlock *Entry = R->getEntry(); in findScope()
827 BasicBlock *BB = E->getEntry(); in findScope()
895 BasicBlock *EntryBB = R->getEntry(); in checkScopeHoistable()
1356 Scope->RegInfos[0].R->getEntry()->getTerminator()) in filterScopes()
1409 auto *BI = cast<BranchInst>(R->getEntry()->getTerminator()); in setCHRRegions()
1509 auto *BI = cast<BranchInst>(R->getEntry()->getTerminator()); in hoistScopeConditions()
1667 auto *BI = cast<BranchInst>(R->getEntry()->getTerminator()); in assertBranchOrSelectConditionHoisted()
1699 BasicBlock *EntryBlock = FirstRegion->getEntry(); in transformScopes()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/tools/opt/
H A DPassPrinters.cpp173 << R->getEntry()->getParent()->getName() << "':\n"; in runOnRegion()
176 .print(Out, R->getEntry()->getParent()->getParent()); in runOnRegion()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfStringPool.h56 EntryRef getEntry(AsmPrinter &Asm, StringRef Str);
H A DDbgEntityHistoryCalculator.cpp337 auto &Entry = HistMap.getEntry(Var, Index); in clobberRegEntries()
377 auto &Entry = HistMap.getEntry(Var, Index); in handleNewDebugValue()
546 DbgValueHistoryMap::Entry &Ent = DbgValues.getEntry(Pair.first, Idx); in calculateDbgEntityHistory()
H A DDwarfStringPool.cpp39 DwarfStringPool::EntryRef DwarfStringPool::getEntry(AsmPrinter &Asm, in getEntry() function in DwarfStringPool
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DNonRelocatableStringpool.cpp13 DwarfStringPoolEntryRef NonRelocatableStringpool::getEntry(StringRef S) { in getEntry() function in llvm::NonRelocatableStringpool
/freebsd-13.1/contrib/llvm-project/clang/lib/Analysis/
H A DUninitializedValues.cpp568 if (B == &cfg.getEntry()) in getUninitUse()
927 const CFGBlock &entry = cfg.getEntry(); in runUninitializedVariablesAnalysis()
937 worklist.enqueueSuccessors(&cfg.getEntry()); in runUninitializedVariablesAnalysis()
939 wasAnalyzed[cfg.getEntry().getBlockID()] = true; in runUninitializedVariablesAnalysis()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Object/
H A DELF.h197 Expected<const T *> getEntry(uint32_t Section, uint32_t Entry) const;
199 Expected<const T *> getEntry(const Elf_Shdr &Section, uint32_t Entry) const;
633 return getEntry<Elf_Sym>(*SymTab, Index); in getRelocationSymbol()
816 Expected<const T *> ELFFile<ELFT>::getEntry(uint32_t Section, in getEntry() function
821 return getEntry<T>(**SecOrErr, Entry); in getEntry()
826 Expected<const T *> ELFFile<ELFT>::getEntry(const Elf_Shdr &Section, in getEntry() function

123