llvm-project/llvm/test/CodeGen/LoongArch/inline-asm-reg-names-f.ll
Weining Lu 394f30919a [Clang][LoongArch] Add inline asm support for constraints f/l/I/K
This patch adds support for constraints `f`, `l`, `I`, `K` according
to [1]. The remain constraints (`k`, `m`, `ZB`, `ZC`) will be added
later as they are a little more complex than the others.
f: A floating-point register (if available).
l: A signed 16-bit constant.
I: A signed 12-bit constant (for arithmetic instructions).
K: An unsigned 12-bit constant (for logic instructions).

For now, no need to support register alias (e.g. `$a0`) in llvm as
clang will correctly decode the usage of register name aliases into
their official names. And AFAIK, the not yet upstreamed `rustc` for
LoongArch will always use official register names (e.g. `$r4`).

[1] https://gcc.gnu.org/onlinedocs/gccint/Machine-Constraints.html

Differential Revision: https://reviews.llvm.org/D134157
2022-09-26 08:49:58 +08:00

90 lines
3.1 KiB
LLVM

; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc --mtriple=loongarch32 --mattr=+f,+d --target-abi=ilp32d --verify-machineinstrs < %s \
; RUN: | FileCheck --check-prefix=LA32 %s
; RUN: llc --mtriple=loongarch64 --mattr=+f,+d --target-abi=lp64d --verify-machineinstrs < %s \
; RUN: | FileCheck --check-prefix=LA64 %s
;; These test that we can use architectural names ($f[0-9]*) refer to registers in
;; inline asm constraint lists. In each case, the named register should be used
;; for the source register of the `fabs.d`. It is very likely that `$fa0` will
;; be chosen as the designation register, but this is left to the compiler to
;; choose.
;;
;; Parenthesised registers in comments are the other aliases for this register.
define double @register_f0(double %a) nounwind {
; LA32-LABEL: register_f0:
; LA32: # %bb.0:
; LA32-NEXT: #APP
; LA32-NEXT: fabs.d $fa0, $fa0
; LA32-NEXT: #NO_APP
; LA32-NEXT: ret
;
; LA64-LABEL: register_f0:
; LA64: # %bb.0:
; LA64-NEXT: #APP
; LA64-NEXT: fabs.d $fa0, $fa0
; LA64-NEXT: #NO_APP
; LA64-NEXT: ret
%1 = tail call double asm "fabs.d $0, $1", "=f,{$f0}"(double %a)
ret double %1
}
;; NOTE: This test uses `$f24` (`$fs0`) as an input, so it should be saved.
define double @register_f24(double %a) nounwind {
; LA32-LABEL: register_f24:
; LA32: # %bb.0:
; LA32-NEXT: addi.w $sp, $sp, -16
; LA32-NEXT: fst.d $fs0, $sp, 8 # 8-byte Folded Spill
; LA32-NEXT: fmov.d $fs0, $fa0
; LA32-NEXT: #APP
; LA32-NEXT: fabs.d $fa0, $fs0
; LA32-NEXT: #NO_APP
; LA32-NEXT: fld.d $fs0, $sp, 8 # 8-byte Folded Reload
; LA32-NEXT: addi.w $sp, $sp, 16
; LA32-NEXT: ret
;
; LA64-LABEL: register_f24:
; LA64: # %bb.0:
; LA64-NEXT: addi.d $sp, $sp, -16
; LA64-NEXT: fst.d $fs0, $sp, 8 # 8-byte Folded Spill
; LA64-NEXT: fmov.d $fs0, $fa0
; LA64-NEXT: #APP
; LA64-NEXT: fabs.d $fa0, $fs0
; LA64-NEXT: #NO_APP
; LA64-NEXT: fld.d $fs0, $sp, 8 # 8-byte Folded Reload
; LA64-NEXT: addi.d $sp, $sp, 16
; LA64-NEXT: ret
%1 = tail call double asm "fabs.d $0, $1", "=f,{$f24}"(double %a)
ret double %1
}
;; NOTE: This test uses `$f31` (`$fs7`) as an input, so it should be saved.
define double @register_f31(double %a) nounwind {
; LA32-LABEL: register_f31:
; LA32: # %bb.0:
; LA32-NEXT: addi.w $sp, $sp, -16
; LA32-NEXT: fst.d $fs7, $sp, 8 # 8-byte Folded Spill
; LA32-NEXT: fmov.d $fs7, $fa0
; LA32-NEXT: #APP
; LA32-NEXT: fabs.d $fa0, $fs7
; LA32-NEXT: #NO_APP
; LA32-NEXT: fld.d $fs7, $sp, 8 # 8-byte Folded Reload
; LA32-NEXT: addi.w $sp, $sp, 16
; LA32-NEXT: ret
;
; LA64-LABEL: register_f31:
; LA64: # %bb.0:
; LA64-NEXT: addi.d $sp, $sp, -16
; LA64-NEXT: fst.d $fs7, $sp, 8 # 8-byte Folded Spill
; LA64-NEXT: fmov.d $fs7, $fa0
; LA64-NEXT: #APP
; LA64-NEXT: fabs.d $fa0, $fs7
; LA64-NEXT: #NO_APP
; LA64-NEXT: fld.d $fs7, $sp, 8 # 8-byte Folded Reload
; LA64-NEXT: addi.d $sp, $sp, 16
; LA64-NEXT: ret
%1 = tail call double asm "fabs.d $0, $1", "=f,{$f31}"(double %a)
ret double %1
}