Home
last modified time | relevance | path

Searched refs:CRI (Results 1 – 20 of 20) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCReduceCRLogicals.cpp588 if (CRI.IsBinary && CRI.ContainedInBlock && CRI.SingleUse && CRI.FeedsBR && in handleCROp()
589 CRI.DefsSingleUse) { in handleCROp()
615 if (CRI.CopyDefs.first == CRI.CopyDefs.second) { in splitBlockOnBinaryCROp()
620 if (CRI.TrueDefs.first->isCopy() || CRI.TrueDefs.second->isCopy() || in splitBlockOnBinaryCROp()
621 CRI.TrueDefs.first->isPHI() || CRI.TrueDefs.second->isPHI()) { in splitBlockOnBinaryCROp()
668 UsingDef1 ? CRI.TrueDefs.first : CRI.TrueDefs.second; in splitBlockOnBinaryCROp()
670 UsingDef1 ? CRI.CopyDefs.first : CRI.CopyDefs.second; in splitBlockOnBinaryCROp()
687 UsingDef1 ? CRI.CopyDefs.second : CRI.CopyDefs.first; in splitBlockOnBinaryCROp()
695 UsingDef1 ? CRI.CopyDefs.first : CRI.CopyDefs.second }; in splitBlockOnBinaryCROp()
701 CRI.TrueDefs.first && isCRLogical(*CRI.TrueDefs.first); in splitBlockOnBinaryCROp()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DWinEHPrepare.cpp183 if (const auto *CRI = dyn_cast<CleanupReturnInst>(U)) in getCleanupRetUnwindDest() local
184 return CRI->getUnwindDest(); in getCleanupRetUnwindDest()
991 if (auto *CRI = in cloneCommonBlocks() local
993 EdgeTargetsFunclet = (CRI->getCatchSwitchParentPad() == FuncletToken); in cloneCommonBlocks()
1144 if (auto *CRI = dyn_cast<CatchReturnInst>(TI)) in removeImplausibleInstructions() local
1145 IsUnreachableCatchret = CRI->getCatchPad() != CatchPad; in removeImplausibleInstructions()
1148 if (auto *CRI = dyn_cast<CleanupReturnInst>(TI)) in removeImplausibleInstructions() local
1149 IsUnreachableCleanupret = CRI->getCleanupPad() != CleanupPad; in removeImplausibleInstructions()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyLowerEmscriptenEHSjLj.cpp1650 if (const auto *CRI = dyn_cast<CleanupReturnInst>(U)) in getCleanupRetUnwindDest() local
1651 return CRI->getUnwindDest(); in getCleanupRetUnwindDest()
1859 if (auto *CRI = dyn_cast<CleanupReturnInst>(BB.getTerminator())) { in handleLongjmpableCallsForWasmSjLj() local
1860 if (CRI->unwindsToCaller()) { in handleLongjmpableCallsForWasmSjLj()
1861 IRB.SetInsertPoint(CRI); in handleLongjmpableCallsForWasmSjLj()
1862 ToErase.push_back(CRI); in handleLongjmpableCallsForWasmSjLj()
1863 IRB.CreateCleanupRet(CRI->getCleanupPad(), CatchDispatchLongjmpBB); in handleLongjmpableCallsForWasmSjLj()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DCodeExtractor.cpp150 if (const auto *CRI = dyn_cast<CatchReturnInst>(U)) in isBlockValidForExtraction() local
151 if (!Result.count(const_cast<BasicBlock*>(CRI->getParent()))) in isBlockValidForExtraction()
161 if (const auto *CRI = dyn_cast<CleanupReturnInst>(U)) in isBlockValidForExtraction() local
162 if (!Result.count(const_cast<BasicBlock*>(CRI->getParent()))) in isBlockValidForExtraction()
166 if (const auto *CRI = dyn_cast<CleanupReturnInst>(I)) { in isBlockValidForExtraction() local
167 if (auto *UBB = CRI->getUnwindDest()) in isBlockValidForExtraction()
H A DInlineFunction.cpp689 if (auto *CRI = dyn_cast<CleanupReturnInst>(BB->getTerminator())) { in HandleInlinedEHPad() local
690 if (CRI->unwindsToCaller()) { in HandleInlinedEHPad()
691 auto *CleanupPad = CRI->getCleanupPad(); in HandleInlinedEHPad()
692 CleanupReturnInst::Create(CleanupPad, UnwindDest, CRI); in HandleInlinedEHPad()
693 CRI->eraseFromParent(); in HandleInlinedEHPad()
H A DLocal.cpp3133 if (auto *CRI = dyn_cast<CleanupReturnInst>(TI)) { in removeUnwindEdge() local
3134 NewTI = CleanupReturnInst::Create(CRI->getCleanupPad(), nullptr, CRI); in removeUnwindEdge()
3135 UnwindDest = CRI->getUnwindDest(); in removeUnwindEdge()
H A DSimplifyCFG.cpp5390 } else if (auto *CRI = dyn_cast<CleanupReturnInst>(TI)) { in simplifyUnreachable() local
5391 (void)CRI; in simplifyUnreachable()
5392 assert(CRI->hasUnwindDest() && CRI->getUnwindDest() == BB && in simplifyUnreachable()
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DInstructions.cpp1009 CleanupReturnInst::CleanupReturnInst(const CleanupReturnInst &CRI) in CleanupReturnInst() argument
1010 : Instruction(CRI.getType(), Instruction::CleanupRet, in CleanupReturnInst()
1012 CRI.getNumOperands(), in CleanupReturnInst()
1013 CRI.getNumOperands()) { in CleanupReturnInst()
1015 CRI.getSubclassData<Instruction::OpaqueField>()); in CleanupReturnInst()
1016 Op<0>() = CRI.Op<0>(); in CleanupReturnInst()
1017 if (CRI.hasUnwindDest()) in CleanupReturnInst()
1018 Op<1>() = CRI.Op<1>(); in CleanupReturnInst()
1056 CatchReturnInst::CatchReturnInst(const CatchReturnInst &CRI) in CatchReturnInst() argument
1059 Op<0>() = CRI.Op<0>(); in CatchReturnInst()
[all …]
H A DVerifier.cpp587 void visitCleanupReturnInst(CleanupReturnInst &CRI);
4287 } else if (auto *CRI = dyn_cast<CleanupReturnInst>(TI)) { in visitEHPadPredecessors() local
4288 FromPad = CRI->getOperand(0); in visitEHPadPredecessors()
4434 if (auto *CRI = dyn_cast<CleanupReturnInst>(U)) { in visitFuncletPadInst() local
4435 UnwindDest = CRI->getUnwindDest(); in visitFuncletPadInst()
4623 void Verifier::visitCleanupReturnInst(CleanupReturnInst &CRI) { in visitCleanupReturnInst() argument
4624 Check(isa<CleanupPadInst>(CRI.getOperand(0)), in visitCleanupReturnInst()
4626 CRI.getOperand(0)); in visitCleanupReturnInst()
4628 if (BasicBlock *UnwindDest = CRI.getUnwindDest()) { in visitCleanupReturnInst()
4633 &CRI); in visitCleanupReturnInst()
[all …]
H A DAsmWriter.cpp4290 } else if (const auto *CRI = dyn_cast<CatchReturnInst>(&I)) { in printInstruction() local
4292 writeOperand(CRI->getOperand(0), /*PrintType=*/false); in printInstruction()
4295 writeOperand(CRI->getOperand(1), /*PrintType=*/true); in printInstruction()
4296 } else if (const auto *CRI = dyn_cast<CleanupReturnInst>(&I)) { in printInstruction() local
4298 writeOperand(CRI->getOperand(0), /*PrintType=*/false); in printInstruction()
4301 if (CRI->hasUnwindDest()) in printInstruction()
4302 writeOperand(CRI->getOperand(1), /*PrintType=*/true); in printInstruction()
H A DCore.cpp2926 if (CleanupReturnInst *CRI = dyn_cast<CleanupReturnInst>(unwrap(Invoke))) { in LLVMGetUnwindDest() local
2927 return wrap(CRI->getUnwindDest()); in LLVMGetUnwindDest()
2939 if (CleanupReturnInst *CRI = dyn_cast<CleanupReturnInst>(unwrap(Invoke))) { in LLVMSetUnwindDest() local
2940 return CRI->setUnwindDest(unwrap(B)); in LLVMSetUnwindDest()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp3061 const auto &CRI = cast<CleanupReturnInst>(I); in writeInstruction() local
3062 pushValue(CRI.getCleanupPad(), InstID, Vals); in writeInstruction()
3063 if (CRI.hasUnwindDest()) in writeInstruction()
3064 Vals.push_back(VE.getValueID(CRI.getUnwindDest())); in writeInstruction()
3069 const auto &CRI = cast<CatchReturnInst>(I); in writeInstruction() local
3070 pushValue(CRI.getCatchPad(), InstID, Vals); in writeInstruction()
3071 Vals.push_back(VE.getValueID(CRI.getSuccessor())); in writeInstruction()
/freebsd-14.2/contrib/file/magic/Magdir/
H A Daudio998 # CRI ADX ADPCM audio
1004 >(2.S-2) string (c)CRI CRI ADX ADPCM audio
H A Dimages32 # Prevent conflicts with CRI ADX.
35 # skip some MPEG sequence *.vob and some CRI ADX audio with improbable interleave bits
1612 # skip CRI ADX ADPCM audio (R04HT.adx R03T-15552.adx) with 44100 Hz misinterpreted as 5th color ent…
/freebsd-14.2/share/misc/
H A Diso316674 CR CRI 188 Costa Rica
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DInlineCost.cpp2487 bool CallAnalyzer::visitCleanupReturnInst(CleanupReturnInst &CRI) { in visitCleanupReturnInst() argument
2493 bool CallAnalyzer::visitCatchReturnInst(CatchReturnInst &CRI) { in visitCatchReturnInst() argument
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp4536 void visitCleanupReturnInst(CleanupReturnInst &CRI) { in visitCleanupReturnInst()
4537 LLVM_DEBUG(dbgs() << "CleanupReturn: " << CRI << "\n"); in visitCleanupReturnInst()
4541 void visitCatchReturnInst(CatchReturnInst &CRI) { in visitCatchReturnInst()
4542 LLVM_DEBUG(dbgs() << "CatchReturn: " << CRI << "\n"); in visitCatchReturnInst()
H A DAddressSanitizer.cpp1016 void visitCleanupReturnInst(CleanupReturnInst &CRI) { RetVec.push_back(&CRI); } in visitCleanupReturnInst()
/freebsd-14.2/contrib/sendmail/
H A DRELEASE_NOTES7299 Sup�rieure des Mines de Paris (CRI-ENSMP).
/freebsd-14.2/crypto/openssl/
H A DCHANGES.md16136 CRIT, CRI => LOG_CRIT