Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DType.cpp271 if (auto *TTy = dyn_cast<TargetExtType>(this)) in isSizedDerivedType() local
272 return TTy->getLayoutType()->isSized(Visited); in isSizedDerivedType()
796 if (auto *TTy = dyn_cast<TargetExtType>(ElemTy)) in isValidElementType() local
797 return TTy->hasProperty(TargetExtType::CanBeVectorElement); in isValidElementType()
944 Expected<TargetExtType *> TargetExtType::checkParams(TargetExtType *TTy) { in checkParams() argument
946 if (TTy->Name == "aarch64.svcount" && in checkParams()
947 (TTy->getNumTypeParameters() != 0 || TTy->getNumIntParameters() != 0)) in checkParams()
952 if (TTy->Name == "riscv.vector.tuple" && in checkParams()
953 (TTy->getNumTypeParameters() != 1 || TTy->getNumIntParameters() != 1)) in checkParams()
959 if (TTy->Name == "amdgcn.named.barrier" && in checkParams()
[all …]
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenTBAA.cpp145 if (const RecordType *TTy = QTy->getAs<RecordType>()) { in isValidBaseType() local
146 const RecordDecl *RD = TTy->getDecl()->getDefinition(); in isValidBaseType()
427 if (const RecordType *TTy = QTy->getAs<RecordType>()) { in CollectFields() local
428 if (TTy->isUnionType()) { in CollectFields()
436 const RecordDecl *RD = TTy->getDecl()->getDefinition(); in CollectFields()
516 if (auto *TTy = dyn_cast<RecordType>(Ty)) { in getBaseTypeInfoHelper() local
517 const RecordDecl *RD = TTy->getDecl()->getDefinition(); in getBaseTypeInfoHelper()
H A DCGDebugInfo.cpp2428 llvm::DIType *TTy = getOrCreateType(TA.getAsType(), Unit); in CollectTemplateParams() local
2430 TheCU, Name, TTy, defaultParameter)); in CollectTemplateParams()
2434 llvm::DIType *TTy = getOrCreateType(TA.getIntegralType(), Unit); in CollectTemplateParams() local
2436 TheCU, Name, TTy, defaultParameter, in CollectTemplateParams()
2442 llvm::DIType *TTy = getOrCreateType(T, Unit); in CollectTemplateParams() local
2483 TheCU, Name, TTy, defaultParameter, cast_or_null<llvm::Constant>(V))); in CollectTemplateParams()
2487 llvm::DIType *TTy = getOrCreateType(T, Unit); in CollectTemplateParams() local
2502 TheCU, Name, TTy, defaultParameter, V)); in CollectTemplateParams()
2506 llvm::DIType *TTy = getOrCreateType(T, Unit); in CollectTemplateParams() local
2510 TheCU, Name, TTy, defaultParameter, V)); in CollectTemplateParams()
[all …]
H A DCGExprScalar.cpp299 if (const auto *TTy = in EmitLValueAlignmentAssumption() local
301 AVAttr = TTy->getDecl()->getAttr<AlignValueAttr>(); in EmitLValueAlignmentAssumption()
316 if (const auto *TTy = E->getType()->getAs<TypedefType>()) in EmitLValueAlignmentAssumption() local
317 AVAttr = TTy->getDecl()->getAttr<AlignValueAttr>(); in EmitLValueAlignmentAssumption()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUMemoryUtils.cpp44 if (auto *TTy = dyn_cast<TargetExtType>(Ty)) in isNamedBarrier() local
45 return TTy->getName() == "amdgcn.named.barrier" ? TTy : nullptr; in isNamedBarrier()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DSValBuilder.cpp1069 APSIntType TTy = BVF.getAPSIntType(T); in simplifySymbolCast() local
1072 const auto WT = TTy.getBitWidth(); in simplifySymbolCast()
1083 const bool UT = TTy.isUnsigned(); in simplifySymbolCast()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprCXX.cpp5507 QualType TTy = To->getType(); in TryClassUnification() local
5509 const RecordType *TRec = TTy->getAs<RecordType>(); in TryClassUnification()
5511 Self.IsDerivedFrom(QuestionLoc, FTy, TTy); in TryClassUnification()
5513 Self.IsDerivedFrom(QuestionLoc, TTy, FTy))) { in TryClassUnification()
5518 if (TTy.isAtLeastAsQualifiedAs(FTy, Self.getASTContext())) { in TryClassUnification()
5519 InitializedEntity Entity = InitializedEntity::InitializeTemporary(TTy); in TryClassUnification()
5541 TTy = TTy.getNonLValueExprType(Self.Context); in TryClassUnification()
5543 InitializedEntity Entity = InitializedEntity::InitializeTemporary(TTy); in TryClassUnification()
5546 ToType = TTy; in TryClassUnification()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DDerivedTypes.h809 LLVM_ABI static Expected<TargetExtType *> checkParams(TargetExtType *TTy);
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp2768 auto TTy = in parseTypeTableBody() local
2770 if (auto E = TTy.takeError()) in parseTypeTableBody()
2772 ResultTy = *TTy; in parseTypeTableBody()
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp3632 auto TTy = in parseTargetExtType() local
3634 if (auto E = TTy.takeError()) in parseTargetExtType()
3637 Result = *TTy; in parseTargetExtType()