mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
1b981ebf72
Summary: RISC-V uses a post-select peephole pass to optimise `(load/store (ADDI $reg, %lo(addr)), 0)` into `(load/store $reg, %lo(addr))`. This peephole wasn't firing for accesses to constant pools, which is how we materialise most floating point constants. This adds support for the constantpool case, which improves code generation for lots of small FP loading examples. I have not added any tests because this structure is well-covered by the `fp-imm.ll` testcases, as well as almost all other uses of floating point constants in the RISC-V backend tests. Reviewed By: luismarques, asb Differential Revision: https://reviews.llvm.org/D79523
45 lines
1.4 KiB
LLVM
45 lines
1.4 KiB
LLVM
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
|
; RUN: llc -mtriple=riscv32 -mattr=+f -verify-machineinstrs < %s \
|
|
; RUN: | FileCheck -check-prefix=RV32IF %s
|
|
; RUN: llc -mtriple=riscv64 -mattr=+f -verify-machineinstrs < %s \
|
|
; RUN: | FileCheck -check-prefix=RV64IF %s
|
|
|
|
; TODO: constant pool shouldn't be necessary for RV64IF.
|
|
define float @float_imm() nounwind {
|
|
; RV32IF-LABEL: float_imm:
|
|
; RV32IF: # %bb.0:
|
|
; RV32IF-NEXT: lui a0, 263313
|
|
; RV32IF-NEXT: addi a0, a0, -37
|
|
; RV32IF-NEXT: ret
|
|
;
|
|
; RV64IF-LABEL: float_imm:
|
|
; RV64IF: # %bb.0:
|
|
; RV64IF-NEXT: lui a0, %hi(.LCPI0_0)
|
|
; RV64IF-NEXT: flw ft0, %lo(.LCPI0_0)(a0)
|
|
; RV64IF-NEXT: fmv.x.w a0, ft0
|
|
; RV64IF-NEXT: ret
|
|
ret float 3.14159274101257324218750
|
|
}
|
|
|
|
define float @float_imm_op(float %a) nounwind {
|
|
; RV32IF-LABEL: float_imm_op:
|
|
; RV32IF: # %bb.0:
|
|
; RV32IF-NEXT: lui a1, %hi(.LCPI1_0)
|
|
; RV32IF-NEXT: flw ft0, %lo(.LCPI1_0)(a1)
|
|
; RV32IF-NEXT: fmv.w.x ft1, a0
|
|
; RV32IF-NEXT: fadd.s ft0, ft1, ft0
|
|
; RV32IF-NEXT: fmv.x.w a0, ft0
|
|
; RV32IF-NEXT: ret
|
|
;
|
|
; RV64IF-LABEL: float_imm_op:
|
|
; RV64IF: # %bb.0:
|
|
; RV64IF-NEXT: lui a1, %hi(.LCPI1_0)
|
|
; RV64IF-NEXT: flw ft0, %lo(.LCPI1_0)(a1)
|
|
; RV64IF-NEXT: fmv.w.x ft1, a0
|
|
; RV64IF-NEXT: fadd.s ft0, ft1, ft0
|
|
; RV64IF-NEXT: fmv.x.w a0, ft0
|
|
; RV64IF-NEXT: ret
|
|
%1 = fadd float %a, 1.0
|
|
ret float %1
|
|
}
|