]> granicus.if.org Git - clang/commitdiff
Add some more comments.
authorDan Gohman <gohman@apple.com>
Thu, 21 Oct 2010 18:49:12 +0000 (18:49 +0000)
committerDan Gohman <gohman@apple.com>
Thu, 21 Oct 2010 18:49:12 +0000 (18:49 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@117043 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/CodeGenTBAA.cpp
lib/CodeGen/CodeGenTBAA.h

index f8772674ae049a55c20a4a157862092f0d8cbd21..fb551b9ac6a4755dd3dd479b6c61c3970a99d3b1 100644 (file)
@@ -7,8 +7,8 @@
 //
 //===----------------------------------------------------------------------===//
 //
-// This is the code that manages TBAA information. Relevant standards
-// text includes:
+// This is the code that manages TBAA information and defines the TBAA policy
+// for the optimizer to use. Relevant standards text includes:
 //
 //   C99 6.5p7
 //   C++ [basic.lval] (p10 in n3126, p15 in some earlier versions)
@@ -32,6 +32,8 @@ CodeGenTBAA::CodeGenTBAA(ASTContext &Ctx, llvm::LLVMContext& VMContext,
 CodeGenTBAA::~CodeGenTBAA() {
 }
 
+/// getTBAAInfoForNamedType - Create a TBAA tree node with the given string
+/// as its identifier, and the given Parent node as its tree parent.
 llvm::MDNode *CodeGenTBAA::getTBAAInfoForNamedType(llvm::StringRef NameStr,
                                                    llvm::MDNode *Parent) {
   llvm::Value *Ops[] = {
@@ -49,12 +51,22 @@ CodeGenTBAA::getTBAAInfo(QualType QTy) {
   if (llvm::MDNode *N = MetadataCache[Ty])
     return N;
 
+  // If this is our first node, create the initial tree.
   if (!Root) {
+    // Define the root of the tree. This identifies the tree, so that
+    // if our LLVM IR is linked with LLVM IR from a different front-end
+    // (or a different version of this front-end), their TBAA trees will
+    // remain distinct, and the optimizer will treat them conservatively.
     Root = getTBAAInfoForNamedType("Experimental TBAA", 0);
+
+    // Define the root of the tree for user-accessible memory. C and C++
+    // give special powers to char and certain similar types. However,
+    // these special powers only cover user-accessible memory, and doesn't
+    // include things like vtables.
     Char = getTBAAInfoForNamedType("omnipotent char", Root);
   }
 
-  // For now, just emit a very minimal tree.
+  // Handle builtin types.
   if (const BuiltinType *BTy = dyn_cast<BuiltinType>(Ty)) {
     switch (BTy->getKind()) {
     // Character types are special and can alias anything.
@@ -89,6 +101,7 @@ CodeGenTBAA::getTBAAInfo(QualType QTy) {
     }
   }
 
+  // Handle pointers.
   // TODO: Implement C++'s type "similarity" and consider dis-"similar"
   // pointers distinct.
   if (Ty->isPointerType())
index cdb910be155c8271a7225e5af548829785d89840..e49d336d381d4399e331c24d9781737178cce57a 100644 (file)
@@ -7,7 +7,8 @@
 //
 //===----------------------------------------------------------------------===//
 //
-// This is the code that manages TBAA information.
+// This is the code that manages TBAA information and defines the TBAA policy
+// for the optimizer to use.
 //
 //===----------------------------------------------------------------------===//
 
@@ -60,6 +61,8 @@ public:
               MangleContext &MContext);
   ~CodeGenTBAA();
 
+  /// getTBAAInfo - Get the TBAA MDNode to be used for a dereference
+  /// of the given type.
   llvm::MDNode *getTBAAInfo(QualType QTy);
 };