2001-08-27 16:00:15 +00:00
|
|
|
//===-- TargetData.cpp - Data size & alignment routines --------------------==//
|
2005-04-21 22:55:34 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
2005-04-21 22:55:34 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-08-27 16:00:15 +00:00
|
|
|
//
|
|
|
|
// This file defines target properties related to datatype size/offset/alignment
|
2004-02-26 08:02:17 +00:00
|
|
|
// information.
|
2001-08-27 16:00:15 +00:00
|
|
|
//
|
|
|
|
// This structure should be created once, filled in if the defaults are not
|
|
|
|
// correct and then passed around by const&. None of the members functions
|
|
|
|
// require modification to the object.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2001-09-18 12:58:33 +00:00
|
|
|
#include "llvm/Target/TargetData.h"
|
2003-04-24 19:09:05 +00:00
|
|
|
#include "llvm/Module.h"
|
2001-08-27 16:00:15 +00:00
|
|
|
#include "llvm/DerivedTypes.h"
|
2002-04-28 19:55:58 +00:00
|
|
|
#include "llvm/Constants.h"
|
2004-04-05 01:30:19 +00:00
|
|
|
#include "llvm/Support/GetElementPtrTypeIterator.h"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/Support/MathExtras.h"
|
2005-03-13 19:04:41 +00:00
|
|
|
#include <algorithm>
|
2003-12-22 05:01:15 +00:00
|
|
|
using namespace llvm;
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2003-08-18 14:43:39 +00:00
|
|
|
// Handle the Pass registration stuff necessary to use TargetData's.
|
2002-09-25 23:46:55 +00:00
|
|
|
namespace {
|
|
|
|
// Register the default SparcV9 implementation...
|
|
|
|
RegisterPass<TargetData> X("targetdata", "Target Data Layout");
|
|
|
|
}
|
|
|
|
|
2001-08-27 16:00:15 +00:00
|
|
|
static inline void getTypeInfo(const Type *Ty, const TargetData *TD,
|
2004-07-23 01:09:52 +00:00
|
|
|
uint64_t &Size, unsigned char &Alignment);
|
2001-08-27 16:00:15 +00:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
2004-02-26 08:02:17 +00:00
|
|
|
// Support for StructLayout
|
2001-08-27 16:00:15 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2004-02-26 08:02:17 +00:00
|
|
|
StructLayout::StructLayout(const StructType *ST, const TargetData &TD) {
|
2001-08-27 16:00:15 +00:00
|
|
|
StructAlignment = 0;
|
|
|
|
StructSize = 0;
|
|
|
|
|
|
|
|
// Loop over each of the elements, placing them in memory...
|
2005-04-21 22:55:34 +00:00
|
|
|
for (StructType::element_iterator TI = ST->element_begin(),
|
2004-07-23 01:09:52 +00:00
|
|
|
TE = ST->element_end(); TI != TE; ++TI) {
|
2001-08-27 16:00:15 +00:00
|
|
|
const Type *Ty = *TI;
|
|
|
|
unsigned char A;
|
2002-05-19 15:28:02 +00:00
|
|
|
unsigned TyAlign;
|
|
|
|
uint64_t TySize;
|
|
|
|
getTypeInfo(Ty, &TD, TySize, A);
|
|
|
|
TyAlign = A;
|
2001-08-27 16:00:15 +00:00
|
|
|
|
2003-08-18 14:43:39 +00:00
|
|
|
// Add padding if necessary to make the data element aligned properly...
|
2001-08-27 16:00:15 +00:00
|
|
|
if (StructSize % TyAlign != 0)
|
|
|
|
StructSize = (StructSize/TyAlign + 1) * TyAlign; // Add padding...
|
|
|
|
|
|
|
|
// Keep track of maximum alignment constraint
|
2002-01-20 22:54:45 +00:00
|
|
|
StructAlignment = std::max(TyAlign, StructAlignment);
|
2001-08-27 16:00:15 +00:00
|
|
|
|
|
|
|
MemberOffsets.push_back(StructSize);
|
2002-05-19 15:28:02 +00:00
|
|
|
StructSize += TySize; // Consume space for this data item
|
2001-08-27 16:00:15 +00:00
|
|
|
}
|
|
|
|
|
2003-05-21 18:08:44 +00:00
|
|
|
// Empty structures have alignment of 1 byte.
|
|
|
|
if (StructAlignment == 0) StructAlignment = 1;
|
|
|
|
|
2001-08-27 16:00:15 +00:00
|
|
|
// Add padding to the end of the struct so that it could be put in an array
|
|
|
|
// and all array elements would be aligned correctly.
|
|
|
|
if (StructSize % StructAlignment != 0)
|
|
|
|
StructSize = (StructSize/StructAlignment + 1) * StructAlignment;
|
|
|
|
}
|
|
|
|
|
2005-03-13 19:04:41 +00:00
|
|
|
|
|
|
|
/// getElementContainingOffset - Given a valid offset into the structure,
|
|
|
|
/// return the structure index that contains it.
|
|
|
|
unsigned StructLayout::getElementContainingOffset(uint64_t Offset) const {
|
|
|
|
std::vector<uint64_t>::const_iterator SI =
|
|
|
|
std::upper_bound(MemberOffsets.begin(), MemberOffsets.end(),
|
|
|
|
Offset);
|
|
|
|
assert(SI != MemberOffsets.begin() && "Offset not in structure type!");
|
|
|
|
--SI;
|
|
|
|
assert(*SI <= Offset && "upper_bound didn't work");
|
|
|
|
assert((SI == MemberOffsets.begin() || *(SI-1) < Offset) &&
|
|
|
|
(SI+1 == MemberOffsets.end() || *(SI+1) > Offset) &&
|
|
|
|
"Upper bound didn't work!");
|
|
|
|
return SI-MemberOffsets.begin();
|
|
|
|
}
|
|
|
|
|
2001-08-27 16:00:15 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// TargetData Class Implementation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2002-05-19 15:28:02 +00:00
|
|
|
TargetData::TargetData(const std::string &TargetName,
|
2003-04-26 20:11:09 +00:00
|
|
|
bool isLittleEndian, unsigned char PtrSize,
|
2002-10-14 22:41:13 +00:00
|
|
|
unsigned char PtrAl, unsigned char DoubleAl,
|
2005-04-21 22:55:34 +00:00
|
|
|
unsigned char FloatAl, unsigned char LongAl,
|
2002-10-14 22:41:13 +00:00
|
|
|
unsigned char IntAl, unsigned char ShortAl,
|
2004-07-23 01:09:52 +00:00
|
|
|
unsigned char ByteAl, unsigned char BoolAl) {
|
2001-08-27 16:00:15 +00:00
|
|
|
|
2003-04-25 02:50:45 +00:00
|
|
|
// If this assert triggers, a pass "required" TargetData information, but the
|
2004-04-14 21:21:56 +00:00
|
|
|
// top level tool did not provide one for it. We do not want to default
|
2003-04-25 02:50:45 +00:00
|
|
|
// construct, or else we might end up using a bad endianness or pointer size!
|
|
|
|
//
|
|
|
|
assert(!TargetName.empty() &&
|
|
|
|
"ERROR: Tool did not specify a target data to use!");
|
|
|
|
|
2002-10-14 22:41:13 +00:00
|
|
|
LittleEndian = isLittleEndian;
|
2001-08-27 16:00:15 +00:00
|
|
|
PointerSize = PtrSize;
|
|
|
|
PointerAlignment = PtrAl;
|
|
|
|
DoubleAlignment = DoubleAl;
|
|
|
|
FloatAlignment = FloatAl;
|
|
|
|
LongAlignment = LongAl;
|
|
|
|
IntAlignment = IntAl;
|
|
|
|
ShortAlignment = ShortAl;
|
|
|
|
ByteAlignment = ByteAl;
|
2004-07-23 01:09:52 +00:00
|
|
|
BoolAlignment = BoolAl;
|
2001-08-27 16:00:15 +00:00
|
|
|
}
|
|
|
|
|
2004-02-26 08:02:17 +00:00
|
|
|
TargetData::TargetData(const std::string &ToolName, const Module *M) {
|
2003-08-24 13:49:22 +00:00
|
|
|
LittleEndian = M->getEndianness() != Module::BigEndian;
|
|
|
|
PointerSize = M->getPointerSize() != Module::Pointer64 ? 4 : 8;
|
2003-04-24 19:09:05 +00:00
|
|
|
PointerAlignment = PointerSize;
|
2003-04-25 06:06:43 +00:00
|
|
|
DoubleAlignment = PointerSize;
|
2003-04-24 19:09:05 +00:00
|
|
|
FloatAlignment = 4;
|
2004-11-02 22:18:18 +00:00
|
|
|
LongAlignment = PointerSize;
|
2003-04-24 19:09:05 +00:00
|
|
|
IntAlignment = 4;
|
|
|
|
ShortAlignment = 2;
|
|
|
|
ByteAlignment = 1;
|
2004-07-23 01:09:52 +00:00
|
|
|
BoolAlignment = 1;
|
2003-04-24 19:09:05 +00:00
|
|
|
}
|
|
|
|
|
2006-01-14 00:07:34 +00:00
|
|
|
/// Layouts - The lazy cache of structure layout information maintained by
|
|
|
|
/// TargetData.
|
|
|
|
///
|
2004-02-26 08:02:17 +00:00
|
|
|
static std::map<std::pair<const TargetData*,const StructType*>,
|
|
|
|
StructLayout> *Layouts = 0;
|
|
|
|
|
|
|
|
|
2001-08-27 16:00:15 +00:00
|
|
|
TargetData::~TargetData() {
|
2004-02-26 08:02:17 +00:00
|
|
|
if (Layouts) {
|
|
|
|
// Remove any layouts for this TD.
|
|
|
|
std::map<std::pair<const TargetData*,
|
|
|
|
const StructType*>, StructLayout>::iterator
|
|
|
|
I = Layouts->lower_bound(std::make_pair(this, (const StructType*)0));
|
|
|
|
while (I != Layouts->end() && I->first.first == this)
|
|
|
|
Layouts->erase(I++);
|
|
|
|
if (Layouts->empty()) {
|
|
|
|
delete Layouts;
|
|
|
|
Layouts = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const StructLayout *TargetData::getStructLayout(const StructType *Ty) const {
|
|
|
|
if (Layouts == 0)
|
|
|
|
Layouts = new std::map<std::pair<const TargetData*,const StructType*>,
|
|
|
|
StructLayout>();
|
|
|
|
std::map<std::pair<const TargetData*,const StructType*>,
|
|
|
|
StructLayout>::iterator
|
|
|
|
I = Layouts->lower_bound(std::make_pair(this, Ty));
|
|
|
|
if (I != Layouts->end() && I->first.first == this && I->first.second == Ty)
|
|
|
|
return &I->second;
|
|
|
|
else {
|
|
|
|
return &Layouts->insert(I, std::make_pair(std::make_pair(this, Ty),
|
|
|
|
StructLayout(Ty, *this)))->second;
|
|
|
|
}
|
2001-08-27 16:00:15 +00:00
|
|
|
}
|
|
|
|
|
2006-01-14 00:07:34 +00:00
|
|
|
/// InvalidateStructLayoutInfo - TargetData speculatively caches StructLayout
|
|
|
|
/// objects. If a TargetData object is alive when types are being refined and
|
|
|
|
/// removed, this method must be called whenever a StructType is removed to
|
|
|
|
/// avoid a dangling pointer in this cache.
|
|
|
|
void TargetData::InvalidateStructLayoutInfo(const StructType *Ty) const {
|
|
|
|
if (!Layouts) return; // No cache.
|
|
|
|
|
|
|
|
std::map<std::pair<const TargetData*,const StructType*>,
|
|
|
|
StructLayout>::iterator I = Layouts->find(std::make_pair(this, Ty));
|
|
|
|
if (I != Layouts->end())
|
|
|
|
Layouts->erase(I);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2001-08-27 16:00:15 +00:00
|
|
|
static inline void getTypeInfo(const Type *Ty, const TargetData *TD,
|
2004-07-23 01:09:52 +00:00
|
|
|
uint64_t &Size, unsigned char &Alignment) {
|
2001-12-13 00:46:11 +00:00
|
|
|
assert(Ty->isSized() && "Cannot getTypeInfo() on a type that is unsized!");
|
2004-06-17 18:19:28 +00:00
|
|
|
switch (Ty->getTypeID()) {
|
2004-07-23 01:09:52 +00:00
|
|
|
case Type::BoolTyID: Size = 1; Alignment = TD->getBoolAlignment(); return;
|
2001-08-27 16:00:15 +00:00
|
|
|
case Type::VoidTyID:
|
|
|
|
case Type::UByteTyID:
|
|
|
|
case Type::SByteTyID: Size = 1; Alignment = TD->getByteAlignment(); return;
|
|
|
|
case Type::UShortTyID:
|
|
|
|
case Type::ShortTyID: Size = 2; Alignment = TD->getShortAlignment(); return;
|
|
|
|
case Type::UIntTyID:
|
|
|
|
case Type::IntTyID: Size = 4; Alignment = TD->getIntAlignment(); return;
|
|
|
|
case Type::ULongTyID:
|
|
|
|
case Type::LongTyID: Size = 8; Alignment = TD->getLongAlignment(); return;
|
|
|
|
case Type::FloatTyID: Size = 4; Alignment = TD->getFloatAlignment(); return;
|
|
|
|
case Type::DoubleTyID: Size = 8; Alignment = TD->getDoubleAlignment(); return;
|
|
|
|
case Type::LabelTyID:
|
|
|
|
case Type::PointerTyID:
|
|
|
|
Size = TD->getPointerSize(); Alignment = TD->getPointerAlignment();
|
|
|
|
return;
|
|
|
|
case Type::ArrayTyID: {
|
2004-07-01 17:32:59 +00:00
|
|
|
const ArrayType *ATy = cast<ArrayType>(Ty);
|
2001-08-27 16:00:15 +00:00
|
|
|
getTypeInfo(ATy->getElementType(), TD, Size, Alignment);
|
2004-07-02 07:01:31 +00:00
|
|
|
unsigned AlignedSize = (Size + Alignment - 1)/Alignment*Alignment;
|
2004-07-01 17:32:59 +00:00
|
|
|
Size = AlignedSize*ATy->getNumElements();
|
2001-08-27 16:00:15 +00:00
|
|
|
return;
|
|
|
|
}
|
2004-12-01 17:14:28 +00:00
|
|
|
case Type::PackedTyID: {
|
|
|
|
const PackedType *PTy = cast<PackedType>(Ty);
|
|
|
|
getTypeInfo(PTy->getElementType(), TD, Size, Alignment);
|
|
|
|
unsigned AlignedSize = (Size + Alignment - 1)/Alignment*Alignment;
|
|
|
|
Size = AlignedSize*PTy->getNumElements();
|
2006-03-31 22:33:42 +00:00
|
|
|
// FIXME: The alignments of specific packed types are target dependent.
|
|
|
|
// For now, just set it to be equal to Size.
|
2006-04-03 23:14:49 +00:00
|
|
|
Alignment = Size;
|
2004-12-01 17:14:28 +00:00
|
|
|
return;
|
|
|
|
}
|
2001-08-27 16:00:15 +00:00
|
|
|
case Type::StructTyID: {
|
|
|
|
// Get the layout annotation... which is lazily created on demand.
|
2004-07-01 17:32:59 +00:00
|
|
|
const StructLayout *Layout = TD->getStructLayout(cast<StructType>(Ty));
|
2001-08-27 16:00:15 +00:00
|
|
|
Size = Layout->StructSize; Alignment = Layout->StructAlignment;
|
|
|
|
return;
|
|
|
|
}
|
2005-04-21 22:55:34 +00:00
|
|
|
|
2001-08-27 16:00:15 +00:00
|
|
|
default:
|
|
|
|
assert(0 && "Bad type for getTypeInfo!!!");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-05-19 15:28:02 +00:00
|
|
|
uint64_t TargetData::getTypeSize(const Type *Ty) const {
|
|
|
|
uint64_t Size;
|
|
|
|
unsigned char Align;
|
2001-08-27 16:00:15 +00:00
|
|
|
getTypeInfo(Ty, this, Size, Align);
|
|
|
|
return Size;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned char TargetData::getTypeAlignment(const Type *Ty) const {
|
2002-05-19 15:28:02 +00:00
|
|
|
uint64_t Size;
|
|
|
|
unsigned char Align;
|
2001-08-27 16:00:15 +00:00
|
|
|
getTypeInfo(Ty, this, Size, Align);
|
|
|
|
return Align;
|
|
|
|
}
|
|
|
|
|
2004-08-17 19:13:00 +00:00
|
|
|
unsigned char TargetData::getTypeAlignmentShift(const Type *Ty) const {
|
|
|
|
unsigned Align = getTypeAlignment(Ty);
|
|
|
|
assert(!(Align & (Align-1)) && "Alignment is not a power of two!");
|
2005-08-02 19:26:06 +00:00
|
|
|
return Log2_32(Align);
|
2004-08-17 19:13:00 +00:00
|
|
|
}
|
|
|
|
|
2003-12-22 05:01:15 +00:00
|
|
|
/// getIntPtrType - Return an unsigned integer type that is the same size or
|
|
|
|
/// greater to the host pointer size.
|
|
|
|
const Type *TargetData::getIntPtrType() const {
|
|
|
|
switch (getPointerSize()) {
|
|
|
|
default: assert(0 && "Unknown pointer size!");
|
|
|
|
case 2: return Type::UShortTy;
|
|
|
|
case 4: return Type::UIntTy;
|
|
|
|
case 8: return Type::ULongTy;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-05-19 15:28:02 +00:00
|
|
|
uint64_t TargetData::getIndexedOffset(const Type *ptrTy,
|
2004-07-23 01:09:52 +00:00
|
|
|
const std::vector<Value*> &Idx) const {
|
2002-08-04 20:52:39 +00:00
|
|
|
const Type *Ty = ptrTy;
|
|
|
|
assert(isa<PointerType>(Ty) && "Illegal argument for getIndexedOffset()");
|
2002-05-19 15:28:02 +00:00
|
|
|
uint64_t Result = 0;
|
|
|
|
|
2004-04-05 01:30:19 +00:00
|
|
|
generic_gep_type_iterator<std::vector<Value*>::const_iterator>
|
|
|
|
TI = gep_type_begin(ptrTy, Idx.begin(), Idx.end());
|
|
|
|
for (unsigned CurIDX = 0; CurIDX != Idx.size(); ++CurIDX, ++TI) {
|
|
|
|
if (const StructType *STy = dyn_cast<StructType>(*TI)) {
|
|
|
|
assert(Idx[CurIDX]->getType() == Type::UIntTy && "Illegal struct idx");
|
2001-12-03 22:26:30 +00:00
|
|
|
unsigned FieldNo = cast<ConstantUInt>(Idx[CurIDX])->getValue();
|
2001-08-27 16:00:15 +00:00
|
|
|
|
|
|
|
// Get structure layout information...
|
|
|
|
const StructLayout *Layout = getStructLayout(STy);
|
|
|
|
|
|
|
|
// Add in the offset, as calculated by the structure layout info...
|
2002-05-19 15:28:02 +00:00
|
|
|
assert(FieldNo < Layout->MemberOffsets.size() &&"FieldNo out of range!");
|
2001-08-27 16:00:15 +00:00
|
|
|
Result += Layout->MemberOffsets[FieldNo];
|
2002-08-04 20:52:39 +00:00
|
|
|
|
2001-08-27 16:00:15 +00:00
|
|
|
// Update Ty to refer to current element
|
2004-02-09 04:37:31 +00:00
|
|
|
Ty = STy->getElementType(FieldNo);
|
2004-04-05 01:30:19 +00:00
|
|
|
} else {
|
|
|
|
// Update Ty to refer to current element
|
|
|
|
Ty = cast<SequentialType>(Ty)->getElementType();
|
|
|
|
|
|
|
|
// Get the array index and the size of each array element.
|
|
|
|
int64_t arrayIdx = cast<ConstantInt>(Idx[CurIDX])->getRawValue();
|
|
|
|
Result += arrayIdx * (int64_t)getTypeSize(Ty);
|
2001-08-27 16:00:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return Result;
|
|
|
|
}
|
2003-11-11 22:41:34 +00:00
|
|
|
|