diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-01-18 01:24:02 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-01-18 01:24:02 +0000 |
commit | 01f7e06d8faf788e8b3488dbdeea8b18dddbd033 (patch) | |
tree | 1de52904efbf9a647cc2bd7c123e6de024a4dd5f /llvm/lib/ExecutionEngine/ExecutionEngine.cpp | |
parent | e750f61ac550c39bf13d341e9fb02f8b3ac318ef (diff) | |
download | bcm5719-llvm-01f7e06d8faf788e8b3488dbdeea8b18dddbd033.tar.gz bcm5719-llvm-01f7e06d8faf788e8b3488dbdeea8b18dddbd033.zip |
Make sure we truncate stored values to their bit width.
llvm-svn: 33317
Diffstat (limited to 'llvm/lib/ExecutionEngine/ExecutionEngine.cpp')
-rw-r--r-- | llvm/lib/ExecutionEngine/ExecutionEngine.cpp | 70 |
1 files changed, 40 insertions, 30 deletions
diff --git a/llvm/lib/ExecutionEngine/ExecutionEngine.cpp b/llvm/lib/ExecutionEngine/ExecutionEngine.cpp index 26f51d0502d..2cb4a8ef964 100644 --- a/llvm/lib/ExecutionEngine/ExecutionEngine.cpp +++ b/llvm/lib/ExecutionEngine/ExecutionEngine.cpp @@ -456,25 +456,30 @@ void ExecutionEngine::StoreValueToMemory(GenericValue Val, GenericValue *Ptr, switch (Ty->getTypeID()) { case Type::IntegerTyID: { unsigned BitWidth = cast<IntegerType>(Ty)->getBitWidth(); + uint64_t BitMask = (1ull << BitWidth) - 1; + GenericValue TmpVal = Val; if (BitWidth <= 8) - Ptr->Untyped[0] = Val.Int8Val; + Ptr->Untyped[0] = Val.Int8Val & BitMask; else if (BitWidth <= 16) { - Ptr->Untyped[0] = Val.Int16Val & 255; - Ptr->Untyped[1] = (Val.Int16Val >> 8) & 255; + TmpVal.Int16Val &= BitMask; + Ptr->Untyped[0] = TmpVal.Int16Val & 255; + Ptr->Untyped[1] = (TmpVal.Int16Val >> 8) & 255; } else if (BitWidth <= 32) { - Ptr->Untyped[0] = Val.Int32Val & 255; - Ptr->Untyped[1] = (Val.Int32Val >> 8) & 255; - Ptr->Untyped[2] = (Val.Int32Val >> 16) & 255; - Ptr->Untyped[3] = (Val.Int32Val >> 24) & 255; + TmpVal.Int32Val &= BitMask; + Ptr->Untyped[0] = TmpVal.Int32Val & 255; + Ptr->Untyped[1] = (TmpVal.Int32Val >> 8) & 255; + Ptr->Untyped[2] = (TmpVal.Int32Val >> 16) & 255; + Ptr->Untyped[3] = (TmpVal.Int32Val >> 24) & 255; } else if (BitWidth <= 64) { - Ptr->Untyped[0] = (unsigned char)(Val.Int64Val ); - Ptr->Untyped[1] = (unsigned char)(Val.Int64Val >> 8); - Ptr->Untyped[2] = (unsigned char)(Val.Int64Val >> 16); - Ptr->Untyped[3] = (unsigned char)(Val.Int64Val >> 24); - Ptr->Untyped[4] = (unsigned char)(Val.Int64Val >> 32); - Ptr->Untyped[5] = (unsigned char)(Val.Int64Val >> 40); - Ptr->Untyped[6] = (unsigned char)(Val.Int64Val >> 48); - Ptr->Untyped[7] = (unsigned char)(Val.Int64Val >> 56); + TmpVal.Int64Val &= BitMask; + Ptr->Untyped[0] = (unsigned char)(TmpVal.Int64Val ); + Ptr->Untyped[1] = (unsigned char)(TmpVal.Int64Val >> 8); + Ptr->Untyped[2] = (unsigned char)(TmpVal.Int64Val >> 16); + Ptr->Untyped[3] = (unsigned char)(TmpVal.Int64Val >> 24); + Ptr->Untyped[4] = (unsigned char)(TmpVal.Int64Val >> 32); + Ptr->Untyped[5] = (unsigned char)(TmpVal.Int64Val >> 40); + Ptr->Untyped[6] = (unsigned char)(TmpVal.Int64Val >> 48); + Ptr->Untyped[7] = (unsigned char)(TmpVal.Int64Val >> 56); } else assert(0 && "Integer types > 64 bits not supported"); break; @@ -507,25 +512,30 @@ Store4BytesLittleEndian: switch (Ty->getTypeID()) { case Type::IntegerTyID: { unsigned BitWidth = cast<IntegerType>(Ty)->getBitWidth(); + uint64_t BitMask = (1ull << BitWidth) - 1; + GenericValue TmpVal = Val; if (BitWidth <= 8) - Ptr->Untyped[0] = Val.Int8Val; + Ptr->Untyped[0] = Val.Int8Val & BitMask; else if (BitWidth <= 16) { - Ptr->Untyped[1] = Val.Int16Val & 255; - Ptr->Untyped[0] = (Val.Int16Val >> 8) & 255; + TmpVal.Int16Val &= BitMask; + Ptr->Untyped[1] = TmpVal.Int16Val & 255; + Ptr->Untyped[0] = (TmpVal.Int16Val >> 8) & 255; } else if (BitWidth <= 32) { - Ptr->Untyped[3] = Val.Int32Val & 255; - Ptr->Untyped[2] = (Val.Int32Val >> 8) & 255; - Ptr->Untyped[1] = (Val.Int32Val >> 16) & 255; - Ptr->Untyped[0] = (Val.Int32Val >> 24) & 255; + TmpVal.Int32Val &= BitMask; + Ptr->Untyped[3] = TmpVal.Int32Val & 255; + Ptr->Untyped[2] = (TmpVal.Int32Val >> 8) & 255; + Ptr->Untyped[1] = (TmpVal.Int32Val >> 16) & 255; + Ptr->Untyped[0] = (TmpVal.Int32Val >> 24) & 255; } else if (BitWidth <= 64) { - Ptr->Untyped[7] = (unsigned char)(Val.Int64Val ); - Ptr->Untyped[6] = (unsigned char)(Val.Int64Val >> 8); - Ptr->Untyped[5] = (unsigned char)(Val.Int64Val >> 16); - Ptr->Untyped[4] = (unsigned char)(Val.Int64Val >> 24); - Ptr->Untyped[3] = (unsigned char)(Val.Int64Val >> 32); - Ptr->Untyped[2] = (unsigned char)(Val.Int64Val >> 40); - Ptr->Untyped[1] = (unsigned char)(Val.Int64Val >> 48); - Ptr->Untyped[0] = (unsigned char)(Val.Int64Val >> 56); + TmpVal.Int64Val &= BitMask; + Ptr->Untyped[7] = (unsigned char)(TmpVal.Int64Val ); + Ptr->Untyped[6] = (unsigned char)(TmpVal.Int64Val >> 8); + Ptr->Untyped[5] = (unsigned char)(TmpVal.Int64Val >> 16); + Ptr->Untyped[4] = (unsigned char)(TmpVal.Int64Val >> 24); + Ptr->Untyped[3] = (unsigned char)(TmpVal.Int64Val >> 32); + Ptr->Untyped[2] = (unsigned char)(TmpVal.Int64Val >> 40); + Ptr->Untyped[1] = (unsigned char)(TmpVal.Int64Val >> 48); + Ptr->Untyped[0] = (unsigned char)(TmpVal.Int64Val >> 56); } else assert(0 && "Integer types > 64 bits not supported"); break; |