Searched refs:SR (Results 126 - 150 of 152) sorted by relevance

1234567

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonInstrInfo.cpp4106 for (MCSuperRegIterator SR(DefMO.getReg(), &HRI); SR.isValid(); ++SR) {
4107 int Idx = DefMI.findRegisterDefOperandIdx(*SR, false, false, &HRI);
4117 for (MCSuperRegIterator SR(UseMO.getReg(), &HRI); SR.isValid(); ++SR) {
4118 int Idx = UseMI.findRegisterUseOperandIdx(*SR, false, &HRI);
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountChecker.cpp1194 if (const SymbolicRegion *SR = I->StripCasts()->getAs<SymbolicRegion>())
1195 WhitelistedSymbols.insert(SR->getSymbol());
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBTFDebug.cpp486 const DISubrange *SR = cast<DISubrange>(Element); local
487 auto *CI = SR->getCount().dyn_cast<ConstantInt *>();
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmt.cpp2322 StmtResult SR = SemaRef.ActOnCXXForRangeStmt(
2325 if (SR.isInvalid())
2556 StmtResult SR = RebuildForRangeWithDereference(*this, S, ForLoc, local
2561 if (SR.isInvalid() || SR.isUsable())
2562 return SR;
H A DSemaChecking.cpp10054 SourceRange SR = LenArg->getSourceRange(); local
10060 SR = SourceRange(SM.getSpellingLoc(SR.getBegin()),
10061 SM.getSpellingLoc(SR.getEnd()));
10070 Diag(SL, diag::warn_strncat_wrong_size) << SR;
10072 Diag(SL, diag::warn_strncat_src_size) << SR;
10077 Diag(SL, diag::warn_strncat_large_size) << SR;
10079 Diag(SL, diag::warn_strncat_src_size) << SR;
10091 << FixItHint::CreateReplacement(SR, OS.str());
H A DSemaDeclAttr.cpp1562 SourceRange SR = getFunctionOrMethodResultSourceRange(D); local
1563 if (!attrNonNullArgCheck(S, ResultType, AL, SourceRange(), SR,
1598 SourceRange SR = getFunctionOrMethodResultSourceRange(D); local
1605 << &TmpAttr << TmpAttr.getRange() << SR;
3458 SourceRange SR; local
3470 SR = SourceRange(IdLoc->Loc);
3490 SR = IdxExpr->getSourceRange();
3497 << (I + 1) << SR;
H A DSemaType.cpp2166 void diagnoseNotICE(Sema &S, SourceLocation Loc, SourceRange SR) override {
2169 void diagnoseFold(Sema &S, SourceLocation Loc, SourceRange SR) override {
2170 S.Diag(Loc, diag::ext_vla_folded_to_constant) << SR;
H A DSemaExpr.cpp12958 SourceRange SR(LHSExpr->getBeginLoc(), RHSExpr->getEndLoc());
12960 Diag(OpLoc, diag::err_opencl_atomic_init) << 0 << SR;
14979 void diagnoseNotICE(Sema &S, SourceLocation Loc, SourceRange SR) override {
14980 S.Diag(Loc, diag::err_expr_not_ice) << S.LangOpts.CPlusPlus << SR;
14998 void diagnoseNotICE(Sema &S, SourceLocation Loc, SourceRange SR) override {
14999 S.Diag(Loc, DiagID) << SR;
15007 SourceRange SR) {
15008 S.Diag(Loc, diag::ext_expr_not_ice) << SR << S.LangOpts.CPlusPlus;
15006 diagnoseFold(Sema &S, SourceLocation Loc, SourceRange SR) argument
H A DSemaDeclCXX.cpp401 SourceRange SR; local
403 SR = SourceRange((*Toks)[1].getLocation(),
406 SR = UnparsedDefaultArgLocs[Param];
408 << SR;
1055 void diagnoseNotICE(Sema &S, SourceLocation Loc, SourceRange SR) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp2223 if (const auto *SR = dyn_cast<SymbolicRegion>(R))
2224 markInteresting(SR->getSymbol(), TKind);
2286 if (const auto *SR = dyn_cast<SymbolicRegion>(R))
2287 return getInterestingnessKind(SR->getSymbol());
3253 for (const auto &SR : Ranges)
3254 R->addRange(SR);
H A DBugReporterVisitors.cpp2043 if (const auto *SR = L->getRegionAs<SymbolicRegion>()) {
2044 if (SR->getSymbol()->getType()->getPointeeType()->isVoidType())
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DLocalizationChecker.cpp865 if (const ObjCStringRegion *SR =
868 SR->getObjCStringLiteral()->getString()->getString();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp505 EngineBuilder::setSymbolResolver(std::unique_ptr<LegacyJITSymbolResolver> SR) { argument
506 Resolver = std::shared_ptr<LegacyJITSymbolResolver>(std::move(SR));
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp6140 SectionRef SR = get_section(O, "__OBJC2", "__super_refs"); local
6141 if (SR == SectionRef())
6142 SR = get_section(O, "__DATA", "__objc_superrefs");
6143 if (SR == SectionRef())
6144 SR = get_section(O, "__DATA_CONST", "__objc_superrefs");
6145 if (SR == SectionRef())
6146 SR = get_section(O, "__DATA_DIRTY", "__objc_superrefs");
6147 info.S = SR;
6148 walk_pointer_list_64("super refs", SR, O, &info, nullptr);
6222 SectionRef SR local
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h6383 ExprResult BuildObjCArrayLiteral(SourceRange SR, MultiExprArg Elements);
6390 ExprResult BuildObjCBoxedExpr(SourceRange SR, Expr *ValueExpr);
6397 ExprResult BuildObjCDictionaryLiteral(SourceRange SR,
10169 ArrayRef<unsigned> LinModifiers, ArrayRef<Expr *> Steps, SourceRange SR);
10180 DeclGroupPtrTy DG, Expr *VariantRef, SourceRange SR);
10191 SourceRange SR,
11128 virtual void diagnoseNotICE(Sema &S, SourceLocation Loc, SourceRange SR) =0;
11129 virtual void diagnoseFold(Sema &S, SourceLocation Loc, SourceRange SR);
/freebsd-11-stable/contrib/ee/
H A Dnew_curse.c446 "AL=", "LE=", "RI=", "SR=", "UP=", "pk=", "pl=", "px=", "ps=", "pf=", "po=",
1497 Ntemp->SR = start_l;
2093 fprintf(stderr, "columns=%d, lines=%d, SC=%d, SR=%d\n",window->Num_cols, window->Num_lines, window->SC, window->SR);
2148 if (window->SR >= virtual_scr->Num_lines)
2154 virtual_scr->LY = window->LY + window->SR;
2159 for (line_counter = 0; line_counter < window->SR; line_counter++)
2164 && ((line_counter + window->SR) < virtual_scr->Num_lines);
2981 for (i = 0, tmp = curscr->first_line; i < window->SR; i++)
2983 if ((end_row + window->SR)
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DMicrosoftMangle.cpp565 SourceRange SR = VD->getSourceRange(); local
569 mangleType(Ty, SR, QMM_Drop);
587 mangleType(Ty, SR, QMM_Drop);
H A DExpr.cpp3036 auto SR = E->getSourceRange(); local
3041 if (A->getSourceRange() == SR || !isa<CXXTemporaryObjectExpr>(C))
3048 if (ExprNode->getSourceRange() == SR)
/freebsd-11-stable/contrib/binutils/opcodes/
H A Dppc-opc.c452 /* The SR field in an X form instruction. */
453 #define SR SPRG + 1
457 #define STRM SR + 1
3220 { "mtsrd", X(31,82), XRB_MASK|(1<<20), PPC64, { SR, RS } },
3348 { "mtsr", X(31,210), XRB_MASK|(1<<20), COM32, { SR, RS } },
4069 { "mfsr", X(31,595), XRB_MASK|(1<<20), COM32, { RT, SR } },
451 #define SR macro
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp4620 SourceRange SR = readSourceRange(); local
4622 Reader.getContext(), AllocatorKind, Allocator, SR,
H A DASTReader.cpp9002 SourceRange SR = ReadSourceRange(F, Record, Idx);
9008 SR, Kind, IsTrailingComment, IsAlmostTrailingComment));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp2678 const MCSymbolRefExpr *SR = cast<MCSymbolRefExpr>(Imm.Val); local
2679 Inst.addOperand(MCOperand::createExpr(SR));
2690 const MCSymbolRefExpr *SR = cast<MCSymbolRefExpr>(Imm.Val); local
2691 Inst.addOperand(MCOperand::createExpr(SR));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp5876 ConstantRange SR =
5879 SR = SR.unionWith(getRangeForAffineARHelper(StepSRange.getSignedMax(),
5889 return SR.intersectWith(UR, ConstantRange::Smallest);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp1849 const MCSymbolRefExpr *SR = static_cast<const MCSymbolRefExpr *>(Expr); local
1850 return SR->getKind() == MCSymbolRefExpr::VK_None;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp7840 return emitAtomicLoadBinary(MI, MBB, SystemZ::SR, 0);
7842 return emitAtomicLoadBinary(MI, MBB, SystemZ::SR, 32);

Completed in 978 milliseconds

1234567