mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
1c1cc1c5ed
As announced here: http://lists.llvm.org/pipermail/llvm-dev/2019-April/131786.html Grouped option syntax (POSIX Utility Conventions) does not play well with -long-option A subsequent change will reject -long-option.
49 lines
2.1 KiB
LLVM
49 lines
2.1 KiB
LLVM
; This test is designed to run three times, once with function attributes, once
|
|
; with all target attributes added on the command line, and once with compress
|
|
; added with the command line and float added via function attributes, all
|
|
; three of these should result in the same output.
|
|
;
|
|
; RUN: cat %s > %t.tgtattr
|
|
; RUN: echo 'attributes #0 = { nounwind }' >> %t.tgtattr
|
|
; RUN: llc -mtriple=riscv32 -target-abi ilp32d -mattr=+c,+f,+d -filetype=obj \
|
|
; RUN: -disable-block-placement < %t.tgtattr \
|
|
; RUN: | llvm-objdump -d --triple=riscv32 --mattr=+c,+f,+d -M no-aliases - \
|
|
; RUN: | FileCheck -check-prefix=RV32IFDC %s
|
|
;
|
|
; RUN: cat %s > %t.fnattr
|
|
; RUN: echo 'attributes #0 = { nounwind "target-features"="+c,+f,+d" }' >> %t.fnattr
|
|
; RUN: llc -mtriple=riscv32 -target-abi ilp32d -filetype=obj \
|
|
; RUN: -disable-block-placement < %t.fnattr \
|
|
; RUN: | llvm-objdump -d --triple=riscv32 --mattr=+c,+f,+d -M no-aliases - \
|
|
; RUN: | FileCheck -check-prefix=RV32IFDC %s
|
|
;
|
|
; RUN: cat %s > %t.mixedattr
|
|
; RUN: echo 'attributes #0 = { nounwind "target-features"="+f,+d" }' >> %t.mixedattr
|
|
; RUN: llc -mtriple=riscv32 -target-abi ilp32d -mattr=+c -filetype=obj \
|
|
; RUN: -disable-block-placement < %t.mixedattr \
|
|
; RUN: | llvm-objdump -d --triple=riscv32 --mattr=+c,+f,+d -M no-aliases - \
|
|
; RUN: | FileCheck -check-prefix=RV32IFDC %s
|
|
|
|
; This acts as a sanity check for the codegen instruction compression path,
|
|
; verifying that the assembled file contains compressed instructions when
|
|
; expected. Handling of the compressed ISA is implemented so the same
|
|
; transformation patterns should be used whether compressing an input .s file or
|
|
; compressing codegen output. This file contains sanity checks using
|
|
; instructions which also require one of the floating point extensions.
|
|
|
|
define float @float_load(float *%a) #0 {
|
|
; RV32IFDC-LABEL: <float_load>:
|
|
; RV32IFDC: c.flw fa0, 0(a0)
|
|
; RV32IFDC-NEXT: c.jr ra
|
|
%1 = load volatile float, float* %a
|
|
ret float %1
|
|
}
|
|
|
|
define double @double_load(double *%a) #0 {
|
|
; RV32IFDC-LABEL: <double_load>:
|
|
; RV32IFDC: c.fld fa0, 0(a0)
|
|
; RV32IFDC-NEXT: c.jr ra
|
|
%1 = load volatile double, double* %a
|
|
ret double %1
|
|
}
|