Home
last modified time | relevance | path

Searched refs:AdjustedType (Results 1 – 20 of 20) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DTypeNodes.td83 def AdjustedType : TypeNode<Type>, NeverCanonical;
84 def DecayedType : TypeNode<AdjustedType>, NeverCanonical;
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DASTNodeTraverser.h413 void VisitAdjustedType(const AdjustedType *T) { Visit(T->getOriginalType()); } in VisitAdjustedType()
H A DType.h2923 class AdjustedType : public Type, public llvm::FoldingSetNode {
2930 AdjustedType(TypeClass TC, QualType OriginalTy, QualType AdjustedTy,
2957 class DecayedType : public AdjustedType {
7619 else if (const auto *A = dyn_cast<AdjustedType>(Ty))
7663 : AdjustedType(Decayed, OriginalType, DecayedPtr, CanonicalPtr) {
H A DTypeProperties.td28 let Class = AdjustedType in {
H A DRecursiveASTVisitor.h982 DEF_TRAVERSE_TYPE(AdjustedType, { TRY_TO(TraverseType(T->getOriginalType())); })
1230 DEF_TRAVERSE_TYPELOC(AdjustedType,
H A DTypeLoc.h1198 AdjustedType, AdjustedLocInfo> {
H A DASTContext.h189 mutable llvm::FoldingSet<AdjustedType> AdjustedTypes;
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DASTDiagnostic.cpp69 if (const AdjustedType *AT = dyn_cast<AdjustedType>(Ty)) { in desugarForDiagnostic()
H A DTypePrinter.cpp577 void TypePrinter::printAdjustedBefore(const AdjustedType *T, raw_ostream &OS) { in printAdjustedBefore()
583 void TypePrinter::printAdjustedAfter(const AdjustedType *T, raw_ostream &OS) { in printAdjustedAfter()
H A DASTStructuralEquivalence.cpp843 cast<AdjustedType>(T1)->getOriginalType(), in IsStructurallyEquivalent()
844 cast<AdjustedType>(T2)->getOriginalType())) in IsStructurallyEquivalent()
H A DODRHash.cpp924 void VisitAdjustedType(const AdjustedType *T) { in VisitAdjustedType()
H A DASTContext.cpp2248 return getTypeInfo(cast<AdjustedType>(T)->getAdjustedType().getTypePtr()); in getTypeInfoImpl()
3297 AdjustedType::Profile(ID, Orig, New); in getAdjustedType()
3299 AdjustedType *AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos); in getAdjustedType()
3309 AT = new (*this, alignof(AdjustedType)) in getAdjustedType()
3310 AdjustedType(Type::Adjusted, Orig, New, Canonical); in getAdjustedType()
3318 AdjustedType::Profile(ID, Orig, Decayed); in getDecayedType()
3320 AdjustedType *AT = AdjustedTypes.FindNodeOrInsertPos(ID, InsertPos); in getDecayedType()
13024 const auto *AX = cast<AdjustedType>(X), *AY = cast<AdjustedType>(Y); in getCommonSugarTypeNode()
H A DType.cpp1128 QualType VisitAdjustedType(const AdjustedType *T) { in SUGARED_TYPE_CLASS()
1937 Type *VisitAdjustedType(const AdjustedType *T) { in VisitAdjustedType()
H A DASTImporter.cpp1707 ExpectedType clang::ASTNodeImporter::VisitAdjustedType(const AdjustedType *T) { in VisitAdjustedType()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenFunction.cpp2318 type = cast<AdjustedType>(ty)->getAdjustedType(); in EmitVariablyModifiedType()
H A DCGDebugInfo.cpp3489 T = cast<AdjustedType>(T)->getAdjustedType(); in UnwrapTypeForDebugInfo()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp2840 TemplateTypeParmDecl *VisitAdjustedType(const AdjustedType *T) { in VisitAdjustedType()
H A DSemaDecl.cpp3937 const FunctionType *AdjustedType = New->getType()->getAs<FunctionType>(); in MergeFunctionDecl() local
3938 AdjustedType = Context.adjustFunctionType(AdjustedType, NewTypeInfo); in MergeFunctionDecl()
3939 New->setType(QualType(AdjustedType, 0)); in MergeFunctionDecl()
H A DTreeTransform.h5359 assert(isa<AdjustedType>(MPT->getPointeeType())); in TransformMemberPointerType()
H A DSemaExpr.cpp4661 T = cast<AdjustedType>(Ty)->getOriginalType(); in captureVariablyModifiedType()