Searched refs:DR (Results 26 - 50 of 51) sorted by relevance

123

/freebsd-13-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporterVisitors.h248 PathDiagnosticPieceRef VisitTrueTest(const Expr *Cond, const DeclRefExpr *DR,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DRDFLiveness.cpp406 RegisterRef DR = DA.Addr->getRegRef(DFG); local
409 if (DefRRs.hasCoverOf(DR) || !PRI.alias(RefRR, DR))
417 NewDefRRs.insert(DR);
H A DRDFGraph.cpp1270 auto isDefUndef = [this] (const MachineInstr &In, RegisterRef DR) -> bool {
1271 // This instruction defines DR. Check if there is a use operand that
1272 // would make DR live on entry to the instruction.
1277 if (PRI.alias(DR, UR))
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCheckSecuritySyntaxOnly.cpp246 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(expr)) {
247 const NamedDecl *ND = DR->getDecl();
248 return ND == x || ND == y ? DR : nullptr;
H A DContainerModeling.cpp715 if (const auto *DR = dyn_cast<DeclRegion>(ContReg)) {
716 Name = DR->getDecl()->getName();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonOptAddrMode.cpp249 RegisterRef DR = DFG->getPRI().normalize(DA.Addr->getRegRef(*DFG)); local
251 auto UseSet = LV->getAllReachedUses(DR, DA);
269 if (!DFG->getPRI().alias(RegisterRef(I.first), DR))
H A DHexagonBitSimplify.cpp980 Register DR = UseI->getOperand(0).getReg();
981 if (DR == R)
1476 unsigned DR = Defs.find_first();
1477 if (!Register::isVirtualRegister(DR))
1480 const BitTracker::RegisterCell &DRC = BT.lookup(DR);
1485 unsigned ImmReg = genTfrConst(MRI.getRegClass(DR), C, B, At, DL);
1487 HBS::replaceReg(DR, ImmReg, MRI);
3088 unsigned DR = getDefReg(SI);
3089 const TargetRegisterClass *RC = MRI->getRegClass(DR);
3105 RegMap.insert(std::make_pair(DR, NewD
[all...]
H A DHexagonEarlyIfConv.cpp841 Register DR = PN->getOperand(0).getReg(); local
842 const TargetRegisterClass *RC = MRI->getRegClass(DR);
H A DHexagonFrameLowering.cpp2191 for (auto &DR : F->second)
2192 if (DR.contains(FIR))
/freebsd-13-stable/sys/i386/i386/
H A Ddb_disasm.c72 #define DR 17 /* debug register */ macro
221 /*21*/ { "mov", TRUE, LONG, op2(DR,El), 0 },
223 /*23*/ { "mov", TRUE, LONG, op2(El,DR), 0 },
1426 case DR:
/freebsd-13-stable/sys/amd64/amd64/
H A Ddb_disasm.c85 #define DR 17 /* debug register */ macro
295 /*21*/ { "mov", TRUE, LONG, op2(DR,El), 0 },
297 /*23*/ { "mov", TRUE, LONG, op2(El,DR), 0 },
1664 case DR:
/freebsd-13-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp9938 DiffResult DR;
9949 DR.FirstDecl = FirstIt == FirstHashes.end() ? nullptr : FirstIt->first;
9950 DR.SecondDecl =
9953 DR.FirstDiffType =
9954 DR.FirstDecl ? DifferenceSelector(DR.FirstDecl) : EndOfClass;
9955 DR.SecondDiffType =
9956 DR.SecondDecl ? DifferenceSelector(DR.SecondDecl) : EndOfClass;
9957 return DR;
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExprEngine.h485 void VisitCommonDeclRefExpr(const Expr *DR, const NamedDecl *D,
516 void VisitLvalObjCIvarRefExpr(const ObjCIvarRefExpr *DR, ExplodedNode *Pred,
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaCoroutine.cpp1013 ExprResult DR = S.BuildDeclRefExpr(VD, VD->getType(), VK_LValue, Loc); local
1014 if (DR.isInvalid())
1017 return DR.get();
H A DSemaStmt.cpp3000 DeclRefExpr *DR = dyn_cast<DeclRefExpr>(E->IgnoreParens()); local
3001 if (!DR || DR->refersToEnclosingVariableOrCapture())
3003 VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl());
H A DSemaChecking.cpp5613 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Arg)) {
5614 if (const ParmVarDecl *PV = dyn_cast<ParmVarDecl>(DR->getDecl())) {
6879 const DeclRefExpr *DR = cast<DeclRefExpr>(E); local
6883 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
6885 QualType T = DR->getType();
10481 if (const DeclRefExpr *DR =
10483 if (isa<EnumConstantDecl>(DR->getDecl()))
10722 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Constant))
10723 ED = dyn_cast<EnumConstantDecl>(DR->getDecl());
H A DSemaLookup.cpp1037 DeclContext::lookup_result DR = DC->lookup(R.getLookupName()); local
1038 for (NamedDecl *D : DR) {
H A DSemaTemplate.cpp3436 const auto *DR = dyn_cast<DeclRefExpr>(E); variable
3437 if (DR && DR->getQualifier()) {
3440 DR->getQualifier()->print(OS, Policy, true);
3442 const ValueDecl *VD = DR->getDecl();
4728 // rules, even in C++03 mode with a warning, retroactively applying the DR.
7264 // C++1z [temp.arg.template]p3: (DR 150)
8656 // C++ DR 259, C++0x [temp.explicit]p4:
9287 // C++11 [temp.explicit]p3: [DR 275]
10401 // program is actually ill-formed. However, DR 38
[all...]
H A DSemaExpr.cpp3290 // C99 DR 316 says that, if a function type comes from a
11050 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(E)) {
11051 D = DR->getDecl();
16182 ComplexRemove(Sema &SemaRef, llvm::SmallPtrSetImpl<DeclRefExpr *> &DR, argument
16186 : Base(SemaRef), DRSet(DR), IISet(II), CurrentII(Current) {}
16292 for (auto DR : Rec.ReferenceToConsteval) {
16293 auto *FD = cast<FunctionDecl>(DR->getDecl());
16294 SemaRef.Diag(DR->getBeginLoc(), diag::err_invalid_consteval_take_address)
18076 // TODO: update this with DR# once a defect report is filed.
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp1733 DataRefImpl DR = Section.getRawDataRefImpl();
1734 SegmentName = MachO->getSectionFinalSegmentName(DR);
2470 DataRefImpl DR = Section->getRawDataRefImpl();
2471 StringRef SegmentName = MachO->getSectionFinalSegmentName(DR);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Analysis/
H A DThreadSafety.cpp1193 if (const auto *DR = dyn_cast<DeclRefExpr>(Exp))
1194 return DR->getDecl();
H A DCFG.cpp103 if (auto *DR = dyn_cast<DeclRefExpr>(E->IgnoreParenImpCasts()))
104 return isa<EnumConstantDecl>(DR->getDecl()) ? DR : nullptr;
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp772 if (const auto *DR = dyn_cast<DeclRefExpr>(LHS)) {
775 const auto *D = dyn_cast<EnumConstantDecl>(DR->getDecl());
/freebsd-13-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp1717 DeclRefExpr *DR = cast<DeclRefExpr>(S->getElement()); local
1718 elementName = DR->getDecl()->getName();
1719 ValueDecl *VD = DR->getDecl();
H A DRewriteObjC.cpp1510 DeclRefExpr *DR = cast<DeclRefExpr>(S->getElement()); local
1511 elementName = DR->getDecl()->getName();
1512 ValueDecl *VD = DR->getDecl();

Completed in 688 milliseconds

123