mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-05 02:16:46 +00:00
7c9c6ed761
Essentially the same as the GEP change in r230786. A similar migration script can be used to update test cases, though a few more test case improvements/changes were required this time around: (r229269-r229278) import fileinput import sys import re pat = re.compile(r"((?:=|:|^)\s*load (?:atomic )?(?:volatile )?(.*?))(| addrspace\(\d+\) *)\*($| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$)") for line in sys.stdin: sys.stdout.write(re.sub(pat, r"\1, \2\3*\4", line)) Reviewers: rafael, dexonsmith, grosser Differential Revision: http://reviews.llvm.org/D7649 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230794 91177308-0d34-0410-b5e6-96231b3b80d8
49 lines
1.7 KiB
LLVM
49 lines
1.7 KiB
LLVM
; RUN: llc < %s -O0 -verify-machineinstrs -fast-isel-abort=1 -mtriple=powerpc64-unknown-linux-gnu -mcpu=pwr7 | FileCheck %s --check-prefix=ELF64
|
|
|
|
%struct.A = type { i32, [2 x [2 x i32]], i8, [3 x [3 x [3 x i32]]] }
|
|
%struct.B = type { i32, [2 x [2 x [2 x %struct.A]]] }
|
|
|
|
@arr = common global [2 x [2 x [2 x [2 x [2 x i32]]]]] zeroinitializer, align 4
|
|
@A = common global [3 x [3 x %struct.A]] zeroinitializer, align 4
|
|
@B = common global [2 x [2 x [2 x %struct.B]]] zeroinitializer, align 4
|
|
|
|
define i32* @t1() nounwind {
|
|
entry:
|
|
; ELF64: t1
|
|
%addr = alloca i32*, align 4
|
|
store i32* getelementptr inbounds ([2 x [2 x [2 x [2 x [2 x i32]]]]]* @arr, i32 0, i32 1, i32 1, i32 1, i32 1, i32 1), i32** %addr, align 4
|
|
; ELF64: addi {{[0-9]+}}, {{[0-9]+}}, 124
|
|
%0 = load i32*, i32** %addr, align 4
|
|
ret i32* %0
|
|
}
|
|
|
|
define i32* @t2() nounwind {
|
|
entry:
|
|
; ELF64: t2
|
|
%addr = alloca i32*, align 4
|
|
store i32* getelementptr inbounds ([3 x [3 x %struct.A]]* @A, i32 0, i32 2, i32 2, i32 3, i32 1, i32 2, i32 2), i32** %addr, align 4
|
|
; ELF64: addi {{[0-9]+}}, {{[0-9]+}}, 1148
|
|
%0 = load i32*, i32** %addr, align 4
|
|
ret i32* %0
|
|
}
|
|
|
|
define i32* @t3() nounwind {
|
|
entry:
|
|
; ELF64: t3
|
|
%addr = alloca i32*, align 4
|
|
store i32* getelementptr inbounds ([3 x [3 x %struct.A]]* @A, i32 0, i32 0, i32 1, i32 1, i32 0, i32 1), i32** %addr, align 4
|
|
; ELF64: addi {{[0-9]+}}, {{[0-9]+}}, 140
|
|
%0 = load i32*, i32** %addr, align 4
|
|
ret i32* %0
|
|
}
|
|
|
|
define i32* @t4() nounwind {
|
|
entry:
|
|
; ELF64: t4
|
|
%addr = alloca i32*, align 4
|
|
store i32* getelementptr inbounds ([2 x [2 x [2 x %struct.B]]]* @B, i32 0, i32 0, i32 0, i32 1, i32 1, i32 0, i32 0, i32 1, i32 3, i32 1, i32 2, i32 1), i32** %addr, align 4
|
|
; ELF64: addi {{[0-9]+}}, {{[0-9]+}}, 1284
|
|
%0 = load i32*, i32** %addr, align 4
|
|
ret i32* %0
|
|
}
|