2010-03-31 08:11:27 +08:00
|
|
|
//===--- CGRecordLayoutBuilder.cpp - CGRecordLayout builder ----*- C++ -*-===//
|
2009-07-23 11:17:50 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2010-03-31 08:11:27 +08:00
|
|
|
// Builder implementation for CGRecordLayout objects.
|
2009-07-23 11:17:50 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-03-31 06:26:10 +08:00
|
|
|
#include "CGRecordLayout.h"
|
2009-07-23 11:17:50 +08:00
|
|
|
#include "clang/AST/ASTContext.h"
|
|
|
|
#include "clang/AST/Attr.h"
|
|
|
|
#include "clang/AST/DeclCXX.h"
|
|
|
|
#include "clang/AST/Expr.h"
|
|
|
|
#include "clang/AST/RecordLayout.h"
|
|
|
|
#include "CodeGenTypes.h"
|
2010-03-31 08:11:27 +08:00
|
|
|
#include "llvm/Type.h"
|
2009-07-23 11:17:50 +08:00
|
|
|
#include "llvm/DerivedTypes.h"
|
|
|
|
#include "llvm/Target/TargetData.h"
|
|
|
|
using namespace clang;
|
|
|
|
using namespace CodeGen;
|
|
|
|
|
2010-03-31 08:11:27 +08:00
|
|
|
namespace clang {
|
|
|
|
namespace CodeGen {
|
|
|
|
|
|
|
|
class CGRecordLayoutBuilder {
|
|
|
|
public:
|
|
|
|
/// FieldTypes - Holds the LLVM types that the struct is created from.
|
|
|
|
std::vector<const llvm::Type *> FieldTypes;
|
|
|
|
|
|
|
|
/// LLVMFieldInfo - Holds a field and its corresponding LLVM field number.
|
|
|
|
typedef std::pair<const FieldDecl *, unsigned> LLVMFieldInfo;
|
|
|
|
llvm::SmallVector<LLVMFieldInfo, 16> LLVMFields;
|
|
|
|
|
|
|
|
/// LLVMBitFieldInfo - Holds location and size information about a bit field.
|
|
|
|
struct LLVMBitFieldInfo {
|
|
|
|
LLVMBitFieldInfo(const FieldDecl *FD, unsigned FieldNo, unsigned Start,
|
|
|
|
unsigned Size)
|
|
|
|
: FD(FD), FieldNo(FieldNo), Start(Start), Size(Size) { }
|
|
|
|
|
|
|
|
const FieldDecl *FD;
|
|
|
|
|
|
|
|
unsigned FieldNo;
|
|
|
|
unsigned Start;
|
|
|
|
unsigned Size;
|
|
|
|
};
|
|
|
|
llvm::SmallVector<LLVMBitFieldInfo, 16> LLVMBitFields;
|
|
|
|
|
|
|
|
/// ContainsPointerToDataMember - Whether one of the fields in this record
|
|
|
|
/// layout is a pointer to data member, or a struct that contains pointer to
|
|
|
|
/// data member.
|
|
|
|
bool ContainsPointerToDataMember;
|
|
|
|
|
|
|
|
/// Packed - Whether the resulting LLVM struct will be packed or not.
|
|
|
|
bool Packed;
|
|
|
|
|
|
|
|
private:
|
|
|
|
CodeGenTypes &Types;
|
|
|
|
|
|
|
|
/// Alignment - Contains the alignment of the RecordDecl.
|
|
|
|
//
|
|
|
|
// FIXME: This is not needed and should be removed.
|
|
|
|
unsigned Alignment;
|
|
|
|
|
|
|
|
/// AlignmentAsLLVMStruct - Will contain the maximum alignment of all the
|
|
|
|
/// LLVM types.
|
|
|
|
unsigned AlignmentAsLLVMStruct;
|
|
|
|
|
|
|
|
/// BitsAvailableInLastField - If a bit field spans only part of a LLVM field,
|
|
|
|
/// this will have the number of bits still available in the field.
|
|
|
|
char BitsAvailableInLastField;
|
|
|
|
|
|
|
|
/// NextFieldOffsetInBytes - Holds the next field offset in bytes.
|
|
|
|
uint64_t NextFieldOffsetInBytes;
|
|
|
|
|
|
|
|
/// LayoutUnion - Will layout a union RecordDecl.
|
|
|
|
void LayoutUnion(const RecordDecl *D);
|
|
|
|
|
|
|
|
/// LayoutField - try to layout all fields in the record decl.
|
|
|
|
/// Returns false if the operation failed because the struct is not packed.
|
|
|
|
bool LayoutFields(const RecordDecl *D);
|
|
|
|
|
|
|
|
/// LayoutBases - layout the bases and vtable pointer of a record decl.
|
|
|
|
void LayoutBases(const CXXRecordDecl *RD, const ASTRecordLayout &Layout);
|
|
|
|
|
|
|
|
/// LayoutField - layout a single field. Returns false if the operation failed
|
|
|
|
/// because the current struct is not packed.
|
|
|
|
bool LayoutField(const FieldDecl *D, uint64_t FieldOffset);
|
|
|
|
|
|
|
|
/// LayoutBitField - layout a single bit field.
|
|
|
|
void LayoutBitField(const FieldDecl *D, uint64_t FieldOffset);
|
|
|
|
|
|
|
|
/// AppendField - Appends a field with the given offset and type.
|
|
|
|
void AppendField(uint64_t FieldOffsetInBytes, const llvm::Type *FieldTy);
|
|
|
|
|
|
|
|
/// AppendPadding - Appends enough padding bytes so that the total struct
|
|
|
|
/// size matches the alignment of the passed in type.
|
|
|
|
void AppendPadding(uint64_t FieldOffsetInBytes, const llvm::Type *FieldTy);
|
|
|
|
|
|
|
|
/// AppendPadding - Appends enough padding bytes so that the total
|
|
|
|
/// struct size is a multiple of the field alignment.
|
|
|
|
void AppendPadding(uint64_t FieldOffsetInBytes, unsigned FieldAlignment);
|
|
|
|
|
|
|
|
/// AppendBytes - Append a given number of bytes to the record.
|
|
|
|
void AppendBytes(uint64_t NumBytes);
|
|
|
|
|
|
|
|
/// AppendTailPadding - Append enough tail padding so that the type will have
|
|
|
|
/// the passed size.
|
|
|
|
void AppendTailPadding(uint64_t RecordSize);
|
|
|
|
|
|
|
|
unsigned getTypeAlignment(const llvm::Type *Ty) const;
|
|
|
|
uint64_t getTypeSizeInBytes(const llvm::Type *Ty) const;
|
|
|
|
|
|
|
|
/// CheckForPointerToDataMember - Check if the given type contains a pointer
|
|
|
|
/// to data member.
|
|
|
|
void CheckForPointerToDataMember(QualType T);
|
|
|
|
|
|
|
|
public:
|
|
|
|
CGRecordLayoutBuilder(CodeGenTypes &Types)
|
|
|
|
: ContainsPointerToDataMember(false), Packed(false), Types(Types),
|
|
|
|
Alignment(0), AlignmentAsLLVMStruct(1),
|
|
|
|
BitsAvailableInLastField(0), NextFieldOffsetInBytes(0) { }
|
|
|
|
|
|
|
|
/// Layout - Will layout a RecordDecl.
|
|
|
|
void Layout(const RecordDecl *D);
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-23 11:17:50 +08:00
|
|
|
void CGRecordLayoutBuilder::Layout(const RecordDecl *D) {
|
2009-08-09 03:38:24 +08:00
|
|
|
Alignment = Types.getContext().getASTRecordLayout(D).getAlignment() / 8;
|
2009-09-03 01:51:33 +08:00
|
|
|
Packed = D->hasAttr<PackedAttr>();
|
2009-08-09 03:38:24 +08:00
|
|
|
|
2009-07-23 11:43:54 +08:00
|
|
|
if (D->isUnion()) {
|
|
|
|
LayoutUnion(D);
|
|
|
|
return;
|
|
|
|
}
|
2009-08-09 02:23:56 +08:00
|
|
|
|
2009-07-23 11:17:50 +08:00
|
|
|
if (LayoutFields(D))
|
|
|
|
return;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-07-23 11:17:50 +08:00
|
|
|
// We weren't able to layout the struct. Try again with a packed struct
|
2009-07-24 01:24:40 +08:00
|
|
|
Packed = true;
|
2009-07-23 11:17:50 +08:00
|
|
|
AlignmentAsLLVMStruct = 1;
|
2009-07-29 01:56:36 +08:00
|
|
|
NextFieldOffsetInBytes = 0;
|
2009-07-23 11:17:50 +08:00
|
|
|
FieldTypes.clear();
|
|
|
|
LLVMFields.clear();
|
|
|
|
LLVMBitFields.clear();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-07-23 11:17:50 +08:00
|
|
|
LayoutFields(D);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGRecordLayoutBuilder::LayoutBitField(const FieldDecl *D,
|
|
|
|
uint64_t FieldOffset) {
|
2009-09-09 23:08:12 +08:00
|
|
|
uint64_t FieldSize =
|
2009-07-23 11:17:50 +08:00
|
|
|
D->getBitWidth()->EvaluateAsInt(Types.getContext()).getZExtValue();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-07-23 11:17:50 +08:00
|
|
|
if (FieldSize == 0)
|
|
|
|
return;
|
|
|
|
|
2009-07-29 01:56:36 +08:00
|
|
|
uint64_t NextFieldOffset = NextFieldOffsetInBytes * 8;
|
2009-07-23 11:17:50 +08:00
|
|
|
unsigned NumBytesToAppend;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-07-23 11:17:50 +08:00
|
|
|
if (FieldOffset < NextFieldOffset) {
|
|
|
|
assert(BitsAvailableInLastField && "Bitfield size mismatch!");
|
2009-07-29 01:56:36 +08:00
|
|
|
assert(NextFieldOffsetInBytes && "Must have laid out at least one byte!");
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-07-23 11:17:50 +08:00
|
|
|
// The bitfield begins in the previous bit-field.
|
2009-09-09 23:08:12 +08:00
|
|
|
NumBytesToAppend =
|
2009-07-23 11:17:50 +08:00
|
|
|
llvm::RoundUpToAlignment(FieldSize - BitsAvailableInLastField, 8) / 8;
|
|
|
|
} else {
|
|
|
|
assert(FieldOffset % 8 == 0 && "Field offset not aligned correctly");
|
|
|
|
|
|
|
|
// Append padding if necessary.
|
|
|
|
AppendBytes((FieldOffset - NextFieldOffset) / 8);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
|
|
NumBytesToAppend =
|
2009-07-23 11:17:50 +08:00
|
|
|
llvm::RoundUpToAlignment(FieldSize, 8) / 8;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-07-23 11:17:50 +08:00
|
|
|
assert(NumBytesToAppend && "No bytes to append!");
|
|
|
|
}
|
|
|
|
|
|
|
|
const llvm::Type *Ty = Types.ConvertTypeForMemRecursive(D->getType());
|
|
|
|
uint64_t TypeSizeInBits = getTypeSizeInBytes(Ty) * 8;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-07-24 01:01:21 +08:00
|
|
|
LLVMBitFields.push_back(LLVMBitFieldInfo(D, FieldOffset / TypeSizeInBits,
|
2009-09-09 23:08:12 +08:00
|
|
|
FieldOffset % TypeSizeInBits,
|
2009-07-23 11:17:50 +08:00
|
|
|
FieldSize));
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-07-23 11:17:50 +08:00
|
|
|
AppendBytes(NumBytesToAppend);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
|
|
BitsAvailableInLastField =
|
2009-07-29 01:56:36 +08:00
|
|
|
NextFieldOffsetInBytes * 8 - (FieldOffset + FieldSize);
|
2009-07-23 11:17:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CGRecordLayoutBuilder::LayoutField(const FieldDecl *D,
|
|
|
|
uint64_t FieldOffset) {
|
|
|
|
// If the field is packed, then we need a packed struct.
|
2009-08-09 02:23:56 +08:00
|
|
|
if (!Packed && D->hasAttr<PackedAttr>())
|
2009-07-23 11:17:50 +08:00
|
|
|
return false;
|
|
|
|
|
|
|
|
if (D->isBitField()) {
|
|
|
|
// We must use packed structs for unnamed bit fields since they
|
|
|
|
// don't affect the struct alignment.
|
2009-07-24 01:24:40 +08:00
|
|
|
if (!Packed && !D->getDeclName())
|
2009-07-23 11:17:50 +08:00
|
|
|
return false;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-07-23 11:17:50 +08:00
|
|
|
LayoutBitField(D, FieldOffset);
|
|
|
|
return true;
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2010-02-02 13:17:25 +08:00
|
|
|
// Check if we have a pointer to data member in this field.
|
|
|
|
CheckForPointerToDataMember(D->getType());
|
2010-03-31 08:11:27 +08:00
|
|
|
|
2009-08-05 00:29:15 +08:00
|
|
|
assert(FieldOffset % 8 == 0 && "FieldOffset is not on a byte boundary!");
|
|
|
|
uint64_t FieldOffsetInBytes = FieldOffset / 8;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-07-23 11:17:50 +08:00
|
|
|
const llvm::Type *Ty = Types.ConvertTypeForMemRecursive(D->getType());
|
2009-08-05 00:29:15 +08:00
|
|
|
unsigned TypeAlignment = getTypeAlignment(Ty);
|
2009-07-23 11:17:50 +08:00
|
|
|
|
2009-08-09 03:38:24 +08:00
|
|
|
// If the type alignment is larger then the struct alignment, we must use
|
|
|
|
// a packed struct.
|
|
|
|
if (TypeAlignment > Alignment) {
|
|
|
|
assert(!Packed && "Alignment is wrong even with packed struct!");
|
|
|
|
return false;
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-09 03:38:24 +08:00
|
|
|
if (const RecordType *RT = D->getType()->getAs<RecordType>()) {
|
|
|
|
const RecordDecl *RD = cast<RecordDecl>(RT->getDecl());
|
|
|
|
if (const PragmaPackAttr *PPA = RD->getAttr<PragmaPackAttr>()) {
|
|
|
|
if (PPA->getAlignment() != TypeAlignment * 8 && !Packed)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-05 00:29:15 +08:00
|
|
|
// Round up the field offset to the alignment of the field type.
|
2009-09-09 23:08:12 +08:00
|
|
|
uint64_t AlignedNextFieldOffsetInBytes =
|
2009-08-05 00:29:15 +08:00
|
|
|
llvm::RoundUpToAlignment(NextFieldOffsetInBytes, TypeAlignment);
|
|
|
|
|
|
|
|
if (FieldOffsetInBytes < AlignedNextFieldOffsetInBytes) {
|
|
|
|
assert(!Packed && "Could not place field even with packed struct!");
|
|
|
|
return false;
|
2009-07-23 11:17:50 +08:00
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-05 00:29:15 +08:00
|
|
|
if (AlignedNextFieldOffsetInBytes < FieldOffsetInBytes) {
|
|
|
|
// Even with alignment, the field offset is not at the right place,
|
|
|
|
// insert padding.
|
|
|
|
uint64_t PaddingInBytes = FieldOffsetInBytes - NextFieldOffsetInBytes;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-05 00:29:15 +08:00
|
|
|
AppendBytes(PaddingInBytes);
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-07-23 11:17:50 +08:00
|
|
|
// Now append the field.
|
|
|
|
LLVMFields.push_back(LLVMFieldInfo(D, FieldTypes.size()));
|
2009-07-24 10:45:50 +08:00
|
|
|
AppendField(FieldOffsetInBytes, Ty);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-07-23 11:17:50 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-07-23 11:43:54 +08:00
|
|
|
void CGRecordLayoutBuilder::LayoutUnion(const RecordDecl *D) {
|
|
|
|
assert(D->isUnion() && "Can't call LayoutUnion on a non-union record!");
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-07-23 11:43:54 +08:00
|
|
|
const ASTRecordLayout &Layout = Types.getContext().getASTRecordLayout(D);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-07-23 11:43:54 +08:00
|
|
|
const llvm::Type *Ty = 0;
|
|
|
|
uint64_t Size = 0;
|
|
|
|
unsigned Align = 0;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2010-01-29 02:22:03 +08:00
|
|
|
bool HasOnlyZeroSizedBitFields = true;
|
2010-03-31 08:11:27 +08:00
|
|
|
|
2009-07-23 11:43:54 +08:00
|
|
|
unsigned FieldNo = 0;
|
2009-09-09 23:08:12 +08:00
|
|
|
for (RecordDecl::field_iterator Field = D->field_begin(),
|
2009-07-23 11:43:54 +08:00
|
|
|
FieldEnd = D->field_end(); Field != FieldEnd; ++Field, ++FieldNo) {
|
2009-09-09 23:08:12 +08:00
|
|
|
assert(Layout.getFieldOffset(FieldNo) == 0 &&
|
2009-07-23 11:43:54 +08:00
|
|
|
"Union field offset did not start at the beginning of record!");
|
2009-07-23 12:00:39 +08:00
|
|
|
|
|
|
|
if (Field->isBitField()) {
|
2009-09-09 23:08:12 +08:00
|
|
|
uint64_t FieldSize =
|
2009-07-23 12:00:39 +08:00
|
|
|
Field->getBitWidth()->EvaluateAsInt(Types.getContext()).getZExtValue();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-07-23 12:00:39 +08:00
|
|
|
// Ignore zero sized bit fields.
|
|
|
|
if (FieldSize == 0)
|
|
|
|
continue;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-07-24 06:52:34 +08:00
|
|
|
// Add the bit field info.
|
2010-03-31 08:55:13 +08:00
|
|
|
LLVMBitFields.push_back(LLVMBitFieldInfo(*Field, 0, 0, FieldSize));
|
|
|
|
} else {
|
|
|
|
LLVMFields.push_back(LLVMFieldInfo(*Field, 0));
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2010-01-29 02:22:03 +08:00
|
|
|
HasOnlyZeroSizedBitFields = false;
|
2010-03-31 08:11:27 +08:00
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
const llvm::Type *FieldTy =
|
2009-07-23 11:43:54 +08:00
|
|
|
Types.ConvertTypeForMemRecursive(Field->getType());
|
2009-07-24 05:52:03 +08:00
|
|
|
unsigned FieldAlign = Types.getTargetData().getABITypeAlignment(FieldTy);
|
|
|
|
uint64_t FieldSize = Types.getTargetData().getTypeAllocSize(FieldTy);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-07-23 11:43:54 +08:00
|
|
|
if (FieldAlign < Align)
|
|
|
|
continue;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-07-23 11:43:54 +08:00
|
|
|
if (FieldAlign > Align || FieldSize > Size) {
|
|
|
|
Ty = FieldTy;
|
|
|
|
Align = FieldAlign;
|
|
|
|
Size = FieldSize;
|
|
|
|
}
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-07-23 11:43:54 +08:00
|
|
|
// Now add our field.
|
2009-09-04 06:56:02 +08:00
|
|
|
if (Ty) {
|
2009-07-24 10:45:50 +08:00
|
|
|
AppendField(0, Ty);
|
2009-09-04 06:56:02 +08:00
|
|
|
|
|
|
|
if (getTypeAlignment(Ty) > Layout.getAlignment() / 8) {
|
|
|
|
// We need a packed struct.
|
|
|
|
Packed = true;
|
|
|
|
Align = 1;
|
|
|
|
}
|
|
|
|
}
|
2009-11-07 04:47:40 +08:00
|
|
|
if (!Align) {
|
2010-01-29 02:22:03 +08:00
|
|
|
assert(HasOnlyZeroSizedBitFields &&
|
|
|
|
"0-align record did not have all zero-sized bit-fields!");
|
2009-11-07 04:47:40 +08:00
|
|
|
Align = 1;
|
|
|
|
}
|
2010-03-31 08:11:27 +08:00
|
|
|
|
2009-07-23 11:43:54 +08:00
|
|
|
// Append tail padding.
|
|
|
|
if (Layout.getSize() / 8 > Size)
|
|
|
|
AppendPadding(Layout.getSize() / 8, Align);
|
|
|
|
}
|
|
|
|
|
2009-12-17 01:27:20 +08:00
|
|
|
void CGRecordLayoutBuilder::LayoutBases(const CXXRecordDecl *RD,
|
|
|
|
const ASTRecordLayout &Layout) {
|
|
|
|
// Check if we need to add a vtable pointer.
|
|
|
|
if (RD->isDynamicClass() && !Layout.getPrimaryBase()) {
|
2010-03-31 08:11:27 +08:00
|
|
|
const llvm::Type *Int8PtrTy =
|
2009-12-17 01:27:20 +08:00
|
|
|
llvm::Type::getInt8PtrTy(Types.getLLVMContext());
|
2010-03-31 08:11:27 +08:00
|
|
|
|
2009-12-17 01:27:20 +08:00
|
|
|
assert(NextFieldOffsetInBytes == 0 &&
|
|
|
|
"Vtable pointer must come first!");
|
|
|
|
AppendField(NextFieldOffsetInBytes, Int8PtrTy->getPointerTo());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-23 11:17:50 +08:00
|
|
|
bool CGRecordLayoutBuilder::LayoutFields(const RecordDecl *D) {
|
|
|
|
assert(!D->isUnion() && "Can't call LayoutFields on a union!");
|
2009-08-09 03:38:24 +08:00
|
|
|
assert(Alignment && "Did not set alignment!");
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-07-23 11:43:54 +08:00
|
|
|
const ASTRecordLayout &Layout = Types.getContext().getASTRecordLayout(D);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-12-17 01:27:20 +08:00
|
|
|
if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(D))
|
|
|
|
LayoutBases(RD, Layout);
|
2010-03-31 08:11:27 +08:00
|
|
|
|
2009-07-23 11:17:50 +08:00
|
|
|
unsigned FieldNo = 0;
|
2009-07-28 04:57:45 +08:00
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
for (RecordDecl::field_iterator Field = D->field_begin(),
|
2009-07-23 11:17:50 +08:00
|
|
|
FieldEnd = D->field_end(); Field != FieldEnd; ++Field, ++FieldNo) {
|
|
|
|
if (!LayoutField(*Field, Layout.getFieldOffset(FieldNo))) {
|
2009-09-09 23:08:12 +08:00
|
|
|
assert(!Packed &&
|
2009-07-23 11:17:50 +08:00
|
|
|
"Could not layout fields even with a packed LLVM struct!");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Append tail padding if necessary.
|
2009-07-27 22:55:54 +08:00
|
|
|
AppendTailPadding(Layout.getSize());
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-07-23 11:17:50 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-07-27 22:55:54 +08:00
|
|
|
void CGRecordLayoutBuilder::AppendTailPadding(uint64_t RecordSize) {
|
|
|
|
assert(RecordSize % 8 == 0 && "Invalid record size!");
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-07-27 22:55:54 +08:00
|
|
|
uint64_t RecordSizeInBytes = RecordSize / 8;
|
2009-07-29 01:56:36 +08:00
|
|
|
assert(NextFieldOffsetInBytes <= RecordSizeInBytes && "Size mismatch!");
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2010-03-31 08:11:27 +08:00
|
|
|
uint64_t AlignedNextFieldOffset =
|
2009-12-08 09:24:23 +08:00
|
|
|
llvm::RoundUpToAlignment(NextFieldOffsetInBytes, AlignmentAsLLVMStruct);
|
|
|
|
|
|
|
|
if (AlignedNextFieldOffset == RecordSizeInBytes) {
|
|
|
|
// We don't need any padding.
|
|
|
|
return;
|
|
|
|
}
|
2010-03-31 08:11:27 +08:00
|
|
|
|
2009-07-29 01:56:36 +08:00
|
|
|
unsigned NumPadBytes = RecordSizeInBytes - NextFieldOffsetInBytes;
|
2009-07-27 22:55:54 +08:00
|
|
|
AppendBytes(NumPadBytes);
|
|
|
|
}
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
void CGRecordLayoutBuilder::AppendField(uint64_t FieldOffsetInBytes,
|
2009-07-23 11:17:50 +08:00
|
|
|
const llvm::Type *FieldTy) {
|
|
|
|
AlignmentAsLLVMStruct = std::max(AlignmentAsLLVMStruct,
|
|
|
|
getTypeAlignment(FieldTy));
|
2009-07-24 10:45:50 +08:00
|
|
|
|
|
|
|
uint64_t FieldSizeInBytes = getTypeSizeInBytes(FieldTy);
|
|
|
|
|
2009-07-23 11:17:50 +08:00
|
|
|
FieldTypes.push_back(FieldTy);
|
|
|
|
|
2009-07-29 01:56:36 +08:00
|
|
|
NextFieldOffsetInBytes = FieldOffsetInBytes + FieldSizeInBytes;
|
2009-07-23 11:17:50 +08:00
|
|
|
BitsAvailableInLastField = 0;
|
|
|
|
}
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
void
|
2009-07-23 11:17:50 +08:00
|
|
|
CGRecordLayoutBuilder::AppendPadding(uint64_t FieldOffsetInBytes,
|
|
|
|
const llvm::Type *FieldTy) {
|
|
|
|
AppendPadding(FieldOffsetInBytes, getTypeAlignment(FieldTy));
|
|
|
|
}
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
void CGRecordLayoutBuilder::AppendPadding(uint64_t FieldOffsetInBytes,
|
2009-07-23 11:17:50 +08:00
|
|
|
unsigned FieldAlignment) {
|
|
|
|
assert(NextFieldOffsetInBytes <= FieldOffsetInBytes &&
|
|
|
|
"Incorrect field layout!");
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-07-23 11:17:50 +08:00
|
|
|
// Round up the field offset to the alignment of the field type.
|
2009-09-09 23:08:12 +08:00
|
|
|
uint64_t AlignedNextFieldOffsetInBytes =
|
2009-07-23 11:17:50 +08:00
|
|
|
llvm::RoundUpToAlignment(NextFieldOffsetInBytes, FieldAlignment);
|
|
|
|
|
|
|
|
if (AlignedNextFieldOffsetInBytes < FieldOffsetInBytes) {
|
|
|
|
// Even with alignment, the field offset is not at the right place,
|
|
|
|
// insert padding.
|
|
|
|
uint64_t PaddingInBytes = FieldOffsetInBytes - NextFieldOffsetInBytes;
|
|
|
|
|
|
|
|
AppendBytes(PaddingInBytes);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGRecordLayoutBuilder::AppendBytes(uint64_t NumBytes) {
|
|
|
|
if (NumBytes == 0)
|
|
|
|
return;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-14 05:57:51 +08:00
|
|
|
const llvm::Type *Ty = llvm::Type::getInt8Ty(Types.getLLVMContext());
|
2009-07-27 22:55:54 +08:00
|
|
|
if (NumBytes > 1)
|
2009-07-23 11:17:50 +08:00
|
|
|
Ty = llvm::ArrayType::get(Ty, NumBytes);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-07-23 11:17:50 +08:00
|
|
|
// Append the padding field
|
2009-07-29 01:56:36 +08:00
|
|
|
AppendField(NextFieldOffsetInBytes, Ty);
|
2009-07-23 11:17:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned CGRecordLayoutBuilder::getTypeAlignment(const llvm::Type *Ty) const {
|
2009-07-24 01:24:40 +08:00
|
|
|
if (Packed)
|
2009-07-23 11:17:50 +08:00
|
|
|
return 1;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-07-23 11:17:50 +08:00
|
|
|
return Types.getTargetData().getABITypeAlignment(Ty);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t CGRecordLayoutBuilder::getTypeSizeInBytes(const llvm::Type *Ty) const {
|
|
|
|
return Types.getTargetData().getTypeAllocSize(Ty);
|
|
|
|
}
|
|
|
|
|
2010-02-02 13:17:25 +08:00
|
|
|
void CGRecordLayoutBuilder::CheckForPointerToDataMember(QualType T) {
|
2009-08-23 09:25:01 +08:00
|
|
|
// This record already contains a member pointer.
|
2010-02-02 13:17:25 +08:00
|
|
|
if (ContainsPointerToDataMember)
|
2009-08-23 09:25:01 +08:00
|
|
|
return;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-23 09:25:01 +08:00
|
|
|
// Can only have member pointers if we're compiling C++.
|
|
|
|
if (!Types.getContext().getLangOptions().CPlusPlus)
|
|
|
|
return;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2010-02-02 13:17:25 +08:00
|
|
|
T = Types.getContext().getBaseElementType(T);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2010-02-02 13:17:25 +08:00
|
|
|
if (const MemberPointerType *MPT = T->getAs<MemberPointerType>()) {
|
|
|
|
if (!MPT->getPointeeType()->isFunctionType()) {
|
|
|
|
// We have a pointer to data member.
|
|
|
|
ContainsPointerToDataMember = true;
|
|
|
|
}
|
|
|
|
} else if (const RecordType *RT = T->getAs<RecordType>()) {
|
|
|
|
const CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
|
2010-03-31 08:11:27 +08:00
|
|
|
|
2010-02-02 13:17:25 +08:00
|
|
|
// FIXME: It would be better if there was a way to explicitly compute the
|
|
|
|
// record layout instead of converting to a type.
|
|
|
|
Types.ConvertTagDeclType(RD);
|
2010-03-31 08:11:27 +08:00
|
|
|
|
2010-02-02 13:17:25 +08:00
|
|
|
const CGRecordLayout &Layout = Types.getCGRecordLayout(RD);
|
2010-03-31 08:11:27 +08:00
|
|
|
|
2010-02-02 13:17:25 +08:00
|
|
|
if (Layout.containsPointerToDataMember())
|
|
|
|
ContainsPointerToDataMember = true;
|
2010-03-31 08:11:27 +08:00
|
|
|
}
|
2009-08-23 09:25:01 +08:00
|
|
|
}
|
|
|
|
|
2010-03-31 08:11:27 +08:00
|
|
|
CGRecordLayout *CodeGenTypes::ComputeRecordLayout(const RecordDecl *D) {
|
|
|
|
CGRecordLayoutBuilder Builder(*this);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-07-23 11:17:50 +08:00
|
|
|
Builder.Layout(D);
|
2009-07-24 23:20:52 +08:00
|
|
|
|
2010-03-31 08:11:27 +08:00
|
|
|
const llvm::Type *Ty = llvm::StructType::get(getLLVMContext(),
|
2009-08-06 07:18:46 +08:00
|
|
|
Builder.FieldTypes,
|
2009-07-24 01:24:40 +08:00
|
|
|
Builder.Packed);
|
2010-03-31 08:11:27 +08:00
|
|
|
assert(getContext().getASTRecordLayout(D).getSize() / 8 ==
|
|
|
|
getTargetData().getTypeAllocSize(Ty) &&
|
2009-08-09 02:01:57 +08:00
|
|
|
"Type size mismatch!");
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2010-03-31 09:09:11 +08:00
|
|
|
CGRecordLayout *RL =
|
|
|
|
new CGRecordLayout(Ty, Builder.ContainsPointerToDataMember);
|
|
|
|
|
2009-07-23 11:17:50 +08:00
|
|
|
// Add all the field numbers.
|
|
|
|
for (unsigned i = 0, e = Builder.LLVMFields.size(); i != e; ++i) {
|
|
|
|
const FieldDecl *FD = Builder.LLVMFields[i].first;
|
|
|
|
unsigned FieldNo = Builder.LLVMFields[i].second;
|
|
|
|
|
2010-03-31 09:09:11 +08:00
|
|
|
RL->FieldInfo.insert(std::make_pair(FD, FieldNo));
|
2009-07-23 11:17:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Add bitfield info.
|
|
|
|
for (unsigned i = 0, e = Builder.LLVMBitFields.size(); i != e; ++i) {
|
2010-03-31 08:11:27 +08:00
|
|
|
const CGRecordLayoutBuilder::LLVMBitFieldInfo &Info =
|
|
|
|
Builder.LLVMBitFields[i];
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2010-04-06 00:20:44 +08:00
|
|
|
CGBitFieldInfo BFI(Info.FieldNo, Info.Start, Info.Size);
|
2010-03-31 09:09:11 +08:00
|
|
|
RL->BitFields.insert(std::make_pair(Info.FD, BFI));
|
2009-07-23 11:17:50 +08:00
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2010-03-31 09:09:11 +08:00
|
|
|
return RL;
|
2009-07-23 11:17:50 +08:00
|
|
|
}
|