mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-05 14:52:02 +00:00

Switch to MC for instruction printing. This encompasses several changes which are all interconnected: - Use the MC framework for printing almost all instructions. - AsmStrings are now live. - This introduces an indirection between LLVM vregs and WebAssembly registers, and a new pass, WebAssemblyRegNumbering, for computing a basic the mapping. This addresses some basic issues with argument registers and unused registers. - The way ARGUMENT instructions are handled no longer generates redundant get_local+set_local for every argument. This also changes the assembly syntax somewhat; most notably, MC's printing does not use sigils on label names, so those are no longer present, and push/pop now have a sigil to keep them unambiguous. The usage of set_local/get_local/$push/$pop will continue to evolve significantly. This patch is just one step of a larger change. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@252910 91177308-0d34-0410-b5e6-96231b3b80d8
149 lines
4.1 KiB
LLVM
149 lines
4.1 KiB
LLVM
; RUN: llc < %s -asm-verbose=false | FileCheck %s
|
|
|
|
; Test that basic 32-bit floating-point operations assemble as expected.
|
|
|
|
target datalayout = "e-p:32:32-i64:64-n32:64-S128"
|
|
target triple = "wasm32-unknown-unknown"
|
|
|
|
declare float @llvm.fabs.f32(float)
|
|
declare float @llvm.copysign.f32(float, float)
|
|
declare float @llvm.sqrt.f32(float)
|
|
declare float @llvm.ceil.f32(float)
|
|
declare float @llvm.floor.f32(float)
|
|
declare float @llvm.trunc.f32(float)
|
|
declare float @llvm.nearbyint.f32(float)
|
|
declare float @llvm.rint.f32(float)
|
|
|
|
; CHECK-LABEL: fadd32:
|
|
; CHECK-NEXT: .param f32{{$}}
|
|
; CHECK-NEXT: .param f32{{$}}
|
|
; CHECK-NEXT: .result f32{{$}}
|
|
; CHECK-NEXT: .local f32, f32, f32{{$}}
|
|
; CHECK-NEXT: f32.add $push, (get_local 0), (get_local 1){{$}}
|
|
; CHECK-NEXT: set_local 2, $pop{{$}}
|
|
; CHECK-NEXT: return (get_local 2){{$}}
|
|
define float @fadd32(float %x, float %y) {
|
|
%a = fadd float %x, %y
|
|
ret float %a
|
|
}
|
|
|
|
; CHECK-LABEL: fsub32:
|
|
; CHECK: f32.sub $push, (get_local 0), (get_local 1){{$}}
|
|
; CHECK-NEXT: set_local 2, $pop{{$}}
|
|
define float @fsub32(float %x, float %y) {
|
|
%a = fsub float %x, %y
|
|
ret float %a
|
|
}
|
|
|
|
; CHECK-LABEL: fmul32:
|
|
; CHECK: f32.mul $push, (get_local 0), (get_local 1){{$}}
|
|
; CHECK-NEXT: set_local 2, $pop{{$}}
|
|
define float @fmul32(float %x, float %y) {
|
|
%a = fmul float %x, %y
|
|
ret float %a
|
|
}
|
|
|
|
; CHECK-LABEL: fdiv32:
|
|
; CHECK: f32.div $push, (get_local 0), (get_local 1){{$}}
|
|
; CHECK-NEXT: set_local 2, $pop{{$}}
|
|
define float @fdiv32(float %x, float %y) {
|
|
%a = fdiv float %x, %y
|
|
ret float %a
|
|
}
|
|
|
|
; CHECK-LABEL: fabs32:
|
|
; CHECK: f32.abs $push, (get_local 0){{$}}
|
|
; CHECK-NEXT: set_local 1, $pop{{$}}
|
|
define float @fabs32(float %x) {
|
|
%a = call float @llvm.fabs.f32(float %x)
|
|
ret float %a
|
|
}
|
|
|
|
; CHECK-LABEL: fneg32:
|
|
; CHECK: f32.neg $push, (get_local 0){{$}}
|
|
; CHECK-NEXT: set_local 1, $pop{{$}}
|
|
define float @fneg32(float %x) {
|
|
%a = fsub float -0., %x
|
|
ret float %a
|
|
}
|
|
|
|
; CHECK-LABEL: copysign32:
|
|
; CHECK: f32.copysign $push, (get_local 0), (get_local 1){{$}}
|
|
; CHECK-NEXT: set_local 2, $pop{{$}}
|
|
define float @copysign32(float %x, float %y) {
|
|
%a = call float @llvm.copysign.f32(float %x, float %y)
|
|
ret float %a
|
|
}
|
|
|
|
; CHECK-LABEL: sqrt32:
|
|
; CHECK: f32.sqrt $push, (get_local 0){{$}}
|
|
; CHECK-NEXT: set_local 1, $pop{{$}}
|
|
define float @sqrt32(float %x) {
|
|
%a = call float @llvm.sqrt.f32(float %x)
|
|
ret float %a
|
|
}
|
|
|
|
; CHECK-LABEL: ceil32:
|
|
; CHECK: f32.ceil $push, (get_local 0){{$}}
|
|
; CHECK-NEXT: set_local 1, $pop{{$}}
|
|
define float @ceil32(float %x) {
|
|
%a = call float @llvm.ceil.f32(float %x)
|
|
ret float %a
|
|
}
|
|
|
|
; CHECK-LABEL: floor32:
|
|
; CHECK: f32.floor $push, (get_local 0){{$}}
|
|
; CHECK-NEXT: set_local 1, $pop{{$}}
|
|
define float @floor32(float %x) {
|
|
%a = call float @llvm.floor.f32(float %x)
|
|
ret float %a
|
|
}
|
|
|
|
; CHECK-LABEL: trunc32:
|
|
; CHECK: f32.trunc $push, (get_local 0){{$}}
|
|
; CHECK-NEXT: set_local 1, $pop{{$}}
|
|
define float @trunc32(float %x) {
|
|
%a = call float @llvm.trunc.f32(float %x)
|
|
ret float %a
|
|
}
|
|
|
|
; CHECK-LABEL: nearest32:
|
|
; CHECK: f32.nearest $push, (get_local 0){{$}}
|
|
; CHECK-NEXT: set_local 1, $pop{{$}}
|
|
define float @nearest32(float %x) {
|
|
%a = call float @llvm.nearbyint.f32(float %x)
|
|
ret float %a
|
|
}
|
|
|
|
; CHECK-LABEL: nearest32_via_rint:
|
|
; CHECK: f32.nearest $push, (get_local 0){{$}}
|
|
; CHECK-NEXT: set_local 1, $pop{{$}}
|
|
define float @nearest32_via_rint(float %x) {
|
|
%a = call float @llvm.rint.f32(float %x)
|
|
ret float %a
|
|
}
|
|
|
|
; Min and max tests. LLVM currently only forms fminnan and fmaxnan nodes in
|
|
; cases where there's a single fcmp with a select and it can prove that one
|
|
; of the arms is never NaN, so we only test that case. In the future if LLVM
|
|
; learns to form fminnan/fmaxnan in more cases, we can write more general
|
|
; tests.
|
|
|
|
; CHECK-LABEL: fmin32:
|
|
; CHECK: f32.min $push, (get_local 0), (get_local 1){{$}}
|
|
; CHECK-NEXT: set_local 2, $pop{{$}}
|
|
define float @fmin32(float %x) {
|
|
%a = fcmp ult float %x, 0.0
|
|
%b = select i1 %a, float %x, float 0.0
|
|
ret float %b
|
|
}
|
|
|
|
; CHECK-LABEL: fmax32:
|
|
; CHECK: f32.max $push, (get_local 0), (get_local 1){{$}}
|
|
; CHECK-NEXT: set_local 2, $pop{{$}}
|
|
define float @fmax32(float %x) {
|
|
%a = fcmp ugt float %x, 0.0
|
|
%b = select i1 %a, float %x, float 0.0
|
|
ret float %b
|
|
}
|