r186556 - Instead of checking against some version of "isType()" go ahead and
Eric Christopher
echristo at gmail.com
Wed Jul 17 17:52:50 PDT 2013
Author: echristo
Date: Wed Jul 17 19:52:50 2013
New Revision: 186556
URL: http://llvm.org/viewvc/llvm-project?rev=186556&view=rev
Log:
Instead of checking against some version of "isType()" go ahead and
use the conversion to bool to check if we've managed to get a type
that isn't default constructed - as we meant to in the first place.
Modified:
cfe/trunk/lib/CodeGen/CGDebugInfo.cpp
Modified: cfe/trunk/lib/CodeGen/CGDebugInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CGDebugInfo.cpp?rev=186556&r1=186555&r2=186556&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CGDebugInfo.cpp (original)
+++ cfe/trunk/lib/CodeGen/CGDebugInfo.cpp Wed Jul 17 19:52:50 2013
@@ -411,7 +411,7 @@ llvm::DIType CGDebugInfo::CreateType(con
case BuiltinType::Void:
return llvm::DIType();
case BuiltinType::ObjCClass:
- if (ClassTy.isType())
+ if (ClassTy)
return ClassTy;
ClassTy = DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type,
"objc_class", TheCU,
@@ -423,10 +423,10 @@ llvm::DIType CGDebugInfo::CreateType(con
// Class isa;
// } *id;
- if (ObjTy.isCompositeType())
+ if (ObjTy)
return ObjTy;
- if (!ClassTy.isType())
+ if (!ClassTy)
ClassTy = DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type,
"objc_class", TheCU,
getOrCreateMainFile(), 0);
@@ -444,7 +444,7 @@ llvm::DIType CGDebugInfo::CreateType(con
return ObjTy;
}
case BuiltinType::ObjCSel: {
- if (SelTy.isType())
+ if (SelTy)
return SelTy;
SelTy =
DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type,
@@ -677,7 +677,7 @@ llvm::DIType CGDebugInfo::CreatePointerL
llvm::DIType CGDebugInfo::getOrCreateStructPtrType(StringRef Name,
llvm::DIType &Cache) {
- if (Cache.isType())
+ if (Cache)
return Cache;
Cache = DBuilder.createForwardDecl(llvm::dwarf::DW_TAG_structure_type, Name,
TheCU, getOrCreateMainFile(), 0);
@@ -688,7 +688,7 @@ llvm::DIType CGDebugInfo::getOrCreateStr
llvm::DIType CGDebugInfo::CreateType(const BlockPointerType *Ty,
llvm::DIFile Unit) {
- if (BlockLiteralGeneric.isType())
+ if (BlockLiteralGeneric)
return BlockLiteralGeneric;
SmallVector<llvm::Value *, 8> EltTys;
@@ -754,7 +754,7 @@ llvm::DIType CGDebugInfo::CreateType(con
// typedef, make sure to emit the whole chain.
llvm::DIType Src =
getOrCreateType(Ty->getDecl()->getUnderlyingType(), Unit, Declaration);
- if (!Src.isType())
+ if (!Src)
return llvm::DIType();
// We don't set size information, but do specify where the typedef was
// declared.
@@ -1956,7 +1956,7 @@ void CGDebugInfo::completeFwdDecl(const
QualType QTy = CGM.getContext().getRecordType(&RD);
llvm::DIType T = getTypeOrNull(QTy);
- if (T.isType() && T.isForwardDecl())
+ if (T && T.isForwardDecl())
getOrCreateType(QTy, getOrCreateFile(RD.getLocation()));
}
@@ -1988,7 +1988,7 @@ llvm::DIType CGDebugInfo::getOrCreateTyp
llvm::DIType T = getCompletedTypeOrNull(Ty);
- if (T.isType()) {
+ if (T) {
// If we're looking for a definition, make sure we have definitions of any
// underlying types.
if (const TypedefType* TTy = dyn_cast<TypedefType>(Ty))
@@ -2006,7 +2006,7 @@ llvm::DIType CGDebugInfo::getOrCreateTyp
TypeCache[TyPtr] = Res;
llvm::DIType TC = getTypeOrNull(Ty);
- if (TC.isType() && TC.isForwardDecl())
+ if (TC && TC.isForwardDecl())
ReplaceMap.push_back(std::make_pair(TyPtr, static_cast<llvm::Value*>(TC)));
else if (ObjCInterfaceDecl* Decl = getObjCInterfaceDecl(Ty)) {
// Interface types may have elements added to them by a
@@ -2166,12 +2166,12 @@ llvm::DIType CGDebugInfo::getOrCreateLim
// We may have cached a forward decl when we could have created
// a non-forward decl. Go ahead and create a non-forward decl
// now.
- if (T.isType() && !T.isForwardDecl()) return T;
+ if (T && !T.isForwardDecl()) return T;
// Otherwise create the type.
llvm::DIType Res = CreateLimitedTypeNode(Ty, Unit);
- if (T.isType() && T.isForwardDecl())
+ if (T && T.isForwardDecl())
ReplaceMap.push_back(std::make_pair(Ty.getAsOpaquePtr(),
static_cast<llvm::Value*>(T)));
@@ -2773,7 +2773,7 @@ void CGDebugInfo::EmitDeclareOfAutoVaria
llvm::DIType CGDebugInfo::CreateSelfType(const QualType &QualTy,
llvm::DIType Ty) {
llvm::DIType CachedTy = getTypeOrNull(QualTy);
- if (CachedTy.isType()) Ty = CachedTy;
+ if (CachedTy) Ty = CachedTy;
else DEBUG(llvm::dbgs() << "No cached type for self.");
return DBuilder.createObjectPointerType(Ty);
}
@@ -3207,7 +3207,7 @@ void CGDebugInfo::finalize() {
RepTy = llvm::DIType(cast<llvm::MDNode>(V));
}
- if (Ty.isType() && Ty.isForwardDecl() && RepTy.isType())
+ if (Ty && Ty.isForwardDecl() && RepTy)
Ty.replaceAllUsesWith(RepTy);
}
More information about the cfe-commits
mailing list