Home
last modified time | relevance | path

Searched refs:getExit (Results 1 – 21 of 21) sorted by relevance

/openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/
H A DRegionInfoImpl.h86 BlockT *OldExit = getExit(); in replaceExitRecursive()
95 if (Child->getExit() == OldExit) in replaceExitRecursive()
108 BlockT *entry = getEntry(), *exit = getExit(); in contains()
124 return getExit() == nullptr; in contains()
197 BlockT *exit = getExit(); in getExitingBlock()
227 if (getExit()) { in getNameStr()
228 if (getExit()->getName().empty()) { in getNameStr()
231 getExit()->printAsOperand(OS, false); in getNameStr()
233 exitName = std::string(getExit()->getName()); in getNameStr()
245 BlockT *entry = getEntry(), *exit = getExit(); in verifyBBInRegion()
[all …]
H A DRegionIterator.h97 return getNode()->template getNodeAs<RegionT>()->getExit(); in getRegionSucc()
102 return getNode()->getParent()->getExit() == BB; in isExit()
198 Node->getParent()->getExit() == *Itor) in RNSuccIterator()
226 assert(Parent->getExit() != BB && "iterator out of range!");
236 && Node->getParent()->getExit() == *Itor);
H A DRegionInfo.h359 BlockT *getExit() const { return exit; }
456 if (!getExit())
460 (contains(SubRegion->getExit()) ||
461 SubRegion->getExit() == getExit());
609 block_iterator block_begin() { return block_iterator(getEntry(), getExit()); }
614 return const_block_iterator(getEntry(), getExit());
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DAMDGPUMachineCFGStructurizer.cpp401 MachineBasicBlock *getExit();
558 MachineBasicBlock *getExit() { in getExit() function in __anonf8f2b3930211::RegionMRT
560 return (Tree->isRegion()) ? Tree->getRegionMRT()->getExit() in getExit()
669 RegionMap[Region]->setSucc(Region->getExit()); in buildMRT()
974 MachineBasicBlock *LinearizedRegion::getExit() { return Exit; } in getExit() function in LinearizedRegion
1250 MachineBasicBlock *Exit = Region->getExit(); in transformSimpleIfRegion()
1271 auto Exit = LRegion->getExit(); in fixRegionTerminator()
1929 bool IsSingleBB = InnerRegion->getEntry() == InnerRegion->getExit(); in insertChainedPHI()
1956 insertMergePHI(IfBB, InnerRegion->getExit(), MergeBB, DestReg, NextDestReg, in insertChainedPHI()
1985 bool IsSingleBB = InnerRegion->getEntry() == InnerRegion->getExit(); in rewriteLiveOutRegs()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DStructurizeCFG.cpp436 BasicBlock *Exit = N->getNodeAs<Region>()->getExit(); in analyzeLoops()
685 if (PHIBlock == ParentRegion->getExit()) { in findUndefBlocks()
811 BasicBlock *OldExit = SubRegion->getExit(); in changeExit()
854 BasicBlock *Insert = Order.empty() ? ParentRegion->getExit() : in getNextFlow()
895 BasicBlock *Exit = ParentRegion->getExit(); in needPostfix()
1011 BasicBlock *Exit = ParentRegion->getExit(); in createFlow()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Instrumentation/
H A DControlHeightReduction.cpp167 return RegInfos.back().R->getExit(); in getExitBlock()
641 assert((IfThen == R->getExit() || IfElse == R->getExit()) && in checkBiasedBranch()
644 if (IfThen == R->getExit()) { in checkBiasedBranch()
718 BasicBlock *Exit = R->getExit(); // null if top level. in findScope()
1703 BasicBlock *ExitBlock = LastRegion->getExit(); in transformScopes()
1900 BasicBlock *RegionExitBlock = R->getExit(); in fixupBranch()
/openbsd-src/gnu/llvm/clang/lib/Analysis/
H A DCFG.cpp1556 assert(Succ == &cfg->getExit()); in buildCFG()
1592 VBaseSucc = Succ = B ? B : &cfg->getExit(); in buildCFG()
1691 addSuccessor(B, &cfg->getExit(), Succ); in createNoReturnBlock()
2769 addSuccessor(Block, &cfg->getExit()); in VisitCallExpr()
3225 addSuccessor(Block, &cfg->getExit()); in VisitReturnStmt()
3362 addSuccessor(NewTryTerminatedBlock, &cfg->getExit()); in VisitSEHTryStmt()
4050 addSuccessor(Block, &cfg->getExit()); in VisitObjCAtThrowStmt()
4101 addSuccessor(NewTryTerminatedBlock, &cfg->getExit()); in VisitObjCAtTryStmt()
4139 addSuccessor(Block, &cfg->getExit()); in VisitCXXThrowExpr()
4601 addSuccessor(NewTryTerminatedBlock, &cfg->getExit()); in VisitCXXTryStmt()
[all …]
H A DThreadSafety.cpp803 unsigned exitID = CFGraph->getExit().getBlockID(); in traverseCFG()
841 CurrBlock != &CFGraph->getExit()) { in findBlockLocations()
2460 CFGBlockInfo *Final = &BlockInfo[CFGraph->getExit().getBlockID()]; in runAnalysis()
H A DCalledOnceCheck.cpp716 const CFGBlock *Exit = &FunctionCFG.getExit(); in check()
H A DConsumed.cpp1405 if (CurrBlock == &AC.getCFG()->getExit() && in run()
/openbsd-src/gnu/llvm/clang/include/clang/Analysis/
H A DCFG.h1333 CFGBlock & getExit() { return *Exit; } in getExit() function
1334 const CFGBlock & getExit() const { return *Exit; } in getExit() function
1567 static NodeRef getEntryNode(::clang::CFG *F) { return &F->getExit(); }
1576 static NodeRef getEntryNode(const ::clang::CFG *F) { return &F->getExit(); }
H A DProgramPoint.h341 return &getLocationContext()->getCFG()->getExit(); in getBlock()
/openbsd-src/gnu/llvm/clang/include/clang/Analysis/Analyses/
H A DDominators.h112 bool IsExitBlock = *I == &(*I)->getParent()->getExit(); in dump()
H A DThreadSafetyCommon.h251 V.exitCFG(&CFGraph->getExit()); in walk()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp229 const unsigned ExitID = cfg->getExit().getBlockID(); in checkForRecursiveFunctionCall()
273 if (cfg->getExit().pred_empty()) in checkRecursiveFunction()
303 if (Succ->getBlockID() == Body->getExit().getBlockID()) in throwEscapes()
367 if (BodyCFG->getExit().pred_empty()) in checkThrowInNonThrowingFunc()
445 cfg->getExit().filtered_pred_start_end(FO); in CheckFallThrough()
504 if (!llvm::is_contained(B.succs(), &cfg->getExit())) { in CheckFallThrough()
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DCoreEngine.cpp268 if (Blk == &(L.getLocationContext()->getCFG()->getExit())) { in HandleBlockEdge()
269 assert(L.getLocationContext()->getCFG()->getExit().empty() && in HandleBlockEdge()
H A DBugReporter.cpp2391 CFGBlock &Exit = ProgP.getLocationContext()->getCFG()->getExit(); in getStmt()
/openbsd-src/gnu/llvm/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp2188 Builder.SetInsertPoint(CLI->getExit(), in applyStaticWorkshareLoop()
2189 CLI->getExit()->getTerminator()->getIterator()); in applyStaticWorkshareLoop()
2293 BasicBlock *DispatchExit = DispatchCLI->getExit(); in applyStaticChunkedWorkshareLoop()
2299 redirectTo(CLI->getExit(), DispatchLatch, DL); in applyStaticChunkedWorkshareLoop()
2491 BasicBlock *Exit = CLI->getExit(); in applyDynamicWorkshareLoop()
2832 BasicBlock *OutroInsertBefore = InnermostLoop->getExit(); in tileLoops()
3029 C, NamePrefix + ".if.else", Head->getParent(), CanonicalLoop->getExit()); in createIfVersion()
3048 NewBB->moveBefore(CanonicalLoop->getExit()); in createIfVersion()
/openbsd-src/gnu/llvm/clang/lib/Analysis/FlowSensitive/
H A DTransfer.cpp800 auto ExitBlock = CFCtx->getCFG().getExit().getBlockID(); in transferInlineCall()
/openbsd-src/gnu/llvm/llvm/include/llvm/Frontend/OpenMP/
H A DOMPIRBuilder.h2329 BasicBlock *getExit() const { in getExit() function
/openbsd-src/gnu/llvm/clang/docs/
H A DInternalsManual.rst2532 *exit* block (accessible via ``CFG::getExit()``), which has no outgoing edges.