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"
|
|
|
|
#include "llvm/DerivedTypes.h"
|
2010-04-13 02:14:18 +08:00
|
|
|
#include "llvm/Type.h"
|
2010-04-22 03:10:49 +08:00
|
|
|
#include "llvm/Support/Debug.h"
|
2010-04-13 02:14:18 +08:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2009-07-23 11:17:50 +08:00
|
|
|
#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.
|
2010-04-06 09:07:41 +08:00
|
|
|
typedef std::pair<const FieldDecl *, CGBitFieldInfo> LLVMBitFieldInfo;
|
2010-03-31 08:11:27 +08:00
|
|
|
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;
|
|
|
|
|
2010-04-18 04:49:27 +08:00
|
|
|
/// LayoutUnionField - Will layout a field in an union and return the type
|
|
|
|
/// that the field will have.
|
|
|
|
const llvm::Type *LayoutUnionField(const FieldDecl *Field,
|
|
|
|
const ASTRecordLayout &Layout);
|
|
|
|
|
2010-03-31 08:11:27 +08:00
|
|
|
/// 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 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;
|
|
|
|
|
|
|
|
/// 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);
|
|
|
|
}
|
|
|
|
|
2010-04-13 05:01:28 +08:00
|
|
|
static CGBitFieldInfo ComputeBitFieldInfo(CodeGenTypes &Types,
|
|
|
|
const FieldDecl *FD,
|
|
|
|
uint64_t FieldOffset,
|
|
|
|
uint64_t FieldSize) {
|
|
|
|
const llvm::Type *Ty = Types.ConvertTypeForMemRecursive(FD->getType());
|
2010-04-14 04:58:55 +08:00
|
|
|
uint64_t TypeSizeInBytes = Types.getTargetData().getTypeAllocSize(Ty);
|
|
|
|
uint64_t TypeSizeInBits = TypeSizeInBytes * 8;
|
2010-04-13 05:01:28 +08:00
|
|
|
|
|
|
|
bool IsSigned = FD->getType()->isSignedIntegerType();
|
|
|
|
|
2010-04-17 00:23:02 +08:00
|
|
|
if (FieldSize > TypeSizeInBits) {
|
2010-04-18 06:54:57 +08:00
|
|
|
// We have a wide bit-field. The extra bits are only used for padding, so
|
|
|
|
// if we have a bitfield of type T, with size N:
|
|
|
|
//
|
|
|
|
// T t : N;
|
|
|
|
//
|
|
|
|
// We can just assume that it's:
|
|
|
|
//
|
|
|
|
// T t : sizeof(T);
|
|
|
|
//
|
|
|
|
FieldSize = TypeSizeInBits;
|
2010-04-17 00:23:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned StartBit = FieldOffset % TypeSizeInBits;
|
|
|
|
|
2010-04-14 04:58:55 +08:00
|
|
|
// The current policy is to always access the bit-field using the source type
|
|
|
|
// of the bit-field. With the C bit-field rules, this implies that we always
|
|
|
|
// use either one or two accesses, and two accesses can only occur with a
|
|
|
|
// packed structure when the bit-field straddles an alignment boundary.
|
2010-04-15 13:09:32 +08:00
|
|
|
CGBitFieldInfo::AccessInfo Components[2];
|
|
|
|
|
2010-04-15 13:09:28 +08:00
|
|
|
unsigned LowBits = std::min(FieldSize, TypeSizeInBits - StartBit);
|
2010-04-14 04:58:55 +08:00
|
|
|
bool NeedsHighAccess = LowBits != FieldSize;
|
2010-04-15 13:09:32 +08:00
|
|
|
unsigned NumComponents = 1 + NeedsHighAccess;
|
2010-04-14 04:58:55 +08:00
|
|
|
|
|
|
|
// FIXME: This access policy is probably wrong on big-endian systems.
|
2010-04-15 13:09:32 +08:00
|
|
|
CGBitFieldInfo::AccessInfo &LowAccess = Components[0];
|
2010-04-14 04:58:55 +08:00
|
|
|
LowAccess.FieldIndex = 0;
|
|
|
|
LowAccess.FieldByteOffset =
|
|
|
|
TypeSizeInBytes * ((FieldOffset / 8) / TypeSizeInBytes);
|
2010-04-15 13:09:28 +08:00
|
|
|
LowAccess.FieldBitStart = StartBit;
|
2010-04-14 04:58:55 +08:00
|
|
|
LowAccess.AccessWidth = TypeSizeInBits;
|
|
|
|
// FIXME: This might be wrong!
|
|
|
|
LowAccess.AccessAlignment = 0;
|
|
|
|
LowAccess.TargetBitOffset = 0;
|
|
|
|
LowAccess.TargetBitWidth = LowBits;
|
|
|
|
|
|
|
|
if (NeedsHighAccess) {
|
2010-04-15 13:09:32 +08:00
|
|
|
CGBitFieldInfo::AccessInfo &HighAccess = Components[1];
|
2010-04-14 04:58:55 +08:00
|
|
|
HighAccess.FieldIndex = 0;
|
|
|
|
HighAccess.FieldByteOffset = LowAccess.FieldByteOffset + TypeSizeInBytes;
|
|
|
|
HighAccess.FieldBitStart = 0;
|
|
|
|
HighAccess.AccessWidth = TypeSizeInBits;
|
|
|
|
// FIXME: This might be wrong!
|
|
|
|
HighAccess.AccessAlignment = 0;
|
|
|
|
HighAccess.TargetBitOffset = LowBits;
|
|
|
|
HighAccess.TargetBitWidth = FieldSize - LowBits;
|
|
|
|
}
|
|
|
|
|
2010-04-15 13:09:32 +08:00
|
|
|
return CGBitFieldInfo(FieldSize, NumComponents, Components, IsSigned);
|
2010-04-13 05:01:28 +08:00
|
|
|
}
|
|
|
|
|
2009-07-23 11:17:50 +08:00
|
|
|
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!");
|
|
|
|
}
|
|
|
|
|
2010-04-13 05:01:28 +08:00
|
|
|
// Add the bit field info.
|
|
|
|
LLVMBitFields.push_back(
|
|
|
|
LLVMBitFieldInfo(D, ComputeBitFieldInfo(Types, D, FieldOffset, 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;
|
|
|
|
}
|
|
|
|
|
2010-04-18 04:49:27 +08:00
|
|
|
const llvm::Type *
|
|
|
|
CGRecordLayoutBuilder::LayoutUnionField(const FieldDecl *Field,
|
|
|
|
const ASTRecordLayout &Layout) {
|
|
|
|
if (Field->isBitField()) {
|
|
|
|
uint64_t FieldSize =
|
|
|
|
Field->getBitWidth()->EvaluateAsInt(Types.getContext()).getZExtValue();
|
|
|
|
|
|
|
|
// Ignore zero sized bit fields.
|
|
|
|
if (FieldSize == 0)
|
|
|
|
return 0;
|
|
|
|
|
2010-04-21 01:52:30 +08:00
|
|
|
const llvm::Type *FieldTy = llvm::Type::getInt8Ty(Types.getLLVMContext());
|
|
|
|
unsigned NumBytesToAppend =
|
|
|
|
llvm::RoundUpToAlignment(FieldSize, 8) / 8;
|
2010-04-18 05:04:52 +08:00
|
|
|
|
2010-04-21 01:52:30 +08:00
|
|
|
if (NumBytesToAppend > 1)
|
|
|
|
FieldTy = llvm::ArrayType::get(FieldTy, NumBytesToAppend);
|
2010-04-18 05:04:52 +08:00
|
|
|
|
2010-04-18 04:49:27 +08:00
|
|
|
// Add the bit field info.
|
|
|
|
LLVMBitFields.push_back(
|
|
|
|
LLVMBitFieldInfo(Field, ComputeBitFieldInfo(Types, Field, 0, FieldSize)));
|
2010-04-18 05:04:52 +08:00
|
|
|
return FieldTy;
|
2010-04-18 04:49:27 +08:00
|
|
|
}
|
2010-04-21 01:52:30 +08:00
|
|
|
|
2010-04-18 04:49:27 +08:00
|
|
|
// This is a regular union field.
|
|
|
|
LLVMFields.push_back(LLVMFieldInfo(Field, 0));
|
|
|
|
return Types.ConvertTypeForMemRecursive(Field->getType());
|
|
|
|
}
|
|
|
|
|
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!");
|
2010-04-18 04:49:27 +08:00
|
|
|
const llvm::Type *FieldTy = LayoutUnionField(*Field, Layout);
|
|
|
|
|
|
|
|
if (!FieldTy)
|
|
|
|
continue;
|
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-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 &&
|
2010-04-18 04:15:18 +08:00
|
|
|
"VTable pointer must come first!");
|
2009-12-17 01:27:20 +08:00
|
|
|
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
|
|
|
|
2010-04-13 05:01:28 +08:00
|
|
|
uint64_t FieldSizeInBytes = Types.getTargetData().getTypeAllocSize(FieldTy);
|
2009-07-24 10:45:50 +08:00
|
|
|
|
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 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);
|
|
|
|
}
|
|
|
|
|
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);
|
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.
|
2010-04-06 09:07:41 +08:00
|
|
|
for (unsigned i = 0, e = Builder.LLVMFields.size(); i != e; ++i)
|
|
|
|
RL->FieldInfo.insert(Builder.LLVMFields[i]);
|
2009-07-23 11:17:50 +08:00
|
|
|
|
|
|
|
// Add bitfield info.
|
2010-04-06 09:07:41 +08:00
|
|
|
for (unsigned i = 0, e = Builder.LLVMBitFields.size(); i != e; ++i)
|
|
|
|
RL->BitFields.insert(Builder.LLVMBitFields[i]);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2010-04-20 04:44:47 +08:00
|
|
|
// Dump the layout, if requested.
|
2010-04-14 04:58:55 +08:00
|
|
|
if (getContext().getLangOptions().DumpRecordLayouts) {
|
2010-04-20 04:44:53 +08:00
|
|
|
llvm::errs() << "\n*** Dumping IRgen Record Layout\n";
|
2010-04-14 04:58:55 +08:00
|
|
|
llvm::errs() << "Record: ";
|
|
|
|
D->dump();
|
|
|
|
llvm::errs() << "\nLayout: ";
|
2010-04-13 02:14:18 +08:00
|
|
|
RL->dump();
|
2010-04-14 04:58:55 +08:00
|
|
|
}
|
2010-04-13 02:14:18 +08:00
|
|
|
|
2010-04-20 04:44:47 +08:00
|
|
|
// Verify that the computed LLVM struct size matches the AST layout size.
|
|
|
|
assert(getContext().getASTRecordLayout(D).getSize() / 8 ==
|
|
|
|
getTargetData().getTypeAllocSize(Ty) &&
|
|
|
|
"Type size mismatch!");
|
|
|
|
|
2010-04-22 03:10:49 +08:00
|
|
|
// Verify that the LLVM and AST field offsets agree.
|
|
|
|
#ifndef NDEBUG
|
|
|
|
const llvm::StructType *ST =
|
|
|
|
dyn_cast<llvm::StructType>(RL->getLLVMType());
|
|
|
|
const llvm::StructLayout *SL = getTargetData().getStructLayout(ST);
|
|
|
|
|
|
|
|
const ASTRecordLayout &AST_RL = getContext().getASTRecordLayout(D);
|
|
|
|
RecordDecl::field_iterator it = D->field_begin();
|
|
|
|
for (unsigned i = 0, e = AST_RL.getFieldCount(); i != e; ++i, ++it) {
|
|
|
|
const FieldDecl *FD = *it;
|
|
|
|
if (FD->isBitField()) {
|
|
|
|
// FIXME: Verify assorted things.
|
|
|
|
} else {
|
|
|
|
unsigned FieldNo = RL->getLLVMFieldNo(FD);
|
|
|
|
assert(AST_RL.getFieldOffset(i) == SL->getElementOffsetInBits(FieldNo) &&
|
|
|
|
"Invalid field offset!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2010-04-20 04:44:47 +08:00
|
|
|
|
2010-03-31 09:09:11 +08:00
|
|
|
return RL;
|
2009-07-23 11:17:50 +08:00
|
|
|
}
|
2010-04-13 02:14:18 +08:00
|
|
|
|
|
|
|
void CGRecordLayout::print(llvm::raw_ostream &OS) const {
|
|
|
|
OS << "<CGRecordLayout\n";
|
|
|
|
OS << " LLVMType:" << *LLVMType << "\n";
|
|
|
|
OS << " ContainsPointerToDataMember:" << ContainsPointerToDataMember << "\n";
|
|
|
|
OS << " BitFields:[\n";
|
|
|
|
for (llvm::DenseMap<const FieldDecl*, CGBitFieldInfo>::const_iterator
|
|
|
|
it = BitFields.begin(), ie = BitFields.end();
|
|
|
|
it != ie; ++it) {
|
2010-04-14 04:58:55 +08:00
|
|
|
OS.indent(4);
|
2010-04-13 02:14:18 +08:00
|
|
|
it->second.print(OS);
|
|
|
|
OS << "\n";
|
|
|
|
}
|
|
|
|
OS << "]>\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGRecordLayout::dump() const {
|
|
|
|
print(llvm::errs());
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGBitFieldInfo::print(llvm::raw_ostream &OS) const {
|
|
|
|
OS << "<CGBitFieldInfo";
|
|
|
|
OS << " Size:" << Size;
|
2010-04-14 04:58:55 +08:00
|
|
|
OS << " IsSigned:" << IsSigned << "\n";
|
|
|
|
|
|
|
|
OS.indent(4 + strlen("<CGBitFieldInfo"));
|
|
|
|
OS << " NumComponents:" << getNumComponents();
|
|
|
|
OS << " Components: [";
|
|
|
|
if (getNumComponents()) {
|
|
|
|
OS << "\n";
|
|
|
|
for (unsigned i = 0, e = getNumComponents(); i != e; ++i) {
|
|
|
|
const AccessInfo &AI = getComponent(i);
|
|
|
|
OS.indent(8);
|
|
|
|
OS << "<AccessInfo"
|
|
|
|
<< " FieldIndex:" << AI.FieldIndex
|
|
|
|
<< " FieldByteOffset:" << AI.FieldByteOffset
|
|
|
|
<< " FieldBitStart:" << AI.FieldBitStart
|
|
|
|
<< " AccessWidth:" << AI.AccessWidth << "\n";
|
|
|
|
OS.indent(8 + strlen("<AccessInfo"));
|
|
|
|
OS << " AccessAlignment:" << AI.AccessAlignment
|
|
|
|
<< " TargetBitOffset:" << AI.TargetBitOffset
|
|
|
|
<< " TargetBitWidth:" << AI.TargetBitWidth
|
|
|
|
<< ">\n";
|
|
|
|
}
|
|
|
|
OS.indent(4);
|
|
|
|
}
|
|
|
|
OS << "]>";
|
2010-04-13 02:14:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void CGBitFieldInfo::dump() const {
|
|
|
|
print(llvm::errs());
|
|
|
|
}
|