Searched refs:DT (Results 276 - 300 of 302) sorted by relevance

<<111213

/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateInstantiateDecl.cpp756 const DecltypeType *DT = DI->getType()->getAs<DecltypeType>(); local
758 if (DT && RD && isa<ConditionalOperator>(DT->getUnderlyingExpr()) &&
759 DT->isReferenceType() &&
H A DSemaDecl.cpp6160 if (auto DT = dyn_cast<DecayedType>(Type)) {
6161 auto OrigTy = DT->getOriginalType();
13028 DeducedType *DT = D->getType()->getContainedDeducedType(); local
13029 if (!DT || DT->getDeducedType().isNull())
13032 Deduced = DT->getDeducedType();
13034 } else if (!Context.hasSameType(DT->getDeducedType(), Deduced)) {
13035 auto *AT = dyn_cast<AutoType>(DT);
13040 << DT->getDeducedType() << D->getDeclName()
H A DSemaType.cpp4177 if (auto *DT = T->getAs<DeducedType>()) {
4179 bool IsClassTemplateDeduction = isa<DeducedTemplateSpecializationType>(DT);
H A DSemaOpenMP.cpp16856 OMPDeclareTargetDeclAttr::DevTypeTy DT) {
16869 if (DevTy.hasValue() && *DevTy != DT) {
16871 << OMPDeclareTargetDeclAttr::ConvertDevTypeTyToStr(DT)
16878 auto *A = OMPDeclareTargetDeclAttr::CreateImplicit(Context, MT, DT,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp1456 const DIDerivedType *DT = dyn_cast<DIDerivedType>(T); local
1457 if (!DT)
1459 T = DT->getBaseType();
/freebsd-11-stable/sys/contrib/ipfilter/netinet/
H A Dip_state.c142 #define SBUMPD(x, y) do { (softs->x.y)++; DT(y); } while (0)
143 #define SBUMPDX(x, y, z)do { (softs->x.y)++; DT(z); } while (0)
1120 DT(iss_wild_plus_one);
H A Dip_nat.c118 DT(y); \
122 DT(x); } while (0)
125 DT(z); } while (0)
3125 DT(ns_memfail);
H A Dip_nat6.c133 DT(x); \
138 DT(z); \
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp1402 if (isKnownPositive(A, DL, 0, &AC, &Cmp, &DT))
1404 if (isKnownPositive(B, DL, 0, &AC, &Cmp, &DT))
3907 isKnownNonZero(B, Q.DL, /*Depth=*/0, Q.AC, Q.CxtI, Q.DT))
3911 isKnownNonZero(D, Q.DL, /*Depth=*/0, Q.AC, Q.CxtI, Q.DT))
4872 if (Usr != UI && !DT.dominates(DB, Usr->getParent()))
H A DInstCombineAddSub.cpp1314 if (haveNoCommonBitsSet(LHS, RHS, DL, &AC, &I, &DT))
H A DInstCombineAndOrXor.cpp1065 return isKnownNonZero(V, Q.DL, /*Depth=*/0, Q.AC, Q.CxtI, Q.DT);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp3552 auto *DT = T->getContainedDeducedType(); local
3553 return DT && !DT->isDeduced();
H A DASTReader.cpp9097 auto *DT = FD->getReturnType()->getContainedDeducedType();
9098 if (DT && DT->isDeduced())
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DType.h6901 auto *DT = getContainedDeducedType();
6902 return DT && !DT->isDeduced();
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.cpp112 MVT DT = MVT::Other; local
123 DT = P.second;
132 Changed |= I.second.insert(DT).second;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DSCCP.cpp269 return {A->second.DT, A->second.PDT, DomTreeUpdater::UpdateStrategy::Lazy};
2125 // use ConstantFoldTerminator to get rid of in-edges, record DT updates and
H A DSROA.cpp4555 PromoteMemToReg(PromotableAllocas, *DT, AC);
4564 DT = &RunDT;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelDAGToDAG.cpp405 DominatorTree & DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree(); local
408 assert(L->isLCSSAForm(DT));
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DType.cpp568 if (const auto *DT = getAs<DecayedType>())
569 return DT->getPointeeType();
H A DDecl.cpp2684 if (const auto *DT = dyn_cast<DecayedType>(T))
2685 return DT->getOriginalType();
H A DMicrosoftMangle.cpp1754 if (const auto *DT = T->getAs<DecayedType>()) {
1755 QualType OriginalType = DT->getOriginalType();
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDebugInfo.cpp2929 QualType DT = cast<DeducedType>(T)->getDeducedType(); local
2930 assert(!DT.isNull() && "Undeduced types shouldn't reach here.");
2931 T = DT;
H A DItaniumCXXABI.cpp211 CXXDtorType DT) const override {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DAttributor.cpp1862 DominatorTree *DT = nullptr; variable
1865 DT = InfoCache.getAnalysisResultForFunction<DominatorTreeAnalysis>(*Fn);
1871 if (!isKnownNonZero(&V, DL, 0, /* TODO: AC */ nullptr, getCtxI(), DT))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrInfo.cpp7929 MachineDominatorTree *DT = &getAnalysis<MachineDominatorTree>(); variable
7930 return VisitNode(DT->getRootNode(), 0);

Completed in 765 milliseconds

<<111213