1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 5
; RUN: opt -p 'require<profile-summary>,function(codegenprepare)' -S %s \
; RUN: | FileCheck %s --check-prefix=SLOW
; RUN: opt -p 'require<profile-summary>,function(codegenprepare)' -S --mattr=+zvbb %s \
; RUN: | FileCheck %s --check-prefix=FAST
; REQUIRES: riscv-registered-target
target datalayout = "e-m:e-p:64:64-i64:64-i128:128-n32:64-S128"
target triple = "riscv64"
define <4 x i1> @test_ult_2(<4 x i64> %x) {
; SLOW-LABEL: define <4 x i1> @test_ult_2(
; SLOW-SAME: <4 x i64> [[X:%.*]]) {
; SLOW-NEXT: [[TMP0:%.*]] = add <4 x i64> [[X]], splat (i64 -1)
; SLOW-NEXT: [[TMP1:%.*]] = and <4 x i64> [[X]], [[TMP0]]
; SLOW-NEXT: [[CMP1:%.*]] = icmp eq <4 x i64> [[TMP1]], zeroinitializer
; SLOW-NEXT: ret <4 x i1> [[CMP1]]
;
; FAST-LABEL: define <4 x i1> @test_ult_2(
; FAST-SAME: <4 x i64> [[X:%.*]]) #[[ATTR0:[0-9]+]] {
; FAST-NEXT: [[CTPOP:%.*]] = call <4 x i64> @llvm.ctpop.v4i64(<4 x i64> [[X]])
; FAST-NEXT: [[CMP1:%.*]] = icmp ult <4 x i64> [[CTPOP]], splat (i64 2)
; FAST-NEXT: ret <4 x i1> [[CMP1]]
;
%ctpop = call <4 x i64> @llvm.ctpop(<4 x i64> %x)
%cmp = icmp ult <4 x i64> %ctpop, splat (i64 2)
ret <4 x i1> %cmp
}
define <4 x i1> @test_ugt_1(<4 x i64> %x) {
; SLOW-LABEL: define <4 x i1> @test_ugt_1(
; SLOW-SAME: <4 x i64> [[X:%.*]]) {
; SLOW-NEXT: [[TMP0:%.*]] = add <4 x i64> [[X]], splat (i64 -1)
; SLOW-NEXT: [[TMP1:%.*]] = and <4 x i64> [[X]], [[TMP0]]
; SLOW-NEXT: [[CMP1:%.*]] = icmp ne <4 x i64> [[TMP1]], zeroinitializer
; SLOW-NEXT: ret <4 x i1> [[CMP1]]
;
; FAST-LABEL: define <4 x i1> @test_ugt_1(
; FAST-SAME: <4 x i64> [[X:%.*]]) #[[ATTR0]] {
; FAST-NEXT: [[CTPOP:%.*]] = call <4 x i64> @llvm.ctpop.v4i64(<4 x i64> [[X]])
; FAST-NEXT: [[CMP1:%.*]] = icmp ugt <4 x i64> [[CTPOP]], splat (i64 1)
; FAST-NEXT: ret <4 x i1> [[CMP1]]
;
%ctpop = call <4 x i64> @llvm.ctpop(<4 x i64> %x)
%cmp = icmp ugt <4 x i64> %ctpop, splat (i64 1)
ret <4 x i1> %cmp
}
define <4 x i1> @test_eq_1(<4 x i64> %x) {
; SLOW-LABEL: define <4 x i1> @test_eq_1(
; SLOW-SAME: <4 x i64> [[X:%.*]]) {
; SLOW-NEXT: [[TMP0:%.*]] = add <4 x i64> [[X]], splat (i64 -1)
; SLOW-NEXT: [[TMP1:%.*]] = xor <4 x i64> [[X]], [[TMP0]]
; SLOW-NEXT: [[TMP2:%.*]] = icmp ugt <4 x i64> [[TMP1]], [[TMP0]]
; SLOW-NEXT: ret <4 x i1> [[TMP2]]
;
; FAST-LABEL: define <4 x i1> @test_eq_1(
; FAST-SAME: <4 x i64> [[X:%.*]]) #[[ATTR0]] {
; FAST-NEXT: [[CTPOP:%.*]] = call <4 x i64> @llvm.ctpop.v4i64(<4 x i64> [[X]])
; FAST-NEXT: [[CMP1:%.*]] = icmp eq <4 x i64> [[CTPOP]], splat (i64 1)
; FAST-NEXT: ret <4 x i1> [[CMP1]]
;
%ctpop = call <4 x i64> @llvm.ctpop(<4 x i64> %x)
%cmp = icmp eq <4 x i64> %ctpop, splat (i64 1)
ret <4 x i1> %cmp
}
define <4 x i1> @test_ne_1(<4 x i64> %x) {
; SLOW-LABEL: define <4 x i1> @test_ne_1(
; SLOW-SAME: <4 x i64> [[X:%.*]]) {
; SLOW-NEXT: [[TMP0:%.*]] = add <4 x i64> [[X]], splat (i64 -1)
; SLOW-NEXT: [[TMP1:%.*]] = xor <4 x i64> [[X]], [[TMP0]]
; SLOW-NEXT: [[TMP2:%.*]] = icmp ule <4 x i64> [[TMP1]], [[TMP0]]
; SLOW-NEXT: ret <4 x i1> [[TMP2]]
;
; FAST-LABEL: define <4 x i1> @test_ne_1(
; FAST-SAME: <4 x i64> [[X:%.*]]) #[[ATTR0]] {
; FAST-NEXT: [[CTPOP:%.*]] = call <4 x i64> @llvm.ctpop.v4i64(<4 x i64> [[X]])
; FAST-NEXT: [[CMP1:%.*]] = icmp ne <4 x i64> [[CTPOP]], splat (i64 1)
; FAST-NEXT: ret <4 x i1> [[CMP1]]
;
%ctpop = call <4 x i64> @llvm.ctpop(<4 x i64> %x)
%cmp = icmp ne <4 x i64> %ctpop, splat (i64 1)
ret <4 x i1> %cmp
}
|