Searched refs:LPad (Results 1 – 9 of 9) sorted by relevance
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| D | WasmException.cpp | 85 MachineBasicBlock *LPad = Info->LandingPadBlock; in computeCallSiteTable() local 87 if (!MF.hasWasmLandingPadIndex(LPad)) in computeCallSiteTable() 91 unsigned LPadIndex = MF.getWasmLandingPadIndex(LPad); in computeCallSiteTable()
|
| D | EHStreamer.cpp | 317 if (Site.LPad == Prev.LPad && Site.Action == Prev.Action) { in computeCallSiteTable() 726 if (!S.LPad) { in emitExceptionTable() 733 S.LPad->LandingPadLabel->getName()); in emitExceptionTable() 734 Asm->emitCallSiteOffset(S.LPad->LandingPadLabel, in emitExceptionTable()
|
| D | EHStreamer.h | 67 const LandingPadInfo *LPad; // Null indicates that there is no landing pad. member
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| D | EscapeEnumerator.cpp | 83 LandingPadInst *LPad = in Next() local 85 LPad->setCleanup(true); in Next() 86 ResumeInst *RI = ResumeInst::Create(LPad, CleanupBB); in Next()
|
| D | BasicBlockUtils.cpp | 1238 LandingPadInst *LPad = OrigBB->getLandingPadInst(); in SplitLandingPadPredecessorsImpl() local 1239 Instruction *Clone1 = LPad->clone(); in SplitLandingPadPredecessorsImpl() 1244 Instruction *Clone2 = LPad->clone(); in SplitLandingPadPredecessorsImpl() 1250 if (!LPad->use_empty()) { in SplitLandingPadPredecessorsImpl() 1251 assert(!LPad->getType()->isTokenTy() && in SplitLandingPadPredecessorsImpl() 1254 PHINode *PN = PHINode::Create(LPad->getType(), 2, "lpad.phi", LPad); in SplitLandingPadPredecessorsImpl() 1257 LPad->replaceAllUsesWith(PN); in SplitLandingPadPredecessorsImpl() 1259 LPad->eraseFromParent(); in SplitLandingPadPredecessorsImpl() 1263 LPad->replaceAllUsesWith(Clone1); in SplitLandingPadPredecessorsImpl() 1264 LPad->eraseFromParent(); in SplitLandingPadPredecessorsImpl()
|
| D | SimplifyCFG.cpp | 6227 static bool TryToMergeLandingPad(LandingPadInst *LPad, BranchInst *BI, in TryToMergeLandingPad() argument 6241 if (!LPad2 || !LPad2->isIdenticalTo(LPad)) in TryToMergeLandingPad() 6330 if (LandingPadInst *LPad = dyn_cast<LandingPadInst>(I)) { in simplifyUncondBranch() local 6333 if (I->isTerminator() && TryToMergeLandingPad(LPad, BI, BB, DTU)) in simplifyUncondBranch()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| D | BlockExtractor.cpp | 158 BasicBlock *LPad = II->getUnwindDest(); in splitLandingPadPreds() local 163 for (auto PredBB : predecessors(LPad)) { in splitLandingPadPreds() 175 SplitLandingPadPredecessors(LPad, Parent, ".1", ".2", NewBBs); in splitLandingPadPreds()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| D | MachineFunction.h | 1098 void setWasmLandingPadIndex(const MachineBasicBlock *LPad, unsigned Index) { 1099 WasmLPadToIndexMap[LPad] = Index; 1103 bool hasWasmLandingPadIndex(const MachineBasicBlock *LPad) const { 1104 return WasmLPadToIndexMap.count(LPad); 1108 unsigned getWasmLandingPadIndex(const MachineBasicBlock *LPad) const { 1109 assert(hasWasmLandingPadIndex(LPad)); 1110 return WasmLPadToIndexMap.lookup(LPad);
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| D | LoopUnswitch.cpp | 1422 if (LandingPadInst *LPad = NewExit->getLandingPadInst()) { in unswitchNontrivialCondition() local 1423 PHINode *PN = PHINode::Create(LPad->getType(), 0, "", in unswitchNontrivialCondition()
|