mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
3ea2df7c7b
Similar to gep (r230786) and load (r230794) changes. Similar migration script can be used to update test cases, which successfully migrated all of LLVM and Polly, but about 4 test cases needed manually changes in Clang. (this script will read the contents of stdin and massage it into stdout - wrap it in the 'apply.sh' script shown in previous commits + xargs to apply it over a large set of test cases) import fileinput import sys import re rep = re.compile(r"(getelementptr(?:\s+inbounds)?\s*\()((<\d*\s+x\s+)?([^@]*?)(|\s*addrspace\(\d+\))\s*\*(?(3)>)\s*)(?=$|%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|zeroinitializer|<|\[\[[a-zA-Z]|\{\{)", re.MULTILINE | re.DOTALL) def conv(match): line = match.group(1) line += match.group(4) line += ", " line += match.group(2) return line line = sys.stdin.read() off = 0 for match in re.finditer(rep, line): sys.stdout.write(line[off:match.start()]) sys.stdout.write(conv(match)) off = match.end() sys.stdout.write(line[off:]) llvm-svn: 232184
49 lines
1.8 KiB
LLVM
49 lines
1.8 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]]]]], [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]], [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]], [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]]], [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
|
|
}
|