blob: 22dde60d8f61f7b085dadab85f7e5fc2204492d2 [file] [log] [blame]
Chris Lattnere7fb3602001-08-27 16:00:15 +00001//===-- TargetData.cpp - Data size & alignment routines --------------------==//
John Criswellb576c942003-10-20 19:43:21 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
Chris Lattnere7fb3602001-08-27 16:00:15 +00009//
10// This file defines target properties related to datatype size/offset/alignment
Chris Lattner0e7ac162004-02-26 08:02:17 +000011// information.
Chris Lattnere7fb3602001-08-27 16:00:15 +000012//
13// This structure should be created once, filled in if the defaults are not
14// correct and then passed around by const&. None of the members functions
15// require modification to the object.
16//
17//===----------------------------------------------------------------------===//
18
Vikram S. Adve0799fc42001-09-18 12:58:33 +000019#include "llvm/Target/TargetData.h"
Chris Lattner53a0c382003-04-24 19:09:05 +000020#include "llvm/Module.h"
Chris Lattnere7fb3602001-08-27 16:00:15 +000021#include "llvm/DerivedTypes.h"
Chris Lattner31bcdb82002-04-28 19:55:58 +000022#include "llvm/Constants.h"
Chris Lattner28977af2004-04-05 01:30:19 +000023#include "llvm/Support/GetElementPtrTypeIterator.h"
Chris Lattnerd2b0bb42004-08-17 19:13:00 +000024#include "Support/MathExtras.h"
Chris Lattnerf0453282003-12-22 05:01:15 +000025using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000026
Misha Brukman5560c9d2003-08-18 14:43:39 +000027// Handle the Pass registration stuff necessary to use TargetData's.
Chris Lattneraa31ad02002-09-25 23:46:55 +000028namespace {
29 // Register the default SparcV9 implementation...
30 RegisterPass<TargetData> X("targetdata", "Target Data Layout");
31}
32
Chris Lattnere7fb3602001-08-27 16:00:15 +000033static inline void getTypeInfo(const Type *Ty, const TargetData *TD,
Misha Brukmanc8e87642004-07-23 01:09:52 +000034 uint64_t &Size, unsigned char &Alignment);
Chris Lattnere7fb3602001-08-27 16:00:15 +000035
36//===----------------------------------------------------------------------===//
Chris Lattner0e7ac162004-02-26 08:02:17 +000037// Support for StructLayout
Chris Lattnere7fb3602001-08-27 16:00:15 +000038//===----------------------------------------------------------------------===//
39
Chris Lattner0e7ac162004-02-26 08:02:17 +000040StructLayout::StructLayout(const StructType *ST, const TargetData &TD) {
Chris Lattnere7fb3602001-08-27 16:00:15 +000041 StructAlignment = 0;
42 StructSize = 0;
43
44 // Loop over each of the elements, placing them in memory...
Chris Lattnerd21cd802004-02-09 04:37:31 +000045 for (StructType::element_iterator TI = ST->element_begin(),
Misha Brukmanc8e87642004-07-23 01:09:52 +000046 TE = ST->element_end(); TI != TE; ++TI) {
Chris Lattnere7fb3602001-08-27 16:00:15 +000047 const Type *Ty = *TI;
48 unsigned char A;
Vikram S. Advef66723f2002-05-19 15:28:02 +000049 unsigned TyAlign;
50 uint64_t TySize;
51 getTypeInfo(Ty, &TD, TySize, A);
52 TyAlign = A;
Chris Lattnere7fb3602001-08-27 16:00:15 +000053
Misha Brukman5560c9d2003-08-18 14:43:39 +000054 // Add padding if necessary to make the data element aligned properly...
Chris Lattnere7fb3602001-08-27 16:00:15 +000055 if (StructSize % TyAlign != 0)
56 StructSize = (StructSize/TyAlign + 1) * TyAlign; // Add padding...
57
58 // Keep track of maximum alignment constraint
Chris Lattner697954c2002-01-20 22:54:45 +000059 StructAlignment = std::max(TyAlign, StructAlignment);
Chris Lattnere7fb3602001-08-27 16:00:15 +000060
61 MemberOffsets.push_back(StructSize);
Vikram S. Advef66723f2002-05-19 15:28:02 +000062 StructSize += TySize; // Consume space for this data item
Chris Lattnere7fb3602001-08-27 16:00:15 +000063 }
64
Chris Lattner4e840d42003-05-21 18:08:44 +000065 // Empty structures have alignment of 1 byte.
66 if (StructAlignment == 0) StructAlignment = 1;
67
Chris Lattnere7fb3602001-08-27 16:00:15 +000068 // Add padding to the end of the struct so that it could be put in an array
69 // and all array elements would be aligned correctly.
70 if (StructSize % StructAlignment != 0)
71 StructSize = (StructSize/StructAlignment + 1) * StructAlignment;
Chris Lattnere7fb3602001-08-27 16:00:15 +000072}
73
Chris Lattnere7fb3602001-08-27 16:00:15 +000074//===----------------------------------------------------------------------===//
75// TargetData Class Implementation
76//===----------------------------------------------------------------------===//
77
Vikram S. Advef66723f2002-05-19 15:28:02 +000078TargetData::TargetData(const std::string &TargetName,
Chris Lattner10daaa12003-04-26 20:11:09 +000079 bool isLittleEndian, unsigned char PtrSize,
Chris Lattner85131c82002-10-14 22:41:13 +000080 unsigned char PtrAl, unsigned char DoubleAl,
81 unsigned char FloatAl, unsigned char LongAl,
82 unsigned char IntAl, unsigned char ShortAl,
Misha Brukmanc8e87642004-07-23 01:09:52 +000083 unsigned char ByteAl, unsigned char BoolAl) {
Chris Lattnere7fb3602001-08-27 16:00:15 +000084
Chris Lattner46326d92003-04-25 02:50:45 +000085 // If this assert triggers, a pass "required" TargetData information, but the
Brian Gaeke8121fcd2004-04-14 21:21:56 +000086 // top level tool did not provide one for it. We do not want to default
Chris Lattner46326d92003-04-25 02:50:45 +000087 // construct, or else we might end up using a bad endianness or pointer size!
88 //
89 assert(!TargetName.empty() &&
90 "ERROR: Tool did not specify a target data to use!");
91
Chris Lattner85131c82002-10-14 22:41:13 +000092 LittleEndian = isLittleEndian;
Chris Lattnere7fb3602001-08-27 16:00:15 +000093 PointerSize = PtrSize;
94 PointerAlignment = PtrAl;
95 DoubleAlignment = DoubleAl;
96 FloatAlignment = FloatAl;
97 LongAlignment = LongAl;
98 IntAlignment = IntAl;
99 ShortAlignment = ShortAl;
100 ByteAlignment = ByteAl;
Misha Brukmanc8e87642004-07-23 01:09:52 +0000101 BoolAlignment = BoolAl;
Chris Lattnere7fb3602001-08-27 16:00:15 +0000102}
103
Chris Lattner0e7ac162004-02-26 08:02:17 +0000104TargetData::TargetData(const std::string &ToolName, const Module *M) {
Chris Lattner030574f2003-08-24 13:49:22 +0000105 LittleEndian = M->getEndianness() != Module::BigEndian;
106 PointerSize = M->getPointerSize() != Module::Pointer64 ? 4 : 8;
Chris Lattner53a0c382003-04-24 19:09:05 +0000107 PointerAlignment = PointerSize;
Chris Lattnerdd7253c2003-04-25 06:06:43 +0000108 DoubleAlignment = PointerSize;
Chris Lattner53a0c382003-04-24 19:09:05 +0000109 FloatAlignment = 4;
110 LongAlignment = 8;
111 IntAlignment = 4;
112 ShortAlignment = 2;
113 ByteAlignment = 1;
Misha Brukmanc8e87642004-07-23 01:09:52 +0000114 BoolAlignment = 1;
Chris Lattner53a0c382003-04-24 19:09:05 +0000115}
116
Chris Lattner0e7ac162004-02-26 08:02:17 +0000117static std::map<std::pair<const TargetData*,const StructType*>,
118 StructLayout> *Layouts = 0;
119
120
Chris Lattnere7fb3602001-08-27 16:00:15 +0000121TargetData::~TargetData() {
Chris Lattner0e7ac162004-02-26 08:02:17 +0000122 if (Layouts) {
123 // Remove any layouts for this TD.
124 std::map<std::pair<const TargetData*,
125 const StructType*>, StructLayout>::iterator
126 I = Layouts->lower_bound(std::make_pair(this, (const StructType*)0));
127 while (I != Layouts->end() && I->first.first == this)
128 Layouts->erase(I++);
129 if (Layouts->empty()) {
130 delete Layouts;
131 Layouts = 0;
132 }
133 }
134}
135
136const StructLayout *TargetData::getStructLayout(const StructType *Ty) const {
137 if (Layouts == 0)
138 Layouts = new std::map<std::pair<const TargetData*,const StructType*>,
139 StructLayout>();
140 std::map<std::pair<const TargetData*,const StructType*>,
141 StructLayout>::iterator
142 I = Layouts->lower_bound(std::make_pair(this, Ty));
143 if (I != Layouts->end() && I->first.first == this && I->first.second == Ty)
144 return &I->second;
145 else {
146 return &Layouts->insert(I, std::make_pair(std::make_pair(this, Ty),
147 StructLayout(Ty, *this)))->second;
148 }
Chris Lattnere7fb3602001-08-27 16:00:15 +0000149}
150
151static inline void getTypeInfo(const Type *Ty, const TargetData *TD,
Misha Brukmanc8e87642004-07-23 01:09:52 +0000152 uint64_t &Size, unsigned char &Alignment) {
Chris Lattnerf59ce922001-12-13 00:46:11 +0000153 assert(Ty->isSized() && "Cannot getTypeInfo() on a type that is unsized!");
Chris Lattnerf70c22b2004-06-17 18:19:28 +0000154 switch (Ty->getTypeID()) {
Misha Brukmanc8e87642004-07-23 01:09:52 +0000155 case Type::BoolTyID: Size = 1; Alignment = TD->getBoolAlignment(); return;
Chris Lattnere7fb3602001-08-27 16:00:15 +0000156 case Type::VoidTyID:
Chris Lattnere7fb3602001-08-27 16:00:15 +0000157 case Type::UByteTyID:
158 case Type::SByteTyID: Size = 1; Alignment = TD->getByteAlignment(); return;
159 case Type::UShortTyID:
160 case Type::ShortTyID: Size = 2; Alignment = TD->getShortAlignment(); return;
161 case Type::UIntTyID:
162 case Type::IntTyID: Size = 4; Alignment = TD->getIntAlignment(); return;
163 case Type::ULongTyID:
164 case Type::LongTyID: Size = 8; Alignment = TD->getLongAlignment(); return;
165 case Type::FloatTyID: Size = 4; Alignment = TD->getFloatAlignment(); return;
166 case Type::DoubleTyID: Size = 8; Alignment = TD->getDoubleAlignment(); return;
167 case Type::LabelTyID:
168 case Type::PointerTyID:
169 Size = TD->getPointerSize(); Alignment = TD->getPointerAlignment();
170 return;
171 case Type::ArrayTyID: {
Chris Lattner59b00672004-07-01 17:32:59 +0000172 const ArrayType *ATy = cast<ArrayType>(Ty);
Chris Lattnere7fb3602001-08-27 16:00:15 +0000173 getTypeInfo(ATy->getElementType(), TD, Size, Alignment);
Brian Gaekee0e35892004-07-02 07:01:31 +0000174 unsigned AlignedSize = (Size + Alignment - 1)/Alignment*Alignment;
Chris Lattner59b00672004-07-01 17:32:59 +0000175 Size = AlignedSize*ATy->getNumElements();
Chris Lattnere7fb3602001-08-27 16:00:15 +0000176 return;
177 }
178 case Type::StructTyID: {
179 // Get the layout annotation... which is lazily created on demand.
Chris Lattner59b00672004-07-01 17:32:59 +0000180 const StructLayout *Layout = TD->getStructLayout(cast<StructType>(Ty));
Chris Lattnere7fb3602001-08-27 16:00:15 +0000181 Size = Layout->StructSize; Alignment = Layout->StructAlignment;
182 return;
183 }
184
Chris Lattnere7fb3602001-08-27 16:00:15 +0000185 default:
186 assert(0 && "Bad type for getTypeInfo!!!");
187 return;
188 }
189}
190
Vikram S. Advef66723f2002-05-19 15:28:02 +0000191uint64_t TargetData::getTypeSize(const Type *Ty) const {
192 uint64_t Size;
193 unsigned char Align;
Chris Lattnere7fb3602001-08-27 16:00:15 +0000194 getTypeInfo(Ty, this, Size, Align);
195 return Size;
196}
197
198unsigned char TargetData::getTypeAlignment(const Type *Ty) const {
Vikram S. Advef66723f2002-05-19 15:28:02 +0000199 uint64_t Size;
200 unsigned char Align;
Chris Lattnere7fb3602001-08-27 16:00:15 +0000201 getTypeInfo(Ty, this, Size, Align);
202 return Align;
203}
204
Chris Lattnerd2b0bb42004-08-17 19:13:00 +0000205unsigned char TargetData::getTypeAlignmentShift(const Type *Ty) const {
206 unsigned Align = getTypeAlignment(Ty);
207 assert(!(Align & (Align-1)) && "Alignment is not a power of two!");
208 return log2(Align);
209}
210
Chris Lattnerf0453282003-12-22 05:01:15 +0000211/// getIntPtrType - Return an unsigned integer type that is the same size or
212/// greater to the host pointer size.
213const Type *TargetData::getIntPtrType() const {
214 switch (getPointerSize()) {
215 default: assert(0 && "Unknown pointer size!");
216 case 2: return Type::UShortTy;
217 case 4: return Type::UIntTy;
218 case 8: return Type::ULongTy;
219 }
220}
221
222
Vikram S. Advef66723f2002-05-19 15:28:02 +0000223uint64_t TargetData::getIndexedOffset(const Type *ptrTy,
Misha Brukmanc8e87642004-07-23 01:09:52 +0000224 const std::vector<Value*> &Idx) const {
Vikram S. Adveed0030e2002-08-04 20:52:39 +0000225 const Type *Ty = ptrTy;
226 assert(isa<PointerType>(Ty) && "Illegal argument for getIndexedOffset()");
Vikram S. Advef66723f2002-05-19 15:28:02 +0000227 uint64_t Result = 0;
Chris Lattnere7fb3602001-08-27 16:00:15 +0000228
Chris Lattner28977af2004-04-05 01:30:19 +0000229 generic_gep_type_iterator<std::vector<Value*>::const_iterator>
230 TI = gep_type_begin(ptrTy, Idx.begin(), Idx.end());
231 for (unsigned CurIDX = 0; CurIDX != Idx.size(); ++CurIDX, ++TI) {
232 if (const StructType *STy = dyn_cast<StructType>(*TI)) {
233 assert(Idx[CurIDX]->getType() == Type::UIntTy && "Illegal struct idx");
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000234 unsigned FieldNo = cast<ConstantUInt>(Idx[CurIDX])->getValue();
Chris Lattnere7fb3602001-08-27 16:00:15 +0000235
236 // Get structure layout information...
237 const StructLayout *Layout = getStructLayout(STy);
238
239 // Add in the offset, as calculated by the structure layout info...
Vikram S. Advef66723f2002-05-19 15:28:02 +0000240 assert(FieldNo < Layout->MemberOffsets.size() &&"FieldNo out of range!");
Chris Lattnere7fb3602001-08-27 16:00:15 +0000241 Result += Layout->MemberOffsets[FieldNo];
Vikram S. Adveed0030e2002-08-04 20:52:39 +0000242
Chris Lattnere7fb3602001-08-27 16:00:15 +0000243 // Update Ty to refer to current element
Chris Lattnerd21cd802004-02-09 04:37:31 +0000244 Ty = STy->getElementType(FieldNo);
Chris Lattner28977af2004-04-05 01:30:19 +0000245 } else {
246 // Update Ty to refer to current element
247 Ty = cast<SequentialType>(Ty)->getElementType();
248
249 // Get the array index and the size of each array element.
250 int64_t arrayIdx = cast<ConstantInt>(Idx[CurIDX])->getRawValue();
251 Result += arrayIdx * (int64_t)getTypeSize(Ty);
Chris Lattnere7fb3602001-08-27 16:00:15 +0000252 }
253 }
254
255 return Result;
256}
Brian Gaeked0fde302003-11-11 22:41:34 +0000257