HomeSort by relevance Sort by last modified time
    Searched refs:QTy (Results 1 - 6 of 6) sorted by null

  /external/clang/lib/CodeGen/
CodeGenTBAA.cpp 63 static bool TypeHasMayAlias(QualType QTy) {
65 if (const TagType *TTy = dyn_cast<TagType>(QTy))
69 if (const TypedefType *TTy = dyn_cast<TypedefType>(QTy)) {
80 CodeGenTBAA::getTBAAInfo(QualType QTy) {
87 if (TypeHasMayAlias(QTy))
90 const Type *Ty = Context.getCanonicalType(QTy).getTypePtr();
175 QualType QTy,
181 if (const RecordType *TTy = QTy->getAs<RecordType>()) {
208 uint64_t Size = Context.getTypeSizeInChars(QTy).getQuantity();
209 llvm::MDNode *TBAAInfo = MayAlias ? getChar() : getTBAAInfo(QTy);
    [all...]
CodeGenTBAA.h 83 llvm::MDNode *getTBAAInfo(QualType QTy);
91 llvm::MDNode *getTBAAStructInfo(QualType QTy);
CGCXX.cpp 325 const Type *QTy = Qual->getAsType();
326 QualType T = QualType(QTy, 0);
CodeGenModule.h 492 llvm::MDNode *getTBAAInfo(QualType QTy);
494 llvm::MDNode *getTBAAStructInfo(QualType QTy);
496 bool isTypeConstant(QualType QTy, bool ExcludeCtorDtor);
    [all...]
CodeGenModule.cpp 211 llvm::MDNode *CodeGenModule::getTBAAInfo(QualType QTy) {
214 return TBAA->getTBAAInfo(QTy);
223 llvm::MDNode *CodeGenModule::getTBAAStructInfo(QualType QTy) {
226 return TBAA->getTBAAStructInfo(QTy);
    [all...]
CGBuiltin.cpp     [all...]

Completed in 67 milliseconds