blob: 7f52e31068000d8d4a85e54a662a06d11f9434ce [file] [log] [blame]
Daniel Dunbar23ee4b72010-03-31 00:11:27 +00001//===--- CGRecordLayoutBuilder.cpp - CGRecordLayout builder ----*- C++ -*-===//
Anders Carlsson307846f2009-07-23 03:17:50 +00002//
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//
Daniel Dunbar23ee4b72010-03-31 00:11:27 +000010// Builder implementation for CGRecordLayout objects.
Anders Carlsson307846f2009-07-23 03:17:50 +000011//
12//===----------------------------------------------------------------------===//
13
Daniel Dunbar072d0bb2010-03-30 22:26:10 +000014#include "CGRecordLayout.h"
Anders Carlsson307846f2009-07-23 03:17:50 +000015#include "clang/AST/ASTContext.h"
16#include "clang/AST/Attr.h"
Anders Carlsson4131f002010-11-24 22:50:27 +000017#include "clang/AST/CXXInheritance.h"
Anders Carlsson307846f2009-07-23 03:17:50 +000018#include "clang/AST/DeclCXX.h"
19#include "clang/AST/Expr.h"
20#include "clang/AST/RecordLayout.h"
21#include "CodeGenTypes.h"
John McCall614dbdc2010-08-22 21:01:12 +000022#include "CGCXXABI.h"
Anders Carlsson307846f2009-07-23 03:17:50 +000023#include "llvm/DerivedTypes.h"
Daniel Dunbarb97bff92010-04-12 18:14:18 +000024#include "llvm/Type.h"
Daniel Dunbar2ba67442010-04-21 19:10:49 +000025#include "llvm/Support/Debug.h"
Daniel Dunbarb97bff92010-04-12 18:14:18 +000026#include "llvm/Support/raw_ostream.h"
Anders Carlsson307846f2009-07-23 03:17:50 +000027#include "llvm/Target/TargetData.h"
Anders Carlsson307846f2009-07-23 03:17:50 +000028using namespace clang;
29using namespace CodeGen;
30
John McCallbcd38212010-11-30 23:17:27 +000031namespace {
Daniel Dunbar23ee4b72010-03-31 00:11:27 +000032
33class CGRecordLayoutBuilder {
34public:
35 /// FieldTypes - Holds the LLVM types that the struct is created from.
John McCall0217dfc22011-02-15 06:40:56 +000036 ///
Anders Carlssonb6d31e72011-04-17 21:32:41 +000037 llvm::SmallVector<const llvm::Type *, 16> FieldTypes;
Daniel Dunbar23ee4b72010-03-31 00:11:27 +000038
John McCall0217dfc22011-02-15 06:40:56 +000039 /// BaseSubobjectType - Holds the LLVM type for the non-virtual part
Anders Carlssonc1351ca2010-11-09 05:25:47 +000040 /// of the struct. For example, consider:
41 ///
42 /// struct A { int i; };
43 /// struct B { void *v; };
44 /// struct C : virtual A, B { };
45 ///
46 /// The LLVM type of C will be
47 /// %struct.C = type { i32 (...)**, %struct.A, i32, %struct.B }
48 ///
49 /// And the LLVM type of the non-virtual base struct will be
50 /// %struct.C.base = type { i32 (...)**, %struct.A, i32 }
John McCall0217dfc22011-02-15 06:40:56 +000051 ///
52 /// This only gets initialized if the base subobject type is
53 /// different from the complete-object type.
54 const llvm::StructType *BaseSubobjectType;
Anders Carlssonc1351ca2010-11-09 05:25:47 +000055
John McCall0217dfc22011-02-15 06:40:56 +000056 /// FieldInfo - Holds a field and its corresponding LLVM field number.
57 llvm::DenseMap<const FieldDecl *, unsigned> Fields;
Daniel Dunbar23ee4b72010-03-31 00:11:27 +000058
John McCall0217dfc22011-02-15 06:40:56 +000059 /// BitFieldInfo - Holds location and size information about a bit field.
60 llvm::DenseMap<const FieldDecl *, CGBitFieldInfo> BitFields;
Daniel Dunbar23ee4b72010-03-31 00:11:27 +000061
John McCall0217dfc22011-02-15 06:40:56 +000062 llvm::DenseMap<const CXXRecordDecl *, unsigned> NonVirtualBases;
63 llvm::DenseMap<const CXXRecordDecl *, unsigned> VirtualBases;
Anders Carlsson4131f002010-11-24 22:50:27 +000064
65 /// IndirectPrimaryBases - Virtual base classes, direct or indirect, that are
66 /// primary base classes for some other direct or indirect base class.
67 CXXIndirectPrimaryBaseSet IndirectPrimaryBases;
68
Anders Carlssona459adb2010-11-28 19:18:44 +000069 /// LaidOutVirtualBases - A set of all laid out virtual bases, used to avoid
70 /// avoid laying out virtual bases more than once.
71 llvm::SmallPtrSet<const CXXRecordDecl *, 4> LaidOutVirtualBases;
72
John McCall614dbdc2010-08-22 21:01:12 +000073 /// IsZeroInitializable - Whether this struct can be C++
74 /// zero-initialized with an LLVM zeroinitializer.
75 bool IsZeroInitializable;
John McCall0217dfc22011-02-15 06:40:56 +000076 bool IsZeroInitializableAsBase;
Daniel Dunbar23ee4b72010-03-31 00:11:27 +000077
78 /// Packed - Whether the resulting LLVM struct will be packed or not.
79 bool Packed;
80
81private:
82 CodeGenTypes &Types;
83
Anders Carlssonfcaaa692011-04-17 21:56:13 +000084 /// LastLaidOutBaseInfo - Contains the offset and non-virtual size of the
85 /// last base laid out. Used so that we can replace the last laid out base
86 /// type with an i8 array if needed.
87 struct LastLaidOutBaseInfo {
88 CharUnits Offset;
89 CharUnits NonVirtualSize;
90
91 bool isValid() const { return !NonVirtualSize.isZero(); }
92 void invalidate() { NonVirtualSize = CharUnits::Zero(); }
93
94 } LastLaidOutBase;
95
Daniel Dunbar23ee4b72010-03-31 00:11:27 +000096 /// Alignment - Contains the alignment of the RecordDecl.
John McCall4d9f1422011-02-15 22:21:29 +000097 CharUnits Alignment;
Daniel Dunbar23ee4b72010-03-31 00:11:27 +000098
Daniel Dunbar23ee4b72010-03-31 00:11:27 +000099 /// BitsAvailableInLastField - If a bit field spans only part of a LLVM field,
100 /// this will have the number of bits still available in the field.
101 char BitsAvailableInLastField;
102
John McCall4d9f1422011-02-15 22:21:29 +0000103 /// NextFieldOffset - Holds the next field offset.
104 CharUnits NextFieldOffset;
Daniel Dunbar23ee4b72010-03-31 00:11:27 +0000105
Anders Carlsson1de2f572010-04-17 20:49:27 +0000106 /// LayoutUnionField - Will layout a field in an union and return the type
107 /// that the field will have.
108 const llvm::Type *LayoutUnionField(const FieldDecl *Field,
109 const ASTRecordLayout &Layout);
110
Daniel Dunbar23ee4b72010-03-31 00:11:27 +0000111 /// LayoutUnion - Will layout a union RecordDecl.
112 void LayoutUnion(const RecordDecl *D);
113
114 /// LayoutField - try to layout all fields in the record decl.
115 /// Returns false if the operation failed because the struct is not packed.
116 bool LayoutFields(const RecordDecl *D);
117
Anders Carlssona518b2a2010-12-04 23:59:48 +0000118 /// Layout a single base, virtual or non-virtual
John McCall4d9f1422011-02-15 22:21:29 +0000119 void LayoutBase(const CXXRecordDecl *base,
120 const CGRecordLayout &baseLayout,
121 CharUnits baseOffset);
Anders Carlssona518b2a2010-12-04 23:59:48 +0000122
Anders Carlsson1f95ee32010-11-25 01:59:35 +0000123 /// LayoutVirtualBase - layout a single virtual base.
John McCall4d9f1422011-02-15 22:21:29 +0000124 void LayoutVirtualBase(const CXXRecordDecl *base,
125 CharUnits baseOffset);
Anders Carlsson1f95ee32010-11-25 01:59:35 +0000126
Anders Carlssona459adb2010-11-28 19:18:44 +0000127 /// LayoutVirtualBases - layout the virtual bases of a record decl.
128 void LayoutVirtualBases(const CXXRecordDecl *RD,
129 const ASTRecordLayout &Layout);
130
Anders Carlssonaf9e5af2010-05-18 05:12:20 +0000131 /// LayoutNonVirtualBase - layout a single non-virtual base.
John McCall4d9f1422011-02-15 22:21:29 +0000132 void LayoutNonVirtualBase(const CXXRecordDecl *base,
133 CharUnits baseOffset);
Anders Carlssonaf9e5af2010-05-18 05:12:20 +0000134
Anders Carlssona459adb2010-11-28 19:18:44 +0000135 /// LayoutNonVirtualBases - layout the virtual bases of a record decl.
Anders Carlssonaf9e5af2010-05-18 05:12:20 +0000136 void LayoutNonVirtualBases(const CXXRecordDecl *RD,
137 const ASTRecordLayout &Layout);
Daniel Dunbar23ee4b72010-03-31 00:11:27 +0000138
Anders Carlssonc1351ca2010-11-09 05:25:47 +0000139 /// ComputeNonVirtualBaseType - Compute the non-virtual base field types.
Argyrios Kyrtzidis648fcbe2010-12-10 00:11:00 +0000140 bool ComputeNonVirtualBaseType(const CXXRecordDecl *RD);
Anders Carlssonc1351ca2010-11-09 05:25:47 +0000141
Daniel Dunbar23ee4b72010-03-31 00:11:27 +0000142 /// LayoutField - layout a single field. Returns false if the operation failed
143 /// because the current struct is not packed.
144 bool LayoutField(const FieldDecl *D, uint64_t FieldOffset);
145
146 /// LayoutBitField - layout a single bit field.
147 void LayoutBitField(const FieldDecl *D, uint64_t FieldOffset);
148
149 /// AppendField - Appends a field with the given offset and type.
John McCall4d9f1422011-02-15 22:21:29 +0000150 void AppendField(CharUnits fieldOffset, const llvm::Type *FieldTy);
Daniel Dunbar23ee4b72010-03-31 00:11:27 +0000151
Daniel Dunbar23ee4b72010-03-31 00:11:27 +0000152 /// AppendPadding - Appends enough padding bytes so that the total
153 /// struct size is a multiple of the field alignment.
John McCall4d9f1422011-02-15 22:21:29 +0000154 void AppendPadding(CharUnits fieldOffset, CharUnits fieldAlignment);
Daniel Dunbar23ee4b72010-03-31 00:11:27 +0000155
Anders Carlssonfcaaa692011-04-17 21:56:13 +0000156 /// ResizeLastBaseFieldIfNecessary - Fields and bases can be laid out in the
157 /// tail padding of a previous base. If this happens, the type of the previous
158 /// base needs to be changed to an array of i8. Returns true if the last
159 /// laid out base was resized.
160 bool ResizeLastBaseFieldIfNecessary(CharUnits offset);
161
Anders Carlssonc1351ca2010-11-09 05:25:47 +0000162 /// getByteArrayType - Returns a byte array type with the given number of
163 /// elements.
John McCall4d9f1422011-02-15 22:21:29 +0000164 const llvm::Type *getByteArrayType(CharUnits NumBytes);
Anders Carlssonc1351ca2010-11-09 05:25:47 +0000165
Daniel Dunbar23ee4b72010-03-31 00:11:27 +0000166 /// AppendBytes - Append a given number of bytes to the record.
John McCall4d9f1422011-02-15 22:21:29 +0000167 void AppendBytes(CharUnits numBytes);
Daniel Dunbar23ee4b72010-03-31 00:11:27 +0000168
169 /// AppendTailPadding - Append enough tail padding so that the type will have
170 /// the passed size.
171 void AppendTailPadding(uint64_t RecordSize);
172
John McCall4d9f1422011-02-15 22:21:29 +0000173 CharUnits getTypeAlignment(const llvm::Type *Ty) const;
Daniel Dunbar23ee4b72010-03-31 00:11:27 +0000174
Anders Carlssonacf877b2010-11-28 23:06:23 +0000175 /// getAlignmentAsLLVMStruct - Returns the maximum alignment of all the
176 /// LLVM element types.
John McCall4d9f1422011-02-15 22:21:29 +0000177 CharUnits getAlignmentAsLLVMStruct() const;
Anders Carlssonacf877b2010-11-28 23:06:23 +0000178
John McCall614dbdc2010-08-22 21:01:12 +0000179 /// CheckZeroInitializable - Check if the given type contains a pointer
Daniel Dunbar23ee4b72010-03-31 00:11:27 +0000180 /// to data member.
John McCall614dbdc2010-08-22 21:01:12 +0000181 void CheckZeroInitializable(QualType T);
Daniel Dunbar23ee4b72010-03-31 00:11:27 +0000182
183public:
184 CGRecordLayoutBuilder(CodeGenTypes &Types)
John McCall0217dfc22011-02-15 06:40:56 +0000185 : BaseSubobjectType(0),
186 IsZeroInitializable(true), IsZeroInitializableAsBase(true),
John McCall4d9f1422011-02-15 22:21:29 +0000187 Packed(false), Types(Types), BitsAvailableInLastField(0) { }
Daniel Dunbar23ee4b72010-03-31 00:11:27 +0000188
189 /// Layout - Will layout a RecordDecl.
190 void Layout(const RecordDecl *D);
191};
192
193}
Daniel Dunbar23ee4b72010-03-31 00:11:27 +0000194
Anders Carlsson307846f2009-07-23 03:17:50 +0000195void CGRecordLayoutBuilder::Layout(const RecordDecl *D) {
John McCall4d9f1422011-02-15 22:21:29 +0000196 Alignment = Types.getContext().getASTRecordLayout(D).getAlignment();
Anders Carlsson09a37742009-09-02 17:51:33 +0000197 Packed = D->hasAttr<PackedAttr>();
Anders Carlsson28a5fa22009-08-08 19:38:24 +0000198
Anders Carlsson697f6592009-07-23 03:43:54 +0000199 if (D->isUnion()) {
200 LayoutUnion(D);
201 return;
202 }
Anders Carlsson68e0b682009-08-08 18:23:56 +0000203
Anders Carlsson307846f2009-07-23 03:17:50 +0000204 if (LayoutFields(D))
205 return;
Mike Stump11289f42009-09-09 15:08:12 +0000206
Anders Carlsson307846f2009-07-23 03:17:50 +0000207 // We weren't able to layout the struct. Try again with a packed struct
Anders Carlssond78fc892009-07-23 17:24:40 +0000208 Packed = true;
Anders Carlssonfcaaa692011-04-17 21:56:13 +0000209 LastLaidOutBase.invalidate();
John McCall4d9f1422011-02-15 22:21:29 +0000210 NextFieldOffset = CharUnits::Zero();
Anders Carlsson307846f2009-07-23 03:17:50 +0000211 FieldTypes.clear();
John McCall0217dfc22011-02-15 06:40:56 +0000212 Fields.clear();
213 BitFields.clear();
214 NonVirtualBases.clear();
215 VirtualBases.clear();
Mike Stump11289f42009-09-09 15:08:12 +0000216
Anders Carlsson307846f2009-07-23 03:17:50 +0000217 LayoutFields(D);
218}
219
Daniel Dunbarc7f9bba2010-09-02 23:53:28 +0000220CGBitFieldInfo CGBitFieldInfo::MakeInfo(CodeGenTypes &Types,
221 const FieldDecl *FD,
222 uint64_t FieldOffset,
223 uint64_t FieldSize,
224 uint64_t ContainingTypeSizeInBits,
225 unsigned ContainingTypeAlign) {
Daniel Dunbarf9c24f82010-04-12 21:01:28 +0000226 const llvm::Type *Ty = Types.ConvertTypeForMemRecursive(FD->getType());
John McCall8a3c5552011-02-26 08:41:59 +0000227 CharUnits TypeSizeInBytes =
228 CharUnits::fromQuantity(Types.getTargetData().getTypeAllocSize(Ty));
229 uint64_t TypeSizeInBits = Types.getContext().toBits(TypeSizeInBytes);
Daniel Dunbarf9c24f82010-04-12 21:01:28 +0000230
231 bool IsSigned = FD->getType()->isSignedIntegerType();
Daniel Dunbarf9c24f82010-04-12 21:01:28 +0000232
Anders Carlssonbe6f3182010-04-16 16:23:02 +0000233 if (FieldSize > TypeSizeInBits) {
Anders Carlssond5f27b02010-04-17 22:54:57 +0000234 // We have a wide bit-field. The extra bits are only used for padding, so
235 // if we have a bitfield of type T, with size N:
236 //
237 // T t : N;
238 //
239 // We can just assume that it's:
240 //
241 // T t : sizeof(T);
242 //
243 FieldSize = TypeSizeInBits;
Anders Carlssonbe6f3182010-04-16 16:23:02 +0000244 }
245
Chris Lattnerfb59c7c2011-02-17 22:09:58 +0000246 // in big-endian machines the first fields are in higher bit positions,
247 // so revert the offset. The byte offsets are reversed(back) later.
248 if (Types.getTargetData().isBigEndian()) {
249 FieldOffset = ((ContainingTypeSizeInBits)-FieldOffset-FieldSize);
250 }
251
Daniel Dunbar488f55c2010-04-22 02:35:46 +0000252 // Compute the access components. The policy we use is to start by attempting
253 // to access using the width of the bit-field type itself and to always access
254 // at aligned indices of that type. If such an access would fail because it
255 // extends past the bound of the type, then we reduce size to the next smaller
256 // power of two and retry. The current algorithm assumes pow2 sized types,
257 // although this is easy to fix.
258 //
Daniel Dunbar488f55c2010-04-22 02:35:46 +0000259 assert(llvm::isPowerOf2_32(TypeSizeInBits) && "Unexpected type size!");
260 CGBitFieldInfo::AccessInfo Components[3];
261 unsigned NumComponents = 0;
Nick Lewyckyd2348d82011-03-22 17:35:47 +0000262 unsigned AccessedTargetBits = 0; // The number of target bits accessed.
Daniel Dunbar488f55c2010-04-22 02:35:46 +0000263 unsigned AccessWidth = TypeSizeInBits; // The current access width to attempt.
Anders Carlssonbe6f3182010-04-16 16:23:02 +0000264
Daniel Dunbar488f55c2010-04-22 02:35:46 +0000265 // Round down from the field offset to find the first access position that is
266 // at an aligned offset of the initial access type.
Daniel Dunbar59813772010-04-22 15:22:33 +0000267 uint64_t AccessStart = FieldOffset - (FieldOffset % AccessWidth);
268
269 // Adjust initial access size to fit within record.
John McCall8a3c5552011-02-26 08:41:59 +0000270 while (AccessWidth > Types.getTarget().getCharWidth() &&
Daniel Dunbar59813772010-04-22 15:22:33 +0000271 AccessStart + AccessWidth > ContainingTypeSizeInBits) {
272 AccessWidth >>= 1;
273 AccessStart = FieldOffset - (FieldOffset % AccessWidth);
274 }
Daniel Dunbar9c78d632010-04-15 05:09:32 +0000275
Daniel Dunbar488f55c2010-04-22 02:35:46 +0000276 while (AccessedTargetBits < FieldSize) {
277 // Check that we can access using a type of this size, without reading off
278 // the end of the structure. This can occur with packed structures and
279 // -fno-bitfield-type-align, for example.
280 if (AccessStart + AccessWidth > ContainingTypeSizeInBits) {
281 // If so, reduce access size to the next smaller power-of-two and retry.
282 AccessWidth >>= 1;
John McCall8a3c5552011-02-26 08:41:59 +0000283 assert(AccessWidth >= Types.getTarget().getCharWidth()
284 && "Cannot access under byte size!");
Daniel Dunbar488f55c2010-04-22 02:35:46 +0000285 continue;
286 }
Daniel Dunbarb935b932010-04-13 20:58:55 +0000287
Daniel Dunbar488f55c2010-04-22 02:35:46 +0000288 // Otherwise, add an access component.
Daniel Dunbarb935b932010-04-13 20:58:55 +0000289
Daniel Dunbar488f55c2010-04-22 02:35:46 +0000290 // First, compute the bits inside this access which are part of the
291 // target. We are reading bits [AccessStart, AccessStart + AccessWidth); the
292 // intersection with [FieldOffset, FieldOffset + FieldSize) gives the bits
293 // in the target that we are reading.
Daniel Dunbar59813772010-04-22 15:22:33 +0000294 assert(FieldOffset < AccessStart + AccessWidth && "Invalid access start!");
295 assert(AccessStart < FieldOffset + FieldSize && "Invalid access start!");
Daniel Dunbar488f55c2010-04-22 02:35:46 +0000296 uint64_t AccessBitsInFieldStart = std::max(AccessStart, FieldOffset);
297 uint64_t AccessBitsInFieldSize =
Daniel Dunbar59813772010-04-22 15:22:33 +0000298 std::min(AccessWidth + AccessStart,
299 FieldOffset + FieldSize) - AccessBitsInFieldStart;
Daniel Dunbar5d6c07e2010-04-22 14:56:10 +0000300
Daniel Dunbar488f55c2010-04-22 02:35:46 +0000301 assert(NumComponents < 3 && "Unexpected number of components!");
302 CGBitFieldInfo::AccessInfo &AI = Components[NumComponents++];
303 AI.FieldIndex = 0;
304 // FIXME: We still follow the old access pattern of only using the field
305 // byte offset. We should switch this once we fix the struct layout to be
306 // pretty.
Chris Lattnerfb59c7c2011-02-17 22:09:58 +0000307
308 // on big-endian machines we reverted the bit offset because first fields are
309 // in higher bits. But this also reverts the bytes, so fix this here by reverting
310 // the byte offset on big-endian machines.
311 if (Types.getTargetData().isBigEndian()) {
Ken Dyckf76759c2011-04-24 10:04:59 +0000312 AI.FieldByteOffset = Types.getContext().toCharUnitsFromBits(
313 ContainingTypeSizeInBits - AccessStart - AccessWidth);
Chris Lattnerfb59c7c2011-02-17 22:09:58 +0000314 } else {
Ken Dyckf76759c2011-04-24 10:04:59 +0000315 AI.FieldByteOffset = Types.getContext().toCharUnitsFromBits(AccessStart);
Chris Lattnerfb59c7c2011-02-17 22:09:58 +0000316 }
Daniel Dunbar488f55c2010-04-22 02:35:46 +0000317 AI.FieldBitStart = AccessBitsInFieldStart - AccessStart;
318 AI.AccessWidth = AccessWidth;
Daniel Dunbarfc66e0e2010-04-22 03:17:04 +0000319 AI.AccessAlignment = llvm::MinAlign(ContainingTypeAlign, AccessStart) / 8;
Daniel Dunbar488f55c2010-04-22 02:35:46 +0000320 AI.TargetBitOffset = AccessedTargetBits;
321 AI.TargetBitWidth = AccessBitsInFieldSize;
322
323 AccessStart += AccessWidth;
324 AccessedTargetBits += AI.TargetBitWidth;
Daniel Dunbarb935b932010-04-13 20:58:55 +0000325 }
326
Daniel Dunbar488f55c2010-04-22 02:35:46 +0000327 assert(AccessedTargetBits == FieldSize && "Invalid bit-field access!");
Daniel Dunbar9c78d632010-04-15 05:09:32 +0000328 return CGBitFieldInfo(FieldSize, NumComponents, Components, IsSigned);
Daniel Dunbarf9c24f82010-04-12 21:01:28 +0000329}
330
Daniel Dunbarc7f9bba2010-09-02 23:53:28 +0000331CGBitFieldInfo CGBitFieldInfo::MakeInfo(CodeGenTypes &Types,
332 const FieldDecl *FD,
333 uint64_t FieldOffset,
334 uint64_t FieldSize) {
335 const RecordDecl *RD = FD->getParent();
336 const ASTRecordLayout &RL = Types.getContext().getASTRecordLayout(RD);
Ken Dyckb0fcc592011-02-11 01:54:29 +0000337 uint64_t ContainingTypeSizeInBits = Types.getContext().toBits(RL.getSize());
Ken Dyck7ad11e72011-02-15 02:32:40 +0000338 unsigned ContainingTypeAlign = Types.getContext().toBits(RL.getAlignment());
Daniel Dunbarc7f9bba2010-09-02 23:53:28 +0000339
340 return MakeInfo(Types, FD, FieldOffset, FieldSize, ContainingTypeSizeInBits,
341 ContainingTypeAlign);
342}
343
Anders Carlsson307846f2009-07-23 03:17:50 +0000344void CGRecordLayoutBuilder::LayoutBitField(const FieldDecl *D,
John McCall4d9f1422011-02-15 22:21:29 +0000345 uint64_t fieldOffset) {
346 uint64_t fieldSize =
Anders Carlsson307846f2009-07-23 03:17:50 +0000347 D->getBitWidth()->EvaluateAsInt(Types.getContext()).getZExtValue();
Mike Stump11289f42009-09-09 15:08:12 +0000348
John McCall4d9f1422011-02-15 22:21:29 +0000349 if (fieldSize == 0)
Anders Carlsson307846f2009-07-23 03:17:50 +0000350 return;
351
John McCall8a3c5552011-02-26 08:41:59 +0000352 uint64_t nextFieldOffsetInBits = Types.getContext().toBits(NextFieldOffset);
John McCall4d9f1422011-02-15 22:21:29 +0000353 unsigned numBytesToAppend;
Mike Stump11289f42009-09-09 15:08:12 +0000354
Anders Carlssonfcaaa692011-04-17 21:56:13 +0000355 if (fieldOffset < nextFieldOffsetInBits && !BitsAvailableInLastField) {
356 assert(fieldOffset % 8 == 0 && "Field offset not aligned correctly");
357
358 CharUnits fieldOffsetInCharUnits =
359 Types.getContext().toCharUnitsFromBits(fieldOffset);
360
361 // Try to resize the last base field.
362 if (ResizeLastBaseFieldIfNecessary(fieldOffsetInCharUnits))
363 nextFieldOffsetInBits = Types.getContext().toBits(NextFieldOffset);
364 }
365
John McCall4d9f1422011-02-15 22:21:29 +0000366 if (fieldOffset < nextFieldOffsetInBits) {
Anders Carlsson307846f2009-07-23 03:17:50 +0000367 assert(BitsAvailableInLastField && "Bitfield size mismatch!");
John McCall4d9f1422011-02-15 22:21:29 +0000368 assert(!NextFieldOffset.isZero() && "Must have laid out at least one byte");
Mike Stump11289f42009-09-09 15:08:12 +0000369
Anders Carlsson307846f2009-07-23 03:17:50 +0000370 // The bitfield begins in the previous bit-field.
John McCall4d9f1422011-02-15 22:21:29 +0000371 numBytesToAppend =
372 llvm::RoundUpToAlignment(fieldSize - BitsAvailableInLastField, 8) / 8;
Anders Carlsson307846f2009-07-23 03:17:50 +0000373 } else {
John McCall4d9f1422011-02-15 22:21:29 +0000374 assert(fieldOffset % 8 == 0 && "Field offset not aligned correctly");
Anders Carlsson307846f2009-07-23 03:17:50 +0000375
376 // Append padding if necessary.
John McCall4d9f1422011-02-15 22:21:29 +0000377 AppendPadding(CharUnits::fromQuantity(fieldOffset / 8), CharUnits::One());
Mike Stump11289f42009-09-09 15:08:12 +0000378
John McCall4d9f1422011-02-15 22:21:29 +0000379 numBytesToAppend = llvm::RoundUpToAlignment(fieldSize, 8) / 8;
Mike Stump11289f42009-09-09 15:08:12 +0000380
John McCall4d9f1422011-02-15 22:21:29 +0000381 assert(numBytesToAppend && "No bytes to append!");
Anders Carlsson307846f2009-07-23 03:17:50 +0000382 }
383
Daniel Dunbarf9c24f82010-04-12 21:01:28 +0000384 // Add the bit field info.
John McCall0217dfc22011-02-15 06:40:56 +0000385 BitFields.insert(std::make_pair(D,
John McCall4d9f1422011-02-15 22:21:29 +0000386 CGBitFieldInfo::MakeInfo(Types, D, fieldOffset, fieldSize)));
Mike Stump11289f42009-09-09 15:08:12 +0000387
John McCall4d9f1422011-02-15 22:21:29 +0000388 AppendBytes(CharUnits::fromQuantity(numBytesToAppend));
Mike Stump11289f42009-09-09 15:08:12 +0000389
Mike Stump11289f42009-09-09 15:08:12 +0000390 BitsAvailableInLastField =
John McCall4d9f1422011-02-15 22:21:29 +0000391 NextFieldOffset.getQuantity() * 8 - (fieldOffset + fieldSize);
Anders Carlsson307846f2009-07-23 03:17:50 +0000392}
393
394bool CGRecordLayoutBuilder::LayoutField(const FieldDecl *D,
John McCall4d9f1422011-02-15 22:21:29 +0000395 uint64_t fieldOffset) {
Anders Carlsson307846f2009-07-23 03:17:50 +0000396 // If the field is packed, then we need a packed struct.
Anders Carlsson68e0b682009-08-08 18:23:56 +0000397 if (!Packed && D->hasAttr<PackedAttr>())
Anders Carlsson307846f2009-07-23 03:17:50 +0000398 return false;
399
400 if (D->isBitField()) {
401 // We must use packed structs for unnamed bit fields since they
402 // don't affect the struct alignment.
Anders Carlssond78fc892009-07-23 17:24:40 +0000403 if (!Packed && !D->getDeclName())
Anders Carlsson307846f2009-07-23 03:17:50 +0000404 return false;
Mike Stump11289f42009-09-09 15:08:12 +0000405
John McCall4d9f1422011-02-15 22:21:29 +0000406 LayoutBitField(D, fieldOffset);
Anders Carlsson307846f2009-07-23 03:17:50 +0000407 return true;
408 }
Mike Stump11289f42009-09-09 15:08:12 +0000409
John McCall614dbdc2010-08-22 21:01:12 +0000410 CheckZeroInitializable(D->getType());
Daniel Dunbar23ee4b72010-03-31 00:11:27 +0000411
John McCall8a3c5552011-02-26 08:41:59 +0000412 assert(fieldOffset % Types.getTarget().getCharWidth() == 0
413 && "field offset is not on a byte boundary!");
414 CharUnits fieldOffsetInBytes
415 = Types.getContext().toCharUnitsFromBits(fieldOffset);
Mike Stump11289f42009-09-09 15:08:12 +0000416
Anders Carlsson19702bb2009-08-04 16:29:15 +0000417 const llvm::Type *Ty = Types.ConvertTypeForMemRecursive(D->getType());
John McCall4d9f1422011-02-15 22:21:29 +0000418 CharUnits typeAlignment = getTypeAlignment(Ty);
Anders Carlsson19702bb2009-08-04 16:29:15 +0000419
Anders Carlsson28a5fa22009-08-08 19:38:24 +0000420 // If the type alignment is larger then the struct alignment, we must use
421 // a packed struct.
John McCall4d9f1422011-02-15 22:21:29 +0000422 if (typeAlignment > Alignment) {
Anders Carlsson28a5fa22009-08-08 19:38:24 +0000423 assert(!Packed && "Alignment is wrong even with packed struct!");
424 return false;
425 }
Mike Stump11289f42009-09-09 15:08:12 +0000426
John McCall4d9f1422011-02-15 22:21:29 +0000427 if (!Packed) {
428 if (const RecordType *RT = D->getType()->getAs<RecordType>()) {
429 const RecordDecl *RD = cast<RecordDecl>(RT->getDecl());
430 if (const MaxFieldAlignmentAttr *MFAA =
431 RD->getAttr<MaxFieldAlignmentAttr>()) {
John McCall8a3c5552011-02-26 08:41:59 +0000432 if (MFAA->getAlignment() != Types.getContext().toBits(typeAlignment))
John McCall4d9f1422011-02-15 22:21:29 +0000433 return false;
434 }
Anders Carlsson28a5fa22009-08-08 19:38:24 +0000435 }
436 }
437
Anders Carlsson19702bb2009-08-04 16:29:15 +0000438 // Round up the field offset to the alignment of the field type.
John McCall4d9f1422011-02-15 22:21:29 +0000439 CharUnits alignedNextFieldOffsetInBytes =
440 NextFieldOffset.RoundUpToAlignment(typeAlignment);
Anders Carlsson19702bb2009-08-04 16:29:15 +0000441
John McCall4d9f1422011-02-15 22:21:29 +0000442 if (fieldOffsetInBytes < alignedNextFieldOffsetInBytes) {
Anders Carlssonfcaaa692011-04-17 21:56:13 +0000443 // Try to resize the last base field.
444 if (ResizeLastBaseFieldIfNecessary(fieldOffsetInBytes)) {
445 alignedNextFieldOffsetInBytes =
446 NextFieldOffset.RoundUpToAlignment(typeAlignment);
447 }
448 }
449
450 if (fieldOffsetInBytes < alignedNextFieldOffsetInBytes) {
Anders Carlsson19702bb2009-08-04 16:29:15 +0000451 assert(!Packed && "Could not place field even with packed struct!");
452 return false;
453 }
Mike Stump11289f42009-09-09 15:08:12 +0000454
John McCall4d9f1422011-02-15 22:21:29 +0000455 AppendPadding(fieldOffsetInBytes, typeAlignment);
Mike Stump11289f42009-09-09 15:08:12 +0000456
Anders Carlsson307846f2009-07-23 03:17:50 +0000457 // Now append the field.
John McCall0217dfc22011-02-15 06:40:56 +0000458 Fields[D] = FieldTypes.size();
John McCall4d9f1422011-02-15 22:21:29 +0000459 AppendField(fieldOffsetInBytes, Ty);
Mike Stump11289f42009-09-09 15:08:12 +0000460
Anders Carlssonfcaaa692011-04-17 21:56:13 +0000461 LastLaidOutBase.invalidate();
Anders Carlsson307846f2009-07-23 03:17:50 +0000462 return true;
463}
464
Anders Carlsson1de2f572010-04-17 20:49:27 +0000465const llvm::Type *
466CGRecordLayoutBuilder::LayoutUnionField(const FieldDecl *Field,
467 const ASTRecordLayout &Layout) {
468 if (Field->isBitField()) {
469 uint64_t FieldSize =
470 Field->getBitWidth()->EvaluateAsInt(Types.getContext()).getZExtValue();
471
472 // Ignore zero sized bit fields.
473 if (FieldSize == 0)
474 return 0;
475
Daniel Dunbar20b551a2010-04-20 17:52:30 +0000476 const llvm::Type *FieldTy = llvm::Type::getInt8Ty(Types.getLLVMContext());
477 unsigned NumBytesToAppend =
478 llvm::RoundUpToAlignment(FieldSize, 8) / 8;
Anders Carlsson2295f132010-04-17 21:04:52 +0000479
Daniel Dunbar20b551a2010-04-20 17:52:30 +0000480 if (NumBytesToAppend > 1)
481 FieldTy = llvm::ArrayType::get(FieldTy, NumBytesToAppend);
Anders Carlsson2295f132010-04-17 21:04:52 +0000482
Anders Carlsson1de2f572010-04-17 20:49:27 +0000483 // Add the bit field info.
John McCall0217dfc22011-02-15 06:40:56 +0000484 BitFields.insert(std::make_pair(Field,
485 CGBitFieldInfo::MakeInfo(Types, Field, 0, FieldSize)));
Anders Carlsson2295f132010-04-17 21:04:52 +0000486 return FieldTy;
Anders Carlsson1de2f572010-04-17 20:49:27 +0000487 }
Daniel Dunbar20b551a2010-04-20 17:52:30 +0000488
Anders Carlsson1de2f572010-04-17 20:49:27 +0000489 // This is a regular union field.
John McCall0217dfc22011-02-15 06:40:56 +0000490 Fields[Field] = 0;
Anders Carlsson1de2f572010-04-17 20:49:27 +0000491 return Types.ConvertTypeForMemRecursive(Field->getType());
492}
493
Anders Carlsson697f6592009-07-23 03:43:54 +0000494void CGRecordLayoutBuilder::LayoutUnion(const RecordDecl *D) {
495 assert(D->isUnion() && "Can't call LayoutUnion on a non-union record!");
Mike Stump11289f42009-09-09 15:08:12 +0000496
John McCall4d9f1422011-02-15 22:21:29 +0000497 const ASTRecordLayout &layout = Types.getContext().getASTRecordLayout(D);
Mike Stump11289f42009-09-09 15:08:12 +0000498
John McCall4d9f1422011-02-15 22:21:29 +0000499 const llvm::Type *unionType = 0;
500 CharUnits unionSize = CharUnits::Zero();
501 CharUnits unionAlign = CharUnits::Zero();
Mike Stump11289f42009-09-09 15:08:12 +0000502
John McCall4d9f1422011-02-15 22:21:29 +0000503 bool hasOnlyZeroSizedBitFields = true;
Daniel Dunbar23ee4b72010-03-31 00:11:27 +0000504
John McCall4d9f1422011-02-15 22:21:29 +0000505 unsigned fieldNo = 0;
506 for (RecordDecl::field_iterator field = D->field_begin(),
507 fieldEnd = D->field_end(); field != fieldEnd; ++field, ++fieldNo) {
508 assert(layout.getFieldOffset(fieldNo) == 0 &&
Anders Carlsson697f6592009-07-23 03:43:54 +0000509 "Union field offset did not start at the beginning of record!");
John McCall4d9f1422011-02-15 22:21:29 +0000510 const llvm::Type *fieldType = LayoutUnionField(*field, layout);
Anders Carlssonf814ee62009-07-23 04:00:39 +0000511
John McCall4d9f1422011-02-15 22:21:29 +0000512 if (!fieldType)
Anders Carlsson1de2f572010-04-17 20:49:27 +0000513 continue;
Mike Stump11289f42009-09-09 15:08:12 +0000514
John McCall4d9f1422011-02-15 22:21:29 +0000515 hasOnlyZeroSizedBitFields = false;
Daniel Dunbar23ee4b72010-03-31 00:11:27 +0000516
John McCall4d9f1422011-02-15 22:21:29 +0000517 CharUnits fieldAlign = CharUnits::fromQuantity(
518 Types.getTargetData().getABITypeAlignment(fieldType));
519 CharUnits fieldSize = CharUnits::fromQuantity(
520 Types.getTargetData().getTypeAllocSize(fieldType));
Mike Stump11289f42009-09-09 15:08:12 +0000521
John McCall4d9f1422011-02-15 22:21:29 +0000522 if (fieldAlign < unionAlign)
Anders Carlsson697f6592009-07-23 03:43:54 +0000523 continue;
Mike Stump11289f42009-09-09 15:08:12 +0000524
John McCall4d9f1422011-02-15 22:21:29 +0000525 if (fieldAlign > unionAlign || fieldSize > unionSize) {
526 unionType = fieldType;
527 unionAlign = fieldAlign;
528 unionSize = fieldSize;
Anders Carlsson697f6592009-07-23 03:43:54 +0000529 }
530 }
Mike Stump11289f42009-09-09 15:08:12 +0000531
Anders Carlsson697f6592009-07-23 03:43:54 +0000532 // Now add our field.
John McCall4d9f1422011-02-15 22:21:29 +0000533 if (unionType) {
534 AppendField(CharUnits::Zero(), unionType);
Anders Carlsson0e912752009-09-03 22:56:02 +0000535
John McCall4d9f1422011-02-15 22:21:29 +0000536 if (getTypeAlignment(unionType) > layout.getAlignment()) {
Anders Carlsson0e912752009-09-03 22:56:02 +0000537 // We need a packed struct.
538 Packed = true;
John McCall4d9f1422011-02-15 22:21:29 +0000539 unionAlign = CharUnits::One();
Anders Carlsson0e912752009-09-03 22:56:02 +0000540 }
541 }
John McCall4d9f1422011-02-15 22:21:29 +0000542 if (unionAlign.isZero()) {
543 assert(hasOnlyZeroSizedBitFields &&
Anders Carlssonb1ef9912010-01-28 18:22:03 +0000544 "0-align record did not have all zero-sized bit-fields!");
John McCall4d9f1422011-02-15 22:21:29 +0000545 unionAlign = CharUnits::One();
Fariborz Jahaniane8e631c2009-11-06 20:47:40 +0000546 }
Daniel Dunbar23ee4b72010-03-31 00:11:27 +0000547
Anders Carlsson697f6592009-07-23 03:43:54 +0000548 // Append tail padding.
John McCall4d9f1422011-02-15 22:21:29 +0000549 CharUnits recordSize = layout.getSize();
550 if (recordSize > unionSize)
551 AppendPadding(recordSize, unionAlign);
Anders Carlsson697f6592009-07-23 03:43:54 +0000552}
553
John McCall0217dfc22011-02-15 06:40:56 +0000554void CGRecordLayoutBuilder::LayoutBase(const CXXRecordDecl *base,
John McCall4d9f1422011-02-15 22:21:29 +0000555 const CGRecordLayout &baseLayout,
556 CharUnits baseOffset) {
Anders Carlssonfcaaa692011-04-17 21:56:13 +0000557 ResizeLastBaseFieldIfNecessary(baseOffset);
558
John McCall4d9f1422011-02-15 22:21:29 +0000559 AppendPadding(baseOffset, CharUnits::One());
Anders Carlssona518b2a2010-12-04 23:59:48 +0000560
John McCall0217dfc22011-02-15 06:40:56 +0000561 const ASTRecordLayout &baseASTLayout
562 = Types.getContext().getASTRecordLayout(base);
563
Anders Carlssonfcaaa692011-04-17 21:56:13 +0000564 LastLaidOutBase.Offset = NextFieldOffset;
565 LastLaidOutBase.NonVirtualSize = baseASTLayout.getNonVirtualSize();
566
John McCall4d9f1422011-02-15 22:21:29 +0000567 // Fields and bases can be laid out in the tail padding of previous
568 // bases. If this happens, we need to allocate the base as an i8
569 // array; otherwise, we can use the subobject type. However,
570 // actually doing that would require knowledge of what immediately
571 // follows this base in the layout, so instead we do a conservative
572 // approximation, which is to use the base subobject type if it
573 // has the same LLVM storage size as the nvsize.
574
John McCall4d9f1422011-02-15 22:21:29 +0000575 const llvm::StructType *subobjectType = baseLayout.getBaseSubobjectLLVMType();
Anders Carlssonfcaaa692011-04-17 21:56:13 +0000576 AppendField(baseOffset, subobjectType);
John McCall4d9f1422011-02-15 22:21:29 +0000577
Anders Carlssonfcaaa692011-04-17 21:56:13 +0000578 Types.addBaseSubobjectTypeName(base, baseLayout);
John McCall0217dfc22011-02-15 06:40:56 +0000579}
580
581void CGRecordLayoutBuilder::LayoutNonVirtualBase(const CXXRecordDecl *base,
John McCall4d9f1422011-02-15 22:21:29 +0000582 CharUnits baseOffset) {
John McCall0217dfc22011-02-15 06:40:56 +0000583 // Ignore empty bases.
584 if (base->isEmpty()) return;
585
586 const CGRecordLayout &baseLayout = Types.getCGRecordLayout(base);
587 if (IsZeroInitializableAsBase) {
588 assert(IsZeroInitializable &&
589 "class zero-initializable as base but not as complete object");
590
591 IsZeroInitializable = IsZeroInitializableAsBase =
592 baseLayout.isZeroInitializableAsBase();
593 }
594
John McCall4d9f1422011-02-15 22:21:29 +0000595 LayoutBase(base, baseLayout, baseOffset);
John McCall0217dfc22011-02-15 06:40:56 +0000596 NonVirtualBases[base] = (FieldTypes.size() - 1);
Anders Carlssona518b2a2010-12-04 23:59:48 +0000597}
598
Anders Carlsson1f95ee32010-11-25 01:59:35 +0000599void
John McCall0217dfc22011-02-15 06:40:56 +0000600CGRecordLayoutBuilder::LayoutVirtualBase(const CXXRecordDecl *base,
John McCall4d9f1422011-02-15 22:21:29 +0000601 CharUnits baseOffset) {
Anders Carlsson1f95ee32010-11-25 01:59:35 +0000602 // Ignore empty bases.
John McCall0217dfc22011-02-15 06:40:56 +0000603 if (base->isEmpty()) return;
Anders Carlsson1f95ee32010-11-25 01:59:35 +0000604
John McCall0217dfc22011-02-15 06:40:56 +0000605 const CGRecordLayout &baseLayout = Types.getCGRecordLayout(base);
606 if (IsZeroInitializable)
607 IsZeroInitializable = baseLayout.isZeroInitializableAsBase();
Anders Carlsson1f95ee32010-11-25 01:59:35 +0000608
John McCall4d9f1422011-02-15 22:21:29 +0000609 LayoutBase(base, baseLayout, baseOffset);
John McCall0217dfc22011-02-15 06:40:56 +0000610 VirtualBases[base] = (FieldTypes.size() - 1);
Anders Carlsson1f95ee32010-11-25 01:59:35 +0000611}
612
Anders Carlssona459adb2010-11-28 19:18:44 +0000613/// LayoutVirtualBases - layout the non-virtual bases of a record decl.
614void
615CGRecordLayoutBuilder::LayoutVirtualBases(const CXXRecordDecl *RD,
616 const ASTRecordLayout &Layout) {
617 for (CXXRecordDecl::base_class_const_iterator I = RD->bases_begin(),
618 E = RD->bases_end(); I != E; ++I) {
619 const CXXRecordDecl *BaseDecl =
620 cast<CXXRecordDecl>(I->getType()->getAs<RecordType>()->getDecl());
621
622 // We only want to lay out virtual bases that aren't indirect primary bases
623 // of some other base.
624 if (I->isVirtual() && !IndirectPrimaryBases.count(BaseDecl)) {
625 // Only lay out the base once.
626 if (!LaidOutVirtualBases.insert(BaseDecl))
627 continue;
628
John McCall4d9f1422011-02-15 22:21:29 +0000629 CharUnits vbaseOffset = Layout.getVBaseClassOffset(BaseDecl);
630 LayoutVirtualBase(BaseDecl, vbaseOffset);
Anders Carlssona459adb2010-11-28 19:18:44 +0000631 }
632
633 if (!BaseDecl->getNumVBases()) {
634 // This base isn't interesting since it doesn't have any virtual bases.
635 continue;
636 }
637
638 LayoutVirtualBases(BaseDecl, Layout);
639 }
640}
641
Anders Carlssonaf9e5af2010-05-18 05:12:20 +0000642void
643CGRecordLayoutBuilder::LayoutNonVirtualBases(const CXXRecordDecl *RD,
644 const ASTRecordLayout &Layout) {
645 const CXXRecordDecl *PrimaryBase = Layout.getPrimaryBase();
646
647 // Check if we need to add a vtable pointer.
648 if (RD->isDynamicClass()) {
649 if (!PrimaryBase) {
650 const llvm::Type *FunctionType =
651 llvm::FunctionType::get(llvm::Type::getInt32Ty(Types.getLLVMContext()),
652 /*isVarArg=*/true);
653 const llvm::Type *VTableTy = FunctionType->getPointerTo();
654
John McCall4d9f1422011-02-15 22:21:29 +0000655 assert(NextFieldOffset.isZero() &&
Anders Carlssonaf9e5af2010-05-18 05:12:20 +0000656 "VTable pointer must come first!");
John McCall4d9f1422011-02-15 22:21:29 +0000657 AppendField(CharUnits::Zero(), VTableTy->getPointerTo());
Anders Carlssonaf9e5af2010-05-18 05:12:20 +0000658 } else {
Anders Carlsson7f95cd12010-11-24 23:12:57 +0000659 if (!Layout.isPrimaryBaseVirtual())
John McCall4d9f1422011-02-15 22:21:29 +0000660 LayoutNonVirtualBase(PrimaryBase, CharUnits::Zero());
Anders Carlsson1f95ee32010-11-25 01:59:35 +0000661 else
John McCall4d9f1422011-02-15 22:21:29 +0000662 LayoutVirtualBase(PrimaryBase, CharUnits::Zero());
Anders Carlssonaf9e5af2010-05-18 05:12:20 +0000663 }
664 }
665
666 // Layout the non-virtual bases.
667 for (CXXRecordDecl::base_class_const_iterator I = RD->bases_begin(),
668 E = RD->bases_end(); I != E; ++I) {
669 if (I->isVirtual())
670 continue;
671
672 const CXXRecordDecl *BaseDecl =
673 cast<CXXRecordDecl>(I->getType()->getAs<RecordType>()->getDecl());
674
675 // We've already laid out the primary base.
Anders Carlsson7f95cd12010-11-24 23:12:57 +0000676 if (BaseDecl == PrimaryBase && !Layout.isPrimaryBaseVirtual())
Anders Carlssonaf9e5af2010-05-18 05:12:20 +0000677 continue;
678
John McCall4d9f1422011-02-15 22:21:29 +0000679 LayoutNonVirtualBase(BaseDecl, Layout.getBaseClassOffset(BaseDecl));
Anders Carlssond681a292009-12-16 17:27:20 +0000680 }
681}
682
Argyrios Kyrtzidis648fcbe2010-12-10 00:11:00 +0000683bool
Anders Carlssonc1351ca2010-11-09 05:25:47 +0000684CGRecordLayoutBuilder::ComputeNonVirtualBaseType(const CXXRecordDecl *RD) {
685 const ASTRecordLayout &Layout = Types.getContext().getASTRecordLayout(RD);
686
Ken Dyckbec02852011-02-08 02:02:47 +0000687 CharUnits NonVirtualSize = Layout.getNonVirtualSize();
688 CharUnits NonVirtualAlign = Layout.getNonVirtualAlign();
John McCall4d9f1422011-02-15 22:21:29 +0000689 CharUnits AlignedNonVirtualTypeSize =
690 NonVirtualSize.RoundUpToAlignment(NonVirtualAlign);
Anders Carlssonc1351ca2010-11-09 05:25:47 +0000691
Anders Carlssonc1351ca2010-11-09 05:25:47 +0000692 // First check if we can use the same fields as for the complete class.
John McCall4d9f1422011-02-15 22:21:29 +0000693 CharUnits RecordSize = Layout.getSize();
John McCall0217dfc22011-02-15 06:40:56 +0000694 if (AlignedNonVirtualTypeSize == RecordSize)
Argyrios Kyrtzidis648fcbe2010-12-10 00:11:00 +0000695 return true;
Anders Carlssonc1351ca2010-11-09 05:25:47 +0000696
Anders Carlssonc1351ca2010-11-09 05:25:47 +0000697 // Check if we need padding.
John McCall4d9f1422011-02-15 22:21:29 +0000698 CharUnits AlignedNextFieldOffset =
699 NextFieldOffset.RoundUpToAlignment(getAlignmentAsLLVMStruct());
Anders Carlssonc1351ca2010-11-09 05:25:47 +0000700
John McCall0217dfc22011-02-15 06:40:56 +0000701 if (AlignedNextFieldOffset > AlignedNonVirtualTypeSize) {
702 assert(!Packed && "cannot layout even as packed struct");
Argyrios Kyrtzidis648fcbe2010-12-10 00:11:00 +0000703 return false; // Needs packing.
Anders Carlssonc1351ca2010-11-09 05:25:47 +0000704 }
705
John McCall0217dfc22011-02-15 06:40:56 +0000706 bool needsPadding = (AlignedNonVirtualTypeSize != AlignedNextFieldOffset);
707 if (needsPadding) {
John McCall4d9f1422011-02-15 22:21:29 +0000708 CharUnits NumBytes = AlignedNonVirtualTypeSize - AlignedNextFieldOffset;
John McCall0217dfc22011-02-15 06:40:56 +0000709 FieldTypes.push_back(getByteArrayType(NumBytes));
710 }
711
712 BaseSubobjectType = llvm::StructType::get(Types.getLLVMContext(),
713 FieldTypes, Packed);
714
715 if (needsPadding) {
716 // Pull the padding back off.
717 FieldTypes.pop_back();
718 }
719
Argyrios Kyrtzidis648fcbe2010-12-10 00:11:00 +0000720 return true;
Anders Carlssonc1351ca2010-11-09 05:25:47 +0000721}
722
Anders Carlsson307846f2009-07-23 03:17:50 +0000723bool CGRecordLayoutBuilder::LayoutFields(const RecordDecl *D) {
724 assert(!D->isUnion() && "Can't call LayoutFields on a union!");
John McCall4d9f1422011-02-15 22:21:29 +0000725 assert(!Alignment.isZero() && "Did not set alignment!");
Mike Stump11289f42009-09-09 15:08:12 +0000726
Anders Carlsson697f6592009-07-23 03:43:54 +0000727 const ASTRecordLayout &Layout = Types.getContext().getASTRecordLayout(D);
Mike Stump11289f42009-09-09 15:08:12 +0000728
Anders Carlssonc1351ca2010-11-09 05:25:47 +0000729 const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(D);
730 if (RD)
Anders Carlssonaf9e5af2010-05-18 05:12:20 +0000731 LayoutNonVirtualBases(RD, Layout);
Daniel Dunbar23ee4b72010-03-31 00:11:27 +0000732
Anders Carlsson307846f2009-07-23 03:17:50 +0000733 unsigned FieldNo = 0;
Fariborz Jahanian7b2b1ec2009-07-27 20:57:45 +0000734
Mike Stump11289f42009-09-09 15:08:12 +0000735 for (RecordDecl::field_iterator Field = D->field_begin(),
Anders Carlsson307846f2009-07-23 03:17:50 +0000736 FieldEnd = D->field_end(); Field != FieldEnd; ++Field, ++FieldNo) {
737 if (!LayoutField(*Field, Layout.getFieldOffset(FieldNo))) {
Mike Stump11289f42009-09-09 15:08:12 +0000738 assert(!Packed &&
Anders Carlsson307846f2009-07-23 03:17:50 +0000739 "Could not layout fields even with a packed LLVM struct!");
740 return false;
741 }
742 }
743
Anders Carlsson1f95ee32010-11-25 01:59:35 +0000744 if (RD) {
Anders Carlssona459adb2010-11-28 19:18:44 +0000745 // We've laid out the non-virtual bases and the fields, now compute the
746 // non-virtual base field types.
Argyrios Kyrtzidis648fcbe2010-12-10 00:11:00 +0000747 if (!ComputeNonVirtualBaseType(RD)) {
748 assert(!Packed && "Could not layout even with a packed LLVM struct!");
749 return false;
750 }
Anders Carlsson1f95ee32010-11-25 01:59:35 +0000751
Anders Carlssona459adb2010-11-28 19:18:44 +0000752 // And lay out the virtual bases.
753 RD->getIndirectPrimaryBases(IndirectPrimaryBases);
754 if (Layout.isPrimaryBaseVirtual())
755 IndirectPrimaryBases.insert(Layout.getPrimaryBase());
756 LayoutVirtualBases(RD, Layout);
757 }
Anders Carlssonc1351ca2010-11-09 05:25:47 +0000758
Anders Carlsson307846f2009-07-23 03:17:50 +0000759 // Append tail padding if necessary.
Ken Dyckb0fcc592011-02-11 01:54:29 +0000760 AppendTailPadding(Types.getContext().toBits(Layout.getSize()));
Mike Stump11289f42009-09-09 15:08:12 +0000761
Anders Carlsson307846f2009-07-23 03:17:50 +0000762 return true;
763}
764
Anders Carlssonb97a3ec2009-07-27 14:55:54 +0000765void CGRecordLayoutBuilder::AppendTailPadding(uint64_t RecordSize) {
766 assert(RecordSize % 8 == 0 && "Invalid record size!");
Mike Stump11289f42009-09-09 15:08:12 +0000767
John McCall8a3c5552011-02-26 08:41:59 +0000768 CharUnits RecordSizeInBytes =
769 Types.getContext().toCharUnitsFromBits(RecordSize);
Anders Carlssonfcaaa692011-04-17 21:56:13 +0000770 ResizeLastBaseFieldIfNecessary(RecordSizeInBytes);
771
John McCall4d9f1422011-02-15 22:21:29 +0000772 assert(NextFieldOffset <= RecordSizeInBytes && "Size mismatch!");
Mike Stump11289f42009-09-09 15:08:12 +0000773
John McCall4d9f1422011-02-15 22:21:29 +0000774 CharUnits AlignedNextFieldOffset =
775 NextFieldOffset.RoundUpToAlignment(getAlignmentAsLLVMStruct());
Anders Carlsson220bf4f2009-12-08 01:24:23 +0000776
777 if (AlignedNextFieldOffset == RecordSizeInBytes) {
778 // We don't need any padding.
779 return;
780 }
Daniel Dunbar23ee4b72010-03-31 00:11:27 +0000781
John McCall4d9f1422011-02-15 22:21:29 +0000782 CharUnits NumPadBytes = RecordSizeInBytes - NextFieldOffset;
Anders Carlssonb97a3ec2009-07-27 14:55:54 +0000783 AppendBytes(NumPadBytes);
784}
785
John McCall4d9f1422011-02-15 22:21:29 +0000786void CGRecordLayoutBuilder::AppendField(CharUnits fieldOffset,
787 const llvm::Type *fieldType) {
788 CharUnits fieldSize =
789 CharUnits::fromQuantity(Types.getTargetData().getTypeAllocSize(fieldType));
Anders Carlsson6e853bf2009-07-24 02:45:50 +0000790
John McCall4d9f1422011-02-15 22:21:29 +0000791 FieldTypes.push_back(fieldType);
Anders Carlsson307846f2009-07-23 03:17:50 +0000792
John McCall4d9f1422011-02-15 22:21:29 +0000793 NextFieldOffset = fieldOffset + fieldSize;
Anders Carlsson307846f2009-07-23 03:17:50 +0000794 BitsAvailableInLastField = 0;
795}
796
John McCall4d9f1422011-02-15 22:21:29 +0000797void CGRecordLayoutBuilder::AppendPadding(CharUnits fieldOffset,
798 CharUnits fieldAlignment) {
799 assert(NextFieldOffset <= fieldOffset &&
Anders Carlsson307846f2009-07-23 03:17:50 +0000800 "Incorrect field layout!");
Mike Stump11289f42009-09-09 15:08:12 +0000801
Anders Carlsson307846f2009-07-23 03:17:50 +0000802 // Round up the field offset to the alignment of the field type.
John McCall4d9f1422011-02-15 22:21:29 +0000803 CharUnits alignedNextFieldOffset =
804 NextFieldOffset.RoundUpToAlignment(fieldAlignment);
Anders Carlsson307846f2009-07-23 03:17:50 +0000805
John McCall4d9f1422011-02-15 22:21:29 +0000806 if (alignedNextFieldOffset < fieldOffset) {
Anders Carlsson307846f2009-07-23 03:17:50 +0000807 // Even with alignment, the field offset is not at the right place,
808 // insert padding.
John McCall4d9f1422011-02-15 22:21:29 +0000809 CharUnits padding = fieldOffset - NextFieldOffset;
Anders Carlsson307846f2009-07-23 03:17:50 +0000810
John McCall4d9f1422011-02-15 22:21:29 +0000811 AppendBytes(padding);
Anders Carlsson307846f2009-07-23 03:17:50 +0000812 }
813}
814
Anders Carlssonfcaaa692011-04-17 21:56:13 +0000815bool CGRecordLayoutBuilder::ResizeLastBaseFieldIfNecessary(CharUnits offset) {
816 // Check if we have a base to resize.
817 if (!LastLaidOutBase.isValid())
818 return false;
819
820 // This offset does not overlap with the tail padding.
821 if (offset >= NextFieldOffset)
822 return false;
823
824 // Restore the field offset and append an i8 array instead.
825 FieldTypes.pop_back();
826 NextFieldOffset = LastLaidOutBase.Offset;
827 AppendBytes(LastLaidOutBase.NonVirtualSize);
828 LastLaidOutBase.invalidate();
829
830 return true;
831}
832
John McCall4d9f1422011-02-15 22:21:29 +0000833const llvm::Type *CGRecordLayoutBuilder::getByteArrayType(CharUnits numBytes) {
834 assert(!numBytes.isZero() && "Empty byte arrays aren't allowed.");
Mike Stump11289f42009-09-09 15:08:12 +0000835
Owen Anderson41a75022009-08-13 21:57:51 +0000836 const llvm::Type *Ty = llvm::Type::getInt8Ty(Types.getLLVMContext());
John McCall4d9f1422011-02-15 22:21:29 +0000837 if (numBytes > CharUnits::One())
838 Ty = llvm::ArrayType::get(Ty, numBytes.getQuantity());
Mike Stump11289f42009-09-09 15:08:12 +0000839
Anders Carlssonc1351ca2010-11-09 05:25:47 +0000840 return Ty;
841}
842
John McCall4d9f1422011-02-15 22:21:29 +0000843void CGRecordLayoutBuilder::AppendBytes(CharUnits numBytes) {
844 if (numBytes.isZero())
Anders Carlssonc1351ca2010-11-09 05:25:47 +0000845 return;
846
Anders Carlsson307846f2009-07-23 03:17:50 +0000847 // Append the padding field
John McCall4d9f1422011-02-15 22:21:29 +0000848 AppendField(NextFieldOffset, getByteArrayType(numBytes));
Anders Carlsson307846f2009-07-23 03:17:50 +0000849}
850
John McCall4d9f1422011-02-15 22:21:29 +0000851CharUnits CGRecordLayoutBuilder::getTypeAlignment(const llvm::Type *Ty) const {
Anders Carlssond78fc892009-07-23 17:24:40 +0000852 if (Packed)
John McCall4d9f1422011-02-15 22:21:29 +0000853 return CharUnits::One();
Mike Stump11289f42009-09-09 15:08:12 +0000854
John McCall4d9f1422011-02-15 22:21:29 +0000855 return CharUnits::fromQuantity(Types.getTargetData().getABITypeAlignment(Ty));
Anders Carlsson307846f2009-07-23 03:17:50 +0000856}
857
John McCall4d9f1422011-02-15 22:21:29 +0000858CharUnits CGRecordLayoutBuilder::getAlignmentAsLLVMStruct() const {
Anders Carlssonacf877b2010-11-28 23:06:23 +0000859 if (Packed)
John McCall4d9f1422011-02-15 22:21:29 +0000860 return CharUnits::One();
Anders Carlssonacf877b2010-11-28 23:06:23 +0000861
John McCall4d9f1422011-02-15 22:21:29 +0000862 CharUnits maxAlignment = CharUnits::One();
Anders Carlssonacf877b2010-11-28 23:06:23 +0000863 for (size_t i = 0; i != FieldTypes.size(); ++i)
John McCall4d9f1422011-02-15 22:21:29 +0000864 maxAlignment = std::max(maxAlignment, getTypeAlignment(FieldTypes[i]));
Anders Carlssonacf877b2010-11-28 23:06:23 +0000865
John McCall4d9f1422011-02-15 22:21:29 +0000866 return maxAlignment;
Anders Carlssonacf877b2010-11-28 23:06:23 +0000867}
868
John McCall0217dfc22011-02-15 06:40:56 +0000869/// Merge in whether a field of the given type is zero-initializable.
John McCall614dbdc2010-08-22 21:01:12 +0000870void CGRecordLayoutBuilder::CheckZeroInitializable(QualType T) {
Anders Carlssond606de72009-08-23 01:25:01 +0000871 // This record already contains a member pointer.
John McCall0217dfc22011-02-15 06:40:56 +0000872 if (!IsZeroInitializableAsBase)
Anders Carlssond606de72009-08-23 01:25:01 +0000873 return;
Mike Stump11289f42009-09-09 15:08:12 +0000874
Anders Carlssond606de72009-08-23 01:25:01 +0000875 // Can only have member pointers if we're compiling C++.
876 if (!Types.getContext().getLangOptions().CPlusPlus)
877 return;
Mike Stump11289f42009-09-09 15:08:12 +0000878
John McCall0217dfc22011-02-15 06:40:56 +0000879 const Type *elementType = T->getBaseElementTypeUnsafe();
Mike Stump11289f42009-09-09 15:08:12 +0000880
John McCall0217dfc22011-02-15 06:40:56 +0000881 if (const MemberPointerType *MPT = elementType->getAs<MemberPointerType>()) {
John McCall614dbdc2010-08-22 21:01:12 +0000882 if (!Types.getCXXABI().isZeroInitializable(MPT))
John McCall0217dfc22011-02-15 06:40:56 +0000883 IsZeroInitializable = IsZeroInitializableAsBase = false;
884 } else if (const RecordType *RT = elementType->getAs<RecordType>()) {
Anders Carlssone8bfe412010-02-02 05:17:25 +0000885 const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
John McCall0217dfc22011-02-15 06:40:56 +0000886 const CGRecordLayout &Layout = Types.getCGRecordLayout(RD);
887 if (!Layout.isZeroInitializable())
888 IsZeroInitializable = IsZeroInitializableAsBase = false;
Daniel Dunbar23ee4b72010-03-31 00:11:27 +0000889 }
Anders Carlssond606de72009-08-23 01:25:01 +0000890}
891
Daniel Dunbar23ee4b72010-03-31 00:11:27 +0000892CGRecordLayout *CodeGenTypes::ComputeRecordLayout(const RecordDecl *D) {
893 CGRecordLayoutBuilder Builder(*this);
Mike Stump11289f42009-09-09 15:08:12 +0000894
Anders Carlsson307846f2009-07-23 03:17:50 +0000895 Builder.Layout(D);
Anders Carlssone1d5ca52009-07-24 15:20:52 +0000896
Anders Carlsson36e2fa82010-11-24 19:37:16 +0000897 const llvm::StructType *Ty = llvm::StructType::get(getLLVMContext(),
898 Builder.FieldTypes,
899 Builder.Packed);
Mike Stump11289f42009-09-09 15:08:12 +0000900
John McCall0217dfc22011-02-15 06:40:56 +0000901 // If we're in C++, compute the base subobject type.
Anders Carlsson36e2fa82010-11-24 19:37:16 +0000902 const llvm::StructType *BaseTy = 0;
Anders Carlssonc1351ca2010-11-09 05:25:47 +0000903 if (isa<CXXRecordDecl>(D)) {
John McCall0217dfc22011-02-15 06:40:56 +0000904 BaseTy = Builder.BaseSubobjectType;
905 if (!BaseTy) BaseTy = Ty;
Anders Carlssonc1351ca2010-11-09 05:25:47 +0000906 }
907
Daniel Dunbar034299e2010-03-31 01:09:11 +0000908 CGRecordLayout *RL =
John McCall0217dfc22011-02-15 06:40:56 +0000909 new CGRecordLayout(Ty, BaseTy, Builder.IsZeroInitializable,
910 Builder.IsZeroInitializableAsBase);
Daniel Dunbar034299e2010-03-31 01:09:11 +0000911
John McCall0217dfc22011-02-15 06:40:56 +0000912 RL->NonVirtualBases.swap(Builder.NonVirtualBases);
913 RL->CompleteObjectVirtualBases.swap(Builder.VirtualBases);
Anders Carlsson061ca522010-05-18 05:22:06 +0000914
Anders Carlsson307846f2009-07-23 03:17:50 +0000915 // Add all the field numbers.
John McCall0217dfc22011-02-15 06:40:56 +0000916 RL->FieldInfo.swap(Builder.Fields);
Anders Carlsson307846f2009-07-23 03:17:50 +0000917
918 // Add bitfield info.
John McCall0217dfc22011-02-15 06:40:56 +0000919 RL->BitFields.swap(Builder.BitFields);
Mike Stump11289f42009-09-09 15:08:12 +0000920
Daniel Dunbar2ea51832010-04-19 20:44:47 +0000921 // Dump the layout, if requested.
Daniel Dunbarb935b932010-04-13 20:58:55 +0000922 if (getContext().getLangOptions().DumpRecordLayouts) {
Daniel Dunbarccabe482010-04-19 20:44:53 +0000923 llvm::errs() << "\n*** Dumping IRgen Record Layout\n";
Daniel Dunbarb935b932010-04-13 20:58:55 +0000924 llvm::errs() << "Record: ";
925 D->dump();
926 llvm::errs() << "\nLayout: ";
Daniel Dunbarb97bff92010-04-12 18:14:18 +0000927 RL->dump();
Daniel Dunbarb935b932010-04-13 20:58:55 +0000928 }
Daniel Dunbarb97bff92010-04-12 18:14:18 +0000929
Daniel Dunbar488f55c2010-04-22 02:35:46 +0000930#ifndef NDEBUG
Daniel Dunbar2ea51832010-04-19 20:44:47 +0000931 // Verify that the computed LLVM struct size matches the AST layout size.
Anders Carlssonc1351ca2010-11-09 05:25:47 +0000932 const ASTRecordLayout &Layout = getContext().getASTRecordLayout(D);
933
Ken Dyckb0fcc592011-02-11 01:54:29 +0000934 uint64_t TypeSizeInBits = getContext().toBits(Layout.getSize());
Daniel Dunbar488f55c2010-04-22 02:35:46 +0000935 assert(TypeSizeInBits == getTargetData().getTypeAllocSizeInBits(Ty) &&
Daniel Dunbar2ea51832010-04-19 20:44:47 +0000936 "Type size mismatch!");
937
Anders Carlssonc1351ca2010-11-09 05:25:47 +0000938 if (BaseTy) {
Ken Dyckbec02852011-02-08 02:02:47 +0000939 CharUnits NonVirtualSize = Layout.getNonVirtualSize();
940 CharUnits NonVirtualAlign = Layout.getNonVirtualAlign();
941 CharUnits AlignedNonVirtualTypeSize =
942 NonVirtualSize.RoundUpToAlignment(NonVirtualAlign);
943
944 uint64_t AlignedNonVirtualTypeSizeInBits =
Ken Dyckb0fcc592011-02-11 01:54:29 +0000945 getContext().toBits(AlignedNonVirtualTypeSize);
Anders Carlssonc1351ca2010-11-09 05:25:47 +0000946
947 assert(AlignedNonVirtualTypeSizeInBits ==
948 getTargetData().getTypeAllocSizeInBits(BaseTy) &&
949 "Type size mismatch!");
950 }
951
Daniel Dunbar2ba67442010-04-21 19:10:49 +0000952 // Verify that the LLVM and AST field offsets agree.
Daniel Dunbar2ba67442010-04-21 19:10:49 +0000953 const llvm::StructType *ST =
954 dyn_cast<llvm::StructType>(RL->getLLVMType());
955 const llvm::StructLayout *SL = getTargetData().getStructLayout(ST);
956
957 const ASTRecordLayout &AST_RL = getContext().getASTRecordLayout(D);
958 RecordDecl::field_iterator it = D->field_begin();
959 for (unsigned i = 0, e = AST_RL.getFieldCount(); i != e; ++i, ++it) {
960 const FieldDecl *FD = *it;
Daniel Dunbar488f55c2010-04-22 02:35:46 +0000961
962 // For non-bit-fields, just check that the LLVM struct offset matches the
963 // AST offset.
964 if (!FD->isBitField()) {
Daniel Dunbar2ba67442010-04-21 19:10:49 +0000965 unsigned FieldNo = RL->getLLVMFieldNo(FD);
966 assert(AST_RL.getFieldOffset(i) == SL->getElementOffsetInBits(FieldNo) &&
967 "Invalid field offset!");
Daniel Dunbar488f55c2010-04-22 02:35:46 +0000968 continue;
969 }
970
971 // Ignore unnamed bit-fields.
972 if (!FD->getDeclName())
973 continue;
974
975 const CGBitFieldInfo &Info = RL->getBitFieldInfo(FD);
976 for (unsigned i = 0, e = Info.getNumComponents(); i != e; ++i) {
977 const CGBitFieldInfo::AccessInfo &AI = Info.getComponent(i);
978
979 // Verify that every component access is within the structure.
980 uint64_t FieldOffset = SL->getElementOffsetInBits(AI.FieldIndex);
John McCall8a3c5552011-02-26 08:41:59 +0000981 uint64_t AccessBitOffset = FieldOffset +
Ken Dyckf76759c2011-04-24 10:04:59 +0000982 getContext().toBits(AI.FieldByteOffset);
Daniel Dunbar488f55c2010-04-22 02:35:46 +0000983 assert(AccessBitOffset + AI.AccessWidth <= TypeSizeInBits &&
984 "Invalid bit-field access (out of range)!");
Daniel Dunbar2ba67442010-04-21 19:10:49 +0000985 }
986 }
987#endif
Daniel Dunbar2ea51832010-04-19 20:44:47 +0000988
Daniel Dunbar034299e2010-03-31 01:09:11 +0000989 return RL;
Anders Carlsson307846f2009-07-23 03:17:50 +0000990}
Daniel Dunbarb97bff92010-04-12 18:14:18 +0000991
992void CGRecordLayout::print(llvm::raw_ostream &OS) const {
993 OS << "<CGRecordLayout\n";
John McCall0217dfc22011-02-15 06:40:56 +0000994 OS << " LLVMType:" << *CompleteObjectType << "\n";
995 if (BaseSubobjectType)
996 OS << " NonVirtualBaseLLVMType:" << *BaseSubobjectType << "\n";
John McCall614dbdc2010-08-22 21:01:12 +0000997 OS << " IsZeroInitializable:" << IsZeroInitializable << "\n";
Daniel Dunbarb97bff92010-04-12 18:14:18 +0000998 OS << " BitFields:[\n";
Daniel Dunbarb6f4b052010-04-22 02:35:36 +0000999
1000 // Print bit-field infos in declaration order.
1001 std::vector<std::pair<unsigned, const CGBitFieldInfo*> > BFIs;
Daniel Dunbarb97bff92010-04-12 18:14:18 +00001002 for (llvm::DenseMap<const FieldDecl*, CGBitFieldInfo>::const_iterator
1003 it = BitFields.begin(), ie = BitFields.end();
1004 it != ie; ++it) {
Daniel Dunbarb6f4b052010-04-22 02:35:36 +00001005 const RecordDecl *RD = it->first->getParent();
1006 unsigned Index = 0;
1007 for (RecordDecl::field_iterator
1008 it2 = RD->field_begin(); *it2 != it->first; ++it2)
1009 ++Index;
1010 BFIs.push_back(std::make_pair(Index, &it->second));
1011 }
1012 llvm::array_pod_sort(BFIs.begin(), BFIs.end());
1013 for (unsigned i = 0, e = BFIs.size(); i != e; ++i) {
Daniel Dunbarb935b932010-04-13 20:58:55 +00001014 OS.indent(4);
Daniel Dunbarb6f4b052010-04-22 02:35:36 +00001015 BFIs[i].second->print(OS);
Daniel Dunbarb97bff92010-04-12 18:14:18 +00001016 OS << "\n";
1017 }
Daniel Dunbarb6f4b052010-04-22 02:35:36 +00001018
Daniel Dunbarb97bff92010-04-12 18:14:18 +00001019 OS << "]>\n";
1020}
1021
1022void CGRecordLayout::dump() const {
1023 print(llvm::errs());
1024}
1025
1026void CGBitFieldInfo::print(llvm::raw_ostream &OS) const {
1027 OS << "<CGBitFieldInfo";
Daniel Dunbarb97bff92010-04-12 18:14:18 +00001028 OS << " Size:" << Size;
Daniel Dunbarb935b932010-04-13 20:58:55 +00001029 OS << " IsSigned:" << IsSigned << "\n";
1030
1031 OS.indent(4 + strlen("<CGBitFieldInfo"));
1032 OS << " NumComponents:" << getNumComponents();
1033 OS << " Components: [";
1034 if (getNumComponents()) {
1035 OS << "\n";
1036 for (unsigned i = 0, e = getNumComponents(); i != e; ++i) {
1037 const AccessInfo &AI = getComponent(i);
1038 OS.indent(8);
1039 OS << "<AccessInfo"
1040 << " FieldIndex:" << AI.FieldIndex
Ken Dyckf76759c2011-04-24 10:04:59 +00001041 << " FieldByteOffset:" << AI.FieldByteOffset.getQuantity()
Daniel Dunbarb935b932010-04-13 20:58:55 +00001042 << " FieldBitStart:" << AI.FieldBitStart
1043 << " AccessWidth:" << AI.AccessWidth << "\n";
1044 OS.indent(8 + strlen("<AccessInfo"));
1045 OS << " AccessAlignment:" << AI.AccessAlignment
1046 << " TargetBitOffset:" << AI.TargetBitOffset
1047 << " TargetBitWidth:" << AI.TargetBitWidth
1048 << ">\n";
1049 }
1050 OS.indent(4);
1051 }
1052 OS << "]>";
Daniel Dunbarb97bff92010-04-12 18:14:18 +00001053}
1054
1055void CGBitFieldInfo::dump() const {
1056 print(llvm::errs());
1057}