mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
ab043ff680
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 llvm-svn: 230794
27 lines
625 B
LLVM
27 lines
625 B
LLVM
; RUN: llc < %s -march=ppc64 -mcpu=a2q | FileCheck %s
|
|
target triple = "powerpc64-bgq-linux"
|
|
|
|
define <4 x float> @foo(<4 x float>* %p) {
|
|
entry:
|
|
%v = load <4 x float>, <4 x float>* %p, align 4
|
|
ret <4 x float> %v
|
|
}
|
|
|
|
; CHECK: @foo
|
|
; CHECK-DAG: li [[REG1:[0-9]+]], 15
|
|
; CHECK-DAG: qvlfsx [[REG4:[0-9]+]], 0, 3
|
|
; CHECK-DAG: qvlfsx [[REG2:[0-9]+]], 3, [[REG1]]
|
|
; CHECK-DAG: qvlpclsx [[REG3:[0-9]+]], 0, 3
|
|
; CHECK-DAG: qvfperm 1, [[REG4]], [[REG2]], [[REG3]]
|
|
; CHECK: blr
|
|
|
|
define <4 x float> @bar(<4 x float>* %p) {
|
|
entry:
|
|
%v = load <4 x float>, <4 x float>* %p, align 16
|
|
ret <4 x float> %v
|
|
}
|
|
|
|
; CHECK: @bar
|
|
; CHECK: qvlfsx
|
|
|