/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/ |
H A D | PPCReduceCRLogicals.cpp | 389 bool splitBlockOnBinaryCROp(CRLogicalOpInfo &CRI); 586 CRLogicalOpInfo CRI = AllCRLogicalOps[Idx]; in handleCROp() local 587 if (CRI.IsBinary && CRI.ContainedInBlock && CRI.SingleUse && CRI.FeedsBR && in handleCROp() 588 CRI.DefsSingleUse) { in handleCROp() 589 Changed = splitBlockOnBinaryCROp(CRI); in handleCROp() 613 bool PPCReduceCRLogicals::splitBlockOnBinaryCROp(CRLogicalOpInfo &CRI) { in splitBlockOnBinaryCROp() argument 614 if (CRI.CopyDefs.first == CRI.CopyDefs.second) { in splitBlockOnBinaryCROp() 619 if (CRI.TrueDefs.first->isCopy() || CRI.TrueDefs.second->isCopy() || in splitBlockOnBinaryCROp() 620 CRI.TrueDefs.first->isPHI() || CRI.TrueDefs.second->isPHI()) { in splitBlockOnBinaryCROp() 628 if (CRI.MI->getOpcode() != PPC::CROR && in splitBlockOnBinaryCROp() [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
H A D | WinEHPrepare.cpp | 170 if (const auto *CRI = dyn_cast<CleanupReturnInst>(U)) in getCleanupRetUnwindDest() local 171 return CRI->getUnwindDest(); in getCleanupRetUnwindDest() 846 if (auto *CRI = in cloneCommonBlocks() local 848 EdgeTargetsFunclet = (CRI->getCatchSwitchParentPad() == FuncletToken); in cloneCommonBlocks() 1002 if (auto *CRI = dyn_cast<CatchReturnInst>(TI)) in removeImplausibleInstructions() local 1003 IsUnreachableCatchret = CRI->getCatchPad() != CatchPad; in removeImplausibleInstructions() 1006 if (auto *CRI = dyn_cast<CleanupReturnInst>(TI)) in removeImplausibleInstructions() local 1007 IsUnreachableCleanupret = CRI->getCleanupPad() != CleanupPad; in removeImplausibleInstructions()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/ |
H A D | CodeExtractor.cpp | 153 if (const auto *CRI = dyn_cast<CatchReturnInst>(U)) in isBlockValidForExtraction() local 154 if (!Result.count(const_cast<BasicBlock*>(CRI->getParent()))) in isBlockValidForExtraction() 164 if (const auto *CRI = dyn_cast<CleanupReturnInst>(U)) in isBlockValidForExtraction() local 165 if (!Result.count(const_cast<BasicBlock*>(CRI->getParent()))) in isBlockValidForExtraction() 169 if (const auto *CRI = dyn_cast<CleanupReturnInst>(I)) { in isBlockValidForExtraction() local 170 if (auto *UBB = CRI->getUnwindDest()) in isBlockValidForExtraction()
|
H A D | InlineFunction.cpp | 700 if (auto *CRI = dyn_cast<CleanupReturnInst>(BB->getTerminator())) { in HandleInlinedEHPad() local 701 if (CRI->unwindsToCaller()) { in HandleInlinedEHPad() 702 auto *CleanupPad = CRI->getCleanupPad(); in HandleInlinedEHPad() 703 CleanupReturnInst::Create(CleanupPad, UnwindDest, CRI); in HandleInlinedEHPad() 704 CRI->eraseFromParent(); in HandleInlinedEHPad()
|
H A D | Local.cpp | 2408 if (auto *CRI = dyn_cast<CleanupReturnInst>(TI)) { in removeUnwindEdge() local 2409 NewTI = CleanupReturnInst::Create(CRI->getCleanupPad(), nullptr, CRI); in removeUnwindEdge() 2410 UnwindDest = CRI->getUnwindDest(); in removeUnwindEdge()
|
H A D | SimplifyCFG.cpp | 4822 } else if (auto *CRI = dyn_cast<CleanupReturnInst>(TI)) { in simplifyUnreachable() local 4823 (void)CRI; in simplifyUnreachable() 4824 assert(CRI->hasUnwindDest() && CRI->getUnwindDest() == BB && in simplifyUnreachable()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/ |
H A D | Instructions.cpp | 1018 CleanupReturnInst::CleanupReturnInst(const CleanupReturnInst &CRI) in CleanupReturnInst() argument 1019 : Instruction(CRI.getType(), Instruction::CleanupRet, in CleanupReturnInst() 1021 CRI.getNumOperands(), in CleanupReturnInst() 1022 CRI.getNumOperands()) { in CleanupReturnInst() 1024 CRI.getSubclassData<Instruction::OpaqueField>()); in CleanupReturnInst() 1025 Op<0>() = CRI.Op<0>(); in CleanupReturnInst() 1026 if (CRI.hasUnwindDest()) in CleanupReturnInst() 1027 Op<1>() = CRI.Op<1>(); in CleanupReturnInst() 1065 CatchReturnInst::CatchReturnInst(const CatchReturnInst &CRI) in CatchReturnInst() argument 1066 : Instruction(Type::getVoidTy(CRI.getContext()), Instruction::CatchRet, in CatchReturnInst() [all …]
|
H A D | Instruction.cpp | 655 if (const auto *CRI = dyn_cast<CleanupReturnInst>(this)) in mayThrow() local 656 return CRI->unwindsToCaller(); in mayThrow()
|
H A D | Verifier.cpp | 536 void visitCleanupReturnInst(CleanupReturnInst &CRI); 3946 } else if (auto *CRI = dyn_cast<CleanupReturnInst>(TI)) { in visitEHPadPredecessors() local 3947 FromPad = CRI->getOperand(0); in visitEHPadPredecessors() 3948 Assert(FromPad != ToPadParent, "A cleanupret must exit its cleanup", CRI); in visitEHPadPredecessors() 4090 if (auto *CRI = dyn_cast<CleanupReturnInst>(U)) { in visitFuncletPadInst() local 4091 UnwindDest = CRI->getUnwindDest(); in visitFuncletPadInst() 4278 void Verifier::visitCleanupReturnInst(CleanupReturnInst &CRI) { in visitCleanupReturnInst() argument 4279 Assert(isa<CleanupPadInst>(CRI.getOperand(0)), in visitCleanupReturnInst() 4280 "CleanupReturnInst needs to be provided a CleanupPad", &CRI, in visitCleanupReturnInst() 4281 CRI.getOperand(0)); in visitCleanupReturnInst() [all …]
|
H A D | AsmWriter.cpp | 4116 } else if (const auto *CRI = dyn_cast<CatchReturnInst>(&I)) { in printInstruction() local 4118 writeOperand(CRI->getOperand(0), /*PrintType=*/false); in printInstruction() 4121 writeOperand(CRI->getOperand(1), /*PrintType=*/true); in printInstruction() 4122 } else if (const auto *CRI = dyn_cast<CleanupReturnInst>(&I)) { in printInstruction() local 4124 writeOperand(CRI->getOperand(0), /*PrintType=*/false); in printInstruction() 4127 if (CRI->hasUnwindDest()) in printInstruction() 4128 writeOperand(CRI->getOperand(1), /*PrintType=*/true); in printInstruction()
|
H A D | Core.cpp | 2925 if (CleanupReturnInst *CRI = dyn_cast<CleanupReturnInst>(unwrap(Invoke))) { in LLVMGetUnwindDest() local 2926 return wrap(CRI->getUnwindDest()); in LLVMGetUnwindDest() 2938 if (CleanupReturnInst *CRI = dyn_cast<CleanupReturnInst>(unwrap(Invoke))) { in LLVMSetUnwindDest() local 2939 return CRI->setUnwindDest(unwrap(B)); in LLVMSetUnwindDest()
|
/netbsd-src/external/gpl3/binutils/dist/opcodes/ |
H A D | fr30-opc.c | 1053 { { MNEM, ' ', OP (U4C), ',', OP (CCC), ',', OP (CRJ), ',', OP (CRI), 0 } }, 1059 { { MNEM, ' ', OP (U4C), ',', OP (CCC), ',', OP (RJC), ',', OP (CRI), 0 } },
|
H A D | frv-opc.c | 4101 { { MNEM, OP (PACK), ' ', OP (CRI), ',', OP (CRJ), ',', OP (CRK), 0 } }, 4107 { { MNEM, OP (PACK), ' ', OP (CRI), ',', OP (CRJ), ',', OP (CRK), 0 } }, 4113 { { MNEM, OP (PACK), ' ', OP (CRI), ',', OP (CRJ), ',', OP (CRK), 0 } }, 4119 { { MNEM, OP (PACK), ' ', OP (CRI), ',', OP (CRJ), ',', OP (CRK), 0 } }, 4125 { { MNEM, OP (PACK), ' ', OP (CRI), ',', OP (CRJ), ',', OP (CRK), 0 } }, 4131 { { MNEM, OP (PACK), ' ', OP (CRI), ',', OP (CRJ), ',', OP (CRK), 0 } }, 4137 { { MNEM, OP (PACK), ' ', OP (CRI), ',', OP (CRJ), ',', OP (CRK), 0 } }, 4143 { { MNEM, OP (PACK), ' ', OP (CRI), ',', OP (CRJ), ',', OP (CRK), 0 } }, 4149 { { MNEM, OP (PACK), ' ', OP (CRI), ',', OP (CRJ), ',', OP (CRK), 0 } },
|
/netbsd-src/external/gpl3/binutils.old/dist/opcodes/ |
H A D | fr30-opc.c | 1053 { { MNEM, ' ', OP (U4C), ',', OP (CCC), ',', OP (CRJ), ',', OP (CRI), 0 } }, 1059 { { MNEM, ' ', OP (U4C), ',', OP (CCC), ',', OP (RJC), ',', OP (CRI), 0 } },
|
H A D | frv-opc.c | 4101 { { MNEM, OP (PACK), ' ', OP (CRI), ',', OP (CRJ), ',', OP (CRK), 0 } }, 4107 { { MNEM, OP (PACK), ' ', OP (CRI), ',', OP (CRJ), ',', OP (CRK), 0 } }, 4113 { { MNEM, OP (PACK), ' ', OP (CRI), ',', OP (CRJ), ',', OP (CRK), 0 } }, 4119 { { MNEM, OP (PACK), ' ', OP (CRI), ',', OP (CRJ), ',', OP (CRK), 0 } }, 4125 { { MNEM, OP (PACK), ' ', OP (CRI), ',', OP (CRJ), ',', OP (CRK), 0 } }, 4131 { { MNEM, OP (PACK), ' ', OP (CRI), ',', OP (CRJ), ',', OP (CRK), 0 } }, 4137 { { MNEM, OP (PACK), ' ', OP (CRI), ',', OP (CRJ), ',', OP (CRK), 0 } }, 4143 { { MNEM, OP (PACK), ' ', OP (CRI), ',', OP (CRJ), ',', OP (CRK), 0 } }, 4149 { { MNEM, OP (PACK), ' ', OP (CRI), ',', OP (CRJ), ',', OP (CRK), 0 } },
|
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/doc/ |
H A D | ISO_3166_de | 62 CR CRI Costa Rica
|
/netbsd-src/share/misc/ |
H A D | country | 73 Costa Rica CR CRI 188 CS
|
H A D | airport | 1488 CRI:Crooked Island, Crooked, Bahamas
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/ |
H A D | BitcodeWriter.cpp | 2918 const auto &CRI = cast<CleanupReturnInst>(I); in writeInstruction() local 2919 pushValue(CRI.getCleanupPad(), InstID, Vals); in writeInstruction() 2920 if (CRI.hasUnwindDest()) in writeInstruction() 2921 Vals.push_back(VE.getValueID(CRI.getUnwindDest())); in writeInstruction() 2926 const auto &CRI = cast<CatchReturnInst>(I); in writeInstruction() local 2927 pushValue(CRI.getCatchPad(), InstID, Vals); in writeInstruction() 2928 Vals.push_back(VE.getValueID(CRI.getSuccessor())); in writeInstruction()
|
/netbsd-src/external/bsd/file/dist/magic/magdir/ |
H A D | audio | 998 # CRI ADX ADPCM audio 1004 >(2.S-2) string (c)CRI CRI ADX ADPCM audio
|
H A D | images | 32 # 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…
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
H A D | InlineCost.cpp | 2038 bool CallAnalyzer::visitCleanupReturnInst(CleanupReturnInst &CRI) { in visitCleanupReturnInst() argument 2044 bool CallAnalyzer::visitCatchReturnInst(CatchReturnInst &CRI) { in visitCatchReturnInst() argument
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/ |
H A D | MemorySanitizer.cpp | 4011 void visitCleanupReturnInst(CleanupReturnInst &CRI) { in visitCleanupReturnInst() 4012 LLVM_DEBUG(dbgs() << "CleanupReturn: " << CRI << "\n"); in visitCleanupReturnInst() 4016 void visitCatchReturnInst(CatchReturnInst &CRI) { in visitCatchReturnInst() 4017 LLVM_DEBUG(dbgs() << "CatchReturn: " << CRI << "\n"); in visitCatchReturnInst()
|
H A D | AddressSanitizer.cpp | 1019 void visitCleanupReturnInst(CleanupReturnInst &CRI) { RetVec.push_back(&CRI); } in visitCleanupReturnInst()
|
/netbsd-src/crypto/external/bsd/openssl.old/dist/ |
H A D | CHANGES | 10632 CRIT, CRI => LOG_CRIT
|