1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

Fix PR10104 by adding a bounds check on a vector element access check. It was

assuming that all offsets are legal vector accesses, and thus trying to access
the float member of { <2 x float>, float } as the 3rd element of the first
member.

llvm-svn: 132766
This commit is contained in:
Cameron Zwarich 2011-06-09 01:45:33 +00:00
parent 65f7ea8a35
commit 72cd0d1b5b
2 changed files with 9 additions and 4 deletions

View File

@ -342,7 +342,10 @@ void ConvertToScalarInfo::MergeInType(const Type *In, uint64_t Offset,
// If we're accessing something that could be an element of a vector, see
// if the implied vector agrees with what we already have and if Offset is
// compatible with it.
if (Offset % EltSize == 0 && AllocaSize % EltSize == 0) {
if (Offset % EltSize == 0 && AllocaSize % EltSize == 0 &&
Offset * 8 <
(VectorTy ? VectorTy->getPrimitiveSizeInBits()
: (AllocaSize / EltSize) * In->getPrimitiveSizeInBits())) {
if (!VectorTy) {
VectorTy = VectorType::get(In, AllocaSize/EltSize);
return;

View File

@ -41,9 +41,11 @@ entry:
; CHECK: test2
; CHECK-NOT: alloca
; CHECK: insertelement <2 x float> zeroinitializer
; CHECK: extractelement <2 x float> %tmp2
; CHECK: extractelement <2 x float> %tmp2
; CHECK: and i128
; CHECK: or i128
; CHECK: trunc i128
; CHECK-NOT: insertelement
; CHECK-NOT: extractelement
define float @test2() uwtable ssp {
entry: