Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / RISCV / inline-asm-f-constraint-f.ll
blob91922cd236dffffb3ebafde339a5df25e9f43e79
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; NOTE: Assertions gave been autogenerated by utils/update_llc_test_checks.py
3 ; RUN: llc -mtriple=riscv32 -mattr=+f -target-abi=ilp32 -verify-machineinstrs < %s \
4 ; RUN:   | FileCheck -check-prefix=RV32F %s
5 ; RUN: llc -mtriple=riscv64 -mattr=+f -target-abi=lp64 -verify-machineinstrs < %s \
6 ; RUN:   | FileCheck -check-prefix=RV64F %s
7 ; RUN: llc -mtriple=riscv32 -mattr=+d -target-abi=ilp32 -verify-machineinstrs < %s \
8 ; RUN:   | FileCheck -check-prefix=RV32F %s
9 ; RUN: llc -mtriple=riscv64 -mattr=+d -target-abi=lp64 -verify-machineinstrs < %s \
10 ; RUN:   | FileCheck -check-prefix=RV64F %s
12 @gf = external global float
14 define float @constraint_f_float(float %a) nounwind {
15 ; RV32F-LABEL: constraint_f_float:
16 ; RV32F:       # %bb.0:
17 ; RV32F-NEXT:    lui a1, %hi(gf)
18 ; RV32F-NEXT:    flw fa5, %lo(gf)(a1)
19 ; RV32F-NEXT:    fmv.w.x fa4, a0
20 ; RV32F-NEXT:    #APP
21 ; RV32F-NEXT:    fadd.s fa5, fa4, fa5
22 ; RV32F-NEXT:    #NO_APP
23 ; RV32F-NEXT:    fmv.x.w a0, fa5
24 ; RV32F-NEXT:    ret
26 ; RV64F-LABEL: constraint_f_float:
27 ; RV64F:       # %bb.0:
28 ; RV64F-NEXT:    lui a1, %hi(gf)
29 ; RV64F-NEXT:    flw fa5, %lo(gf)(a1)
30 ; RV64F-NEXT:    fmv.w.x fa4, a0
31 ; RV64F-NEXT:    #APP
32 ; RV64F-NEXT:    fadd.s fa5, fa4, fa5
33 ; RV64F-NEXT:    #NO_APP
34 ; RV64F-NEXT:    fmv.x.w a0, fa5
35 ; RV64F-NEXT:    ret
36   %1 = load float, ptr @gf
37   %2 = tail call float asm "fadd.s $0, $1, $2", "=f,f,f"(float %a, float %1)
38   ret float %2
41 define float @constraint_f_float_abi_name(float %a) nounwind {
42 ; RV32F-LABEL: constraint_f_float_abi_name:
43 ; RV32F:       # %bb.0:
44 ; RV32F-NEXT:    lui a1, %hi(gf)
45 ; RV32F-NEXT:    flw fs0, %lo(gf)(a1)
46 ; RV32F-NEXT:    fmv.w.x fa0, a0
47 ; RV32F-NEXT:    #APP
48 ; RV32F-NEXT:    fadd.s ft0, fa0, fs0
49 ; RV32F-NEXT:    #NO_APP
50 ; RV32F-NEXT:    fmv.x.w a0, ft0
51 ; RV32F-NEXT:    ret
53 ; RV64F-LABEL: constraint_f_float_abi_name:
54 ; RV64F:       # %bb.0:
55 ; RV64F-NEXT:    lui a1, %hi(gf)
56 ; RV64F-NEXT:    flw fs0, %lo(gf)(a1)
57 ; RV64F-NEXT:    fmv.w.x fa0, a0
58 ; RV64F-NEXT:    #APP
59 ; RV64F-NEXT:    fadd.s ft0, fa0, fs0
60 ; RV64F-NEXT:    #NO_APP
61 ; RV64F-NEXT:    fmv.x.w a0, ft0
62 ; RV64F-NEXT:    ret
63   %1 = load float, ptr @gf
64   %2 = tail call float asm "fadd.s $0, $1, $2", "={ft0},{fa0},{fs0}"(float %a, float %1)
65   ret float %2
68 define float @constraint_gpr(float %x) {
69 ; RV32F-LABEL: constraint_gpr:
70 ; RV32F:       # %bb.0:
71 ; RV32F-NEXT:    .cfi_def_cfa_offset 0
72 ; RV32F-NEXT:    #APP
73 ; RV32F-NEXT:    mv a0, a0
74 ; RV32F-NEXT:    #NO_APP
75 ; RV32F-NEXT:    ret
77 ; RV64F-LABEL: constraint_gpr:
78 ; RV64F:       # %bb.0:
79 ; RV64F-NEXT:    .cfi_def_cfa_offset 0
80 ; RV64F-NEXT:    #APP
81 ; RV64F-NEXT:    mv a0, a0
82 ; RV64F-NEXT:    #NO_APP
83 ; RV64F-NEXT:    ret
84   %1 = tail call float asm sideeffect alignstack "mv $0, $1", "={x10},{x10}"(float %x)
85   ret float %1