summaryrefslogtreecommitdiff
path: root/lib/Analysis/ConstantFolding.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-10-23 06:50:36 +0000
committerChris Lattner <sabre@nondot.org>2009-10-23 06:50:36 +0000
commit739208a790398cf1f9da05149c768371e48781e8 (patch)
tree8d6312296a33b67152baeab9d24a020fecc94488 /lib/Analysis/ConstantFolding.cpp
parentfe8c7c807c6f815561bc2bdddfd330b05dbdfc93 (diff)
downloadllvm-739208a790398cf1f9da05149c768371e48781e8.tar.gz
llvm-739208a790398cf1f9da05149c768371e48781e8.tar.bz2
llvm-739208a790398cf1f9da05149c768371e48781e8.tar.xz
enhance FoldReinterpretLoadFromConstPtr to handle loads of up to 32
bytes (i256). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84941 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/ConstantFolding.cpp')
-rw-r--r--lib/Analysis/ConstantFolding.cpp14
1 files changed, 8 insertions, 6 deletions
diff --git a/lib/Analysis/ConstantFolding.cpp b/lib/Analysis/ConstantFolding.cpp
index 3294865a10..3030504961 100644
--- a/lib/Analysis/ConstantFolding.cpp
+++ b/lib/Analysis/ConstantFolding.cpp
@@ -232,7 +232,7 @@ static Constant *FoldReinterpretLoadFromConstPtr(Constant *C,
}
unsigned BytesLoaded = (IntType->getBitWidth() + 7) / 8;
- if (BytesLoaded > 8 || BytesLoaded == 0) return 0;
+ if (BytesLoaded > 32 || BytesLoaded == 0) return 0;
GlobalValue *GVal;
int64_t Offset;
@@ -253,16 +253,18 @@ static Constant *FoldReinterpretLoadFromConstPtr(Constant *C,
if (uint64_t(Offset) >= TD.getTypeAllocSize(GV->getInitializer()->getType()))
return UndefValue::get(IntType);
- unsigned char RawBytes[8] = {0};
+ unsigned char RawBytes[32] = {0};
if (!ReadDataFromGlobal(GV->getInitializer(), Offset, RawBytes,
BytesLoaded, TD))
return 0;
- uint64_t ResultVal = 0;
- for (unsigned i = 0; i != BytesLoaded; ++i)
- ResultVal |= (uint64_t)RawBytes[i] << (i * 8);
+ APInt ResultVal(IntType->getBitWidth(), 0);
+ for (unsigned i = 0; i != BytesLoaded; ++i) {
+ ResultVal <<= 8;
+ ResultVal |= APInt(IntType->getBitWidth(), RawBytes[BytesLoaded-1-i]);
+ }
- return ConstantInt::get(IntType, ResultVal);
+ return ConstantInt::get(IntType->getContext(), ResultVal);
}
/// ConstantFoldLoadFromConstPtr - Return the value that a load from C would