blob: f0c9e06f02bdd3374932d66969425a5c04fa8974 [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
15#ifndef CLANG_CODEGEN_CODEGENTBAA_H
16#define CLANG_CODEGEN_CODEGENTBAA_H
17
Chris Lattner686775d2011-07-20 06:58:45 +000018#include "clang/Basic/LLVM.h"
Dan Gohman3d5aff52010-10-14 23:06:10 +000019#include "llvm/ADT/DenseMap.h"
Chandler Carruth3b844ba2013-01-02 11:45:17 +000020#include "llvm/IR/MDBuilder.h"
Dan Gohman3d5aff52010-10-14 23:06:10 +000021
22namespace llvm {
23 class LLVMContext;
24 class MDNode;
25}
26
27namespace clang {
28 class ASTContext;
Kostya Serebryanyc9fe6052012-04-24 06:57:01 +000029 class CodeGenOptions;
Dan Gohman3d5aff52010-10-14 23:06:10 +000030 class LangOptions;
Peter Collingbourne14110472011-01-13 18:57:25 +000031 class MangleContext;
Dan Gohman3d5aff52010-10-14 23:06:10 +000032 class QualType;
33 class Type;
34
35namespace CodeGen {
Dan Gohman3d5aff52010-10-14 23:06:10 +000036 class CGRecordLayout;
37
Manman Renb37a73d2013-04-04 21:53:22 +000038 struct TBAAPathTag {
39 TBAAPathTag(const Type *B, const llvm::MDNode *A, uint64_t O)
40 : BaseT(B), AccessN(A), Offset(O) {}
41 const Type *BaseT;
42 const llvm::MDNode *AccessN;
43 uint64_t Offset;
44 };
45
Dan Gohman3d5aff52010-10-14 23:06:10 +000046/// CodeGenTBAA - This class organizes the cross-module state that is used
47/// while lowering AST types to LLVM types.
48class CodeGenTBAA {
49 ASTContext &Context;
Kostya Serebryanyc9fe6052012-04-24 06:57:01 +000050 const CodeGenOptions &CodeGenOpts;
Dan Gohman3d5aff52010-10-14 23:06:10 +000051 const LangOptions &Features;
Dan Gohman0b5c4fc2010-10-15 20:23:12 +000052 MangleContext &MContext;
Dan Gohman3d5aff52010-10-14 23:06:10 +000053
Duncan Sands2d7cb062012-04-15 18:04:54 +000054 // MDHelper - Helper for creating metadata.
55 llvm::MDBuilder MDHelper;
56
Manman Renb37a73d2013-04-04 21:53:22 +000057 /// MetadataCache - This maps clang::Types to scalar llvm::MDNodes describing
58 /// them.
Dan Gohman3d5aff52010-10-14 23:06:10 +000059 llvm::DenseMap<const Type *, llvm::MDNode *> MetadataCache;
Manman Renb37a73d2013-04-04 21:53:22 +000060 /// This maps clang::Types to a struct node in the type DAG.
61 llvm::DenseMap<const Type *, llvm::MDNode *> StructTypeMetadataCache;
62 /// This maps TBAAPathTags to a tag node.
63 llvm::DenseMap<TBAAPathTag, llvm::MDNode *> StructTagMetadataCache;
Manman Renca835182013-04-11 23:02:56 +000064 /// This maps a scalar type to a scalar tag node.
65 llvm::DenseMap<const llvm::MDNode *, llvm::MDNode *> ScalarTagMetadataCache;
Dan Gohman3d5aff52010-10-14 23:06:10 +000066
Dan Gohmanb22c7dc2012-09-28 21:58:29 +000067 /// StructMetadataCache - This maps clang::Types to llvm::MDNodes describing
68 /// them for struct assignments.
69 llvm::DenseMap<const Type *, llvm::MDNode *> StructMetadataCache;
70
Dan Gohman3d5aff52010-10-14 23:06:10 +000071 llvm::MDNode *Root;
Dan Gohman3d5aff52010-10-14 23:06:10 +000072 llvm::MDNode *Char;
73
Dan Gohman224d7592010-10-25 21:48:30 +000074 /// getRoot - This is the mdnode for the root of the metadata type graph
75 /// for this translation unit.
76 llvm::MDNode *getRoot();
77
78 /// getChar - This is the mdnode for "char", which is special, and any types
79 /// considered to be equivalent to it.
80 llvm::MDNode *getChar();
81
Dan Gohmanb22c7dc2012-09-28 21:58:29 +000082 /// CollectFields - Collect information about the fields of a type for
83 /// !tbaa.struct metadata formation. Return false for an unsupported type.
84 bool CollectFields(uint64_t BaseOffset,
85 QualType Ty,
86 SmallVectorImpl<llvm::MDBuilder::TBAAStructField> &Fields,
87 bool MayAlias);
88
Manman Renca835182013-04-11 23:02:56 +000089 /// A wrapper function to create a scalar type. For struct-path aware TBAA,
90 /// the scalar type has the same format as the struct type: name, offset,
91 /// pointer to another node in the type DAG.
92 llvm::MDNode *createTBAAScalarType(StringRef Name, llvm::MDNode *Parent);
93
Dan Gohman3d5aff52010-10-14 23:06:10 +000094public:
95 CodeGenTBAA(ASTContext &Ctx, llvm::LLVMContext &VMContext,
Kostya Serebryanyc9fe6052012-04-24 06:57:01 +000096 const CodeGenOptions &CGO,
Dan Gohman0b5c4fc2010-10-15 20:23:12 +000097 const LangOptions &Features,
98 MangleContext &MContext);
Dan Gohman3d5aff52010-10-14 23:06:10 +000099 ~CodeGenTBAA();
100
Dan Gohman565cc442010-10-21 18:49:12 +0000101 /// getTBAAInfo - Get the TBAA MDNode to be used for a dereference
102 /// of the given type.
Dan Gohman3d5aff52010-10-14 23:06:10 +0000103 llvm::MDNode *getTBAAInfo(QualType QTy);
Kostya Serebryany8cb4a072012-03-26 17:03:51 +0000104
105 /// getTBAAInfoForVTablePtr - Get the TBAA MDNode to be used for a
106 /// dereference of a vtable pointer.
107 llvm::MDNode *getTBAAInfoForVTablePtr();
Dan Gohmanb22c7dc2012-09-28 21:58:29 +0000108
109 /// getTBAAStructInfo - Get the TBAAStruct MDNode to be used for a memcpy of
110 /// the given type.
111 llvm::MDNode *getTBAAStructInfo(QualType QTy);
Manman Renb37a73d2013-04-04 21:53:22 +0000112
113 /// Get the MDNode in the type DAG for given struct type QType.
114 llvm::MDNode *getTBAAStructTypeInfo(QualType QType);
Manman Renca835182013-04-11 23:02:56 +0000115 /// Get the tag MDNode for a given base type, the actual scalar access MDNode
Manman Renb37a73d2013-04-04 21:53:22 +0000116 /// and offset into the base type.
117 llvm::MDNode *getTBAAStructTagInfo(QualType BaseQType,
118 llvm::MDNode *AccessNode, uint64_t Offset);
Manman Renca835182013-04-11 23:02:56 +0000119
120 /// Get the sclar tag MDNode for a given scalar type.
121 llvm::MDNode *getTBAAScalarTagInfo(llvm::MDNode *AccessNode);
Dan Gohman3d5aff52010-10-14 23:06:10 +0000122};
123
124} // end namespace CodeGen
125} // end namespace clang
126
Manman Renb37a73d2013-04-04 21:53:22 +0000127namespace llvm {
128
129template<> struct DenseMapInfo<clang::CodeGen::TBAAPathTag> {
130 static clang::CodeGen::TBAAPathTag getEmptyKey() {
131 return clang::CodeGen::TBAAPathTag(
132 DenseMapInfo<const clang::Type *>::getEmptyKey(),
133 DenseMapInfo<const MDNode *>::getEmptyKey(),
134 DenseMapInfo<uint64_t>::getEmptyKey());
135 }
136
137 static clang::CodeGen::TBAAPathTag getTombstoneKey() {
138 return clang::CodeGen::TBAAPathTag(
139 DenseMapInfo<const clang::Type *>::getTombstoneKey(),
140 DenseMapInfo<const MDNode *>::getTombstoneKey(),
141 DenseMapInfo<uint64_t>::getTombstoneKey());
142 }
143
144 static unsigned getHashValue(const clang::CodeGen::TBAAPathTag &Val) {
145 return DenseMapInfo<const clang::Type *>::getHashValue(Val.BaseT) ^
146 DenseMapInfo<const MDNode *>::getHashValue(Val.AccessN) ^
147 DenseMapInfo<uint64_t>::getHashValue(Val.Offset);
148 }
149
150 static bool isEqual(const clang::CodeGen::TBAAPathTag &LHS,
151 const clang::CodeGen::TBAAPathTag &RHS) {
152 return LHS.BaseT == RHS.BaseT &&
153 LHS.AccessN == RHS.AccessN &&
154 LHS.Offset == RHS.Offset;
155 }
156};
157
158} // end namespace llvm
159
Dan Gohman3d5aff52010-10-14 23:06:10 +0000160#endif