mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +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
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
|
|
|