/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/ |
H A D | RecordOps.cpp | 53 auto SrcType = Src.getType().getCanonicalType().getUnqualifiedType(); in copyRecord() 54 auto DstType = Dst.getType().getCanonicalType().getUnqualifiedType(); in copyRecord() 91 if (Loc2.getType().getCanonicalType().getUnqualifiedType() != in recordsEqual() 92 Loc1.getType().getCanonicalType().getUnqualifiedType()) { in recordsEqual() 97 assert(Loc2.getType().getCanonicalType().getUnqualifiedType() == in recordsEqual() 98 Loc1.getType().getCanonicalType().getUnqualifiedType()); in recordsEqual()
|
H A D | Transfer.cpp | 596 if (S->getType().getCanonicalType().getUnqualifiedType() != in VisitCXXOperatorCallExpr() 597 LocDst->getType().getCanonicalType().getUnqualifiedType()) { in VisitCXXOperatorCallExpr() 760 assert(Field->getType().getCanonicalType()->getPointeeType() == in VisitInitListExpr() 761 Init->getType().getCanonicalType()); in VisitInitListExpr() 765 assert(Field->getType().getCanonicalType().getUnqualifiedType() == in VisitInitListExpr() 766 Init->getType().getCanonicalType().getUnqualifiedType()); in VisitInitListExpr()
|
H A D | DataflowEnvironment.cpp | 383 assert(Base->getType().getCanonicalType() == in PropagateResultObjectToRecordInitList() 384 Init->getType().getCanonicalType()); in PropagateResultObjectToRecordInitList() 1018 if (!Visited.insert(Ty.getCanonicalType()).second) in createLocAndMaybeValue() 1021 [&Visited, Ty] { Visited.erase(Ty.getCanonicalType()); }); in createLocAndMaybeValue() 1053 if (!Visited.insert(FieldType.getCanonicalType()).second) in initializeFieldsWithValues() 1058 Visited.erase(FieldType.getCanonicalType()); in initializeFieldsWithValues()
|
/freebsd/contrib/llvm-project/clang/lib/Analysis/ |
H A D | ConstructionContext.cpp | 54 if (!BTE && !(MTE->getType().getCanonicalType()->getAsCXXRecordDecl() in createMaterializedTemporaryFromLayers() 111 assert(!cast<VarDecl>(DS->getSingleDecl())->getType().getCanonicalType() in createBoundTemporaryFromLayers() 121 assert(!RS->getRetValue()->getType().getCanonicalType() in createBoundTemporaryFromLayers() 154 assert(!I->getAnyMember()->getType().getCanonicalType() in createBoundTemporaryFromLayers() 199 assert(BTE->getType().getCanonicalType()->getAsCXXRecordDecl() in createFromLayers()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaFixItUtils.cpp | 35 From = S.Context.getCanonicalType( in compareTypesSimple() 37 To = S.Context.getCanonicalType( in compareTypesSimple() 57 const CanQualType FromQTy = S.Context.getCanonicalType(FromTy); in tryToFixConversion() 58 const CanQualType ToQTy = S.Context.getCanonicalType(ToTy); in tryToFixConversion() 97 S.Context.getCanonicalType(FromPtrTy->getPointeeType()), ToQTy, in tryToFixConversion()
|
H A D | SemaOpenCL.cpp | 60 const Type *DeclTy = PDecl->getType().getCanonicalType().getTypePtr(); in handleAccessAttr() 107 cast<BlockPointerType>(BlockArg->getType().getCanonicalType()); in checkBlockArgs() 221 cast<BlockPointerType>(BlockArg->getType().getCanonicalType()); in checkOpenCLEnqueueVariadicArgs() 289 cast<BlockPointerType>(Arg3->getType().getCanonicalType()); in checkBuiltinEnqueueKernel()
|
H A D | SemaPPC.cpp | 261 QualType CoreType = Type.getCanonicalType().getUnqualifiedType(); in CheckPPCMMAType() 356 QualType StrippedRVType = PassedType.getCanonicalType(); in BuiltinPPCMMACall() 361 StrippedRVType = StrippedRVType.getCanonicalType().getUnqualifiedType(); in BuiltinPPCMMACall()
|
H A D | SemaCast.cpp | 689 QualType UnwrappedSrcType = Self.Context.getCanonicalType(SrcType), in CastsAwayConstness() 690 UnwrappedDestType = Self.Context.getCanonicalType(DestType); in CastsAwayConstness() 799 QualType DestType = Self.Context.getCanonicalType(this->DestType); in CheckDynamicCast() 839 QualType SrcType = Self.Context.getCanonicalType(OrigSrcType); in CheckDynamicCast() 1377 QualType SrcType = Self.Context.getCanonicalType(SrcExpr.get()->getType()); in TryStaticCast() 1612 Self.Context.getCanonicalType(SrcExpr->getType()), in TryStaticReferenceDowncast() 1613 Self.Context.getCanonicalType(DestPointee), CStyle, in TryStaticReferenceDowncast() 1644 Self.Context.getCanonicalType(SrcPointer->getPointeeType()), in TryStaticPointerDowncast() 1645 Self.Context.getCanonicalType(DestPointer->getPointeeType()), in TryStaticPointerDowncast() 1815 if (Paths.isAmbiguous(Self.Context.getCanonicalType(DestClass))) { in TryStaticMemberPointerUpcast() [all …]
|
H A D | SemaOverload.cpp | 1310 QualType OldQType = SemaRef.Context.getCanonicalType(Old->getType()); in IsOverloadOrOverrideImpl() 1311 QualType NewQType = SemaRef.Context.getCanonicalType(New->getType()); in IsOverloadOrOverrideImpl() 1410 auto BS = Base.getNonReferenceType().getCanonicalType().split(); in IsOverloadOrOverrideImpl() 1413 auto DS = D.getNonReferenceType().getCanonicalType().split(); in IsOverloadOrOverrideImpl() 1423 .getCanonicalType(); in IsOverloadOrOverrideImpl() 1622 = S.Context.getCanonicalType(From->getType().getUnqualifiedType()); in TryUserDefinedConversion() 1624 = S.Context.getCanonicalType(ToType).getUnqualifiedType(); in TryUserDefinedConversion() 1792 CanQualType CanTo = Context.getCanonicalType(ToType); in IsFunctionConversion() 1793 CanQualType CanFrom = Context.getCanonicalType(FromType); in IsFunctionConversion() 2154 S.Context.getCanonicalType(FromType) != S.Context.OverloadTy) { in IsStandardConversion() [all …]
|
H A D | SemaObjCProperty.cpp | 526 QualType PrimaryClassPropertyT = Context.getCanonicalType(PIDecl->getType()); in HandlePropertyInClassExtension() 527 QualType ClassExtPropertyT = Context.getCanonicalType(PDecl->getType()); in HandlePropertyInClassExtension() 863 QualType RHSType = S.Context.getCanonicalType(Property->getType()); in SelectPropertyForSynthesisFromProtocols() 928 QualType LHSType = S.Context.getCanonicalType(Prop->getType()); in SelectPropertyForSynthesisFromProtocols() 1341 QualType IvarType = Context.getCanonicalType(Ivar->getType()); in ActOnPropertyImplDecl() 1367 QualType lhsType =Context.getCanonicalType(PropertyIvarType).getUnqualifiedType(); in ActOnPropertyImplDecl() 1368 QualType rhsType =Context.getCanonicalType(IvarType).getUnqualifiedType(); in ActOnPropertyImplDecl() 1668 Context.getCanonicalType(SuperProperty->getType()); in DiagnosePropertyMismatch() 1670 Context.getCanonicalType(Property->getType()); in DiagnosePropertyMismatch() 1713 QualType lhsType = Context.getCanonicalType(PropertyRValueType); in DiagnosePropertyAccessorMismatch() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
H A D | StringChecker.cpp | 52 const QualType Arg1Ty = Call.getArgExpr(0)->getType().getCanonicalType(); in isCharToStringCtor() 53 const QualType Arg2Ty = Call.getArgExpr(1)->getType().getCanonicalType(); in isCharToStringCtor() 60 if (Arg2Ty.getCanonicalType() == ACtx.getSizeType()) in isCharToStringCtor()
|
H A D | CastToStructChecker.cpp | 42 QualType OrigTy = Ctx.getCanonicalType(E->getType()); in VisitCastExpr() 43 QualType ToTy = Ctx.getCanonicalType(CE->getType()); in VisitCastExpr()
|
H A D | VLASizeChecker.cpp | 276 TypeToCheck = VD->getType().getCanonicalType(); in checkPreStmt() 278 TypeToCheck = TND->getUnderlyingType().getCanonicalType(); in checkPreStmt() 322 UETTE->getTypeOfArgument().getCanonicalType()); in checkPreStmt()
|
H A D | StdVariantChecker.cpp | 269 QualType RetrievedCanonicalType = RetrievedType.getCanonicalType(); in handleStdGetCall() 270 QualType StoredCanonicalType = StoredType->getCanonicalType(); in handleStdGetCall()
|
H A D | MallocSizeofChecker.cpp | 148 A = A.getCanonicalType(); in typesCompatible() 149 B = B.getCanonicalType(); in typesCompatible()
|
H A D | NumberObjectConversionChecker.cpp | 136 assert(ObjT.getCanonicalType()->isPointerType()); in run() 138 ObjT->getPointeeType().getCanonicalType().getUnqualifiedType()); in run()
|
H A D | CastSizeChecker.cpp | 92 QualType ToTy = Ctx.getCanonicalType(CE->getType()); in checkPreStmt()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | InheritViz.cpp | 63 QualType CanonType = Context.getCanonicalType(Type); in WriteNode() 96 QualType CanonBaseType = Context.getCanonicalType(Base.getType()); in WriteNode() 126 QualType CanonType = Context.getCanonicalType(Type); in WriteNodeReference()
|
H A D | ASTContext.cpp | 714 ID.AddPointer(C.getUnconstrainedType(C.getCanonicalType(NTTP->getType())) in Profile() 721 ID.AddPointer(T.getCanonicalType().getAsOpaquePtr()); in Profile() 765 QualType T = getUnconstrainedType(getCanonicalType(NTTP->getType())); in getCanonicalTemplateTemplateParmDecl() 772 ExpandedTypes.push_back(getCanonicalType(NTTP->getExpansionType(I))); in getCanonicalTemplateTemplateParmDecl() 1434 VoidPtrTy = getPointerType(getCanonicalType( in InitBuiltinTypes() 3079 QualType CanT = getCanonicalType(T); in getAddrSpaceQualType() 3166 const Type *T = QT.getCanonicalType().getTypePtr(); in encodeTypeForFunctionPointerAuth() 3433 QualType CanT = getCanonicalType(T); in getObjCGCQualType() 3483 QualType CanonTy = getCanonicalType(WrappedTy); in getCountAttributedType() 3636 Canonical = getComplexType(getCanonicalType(T)); in getComplexType() [all …]
|
H A D | FormatString.cpp | 410 argTy = C.getCanonicalType(argTy).getUnqualifiedType(); in matchesType() 547 C.getCanonicalType(PT->getPointeeType()).getUnqualifiedType(); in matchesType() 552 QualType WInt = C.getCanonicalType(C.getWIntType()).getUnqualifiedType(); in matchesType() 554 if (C.getCanonicalType(argTy).getUnqualifiedType() == WInt) in matchesType() 560 PromoArg = C.getCanonicalType(PromoArg).getUnqualifiedType(); in matchesType()
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | Store.cpp | 98 QualType CanonPointeeTy = Ctx.getCanonicalType(PointeeTy); in castRegion() 107 QualType ObjTy = Ctx.getCanonicalType(TR->getValueType()); in castRegion() 453 PointeeTy.getCanonicalType() == elementType.getCanonicalType()) in getLValueElement()
|
H A D | ExprEngineC.cpp | 144 CTy = getContext().getCanonicalType(CTy); in VisitBinaryOperator() 148 CLHSTy = getContext().getCanonicalType(CLHSTy); in VisitBinaryOperator() 150 QualType LTy = getContext().getCanonicalType(LHS->getType()); in VisitBinaryOperator() 196 CanQualType T = getContext().getCanonicalType(BE->getType()); in VisitBlockExpr() 742 QualType T = getContext().getCanonicalType(IE->getType()); in VisitInitListExpr()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
H A D | ClangUtil.cpp | 48 return GetQualType(ct).getCanonicalType(); in GetCanonicalQualType()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CodeGenTBAA.cpp | 298 const Type *Ty = Context.getCanonicalType(QTy).getTypePtr(); in getTypeInfo() 412 const Type *Ty = Context.getCanonicalType(QTy).getTypePtr(); in getTBAAStructInfo() 512 const Type *Ty = Context.getCanonicalType(QTy).getTypePtr(); in getValidBaseTypeInfo()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | ASTContext.h | 2618 CanQualType getCanonicalType(QualType T) const { in getCanonicalType() function 2619 return CanQualType::CreateUnsafe(T.getCanonicalType()); in getCanonicalType() 2622 const Type *getCanonicalType(const Type *T) const { in getCanonicalType() function 2635 return getCanonicalType(T1) == getCanonicalType(T2); in hasSameType() 2638 return getCanonicalType(T1) == getCanonicalType(T2); in hasSameType() 2666 return getCanonicalType(T1).getTypePtr() == in hasSameUnqualifiedType() 2667 getCanonicalType(T2).getTypePtr(); in hasSameUnqualifiedType()
|