mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +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
40 lines
1.2 KiB
LLVM
40 lines
1.2 KiB
LLVM
; RUN: llc -march=x86-64 -mtriple=x86_64-apple-darwin -mcpu=corei7-avx -o - < %s | FileCheck %s
|
|
|
|
;CHECK-LABEL: and_masks:
|
|
;CHECK: vmovaps
|
|
;CHECK: vcmpltp
|
|
;CHECK: vcmpltp
|
|
;CHECK: vandps
|
|
;CHECK: vandps
|
|
;CHECK: vmovaps
|
|
;CHECK: ret
|
|
|
|
define void @and_masks(<8 x float>* %a, <8 x float>* %b, <8 x float>* %c) nounwind uwtable noinline ssp {
|
|
%v0 = load <8 x float>, <8 x float>* %a, align 16
|
|
%v1 = load <8 x float>, <8 x float>* %b, align 16
|
|
%m0 = fcmp olt <8 x float> %v1, %v0
|
|
%v2 = load <8 x float>, <8 x float>* %c, align 16
|
|
%m1 = fcmp olt <8 x float> %v2, %v0
|
|
%mand = and <8 x i1> %m1, %m0
|
|
%r = zext <8 x i1> %mand to <8 x i32>
|
|
store <8 x i32> %r, <8 x i32>* undef, align 32
|
|
ret void
|
|
}
|
|
|
|
;CHECK: neg_mask
|
|
;CHECK: vcmpltps
|
|
;CHECK: vxorps
|
|
;CHECK: vandps
|
|
;CHECK: vmovaps
|
|
;CHECK: ret
|
|
define void @neg_masks(<8 x float>* %a, <8 x float>* %b, <8 x float>* %c) nounwind uwtable noinline ssp {
|
|
%v0 = load <8 x float>, <8 x float>* %a, align 16
|
|
%v1 = load <8 x float>, <8 x float>* %b, align 16
|
|
%m0 = fcmp olt <8 x float> %v1, %v0
|
|
%mand = xor <8 x i1> %m0, <i1 1, i1 1, i1 1, i1 1, i1 1, i1 1, i1 1, i1 1>
|
|
%r = zext <8 x i1> %mand to <8 x i32>
|
|
store <8 x i32> %r, <8 x i32>* undef, align 32
|
|
ret void
|
|
}
|
|
|