blob: af6ca82f0c4e31b455e1aecda1157f91ae4a0dd9 [file] [log] [blame]
Anders Carlsson45372a62009-07-23 03:17:50 +00001//===--- CGRecordLayoutBuilder.cpp - Record builder helper ------*- 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//
10// This is a helper class used to build CGRecordLayout objects and LLVM types.
11//
12//===----------------------------------------------------------------------===//
13
14#include "CGRecordLayoutBuilder.h"
15
16#include "clang/AST/ASTContext.h"
17#include "clang/AST/Attr.h"
18#include "clang/AST/DeclCXX.h"
19#include "clang/AST/Expr.h"
20#include "clang/AST/RecordLayout.h"
21#include "CodeGenTypes.h"
22#include "llvm/DerivedTypes.h"
23#include "llvm/Target/TargetData.h"
24
25
26using namespace clang;
27using namespace CodeGen;
28
29void CGRecordLayoutBuilder::Layout(const RecordDecl *D) {
Anders Carlsson5a6e3982009-07-23 03:43:54 +000030 if (D->isUnion()) {
31 LayoutUnion(D);
32 return;
33 }
34
Anders Carlsson45372a62009-07-23 03:17:50 +000035 if (const PackedAttr* PA = D->getAttr<PackedAttr>())
Anders Carlsson4b5584b2009-07-23 17:24:40 +000036 Packed = PA->getAlignment();
Anders Carlsson45372a62009-07-23 03:17:50 +000037
38 if (LayoutFields(D))
39 return;
40
Anders Carlsson45372a62009-07-23 03:17:50 +000041 // We weren't able to layout the struct. Try again with a packed struct
Anders Carlsson4b5584b2009-07-23 17:24:40 +000042 Packed = true;
Anders Carlsson45372a62009-07-23 03:17:50 +000043 AlignmentAsLLVMStruct = 1;
44 FieldTypes.clear();
45 FieldInfos.clear();
46 LLVMFields.clear();
47 LLVMBitFields.clear();
48
49 LayoutFields(D);
50}
51
52void CGRecordLayoutBuilder::LayoutBitField(const FieldDecl *D,
53 uint64_t FieldOffset) {
54 uint64_t FieldSize =
55 D->getBitWidth()->EvaluateAsInt(Types.getContext()).getZExtValue();
56
57 if (FieldSize == 0)
58 return;
59
60 uint64_t NextFieldOffset = getNextFieldOffsetInBytes() * 8;
61 unsigned NumBytesToAppend;
62
63 if (FieldOffset < NextFieldOffset) {
64 assert(BitsAvailableInLastField && "Bitfield size mismatch!");
65 assert(!FieldInfos.empty() && "Field infos can't be empty!");
66
67 // The bitfield begins in the previous bit-field.
68 NumBytesToAppend =
69 llvm::RoundUpToAlignment(FieldSize - BitsAvailableInLastField, 8) / 8;
70 } else {
71 assert(FieldOffset % 8 == 0 && "Field offset not aligned correctly");
72
73 // Append padding if necessary.
74 AppendBytes((FieldOffset - NextFieldOffset) / 8);
75
76 NumBytesToAppend =
77 llvm::RoundUpToAlignment(FieldSize, 8) / 8;
78
79 assert(NumBytesToAppend && "No bytes to append!");
80 }
81
82 const llvm::Type *Ty = Types.ConvertTypeForMemRecursive(D->getType());
83 uint64_t TypeSizeInBits = getTypeSizeInBytes(Ty) * 8;
84
Anders Carlsson8330cee2009-07-23 17:01:21 +000085 LLVMBitFields.push_back(LLVMBitFieldInfo(D, FieldOffset / TypeSizeInBits,
86 FieldOffset % TypeSizeInBits,
Anders Carlsson45372a62009-07-23 03:17:50 +000087 FieldSize));
88
89 AppendBytes(NumBytesToAppend);
90
Anders Carlssonfaaec222009-07-23 21:16:33 +000091 BitsAvailableInLastField =
92 getNextFieldOffsetInBytes() * 8 - (FieldOffset + FieldSize);
Anders Carlsson45372a62009-07-23 03:17:50 +000093}
94
95bool CGRecordLayoutBuilder::LayoutField(const FieldDecl *D,
96 uint64_t FieldOffset) {
Anders Carlsson4b5584b2009-07-23 17:24:40 +000097 bool FieldPacked = Packed;
Anders Carlsson45372a62009-07-23 03:17:50 +000098
99 // FIXME: Should this override struct packing? Probably we want to
100 // take the minimum?
101 if (const PackedAttr *PA = D->getAttr<PackedAttr>())
Anders Carlsson4b5584b2009-07-23 17:24:40 +0000102 FieldPacked = PA->getAlignment();
Anders Carlsson45372a62009-07-23 03:17:50 +0000103
104 // If the field is packed, then we need a packed struct.
Anders Carlsson4b5584b2009-07-23 17:24:40 +0000105 if (!Packed && FieldPacked)
Anders Carlsson45372a62009-07-23 03:17:50 +0000106 return false;
107
108 if (D->isBitField()) {
109 // We must use packed structs for unnamed bit fields since they
110 // don't affect the struct alignment.
Anders Carlsson4b5584b2009-07-23 17:24:40 +0000111 if (!Packed && !D->getDeclName())
Anders Carlsson45372a62009-07-23 03:17:50 +0000112 return false;
113
114 LayoutBitField(D, FieldOffset);
115 return true;
116 }
117
118 const llvm::Type *Ty = Types.ConvertTypeForMemRecursive(D->getType());
119
120 // Check if the field is aligned.
121 if (const AlignedAttr *PA = D->getAttr<AlignedAttr>()) {
122 unsigned FieldAlign = PA->getAlignment();
123
Anders Carlsson4b5584b2009-07-23 17:24:40 +0000124 if (!Packed && getTypeAlignment(Ty) > FieldAlign)
Anders Carlsson45372a62009-07-23 03:17:50 +0000125 return false;
126 }
127
128 assert(FieldOffset % 8 == 0 && "FieldOffset is not on a byte boundary!");
129
130 uint64_t FieldOffsetInBytes = FieldOffset / 8;
131
132 // Append padding if necessary.
133 AppendPadding(FieldOffsetInBytes, Ty);
134
135 uint64_t FieldSizeInBytes = getTypeSizeInBytes(Ty);
136
137 // Now append the field.
138 LLVMFields.push_back(LLVMFieldInfo(D, FieldTypes.size()));
139 AppendField(FieldOffsetInBytes, FieldSizeInBytes, Ty);
140
141 return true;
142}
143
Anders Carlsson5a6e3982009-07-23 03:43:54 +0000144void CGRecordLayoutBuilder::LayoutUnion(const RecordDecl *D) {
145 assert(D->isUnion() && "Can't call LayoutUnion on a non-union record!");
146
147 const ASTRecordLayout &Layout = Types.getContext().getASTRecordLayout(D);
148
149 const llvm::Type *Ty = 0;
150 uint64_t Size = 0;
151 unsigned Align = 0;
152
153 unsigned FieldNo = 0;
154 for (RecordDecl::field_iterator Field = D->field_begin(),
155 FieldEnd = D->field_end(); Field != FieldEnd; ++Field, ++FieldNo) {
156 assert(Layout.getFieldOffset(FieldNo) == 0 &&
157 "Union field offset did not start at the beginning of record!");
Anders Carlsson2cc8f172009-07-23 04:00:39 +0000158
159 if (Field->isBitField()) {
160 uint64_t FieldSize =
161 Field->getBitWidth()->EvaluateAsInt(Types.getContext()).getZExtValue();
162
163 // Ignore zero sized bit fields.
164 if (FieldSize == 0)
165 continue;
Anders Carlsson94ae95f2009-07-23 22:52:34 +0000166
167 // Add the bit field info.
168 Types.addBitFieldInfo(*Field, 0, 0, FieldSize);
169 } else
170 Types.addFieldInfo(*Field, 0);
Anders Carlsson5a6e3982009-07-23 03:43:54 +0000171
172 const llvm::Type *FieldTy =
173 Types.ConvertTypeForMemRecursive(Field->getType());
Anders Carlsson177d4d82009-07-23 21:52:03 +0000174 unsigned FieldAlign = Types.getTargetData().getABITypeAlignment(FieldTy);
175 uint64_t FieldSize = Types.getTargetData().getTypeAllocSize(FieldTy);
Anders Carlsson5a6e3982009-07-23 03:43:54 +0000176
177 if (FieldAlign < Align)
178 continue;
179
180 if (FieldAlign > Align || FieldSize > Size) {
181 Ty = FieldTy;
182 Align = FieldAlign;
183 Size = FieldSize;
184 }
185 }
186
187 // Now add our field.
Anders Carlsson94ae95f2009-07-23 22:52:34 +0000188 if (Ty)
Anders Carlsson5a6e3982009-07-23 03:43:54 +0000189 AppendField(0, Size, Ty);
190
191 // Append tail padding.
192 if (Layout.getSize() / 8 > Size)
193 AppendPadding(Layout.getSize() / 8, Align);
194}
195
Anders Carlsson45372a62009-07-23 03:17:50 +0000196bool CGRecordLayoutBuilder::LayoutFields(const RecordDecl *D) {
197 assert(!D->isUnion() && "Can't call LayoutFields on a union!");
198
Anders Carlsson5a6e3982009-07-23 03:43:54 +0000199 const ASTRecordLayout &Layout = Types.getContext().getASTRecordLayout(D);
Anders Carlsson45372a62009-07-23 03:17:50 +0000200
201 unsigned FieldNo = 0;
202 for (RecordDecl::field_iterator Field = D->field_begin(),
203 FieldEnd = D->field_end(); Field != FieldEnd; ++Field, ++FieldNo) {
204 if (!LayoutField(*Field, Layout.getFieldOffset(FieldNo))) {
Anders Carlsson4b5584b2009-07-23 17:24:40 +0000205 assert(!Packed &&
Anders Carlsson45372a62009-07-23 03:17:50 +0000206 "Could not layout fields even with a packed LLVM struct!");
207 return false;
208 }
209 }
210
211 // Append tail padding if necessary.
212 if (Layout.getSize() / 8 > getNextFieldOffsetInBytes())
213 AppendPadding(Layout.getSize() / 8, AlignmentAsLLVMStruct);
214
215 return true;
216}
217
218void CGRecordLayoutBuilder::AppendField(uint64_t FieldOffsetInBytes,
219 uint64_t FieldSizeInBytes,
220 const llvm::Type *FieldTy) {
221 AlignmentAsLLVMStruct = std::max(AlignmentAsLLVMStruct,
222 getTypeAlignment(FieldTy));
223
224 FieldTypes.push_back(FieldTy);
225 FieldInfos.push_back(FieldInfo(FieldOffsetInBytes, FieldSizeInBytes));
226
227 BitsAvailableInLastField = 0;
228}
229
230void
231CGRecordLayoutBuilder::AppendPadding(uint64_t FieldOffsetInBytes,
232 const llvm::Type *FieldTy) {
233 AppendPadding(FieldOffsetInBytes, getTypeAlignment(FieldTy));
234}
235
236void CGRecordLayoutBuilder::AppendPadding(uint64_t FieldOffsetInBytes,
237 unsigned FieldAlignment) {
238 uint64_t NextFieldOffsetInBytes = getNextFieldOffsetInBytes();
239 assert(NextFieldOffsetInBytes <= FieldOffsetInBytes &&
240 "Incorrect field layout!");
241
242 // Round up the field offset to the alignment of the field type.
243 uint64_t AlignedNextFieldOffsetInBytes =
244 llvm::RoundUpToAlignment(NextFieldOffsetInBytes, FieldAlignment);
245
246 if (AlignedNextFieldOffsetInBytes < FieldOffsetInBytes) {
247 // Even with alignment, the field offset is not at the right place,
248 // insert padding.
249 uint64_t PaddingInBytes = FieldOffsetInBytes - NextFieldOffsetInBytes;
250
251 AppendBytes(PaddingInBytes);
252 }
253}
254
255void CGRecordLayoutBuilder::AppendBytes(uint64_t NumBytes) {
256 if (NumBytes == 0)
257 return;
258
259 const llvm::Type *Ty = llvm::Type::Int8Ty;
260 if (NumBytes > 1) {
261 // FIXME: Use a VMContext.
262 Ty = llvm::ArrayType::get(Ty, NumBytes);
263 }
264
265 // Append the padding field
266 AppendField(getNextFieldOffsetInBytes(), NumBytes, Ty);
267}
268
269uint64_t CGRecordLayoutBuilder::getNextFieldOffsetInBytes() const {
270 if (FieldInfos.empty())
271 return 0;
272
273 const FieldInfo &LastInfo = FieldInfos.back();
274 return LastInfo.OffsetInBytes + LastInfo.SizeInBytes;
275}
276
277unsigned CGRecordLayoutBuilder::getTypeAlignment(const llvm::Type *Ty) const {
Anders Carlsson4b5584b2009-07-23 17:24:40 +0000278 if (Packed)
Anders Carlsson45372a62009-07-23 03:17:50 +0000279 return 1;
Anders Carlsson45372a62009-07-23 03:17:50 +0000280
281 return Types.getTargetData().getABITypeAlignment(Ty);
282}
283
284uint64_t CGRecordLayoutBuilder::getTypeSizeInBytes(const llvm::Type *Ty) const {
285 return Types.getTargetData().getTypeAllocSize(Ty);
286}
287
288CGRecordLayout *
289CGRecordLayoutBuilder::ComputeLayout(CodeGenTypes &Types,
290 const RecordDecl *D) {
291 CGRecordLayoutBuilder Builder(Types);
292
Anders Carlsson45372a62009-07-23 03:17:50 +0000293 Builder.Layout(D);
294
295 // FIXME: Once this works well enough, enable it.
296 return 0;
297
298 // FIXME: Use a VMContext.
299 const llvm::Type *Ty = llvm::StructType::get(Builder.FieldTypes,
Anders Carlsson4b5584b2009-07-23 17:24:40 +0000300 Builder.Packed);
Anders Carlsson45372a62009-07-23 03:17:50 +0000301
302 // Add all the field numbers.
303 for (unsigned i = 0, e = Builder.LLVMFields.size(); i != e; ++i) {
304 const FieldDecl *FD = Builder.LLVMFields[i].first;
305 unsigned FieldNo = Builder.LLVMFields[i].second;
306
307 Types.addFieldInfo(FD, FieldNo);
308 }
309
310 // Add bitfield info.
311 for (unsigned i = 0, e = Builder.LLVMBitFields.size(); i != e; ++i) {
312 const LLVMBitFieldInfo &Info = Builder.LLVMBitFields[i];
313
Anders Carlsson8330cee2009-07-23 17:01:21 +0000314 Types.addBitFieldInfo(Info.FD, Info.FieldNo, Info.Start, Info.Size);
Anders Carlsson45372a62009-07-23 03:17:50 +0000315 }
316
317 return new CGRecordLayout(Ty, llvm::SmallSet<unsigned, 8>());
318}