Searched defs:QTy (Results 1 - 5 of 5) sorted by relevance

/external/clang/lib/CodeGen/
H A DCGCXX.cpp295 const Type *QTy = Qual->getAsType(); local
296 QualType T = QualType(QTy, 0);
H A DCodeGenTBAA.cpp71 static bool TypeHasMayAlias(QualType QTy) { argument
73 if (const TagType *TTy = dyn_cast<TagType>(QTy))
77 if (const TypedefType *TTy = dyn_cast<TypedefType>(QTy)) {
88 CodeGenTBAA::getTBAAInfo(QualType QTy) { argument
95 if (TypeHasMayAlias(QTy))
98 const Type *Ty = Context.getCanonicalType(QTy).getTypePtr();
171 QualType QTy,
177 if (const RecordType *TTy = QTy->getAs<RecordType>()) {
204 uint64_t Size = Context.getTypeSizeInChars(QTy).getQuantity();
205 llvm::MDNode *TBAAInfo = MayAlias ? getChar() : getTBAAInfo(QTy);
170 CollectFields(uint64_t BaseOffset, QualType QTy, SmallVectorImpl<llvm::MDBuilder::TBAAStructField> & Fields, bool MayAlias) argument
212 getTBAAStructInfo(QualType QTy) argument
227 isTBAAPathStruct(QualType QTy) argument
241 getTBAAStructTypeInfo(QualType QTy) argument
[all...]
H A DCodeGenModule.cpp484 llvm::MDNode *CodeGenModule::getTBAAInfo(QualType QTy) { argument
487 return TBAA->getTBAAInfo(QTy);
496 llvm::MDNode *CodeGenModule::getTBAAStructInfo(QualType QTy) { argument
499 return TBAA->getTBAAStructInfo(QTy);
H A DCGBuiltin.cpp3149 llvm::Type *QTy = llvm::VectorType::getExtendedElementVectorType(VTy); local
3150 Ops[0] = Builder.CreateBitCast(Ops[0], QTy);
/external/clang/lib/Sema/
H A DSemaExpr.cpp13104 QualType QTy = Var->getType(); local
13106 QTy = PVD->getOriginalType();
13108 const Type *Ty = QTy.getTypePtr();
13116 QTy = QualType();
13132 QTy = cast<AdjustedType>(Ty)->getOriginalType();
13135 QTy = cast<DecayedType>(Ty)->getPointeeType();
13138 QTy = cast<PointerType>(Ty)->getPointeeType();
13141 QTy = cast<BlockPointerType>(Ty)->getPointeeType();
13145 QTy = cast<ReferenceType>(Ty)->getPointeeType();
13148 QTy
[all...]

Completed in 144 milliseconds