summaryrefslogtreecommitdiffstats
path: root/clang/lib
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-12-13 23:51:08 +0000
committerDan Gohman <gohman@apple.com>2010-12-13 23:51:08 +0000
commitc2897692c344d44c2a068b2c2228553ec0de5fab (patch)
tree8b65750654e14fed455218653ab29410e2070c27 /clang/lib
parent3e5648896e87caf09026e1ed64aa55b0bfe86b66 (diff)
downloadbcm5719-llvm-c2897692c344d44c2a068b2c2228553ec0de5fab.tar.gz
bcm5719-llvm-c2897692c344d44c2a068b2c2228553ec0de5fab.zip
Implement CodeGen support for the may_alias attribute.
llvm-svn: 121734
Diffstat (limited to 'clang/lib')
-rw-r--r--clang/lib/CodeGen/CodeGenTBAA.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CodeGenTBAA.cpp b/clang/lib/CodeGen/CodeGenTBAA.cpp
index d4d71a75574..61dc41ed450 100644
--- a/clang/lib/CodeGen/CodeGenTBAA.cpp
+++ b/clang/lib/CodeGen/CodeGenTBAA.cpp
@@ -77,8 +77,29 @@ llvm::MDNode *CodeGenTBAA::getTBAAInfoForNamedType(llvm::StringRef NameStr,
return llvm::MDNode::get(VMContext, Ops, llvm::array_lengthof(Ops) - !Flags);
}
+static bool TypeHasMayAlias(QualType QTy) {
+ // Tagged types have declarations, and therefore may have attributes.
+ if (const TagType *TTy = dyn_cast<TagType>(QTy))
+ return TTy->getDecl()->hasAttr<MayAliasAttr>();
+
+ // Typedef types have declarations, and therefore may have attributes.
+ if (const TypedefType *TTy = dyn_cast<TypedefType>(QTy)) {
+ if (TTy->getDecl()->hasAttr<MayAliasAttr>())
+ return true;
+ // Also, their underlying types may have relevant attributes.
+ return TypeHasMayAlias(TTy->desugar());
+ }
+
+ return false;
+}
+
llvm::MDNode *
CodeGenTBAA::getTBAAInfo(QualType QTy) {
+ // If the type has the may_alias attribute (even on a typedef), it is
+ // effectively in the general char alias class.
+ if (TypeHasMayAlias(QTy))
+ return getChar();
+
Type *Ty = Context.getCanonicalType(QTy).getTypePtr();
if (llvm::MDNode *N = MetadataCache[Ty])
OpenPOWER on IntegriCloud