blob: ddb063d9e88a2dd449064072664ee5c83486498c [file] [log] [blame]
Dan Gohman3d5aff52010-10-14 23:06:10 +00001//===--- CodeGenTBAA.h - TBAA information for LLVM CodeGen ------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
Dan Gohman565cc442010-10-21 18:49:12 +000010// This is the code that manages TBAA information and defines the TBAA policy
11// for the optimizer to use.
Dan Gohman3d5aff52010-10-14 23:06:10 +000012//
13//===----------------------------------------------------------------------===//
14
Stephen Hines176edba2014-12-01 14:53:08 -080015#ifndef LLVM_CLANG_LIB_CODEGEN_CODEGENTBAA_H
16#define LLVM_CLANG_LIB_CODEGEN_CODEGENTBAA_H
Dan Gohman3d5aff52010-10-14 23:06:10 +000017
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -070018#include "clang/AST/Type.h"
Chris Lattner686775d2011-07-20 06:58:45 +000019#include "clang/Basic/LLVM.h"
Dan Gohman3d5aff52010-10-14 23:06:10 +000020#include "llvm/ADT/DenseMap.h"
Chandler Carruth3b844ba2013-01-02 11:45:17 +000021#include "llvm/IR/MDBuilder.h"
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -070022#include "llvm/IR/Metadata.h"
Dan Gohman3d5aff52010-10-14 23:06:10 +000023
24namespace clang {
25 class ASTContext;
Kostya Serebryanyc9fe6052012-04-24 06:57:01 +000026 class CodeGenOptions;
Dan Gohman3d5aff52010-10-14 23:06:10 +000027 class LangOptions;
Peter Collingbourne14110472011-01-13 18:57:25 +000028 class MangleContext;
Dan Gohman3d5aff52010-10-14 23:06:10 +000029 class QualType;
30 class Type;
31
32namespace CodeGen {
Dan Gohman3d5aff52010-10-14 23:06:10 +000033 class CGRecordLayout;
34
Manman Renb37a73d2013-04-04 21:53:22 +000035 struct TBAAPathTag {
36 TBAAPathTag(const Type *B, const llvm::MDNode *A, uint64_t O)
37 : BaseT(B), AccessN(A), Offset(O) {}
38 const Type *BaseT;
39 const llvm::MDNode *AccessN;
40 uint64_t Offset;
41 };
42
Dan Gohman3d5aff52010-10-14 23:06:10 +000043/// CodeGenTBAA - This class organizes the cross-module state that is used
44/// while lowering AST types to LLVM types.
45class CodeGenTBAA {
46 ASTContext &Context;
Kostya Serebryanyc9fe6052012-04-24 06:57:01 +000047 const CodeGenOptions &CodeGenOpts;
Dan Gohman3d5aff52010-10-14 23:06:10 +000048 const LangOptions &Features;
Dan Gohman0b5c4fc2010-10-15 20:23:12 +000049 MangleContext &MContext;
Dan Gohman3d5aff52010-10-14 23:06:10 +000050
Duncan Sands2d7cb062012-04-15 18:04:54 +000051 // MDHelper - Helper for creating metadata.
52 llvm::MDBuilder MDHelper;
53
Manman Renb37a73d2013-04-04 21:53:22 +000054 /// MetadataCache - This maps clang::Types to scalar llvm::MDNodes describing
55 /// them.
Dan Gohman3d5aff52010-10-14 23:06:10 +000056 llvm::DenseMap<const Type *, llvm::MDNode *> MetadataCache;
Manman Renb37a73d2013-04-04 21:53:22 +000057 /// This maps clang::Types to a struct node in the type DAG.
58 llvm::DenseMap<const Type *, llvm::MDNode *> StructTypeMetadataCache;
59 /// This maps TBAAPathTags to a tag node.
60 llvm::DenseMap<TBAAPathTag, llvm::MDNode *> StructTagMetadataCache;
Manman Renca835182013-04-11 23:02:56 +000061 /// This maps a scalar type to a scalar tag node.
62 llvm::DenseMap<const llvm::MDNode *, llvm::MDNode *> ScalarTagMetadataCache;
Dan Gohman3d5aff52010-10-14 23:06:10 +000063
Dan Gohmanb22c7dc2012-09-28 21:58:29 +000064 /// StructMetadataCache - This maps clang::Types to llvm::MDNodes describing
65 /// them for struct assignments.
66 llvm::DenseMap<const Type *, llvm::MDNode *> StructMetadataCache;
67
Dan Gohman3d5aff52010-10-14 23:06:10 +000068 llvm::MDNode *Root;
Dan Gohman3d5aff52010-10-14 23:06:10 +000069 llvm::MDNode *Char;
70
Dan Gohman224d7592010-10-25 21:48:30 +000071 /// getRoot - This is the mdnode for the root of the metadata type graph
72 /// for this translation unit.
73 llvm::MDNode *getRoot();
74
75 /// getChar - This is the mdnode for "char", which is special, and any types
76 /// considered to be equivalent to it.
77 llvm::MDNode *getChar();
78
Dan Gohmanb22c7dc2012-09-28 21:58:29 +000079 /// CollectFields - Collect information about the fields of a type for
80 /// !tbaa.struct metadata formation. Return false for an unsupported type.
81 bool CollectFields(uint64_t BaseOffset,
82 QualType Ty,
83 SmallVectorImpl<llvm::MDBuilder::TBAAStructField> &Fields,
84 bool MayAlias);
85
Manman Renca835182013-04-11 23:02:56 +000086 /// A wrapper function to create a scalar type. For struct-path aware TBAA,
87 /// the scalar type has the same format as the struct type: name, offset,
88 /// pointer to another node in the type DAG.
89 llvm::MDNode *createTBAAScalarType(StringRef Name, llvm::MDNode *Parent);
90
Dan Gohman3d5aff52010-10-14 23:06:10 +000091public:
92 CodeGenTBAA(ASTContext &Ctx, llvm::LLVMContext &VMContext,
Kostya Serebryanyc9fe6052012-04-24 06:57:01 +000093 const CodeGenOptions &CGO,
Dan Gohman0b5c4fc2010-10-15 20:23:12 +000094 const LangOptions &Features,
95 MangleContext &MContext);
Dan Gohman3d5aff52010-10-14 23:06:10 +000096 ~CodeGenTBAA();
97
Dan Gohman565cc442010-10-21 18:49:12 +000098 /// getTBAAInfo - Get the TBAA MDNode to be used for a dereference
99 /// of the given type.
Dan Gohman3d5aff52010-10-14 23:06:10 +0000100 llvm::MDNode *getTBAAInfo(QualType QTy);
Kostya Serebryany8cb4a072012-03-26 17:03:51 +0000101
102 /// getTBAAInfoForVTablePtr - Get the TBAA MDNode to be used for a
103 /// dereference of a vtable pointer.
104 llvm::MDNode *getTBAAInfoForVTablePtr();
Dan Gohmanb22c7dc2012-09-28 21:58:29 +0000105
106 /// getTBAAStructInfo - Get the TBAAStruct MDNode to be used for a memcpy of
107 /// the given type.
108 llvm::MDNode *getTBAAStructInfo(QualType QTy);
Manman Renb37a73d2013-04-04 21:53:22 +0000109
110 /// Get the MDNode in the type DAG for given struct type QType.
111 llvm::MDNode *getTBAAStructTypeInfo(QualType QType);
Manman Renca835182013-04-11 23:02:56 +0000112 /// Get the tag MDNode for a given base type, the actual scalar access MDNode
Manman Renb37a73d2013-04-04 21:53:22 +0000113 /// and offset into the base type.
114 llvm::MDNode *getTBAAStructTagInfo(QualType BaseQType,
115 llvm::MDNode *AccessNode, uint64_t Offset);
Manman Renca835182013-04-11 23:02:56 +0000116
Michael Gottesman9aaee922013-06-08 00:27:19 +0000117 /// Get the scalar tag MDNode for a given scalar type.
Manman Renca835182013-04-11 23:02:56 +0000118 llvm::MDNode *getTBAAScalarTagInfo(llvm::MDNode *AccessNode);
Dan Gohman3d5aff52010-10-14 23:06:10 +0000119};
120
121} // end namespace CodeGen
122} // end namespace clang
123
Manman Renb37a73d2013-04-04 21:53:22 +0000124namespace llvm {
125
126template<> struct DenseMapInfo<clang::CodeGen::TBAAPathTag> {
127 static clang::CodeGen::TBAAPathTag getEmptyKey() {
128 return clang::CodeGen::TBAAPathTag(
129 DenseMapInfo<const clang::Type *>::getEmptyKey(),
130 DenseMapInfo<const MDNode *>::getEmptyKey(),
131 DenseMapInfo<uint64_t>::getEmptyKey());
132 }
133
134 static clang::CodeGen::TBAAPathTag getTombstoneKey() {
135 return clang::CodeGen::TBAAPathTag(
136 DenseMapInfo<const clang::Type *>::getTombstoneKey(),
137 DenseMapInfo<const MDNode *>::getTombstoneKey(),
138 DenseMapInfo<uint64_t>::getTombstoneKey());
139 }
140
141 static unsigned getHashValue(const clang::CodeGen::TBAAPathTag &Val) {
142 return DenseMapInfo<const clang::Type *>::getHashValue(Val.BaseT) ^
143 DenseMapInfo<const MDNode *>::getHashValue(Val.AccessN) ^
144 DenseMapInfo<uint64_t>::getHashValue(Val.Offset);
145 }
146
147 static bool isEqual(const clang::CodeGen::TBAAPathTag &LHS,
148 const clang::CodeGen::TBAAPathTag &RHS) {
149 return LHS.BaseT == RHS.BaseT &&
150 LHS.AccessN == RHS.AccessN &&
151 LHS.Offset == RHS.Offset;
152 }
153};
154
155} // end namespace llvm
156
Dan Gohman3d5aff52010-10-14 23:06:10 +0000157#endif