summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/TargetData.cpp
diff options
context:
space:
mode:
authorVikram S. Adve <vadve@cs.uiuc.edu>2002-08-04 20:52:39 +0000
committerVikram S. Adve <vadve@cs.uiuc.edu>2002-08-04 20:52:39 +0000
commit71895b28cc81dbb9310855a870ce610ea78c607b (patch)
treed19f80ef813320b3657c6edd03ad12bf81f52014 /llvm/lib/Target/TargetData.cpp
parentb4a96858722982655ad047e9be4d66636cf788a1 (diff)
downloadbcm5719-llvm-71895b28cc81dbb9310855a870ce610ea78c607b.tar.gz
bcm5719-llvm-71895b28cc81dbb9310855a870ce610ea78c607b.zip
Bug fix in TargetData::getIndexedOffset(): handle struct offset
after array offset correctly. The type was not being updated for array offsets! llvm-svn: 3246
Diffstat (limited to 'llvm/lib/Target/TargetData.cpp')
-rw-r--r--llvm/lib/Target/TargetData.cpp13
1 files changed, 7 insertions, 6 deletions
diff --git a/llvm/lib/Target/TargetData.cpp b/llvm/lib/Target/TargetData.cpp
index 8712fc9f598..08a6536b78a 100644
--- a/llvm/lib/Target/TargetData.cpp
+++ b/llvm/lib/Target/TargetData.cpp
@@ -153,12 +153,10 @@ unsigned char TargetData::getTypeAlignment(const Type *Ty) const {
uint64_t TargetData::getIndexedOffset(const Type *ptrTy,
const std::vector<Value*> &Idx) const {
- const PointerType *PtrTy = cast<const PointerType>(ptrTy);
+ const Type *Ty = ptrTy;
+ assert(isa<PointerType>(Ty) && "Illegal argument for getIndexedOffset()");
uint64_t Result = 0;
- // Get the type pointed to...
- const Type *Ty = PtrTy->getElementType();
-
for (unsigned CurIDX = 0; CurIDX < Idx.size(); ++CurIDX) {
if (Idx[CurIDX]->getType() == Type::UIntTy) {
// Get the array index and the size of each array element.
@@ -166,7 +164,10 @@ uint64_t TargetData::getIndexedOffset(const Type *ptrTy,
unsigned arrayIdx = cast<ConstantUInt>(Idx[CurIDX])->getValue();
uint64_t elementSize = this->getTypeSize(Ty);
Result += arrayIdx * elementSize;
-
+
+ // Update Ty to refer to current element
+ Ty = cast<SequentialType>(Ty)->getElementType();
+
} else if (const StructType *STy = dyn_cast<const StructType>(Ty)) {
assert(Idx[CurIDX]->getType() == Type::UByteTy && "Illegal struct idx");
unsigned FieldNo = cast<ConstantUInt>(Idx[CurIDX])->getValue();
@@ -177,7 +178,7 @@ uint64_t TargetData::getIndexedOffset(const Type *ptrTy,
// Add in the offset, as calculated by the structure layout info...
assert(FieldNo < Layout->MemberOffsets.size() &&"FieldNo out of range!");
Result += Layout->MemberOffsets[FieldNo];
-
+
// Update Ty to refer to current element
Ty = STy->getElementTypes()[FieldNo];
OpenPOWER on IntegriCloud