Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / X86 / function-subtarget-features.ll
blobe78ce656d88f9675a23b22f619ef14a03990df02
1 ; RUN: llc < %s -mtriple=x86_64-- -o - | FileCheck %s
3 ; This test verifies that we produce different code for different architectures
4 ; based on target-cpu and target-features attributes.
5 ; In this case avx has a vmovss instruction and otherwise we should be using movss
6 ; to materialize constants.
7 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
9 define float @_Z3barv() #0 {
10 entry:
11   ret float 4.000000e+00
14 ; CHECK: barv
15 ; CHECK: vmovss
17 define float @_Z4testv() #1 {
18 entry:
19   ret float 1.000000e+00
22 ; CHECK: testv
23 ; CHECK: movss
25 define float @_Z3foov() #2 {
26 entry:
27   ret float 4.000000e+00
30 ; CHECK: foov
31 ; CHECK: movss
33 define float @_Z3bazv() #0 {
34 entry:
35   ret float 4.000000e+00
38 ; CHECK: bazv
39 ; CHECK: vmovss
41 define <2 x i64> @foo(<2 x i64> %a) #3 {
42 entry:
43   %a.addr = alloca <2 x i64>, align 16
44   store <2 x i64> %a, ptr %a.addr, align 16
45   %0 = load <2 x i64>, ptr %a.addr, align 16
46   %1 = call <2 x i64> @llvm.x86.aesni.aeskeygenassist(<2 x i64> %0, i8 4)
47   ret <2 x i64> %1
50 ; Function Attrs: nounwind readnone
51 declare <2 x i64> @llvm.x86.aesni.aeskeygenassist(<2 x i64>, i8)
53 ; CHECK: foo
54 ; CHECK: aeskeygenassist
56 ; Function Attrs: nounwind uwtable
57 define i32 @bar(i32 %crc, ptr %a) #3 {
58 entry:
59   %crc.addr = alloca i32, align 4
60   %a.addr = alloca ptr, align 8
61   store i32 %crc, ptr %crc.addr, align 4
62   store ptr %a, ptr %a.addr, align 8
63   %0 = load i32, ptr %crc.addr, align 4
64   %1 = load ptr, ptr %a.addr, align 8
65   %incdec.ptr = getelementptr inbounds i8, ptr %1, i32 1
66   store ptr %incdec.ptr, ptr %a.addr, align 8
67   %2 = load i8, ptr %1, align 1
68   %3 = call i32 @llvm.x86.sse42.crc32.32.8(i32 %0, i8 %2)
69   ret i32 %3
72 ; Function Attrs: nounwind readnone
73 declare i32 @llvm.x86.sse42.crc32.32.8(i32, i8)
75 ; CHECK: bar
76 ; CHECK: crc32b
78 attributes #0 = { "target-cpu"="x86-64" "target-features"="+avx2" }
79 attributes #1 = { "target-cpu"="x86-64" }
80 attributes #2 = { "target-cpu"="corei7" "target-features"="+sse4.2" }
81 attributes #3 = { "target-cpu"="x86-64" "target-features"="+avx2,+aes,+crc32" }