File: inline-asm-constraint-f.ll

package info (click to toggle)
llvm-toolchain-19 1%3A19.1.7-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,998,520 kB
  • sloc: cpp: 6,951,680; ansic: 1,486,157; asm: 913,598; python: 232,024; f90: 80,126; objc: 75,281; lisp: 37,276; pascal: 16,990; sh: 10,009; ml: 5,058; perl: 4,724; awk: 3,523; makefile: 3,167; javascript: 2,504; xml: 892; fortran: 664; cs: 573
file content (62 lines) | stat: -rw-r--r-- 2,035 bytes parent folder | download | duplicates (8)
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
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc --mtriple=loongarch32 --mattr=+d --target-abi=ilp32d --verify-machineinstrs < %s \
; RUN:   | FileCheck --check-prefix=LA32 %s
; RUN: llc --mtriple=loongarch64 --mattr=+d --target-abi=lp64d --verify-machineinstrs < %s \
; RUN:   | FileCheck --check-prefix=LA64 %s

@gd = external dso_local global double

define double @constraint_f_double(double %a) nounwind {
; LA32-LABEL: constraint_f_double:
; LA32:       # %bb.0:
; LA32-NEXT:    pcalau12i $a0, %pc_hi20(gd)
; LA32-NEXT:    addi.w $a0, $a0, %pc_lo12(gd)
; LA32-NEXT:    fld.d $fa1, $a0, 0
; LA32-NEXT:    #APP
; LA32-NEXT:    fadd.d $fa0, $fa0, $fa1
; LA32-NEXT:    #NO_APP
; LA32-NEXT:    ret
;
; LA64-LABEL: constraint_f_double:
; LA64:       # %bb.0:
; LA64-NEXT:    pcalau12i $a0, %pc_hi20(gd)
; LA64-NEXT:    addi.d $a0, $a0, %pc_lo12(gd)
; LA64-NEXT:    fld.d $fa1, $a0, 0
; LA64-NEXT:    #APP
; LA64-NEXT:    fadd.d $fa0, $fa0, $fa1
; LA64-NEXT:    #NO_APP
; LA64-NEXT:    ret
  %1 = load double, ptr @gd
  %2 = tail call double asm "fadd.d $0, $1, $2", "=f,f,f"(double %a, double %1)
  ret double %2
}

define double @constraint_gpr(double %a) {
; LA32-LABEL: constraint_gpr:
; LA32:       # %bb.0:
; LA32-NEXT:    addi.w $sp, $sp, -16
; LA32-NEXT:    .cfi_def_cfa_offset 16
; LA32-NEXT:    fst.d $fa0, $sp, 8
; LA32-NEXT:    ld.w $a7, $sp, 8
; LA32-NEXT:    ld.w $t0, $sp, 12
; LA32-NEXT:    #APP
; LA32-NEXT:    move $a6, $a7
; LA32-NEXT:    #NO_APP
; LA32-NEXT:    st.w $a7, $sp, 4
; LA32-NEXT:    st.w $a6, $sp, 0
; LA32-NEXT:    fld.d $fa0, $sp, 0
; LA32-NEXT:    addi.w $sp, $sp, 16
; LA32-NEXT:    ret
;
; LA64-LABEL: constraint_gpr:
; LA64:       # %bb.0:
; LA64-NEXT:    .cfi_def_cfa_offset 0
; LA64-NEXT:    movfr2gr.d $a7, $fa0
; LA64-NEXT:    #APP
; LA64-NEXT:    move $a6, $a7
; LA64-NEXT:    #NO_APP
; LA64-NEXT:    movgr2fr.d $fa0, $a6
; LA64-NEXT:    ret
  %1 = tail call double asm sideeffect alignstack "move $0, $1", "={$r10},{$r11}"(double %a)
  ret double %1
}