Chris Lattner | e7fb360 | 2001-08-27 16:00:15 +0000 | [diff] [blame] | 1 | //===-- TargetData.cpp - Data size & alignment routines --------------------==// |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 2 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 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. |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 7 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | e7fb360 | 2001-08-27 16:00:15 +0000 | [diff] [blame] | 9 | // |
| 10 | // This file defines target properties related to datatype size/offset/alignment |
Chris Lattner | 0e7ac16 | 2004-02-26 08:02:17 +0000 | [diff] [blame] | 11 | // information. |
Chris Lattner | e7fb360 | 2001-08-27 16:00:15 +0000 | [diff] [blame] | 12 | // |
| 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. Adve | 0799fc4 | 2001-09-18 12:58:33 +0000 | [diff] [blame] | 19 | #include "llvm/Target/TargetData.h" |
Chris Lattner | 53a0c38 | 2003-04-24 19:09:05 +0000 | [diff] [blame] | 20 | #include "llvm/Module.h" |
Chris Lattner | e7fb360 | 2001-08-27 16:00:15 +0000 | [diff] [blame] | 21 | #include "llvm/DerivedTypes.h" |
Chris Lattner | 31bcdb8 | 2002-04-28 19:55:58 +0000 | [diff] [blame] | 22 | #include "llvm/Constants.h" |
Chris Lattner | 28977af | 2004-04-05 01:30:19 +0000 | [diff] [blame] | 23 | #include "llvm/Support/GetElementPtrTypeIterator.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 24 | #include "llvm/Support/MathExtras.h" |
Owen Anderson | 8f60c56 | 2006-05-12 05:49:47 +0000 | [diff] [blame] | 25 | #include "llvm/ADT/StringExtras.h" |
Chris Lattner | e7ea48c | 2005-03-13 19:04:41 +0000 | [diff] [blame] | 26 | #include <algorithm> |
Owen Anderson | 8f60c56 | 2006-05-12 05:49:47 +0000 | [diff] [blame] | 27 | #include <cstdlib> |
Owen Anderson | 2577c22 | 2006-05-12 07:01:44 +0000 | [diff] [blame] | 28 | #include <sstream> |
Chris Lattner | f045328 | 2003-12-22 05:01:15 +0000 | [diff] [blame] | 29 | using namespace llvm; |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 30 | |
Misha Brukman | 5560c9d | 2003-08-18 14:43:39 +0000 | [diff] [blame] | 31 | // Handle the Pass registration stuff necessary to use TargetData's. |
Chris Lattner | aa31ad0 | 2002-09-25 23:46:55 +0000 | [diff] [blame] | 32 | namespace { |
| 33 | // Register the default SparcV9 implementation... |
| 34 | RegisterPass<TargetData> X("targetdata", "Target Data Layout"); |
| 35 | } |
| 36 | |
Chris Lattner | e7fb360 | 2001-08-27 16:00:15 +0000 | [diff] [blame] | 37 | static inline void getTypeInfo(const Type *Ty, const TargetData *TD, |
Misha Brukman | c8e8764 | 2004-07-23 01:09:52 +0000 | [diff] [blame] | 38 | uint64_t &Size, unsigned char &Alignment); |
Chris Lattner | e7fb360 | 2001-08-27 16:00:15 +0000 | [diff] [blame] | 39 | |
| 40 | //===----------------------------------------------------------------------===// |
Chris Lattner | 0e7ac16 | 2004-02-26 08:02:17 +0000 | [diff] [blame] | 41 | // Support for StructLayout |
Chris Lattner | e7fb360 | 2001-08-27 16:00:15 +0000 | [diff] [blame] | 42 | //===----------------------------------------------------------------------===// |
| 43 | |
Chris Lattner | 0e7ac16 | 2004-02-26 08:02:17 +0000 | [diff] [blame] | 44 | StructLayout::StructLayout(const StructType *ST, const TargetData &TD) { |
Chris Lattner | e7fb360 | 2001-08-27 16:00:15 +0000 | [diff] [blame] | 45 | StructAlignment = 0; |
| 46 | StructSize = 0; |
| 47 | |
| 48 | // Loop over each of the elements, placing them in memory... |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 49 | for (StructType::element_iterator TI = ST->element_begin(), |
Misha Brukman | c8e8764 | 2004-07-23 01:09:52 +0000 | [diff] [blame] | 50 | TE = ST->element_end(); TI != TE; ++TI) { |
Chris Lattner | e7fb360 | 2001-08-27 16:00:15 +0000 | [diff] [blame] | 51 | const Type *Ty = *TI; |
| 52 | unsigned char A; |
Vikram S. Adve | f66723f | 2002-05-19 15:28:02 +0000 | [diff] [blame] | 53 | unsigned TyAlign; |
| 54 | uint64_t TySize; |
| 55 | getTypeInfo(Ty, &TD, TySize, A); |
| 56 | TyAlign = A; |
Chris Lattner | e7fb360 | 2001-08-27 16:00:15 +0000 | [diff] [blame] | 57 | |
Misha Brukman | 5560c9d | 2003-08-18 14:43:39 +0000 | [diff] [blame] | 58 | // Add padding if necessary to make the data element aligned properly... |
Chris Lattner | e7fb360 | 2001-08-27 16:00:15 +0000 | [diff] [blame] | 59 | if (StructSize % TyAlign != 0) |
| 60 | StructSize = (StructSize/TyAlign + 1) * TyAlign; // Add padding... |
| 61 | |
| 62 | // Keep track of maximum alignment constraint |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 63 | StructAlignment = std::max(TyAlign, StructAlignment); |
Chris Lattner | e7fb360 | 2001-08-27 16:00:15 +0000 | [diff] [blame] | 64 | |
| 65 | MemberOffsets.push_back(StructSize); |
Vikram S. Adve | f66723f | 2002-05-19 15:28:02 +0000 | [diff] [blame] | 66 | StructSize += TySize; // Consume space for this data item |
Chris Lattner | e7fb360 | 2001-08-27 16:00:15 +0000 | [diff] [blame] | 67 | } |
| 68 | |
Chris Lattner | 4e840d4 | 2003-05-21 18:08:44 +0000 | [diff] [blame] | 69 | // Empty structures have alignment of 1 byte. |
| 70 | if (StructAlignment == 0) StructAlignment = 1; |
| 71 | |
Chris Lattner | e7fb360 | 2001-08-27 16:00:15 +0000 | [diff] [blame] | 72 | // Add padding to the end of the struct so that it could be put in an array |
| 73 | // and all array elements would be aligned correctly. |
| 74 | if (StructSize % StructAlignment != 0) |
| 75 | StructSize = (StructSize/StructAlignment + 1) * StructAlignment; |
Chris Lattner | e7fb360 | 2001-08-27 16:00:15 +0000 | [diff] [blame] | 76 | } |
| 77 | |
Chris Lattner | e7ea48c | 2005-03-13 19:04:41 +0000 | [diff] [blame] | 78 | |
| 79 | /// getElementContainingOffset - Given a valid offset into the structure, |
| 80 | /// return the structure index that contains it. |
| 81 | unsigned StructLayout::getElementContainingOffset(uint64_t Offset) const { |
| 82 | std::vector<uint64_t>::const_iterator SI = |
| 83 | std::upper_bound(MemberOffsets.begin(), MemberOffsets.end(), |
| 84 | Offset); |
| 85 | assert(SI != MemberOffsets.begin() && "Offset not in structure type!"); |
| 86 | --SI; |
| 87 | assert(*SI <= Offset && "upper_bound didn't work"); |
| 88 | assert((SI == MemberOffsets.begin() || *(SI-1) < Offset) && |
| 89 | (SI+1 == MemberOffsets.end() || *(SI+1) > Offset) && |
| 90 | "Upper bound didn't work!"); |
| 91 | return SI-MemberOffsets.begin(); |
| 92 | } |
| 93 | |
Chris Lattner | e7fb360 | 2001-08-27 16:00:15 +0000 | [diff] [blame] | 94 | //===----------------------------------------------------------------------===// |
| 95 | // TargetData Class Implementation |
| 96 | //===----------------------------------------------------------------------===// |
| 97 | |
Chris Lattner | acbc07a | 2006-06-16 18:11:26 +0000 | [diff] [blame] | 98 | void TargetData::init(const std::string &TargetDescription) { |
Owen Anderson | 8f60c56 | 2006-05-12 05:49:47 +0000 | [diff] [blame] | 99 | std::string temp = TargetDescription; |
| 100 | |
| 101 | LittleEndian = false; |
| 102 | PointerSize = 8; |
| 103 | PointerAlignment = 8; |
| 104 | DoubleAlignment = 8; |
| 105 | FloatAlignment = 4; |
| 106 | LongAlignment = 8; |
| 107 | IntAlignment = 4; |
| 108 | ShortAlignment = 2; |
| 109 | ByteAlignment = 1; |
| 110 | BoolAlignment = 1; |
| 111 | |
Owen Anderson | d988b32 | 2006-05-20 00:24:56 +0000 | [diff] [blame] | 112 | while (!temp.empty()) { |
Owen Anderson | 8f60c56 | 2006-05-12 05:49:47 +0000 | [diff] [blame] | 113 | std::string token = getToken(temp, "-"); |
| 114 | |
Owen Anderson | 84cc6db | 2006-05-17 21:56:02 +0000 | [diff] [blame] | 115 | char signal = getToken(token, ":")[0]; |
| 116 | |
| 117 | switch(signal) { |
Owen Anderson | 8f60c56 | 2006-05-12 05:49:47 +0000 | [diff] [blame] | 118 | case 'E': |
Owen Anderson | 571a13f | 2006-05-12 06:06:55 +0000 | [diff] [blame] | 119 | LittleEndian = false; |
| 120 | break; |
Owen Anderson | 8f60c56 | 2006-05-12 05:49:47 +0000 | [diff] [blame] | 121 | case 'e': |
Owen Anderson | 571a13f | 2006-05-12 06:06:55 +0000 | [diff] [blame] | 122 | LittleEndian = true; |
| 123 | break; |
Owen Anderson | 8f60c56 | 2006-05-12 05:49:47 +0000 | [diff] [blame] | 124 | case 'p': |
Owen Anderson | 571a13f | 2006-05-12 06:06:55 +0000 | [diff] [blame] | 125 | PointerSize = atoi(getToken(token,":").c_str()) / 8; |
| 126 | PointerAlignment = atoi(getToken(token,":").c_str()) / 8; |
| 127 | break; |
Owen Anderson | 8f60c56 | 2006-05-12 05:49:47 +0000 | [diff] [blame] | 128 | case 'd': |
Owen Anderson | 571a13f | 2006-05-12 06:06:55 +0000 | [diff] [blame] | 129 | DoubleAlignment = atoi(getToken(token,":").c_str()) / 8; |
| 130 | break; |
Owen Anderson | 8f60c56 | 2006-05-12 05:49:47 +0000 | [diff] [blame] | 131 | case 'f': |
Owen Anderson | 571a13f | 2006-05-12 06:06:55 +0000 | [diff] [blame] | 132 | FloatAlignment = atoi(getToken(token, ":").c_str()) / 8; |
| 133 | break; |
Owen Anderson | 8f60c56 | 2006-05-12 05:49:47 +0000 | [diff] [blame] | 134 | case 'l': |
Owen Anderson | 571a13f | 2006-05-12 06:06:55 +0000 | [diff] [blame] | 135 | LongAlignment = atoi(getToken(token, ":").c_str()) / 8; |
| 136 | break; |
Owen Anderson | 8f60c56 | 2006-05-12 05:49:47 +0000 | [diff] [blame] | 137 | case 'i': |
Owen Anderson | 571a13f | 2006-05-12 06:06:55 +0000 | [diff] [blame] | 138 | IntAlignment = atoi(getToken(token, ":").c_str()) / 8; |
| 139 | break; |
Owen Anderson | 8f60c56 | 2006-05-12 05:49:47 +0000 | [diff] [blame] | 140 | case 's': |
Owen Anderson | 571a13f | 2006-05-12 06:06:55 +0000 | [diff] [blame] | 141 | ShortAlignment = atoi(getToken(token, ":").c_str()) / 8; |
| 142 | break; |
Owen Anderson | 8f60c56 | 2006-05-12 05:49:47 +0000 | [diff] [blame] | 143 | case 'b': |
Owen Anderson | 571a13f | 2006-05-12 06:06:55 +0000 | [diff] [blame] | 144 | ByteAlignment = atoi(getToken(token, ":").c_str()) / 8; |
| 145 | break; |
Owen Anderson | 8f60c56 | 2006-05-12 05:49:47 +0000 | [diff] [blame] | 146 | case 'B': |
Owen Anderson | 571a13f | 2006-05-12 06:06:55 +0000 | [diff] [blame] | 147 | BoolAlignment = atoi(getToken(token, ":").c_str()) / 8; |
| 148 | break; |
Owen Anderson | 8f60c56 | 2006-05-12 05:49:47 +0000 | [diff] [blame] | 149 | default: |
Owen Anderson | 571a13f | 2006-05-12 06:06:55 +0000 | [diff] [blame] | 150 | break; |
Owen Anderson | 8f60c56 | 2006-05-12 05:49:47 +0000 | [diff] [blame] | 151 | } |
| 152 | } |
| 153 | } |
| 154 | |
Chris Lattner | 1790d44 | 2006-06-16 18:22:52 +0000 | [diff] [blame^] | 155 | TargetData::TargetData(const Module *M) { |
Chris Lattner | 030574f | 2003-08-24 13:49:22 +0000 | [diff] [blame] | 156 | LittleEndian = M->getEndianness() != Module::BigEndian; |
| 157 | PointerSize = M->getPointerSize() != Module::Pointer64 ? 4 : 8; |
Chris Lattner | 53a0c38 | 2003-04-24 19:09:05 +0000 | [diff] [blame] | 158 | PointerAlignment = PointerSize; |
Chris Lattner | dd7253c | 2003-04-25 06:06:43 +0000 | [diff] [blame] | 159 | DoubleAlignment = PointerSize; |
Chris Lattner | 53a0c38 | 2003-04-24 19:09:05 +0000 | [diff] [blame] | 160 | FloatAlignment = 4; |
Chris Lattner | da6122f | 2004-11-02 22:18:18 +0000 | [diff] [blame] | 161 | LongAlignment = PointerSize; |
Chris Lattner | 53a0c38 | 2003-04-24 19:09:05 +0000 | [diff] [blame] | 162 | IntAlignment = 4; |
| 163 | ShortAlignment = 2; |
| 164 | ByteAlignment = 1; |
Misha Brukman | c8e8764 | 2004-07-23 01:09:52 +0000 | [diff] [blame] | 165 | BoolAlignment = 1; |
Chris Lattner | 53a0c38 | 2003-04-24 19:09:05 +0000 | [diff] [blame] | 166 | } |
| 167 | |
Chris Lattner | 8dff24f | 2006-01-14 00:07:34 +0000 | [diff] [blame] | 168 | /// Layouts - The lazy cache of structure layout information maintained by |
| 169 | /// TargetData. |
| 170 | /// |
Chris Lattner | 0e7ac16 | 2004-02-26 08:02:17 +0000 | [diff] [blame] | 171 | static std::map<std::pair<const TargetData*,const StructType*>, |
| 172 | StructLayout> *Layouts = 0; |
| 173 | |
| 174 | |
Chris Lattner | e7fb360 | 2001-08-27 16:00:15 +0000 | [diff] [blame] | 175 | TargetData::~TargetData() { |
Chris Lattner | 0e7ac16 | 2004-02-26 08:02:17 +0000 | [diff] [blame] | 176 | if (Layouts) { |
| 177 | // Remove any layouts for this TD. |
| 178 | std::map<std::pair<const TargetData*, |
| 179 | const StructType*>, StructLayout>::iterator |
| 180 | I = Layouts->lower_bound(std::make_pair(this, (const StructType*)0)); |
| 181 | while (I != Layouts->end() && I->first.first == this) |
| 182 | Layouts->erase(I++); |
| 183 | if (Layouts->empty()) { |
| 184 | delete Layouts; |
| 185 | Layouts = 0; |
| 186 | } |
| 187 | } |
| 188 | } |
| 189 | |
Owen Anderson | 2577c22 | 2006-05-12 07:01:44 +0000 | [diff] [blame] | 190 | std::string TargetData::getStringRepresentation() const { |
| 191 | std::stringstream repr; |
| 192 | |
| 193 | if (LittleEndian) |
| 194 | repr << "e"; |
| 195 | else |
| 196 | repr << "E"; |
| 197 | |
| 198 | repr << "-p:" << (PointerSize * 8) << ":" << (PointerAlignment * 8); |
| 199 | repr << "-d:64:" << (DoubleAlignment * 8); |
| 200 | repr << "-f:32:" << (FloatAlignment * 8); |
| 201 | repr << "-l:64:" << (LongAlignment * 8); |
| 202 | repr << "-i:32:" << (IntAlignment * 8); |
| 203 | repr << "-s:16:" << (ShortAlignment * 8); |
| 204 | repr << "-b:8:" << (ByteAlignment * 8); |
| 205 | repr << "-B:8:" << (BoolAlignment * 8); |
| 206 | |
| 207 | return repr.str(); |
| 208 | } |
| 209 | |
Chris Lattner | 0e7ac16 | 2004-02-26 08:02:17 +0000 | [diff] [blame] | 210 | const StructLayout *TargetData::getStructLayout(const StructType *Ty) const { |
| 211 | if (Layouts == 0) |
| 212 | Layouts = new std::map<std::pair<const TargetData*,const StructType*>, |
| 213 | StructLayout>(); |
| 214 | std::map<std::pair<const TargetData*,const StructType*>, |
| 215 | StructLayout>::iterator |
| 216 | I = Layouts->lower_bound(std::make_pair(this, Ty)); |
| 217 | if (I != Layouts->end() && I->first.first == this && I->first.second == Ty) |
| 218 | return &I->second; |
| 219 | else { |
| 220 | return &Layouts->insert(I, std::make_pair(std::make_pair(this, Ty), |
| 221 | StructLayout(Ty, *this)))->second; |
| 222 | } |
Chris Lattner | e7fb360 | 2001-08-27 16:00:15 +0000 | [diff] [blame] | 223 | } |
| 224 | |
Chris Lattner | 8dff24f | 2006-01-14 00:07:34 +0000 | [diff] [blame] | 225 | /// InvalidateStructLayoutInfo - TargetData speculatively caches StructLayout |
| 226 | /// objects. If a TargetData object is alive when types are being refined and |
| 227 | /// removed, this method must be called whenever a StructType is removed to |
| 228 | /// avoid a dangling pointer in this cache. |
| 229 | void TargetData::InvalidateStructLayoutInfo(const StructType *Ty) const { |
| 230 | if (!Layouts) return; // No cache. |
| 231 | |
| 232 | std::map<std::pair<const TargetData*,const StructType*>, |
| 233 | StructLayout>::iterator I = Layouts->find(std::make_pair(this, Ty)); |
| 234 | if (I != Layouts->end()) |
| 235 | Layouts->erase(I); |
| 236 | } |
| 237 | |
| 238 | |
| 239 | |
Chris Lattner | e7fb360 | 2001-08-27 16:00:15 +0000 | [diff] [blame] | 240 | static inline void getTypeInfo(const Type *Ty, const TargetData *TD, |
Misha Brukman | c8e8764 | 2004-07-23 01:09:52 +0000 | [diff] [blame] | 241 | uint64_t &Size, unsigned char &Alignment) { |
Chris Lattner | f59ce92 | 2001-12-13 00:46:11 +0000 | [diff] [blame] | 242 | assert(Ty->isSized() && "Cannot getTypeInfo() on a type that is unsized!"); |
Chris Lattner | f70c22b | 2004-06-17 18:19:28 +0000 | [diff] [blame] | 243 | switch (Ty->getTypeID()) { |
Misha Brukman | c8e8764 | 2004-07-23 01:09:52 +0000 | [diff] [blame] | 244 | case Type::BoolTyID: Size = 1; Alignment = TD->getBoolAlignment(); return; |
Chris Lattner | e7fb360 | 2001-08-27 16:00:15 +0000 | [diff] [blame] | 245 | case Type::VoidTyID: |
Chris Lattner | e7fb360 | 2001-08-27 16:00:15 +0000 | [diff] [blame] | 246 | case Type::UByteTyID: |
| 247 | case Type::SByteTyID: Size = 1; Alignment = TD->getByteAlignment(); return; |
| 248 | case Type::UShortTyID: |
| 249 | case Type::ShortTyID: Size = 2; Alignment = TD->getShortAlignment(); return; |
| 250 | case Type::UIntTyID: |
| 251 | case Type::IntTyID: Size = 4; Alignment = TD->getIntAlignment(); return; |
| 252 | case Type::ULongTyID: |
| 253 | case Type::LongTyID: Size = 8; Alignment = TD->getLongAlignment(); return; |
| 254 | case Type::FloatTyID: Size = 4; Alignment = TD->getFloatAlignment(); return; |
| 255 | case Type::DoubleTyID: Size = 8; Alignment = TD->getDoubleAlignment(); return; |
| 256 | case Type::LabelTyID: |
| 257 | case Type::PointerTyID: |
| 258 | Size = TD->getPointerSize(); Alignment = TD->getPointerAlignment(); |
| 259 | return; |
| 260 | case Type::ArrayTyID: { |
Chris Lattner | 59b0067 | 2004-07-01 17:32:59 +0000 | [diff] [blame] | 261 | const ArrayType *ATy = cast<ArrayType>(Ty); |
Chris Lattner | e7fb360 | 2001-08-27 16:00:15 +0000 | [diff] [blame] | 262 | getTypeInfo(ATy->getElementType(), TD, Size, Alignment); |
Brian Gaeke | e0e3589 | 2004-07-02 07:01:31 +0000 | [diff] [blame] | 263 | unsigned AlignedSize = (Size + Alignment - 1)/Alignment*Alignment; |
Chris Lattner | 59b0067 | 2004-07-01 17:32:59 +0000 | [diff] [blame] | 264 | Size = AlignedSize*ATy->getNumElements(); |
Chris Lattner | e7fb360 | 2001-08-27 16:00:15 +0000 | [diff] [blame] | 265 | return; |
| 266 | } |
Chris Lattner | 527efc6 | 2004-12-01 17:14:28 +0000 | [diff] [blame] | 267 | case Type::PackedTyID: { |
| 268 | const PackedType *PTy = cast<PackedType>(Ty); |
| 269 | getTypeInfo(PTy->getElementType(), TD, Size, Alignment); |
| 270 | unsigned AlignedSize = (Size + Alignment - 1)/Alignment*Alignment; |
| 271 | Size = AlignedSize*PTy->getNumElements(); |
Evan Cheng | e668bda | 2006-03-31 22:33:42 +0000 | [diff] [blame] | 272 | // FIXME: The alignments of specific packed types are target dependent. |
| 273 | // For now, just set it to be equal to Size. |
Chris Lattner | 0aab36f | 2006-04-03 23:14:49 +0000 | [diff] [blame] | 274 | Alignment = Size; |
Chris Lattner | 527efc6 | 2004-12-01 17:14:28 +0000 | [diff] [blame] | 275 | return; |
| 276 | } |
Chris Lattner | e7fb360 | 2001-08-27 16:00:15 +0000 | [diff] [blame] | 277 | case Type::StructTyID: { |
| 278 | // Get the layout annotation... which is lazily created on demand. |
Chris Lattner | 59b0067 | 2004-07-01 17:32:59 +0000 | [diff] [blame] | 279 | const StructLayout *Layout = TD->getStructLayout(cast<StructType>(Ty)); |
Chris Lattner | e7fb360 | 2001-08-27 16:00:15 +0000 | [diff] [blame] | 280 | Size = Layout->StructSize; Alignment = Layout->StructAlignment; |
| 281 | return; |
| 282 | } |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 283 | |
Chris Lattner | e7fb360 | 2001-08-27 16:00:15 +0000 | [diff] [blame] | 284 | default: |
| 285 | assert(0 && "Bad type for getTypeInfo!!!"); |
| 286 | return; |
| 287 | } |
| 288 | } |
| 289 | |
Vikram S. Adve | f66723f | 2002-05-19 15:28:02 +0000 | [diff] [blame] | 290 | uint64_t TargetData::getTypeSize(const Type *Ty) const { |
| 291 | uint64_t Size; |
| 292 | unsigned char Align; |
Chris Lattner | e7fb360 | 2001-08-27 16:00:15 +0000 | [diff] [blame] | 293 | getTypeInfo(Ty, this, Size, Align); |
| 294 | return Size; |
| 295 | } |
| 296 | |
| 297 | unsigned char TargetData::getTypeAlignment(const Type *Ty) const { |
Vikram S. Adve | f66723f | 2002-05-19 15:28:02 +0000 | [diff] [blame] | 298 | uint64_t Size; |
| 299 | unsigned char Align; |
Chris Lattner | e7fb360 | 2001-08-27 16:00:15 +0000 | [diff] [blame] | 300 | getTypeInfo(Ty, this, Size, Align); |
| 301 | return Align; |
| 302 | } |
| 303 | |
Chris Lattner | d2b0bb4 | 2004-08-17 19:13:00 +0000 | [diff] [blame] | 304 | unsigned char TargetData::getTypeAlignmentShift(const Type *Ty) const { |
| 305 | unsigned Align = getTypeAlignment(Ty); |
| 306 | assert(!(Align & (Align-1)) && "Alignment is not a power of two!"); |
Chris Lattner | 0561b3f | 2005-08-02 19:26:06 +0000 | [diff] [blame] | 307 | return Log2_32(Align); |
Chris Lattner | d2b0bb4 | 2004-08-17 19:13:00 +0000 | [diff] [blame] | 308 | } |
| 309 | |
Chris Lattner | f045328 | 2003-12-22 05:01:15 +0000 | [diff] [blame] | 310 | /// getIntPtrType - Return an unsigned integer type that is the same size or |
| 311 | /// greater to the host pointer size. |
| 312 | const Type *TargetData::getIntPtrType() const { |
| 313 | switch (getPointerSize()) { |
| 314 | default: assert(0 && "Unknown pointer size!"); |
| 315 | case 2: return Type::UShortTy; |
| 316 | case 4: return Type::UIntTy; |
| 317 | case 8: return Type::ULongTy; |
| 318 | } |
| 319 | } |
| 320 | |
| 321 | |
Vikram S. Adve | f66723f | 2002-05-19 15:28:02 +0000 | [diff] [blame] | 322 | uint64_t TargetData::getIndexedOffset(const Type *ptrTy, |
Misha Brukman | c8e8764 | 2004-07-23 01:09:52 +0000 | [diff] [blame] | 323 | const std::vector<Value*> &Idx) const { |
Vikram S. Adve | ed0030e | 2002-08-04 20:52:39 +0000 | [diff] [blame] | 324 | const Type *Ty = ptrTy; |
| 325 | assert(isa<PointerType>(Ty) && "Illegal argument for getIndexedOffset()"); |
Vikram S. Adve | f66723f | 2002-05-19 15:28:02 +0000 | [diff] [blame] | 326 | uint64_t Result = 0; |
Chris Lattner | e7fb360 | 2001-08-27 16:00:15 +0000 | [diff] [blame] | 327 | |
Chris Lattner | 28977af | 2004-04-05 01:30:19 +0000 | [diff] [blame] | 328 | generic_gep_type_iterator<std::vector<Value*>::const_iterator> |
| 329 | TI = gep_type_begin(ptrTy, Idx.begin(), Idx.end()); |
| 330 | for (unsigned CurIDX = 0; CurIDX != Idx.size(); ++CurIDX, ++TI) { |
| 331 | if (const StructType *STy = dyn_cast<StructType>(*TI)) { |
| 332 | assert(Idx[CurIDX]->getType() == Type::UIntTy && "Illegal struct idx"); |
Chris Lattner | e9bb2df | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 333 | unsigned FieldNo = cast<ConstantUInt>(Idx[CurIDX])->getValue(); |
Chris Lattner | e7fb360 | 2001-08-27 16:00:15 +0000 | [diff] [blame] | 334 | |
| 335 | // Get structure layout information... |
| 336 | const StructLayout *Layout = getStructLayout(STy); |
| 337 | |
| 338 | // Add in the offset, as calculated by the structure layout info... |
Vikram S. Adve | f66723f | 2002-05-19 15:28:02 +0000 | [diff] [blame] | 339 | assert(FieldNo < Layout->MemberOffsets.size() &&"FieldNo out of range!"); |
Chris Lattner | e7fb360 | 2001-08-27 16:00:15 +0000 | [diff] [blame] | 340 | Result += Layout->MemberOffsets[FieldNo]; |
Vikram S. Adve | ed0030e | 2002-08-04 20:52:39 +0000 | [diff] [blame] | 341 | |
Chris Lattner | e7fb360 | 2001-08-27 16:00:15 +0000 | [diff] [blame] | 342 | // Update Ty to refer to current element |
Chris Lattner | d21cd80 | 2004-02-09 04:37:31 +0000 | [diff] [blame] | 343 | Ty = STy->getElementType(FieldNo); |
Chris Lattner | 28977af | 2004-04-05 01:30:19 +0000 | [diff] [blame] | 344 | } else { |
| 345 | // Update Ty to refer to current element |
| 346 | Ty = cast<SequentialType>(Ty)->getElementType(); |
| 347 | |
| 348 | // Get the array index and the size of each array element. |
| 349 | int64_t arrayIdx = cast<ConstantInt>(Idx[CurIDX])->getRawValue(); |
| 350 | Result += arrayIdx * (int64_t)getTypeSize(Ty); |
Chris Lattner | e7fb360 | 2001-08-27 16:00:15 +0000 | [diff] [blame] | 351 | } |
| 352 | } |
| 353 | |
| 354 | return Result; |
| 355 | } |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 356 | |