mirror of
https://github.com/RPCS3/llvm.git
synced 2025-05-17 02:46:00 +00:00

This patch addresses some additional cases where the compiler crashes upon encountering vector GEPs. This should fix PR36116. Differential Revision: https://reviews.llvm.org/D44219 Reference: https://bugs.llvm.org/show_bug.cgi?id=36116 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@327638 91177308-0d34-0410-b5e6-96231b3b80d8
67 lines
2.8 KiB
LLVM
67 lines
2.8 KiB
LLVM
; RUN: opt -instcombine -S -o - %s | FileCheck %s
|
|
; Tests that we don't crash upon encountering a vector GEP
|
|
|
|
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
|
|
target triple = "x86_64-unknown-linux-gnu"
|
|
|
|
%Dual = type { %Dual.72, %Partials.73 }
|
|
%Dual.72 = type { double, %Partials }
|
|
%Partials = type { [2 x double] }
|
|
%Partials.73 = type { [2 x %Dual.72] }
|
|
|
|
; Function Attrs: sspreq
|
|
define <8 x i64*> @"julia_axpy!_65480"(%Dual* %arg1, <8 x i64> %arg2) {
|
|
top:
|
|
; CHECK: %VectorGep14 = getelementptr inbounds %Dual, %Dual* %arg1, <8 x i64> %arg2, i32 1, i32 0, i64 0, i32 1, i32 0, i64 0
|
|
%VectorGep14 = getelementptr inbounds %Dual, %Dual* %arg1, <8 x i64> %arg2, i32 1, i32 0, i64 0, i32 1, i32 0, i64 0
|
|
%0 = bitcast <8 x double*> %VectorGep14 to <8 x i64*>
|
|
ret <8 x i64*> %0
|
|
}
|
|
|
|
%struct.A = type { i32, %struct.B* }
|
|
%struct.B = type { i64, %struct.C* }
|
|
%struct.C = type { i64 }
|
|
|
|
@G = internal global [65 x %struct.A] zeroinitializer, align 16
|
|
; CHECK-LABEL: @test
|
|
; CHECK: ret <16 x i32*> getelementptr ([65 x %struct.A], [65 x %struct.A]* @G, <16 x i64> zeroinitializer, <16 x i64> <i64 1, i64 2, i64 3, i64 4, i64 5, i64 6, i64 7, i64 8, i64 9, i64 10, i64 11, i64 12, i64 13, i64 14, i64 15, i64 16>, <16 x i32> zeroinitializer)
|
|
define <16 x i32*> @test() {
|
|
vector.body:
|
|
%VectorGep = getelementptr [65 x %struct.A], [65 x %struct.A]* @G, <16 x i64> zeroinitializer, <16 x i64> <i64 1, i64 2, i64 3, i64 4, i64 5, i64 6, i64 7, i64 8, i64 9, i64 10, i64 11, i64 12, i64 13, i64 14, i64 15, i64 16>, <16 x i32> zeroinitializer
|
|
ret <16 x i32*> %VectorGep
|
|
}
|
|
|
|
; CHECK-LABEL: @test2
|
|
; CHECK: ret <16 x i32*> getelementptr ([65 x %struct.A], [65 x %struct.A]* @G, <16 x i64> zeroinitializer, <16 x i64> <i64 1, i64 2, i64 3, i64 4, i64 5, i64 6, i64 7, i64 8, i64 9,
|
|
define <16 x i32*> @test2() {
|
|
vector.body:
|
|
%VectorGep = getelementptr [65 x %struct.A], [65 x %struct.A]* @G, <16 x i32> zeroinitializer, <16 x i64> <i64 1, i64 2, i64 3, i64 4, i64 5, i64 6, i64 7, i64 8, i64 9, i64 10, i64 11, i64 12, i64 13, i64 14, i64 15, i64 16>, <16 x i32> zeroinitializer
|
|
ret <16 x i32*> %VectorGep
|
|
}
|
|
|
|
@g = external global i8, align 1
|
|
|
|
define <2 x i8*> @constant_zero_index() {
|
|
; CHECK-LABEL: @constant_zero_index(
|
|
; CHECK-NEXT: ret <2 x i8*> <i8* @g, i8* @g>
|
|
;
|
|
%gep = getelementptr i8, i8* @g, <2 x i64> zeroinitializer
|
|
ret <2 x i8*> %gep
|
|
}
|
|
|
|
define <2 x i8*> @constant_undef_index() {
|
|
; CHECK-LABEL: @constant_undef_index(
|
|
; CHECK-NEXT: ret <2 x i8*> <i8* @g, i8* @g>
|
|
;
|
|
%gep = getelementptr i8, i8* @g, <2 x i64> undef
|
|
ret <2 x i8*> %gep
|
|
}
|
|
|
|
define <2 x i8*> @constant_inbounds() {
|
|
; CHECK-LABEL: @constant_inbounds(
|
|
; CHECK-NEXT: ret <2 x i8*> getelementptr inbounds (i8, i8* @g, <2 x i64> <i64 1, i64 1>)
|
|
;
|
|
%gep = getelementptr i8, i8* @g, <2 x i64> <i64 1, i64 1>
|
|
ret <2 x i8*> %gep
|
|
}
|