Home
last modified time | relevance | path

Searched refs:TTy (Results 1 – 7 of 7) sorted by relevance

/freebsd-14-stable/contrib/llvm-project/clang/lib/CodeGen/
HDCodeGenTBAA.cpp103 if (const RecordType *TTy = QTy->getAs<RecordType>()) { in isValidBaseType() local
104 const RecordDecl *RD = TTy->getDecl()->getDefinition(); in isValidBaseType()
337 if (const RecordType *TTy = QTy->getAs<RecordType>()) { in CollectFields() local
338 if (TTy->isUnionType()) { in CollectFields()
346 const RecordDecl *RD = TTy->getDecl()->getDefinition(); in CollectFields()
426 if (auto *TTy = dyn_cast<RecordType>(Ty)) { in getBaseTypeInfoHelper() local
427 const RecordDecl *RD = TTy->getDecl()->getDefinition(); in getBaseTypeInfoHelper()
HDCGDebugInfo.cpp2254 llvm::DIType *TTy = getOrCreateType(TA.getAsType(), Unit); in CollectTemplateParams() local
2256 TheCU, Name, TTy, defaultParameter)); in CollectTemplateParams()
2260 llvm::DIType *TTy = getOrCreateType(TA.getIntegralType(), Unit); in CollectTemplateParams() local
2262 TheCU, Name, TTy, defaultParameter, in CollectTemplateParams()
2268 llvm::DIType *TTy = getOrCreateType(T, Unit); in CollectTemplateParams() local
2309 TheCU, Name, TTy, defaultParameter, cast_or_null<llvm::Constant>(V))); in CollectTemplateParams()
2313 llvm::DIType *TTy = getOrCreateType(T, Unit); in CollectTemplateParams() local
2328 TheCU, Name, TTy, defaultParameter, V)); in CollectTemplateParams()
2332 llvm::DIType *TTy = getOrCreateType(T, Unit); in CollectTemplateParams() local
2336 TheCU, Name, TTy, defaultParameter, V)); in CollectTemplateParams()
[all …]
HDCGExprScalar.cpp271 if (const auto *TTy = in EmitLValueAlignmentAssumption() local
273 AVAttr = TTy->getDecl()->getAttr<AlignValueAttr>(); in EmitLValueAlignmentAssumption()
288 if (const auto *TTy = E->getType()->getAs<TypedefType>()) in EmitLValueAlignmentAssumption() local
289 AVAttr = TTy->getDecl()->getAttr<AlignValueAttr>(); in EmitLValueAlignmentAssumption()
/freebsd-14-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
HDSValBuilder.cpp1068 APSIntType TTy = BVF.getAPSIntType(T); in simplifySymbolCast() local
1071 const auto WT = TTy.getBitWidth(); in simplifySymbolCast()
1082 const bool UT = TTy.isUnsigned(); in simplifySymbolCast()
/freebsd-14-stable/contrib/llvm-project/llvm/lib/IR/
HDType.cpp227 if (auto *TTy = dyn_cast<TargetExtType>(this)) in isSizedDerivedType() local
228 return TTy->getLayoutType()->isSized(Visited); in isSizedDerivedType()
HDVerifier.cpp911 if (auto *TTy = dyn_cast<TargetExtType>(GV.getValueType())) in visitGlobalVariable() local
912 Check(TTy->hasProperty(TargetExtType::CanBeGlobal), in visitGlobalVariable()
914 TTy); in visitGlobalVariable()
/freebsd-14-stable/contrib/llvm-project/clang/lib/Sema/
HDSemaExprCXX.cpp6501 QualType TTy = To->getType(); in TryClassUnification() local
6503 const RecordType *TRec = TTy->getAs<RecordType>(); in TryClassUnification()
6505 Self.IsDerivedFrom(QuestionLoc, FTy, TTy); in TryClassUnification()
6507 Self.IsDerivedFrom(QuestionLoc, TTy, FTy))) { in TryClassUnification()
6512 if (TTy.isAtLeastAsQualifiedAs(FTy)) { in TryClassUnification()
6513 InitializedEntity Entity = InitializedEntity::InitializeTemporary(TTy); in TryClassUnification()
6535 TTy = TTy.getNonLValueExprType(Self.Context); in TryClassUnification()
6537 InitializedEntity Entity = InitializedEntity::InitializeTemporary(TTy); in TryClassUnification()
6540 ToType = TTy; in TryClassUnification()