mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
81bb5f99ad
The data layout strings do not have any effect on llc tests and will become misleadingly out of date as we continue to update the canonical data layout, so remove them from the tests. Differential Revision: https://reviews.llvm.org/D105842
167 lines
5.0 KiB
LLVM
167 lines
5.0 KiB
LLVM
; RUN: llc < %s -asm-verbose=false -disable-wasm-fallthrough-return-opt -wasm-keep-registers | FileCheck %s
|
|
|
|
; Test that basic 64-bit floating-point operations assemble as expected.
|
|
|
|
target triple = "wasm32-unknown-unknown"
|
|
|
|
declare double @llvm.fabs.f64(double)
|
|
declare double @llvm.copysign.f64(double, double)
|
|
declare double @llvm.sqrt.f64(double)
|
|
declare double @llvm.ceil.f64(double)
|
|
declare double @llvm.floor.f64(double)
|
|
declare double @llvm.trunc.f64(double)
|
|
declare double @llvm.nearbyint.f64(double)
|
|
declare double @llvm.rint.f64(double)
|
|
declare double @llvm.fma.f64(double, double, double)
|
|
|
|
; CHECK-LABEL: fadd64:
|
|
; CHECK-NEXT: .functype fadd64 (f64, f64) -> (f64){{$}}
|
|
; CHECK-NEXT: local.get $push[[L0:[0-9]+]]=, 0{{$}}
|
|
; CHECK-NEXT: local.get $push[[L1:[0-9]+]]=, 1{{$}}
|
|
; CHECK-NEXT: f64.add $push[[LR:[0-9]+]]=, $pop[[L0]], $pop[[L1]]{{$}}
|
|
; CHECK-NEXT: return $pop[[LR]]{{$}}
|
|
define double @fadd64(double %x, double %y) {
|
|
%a = fadd double %x, %y
|
|
ret double %a
|
|
}
|
|
|
|
; CHECK-LABEL: fsub64:
|
|
; CHECK: f64.sub $push[[LR:[0-9]+]]=, $pop{{[0-9]+}}, $pop{{[0-9]+}}{{$}}
|
|
; CHECK-NEXT: return $pop[[LR]]{{$}}
|
|
define double @fsub64(double %x, double %y) {
|
|
%a = fsub double %x, %y
|
|
ret double %a
|
|
}
|
|
|
|
; CHECK-LABEL: fmul64:
|
|
; CHECK: f64.mul $push[[LR:[0-9]+]]=, $pop{{[0-9]+}}, $pop{{[0-9]+}}{{$}}
|
|
; CHECK-NEXT: return $pop[[LR]]{{$}}
|
|
define double @fmul64(double %x, double %y) {
|
|
%a = fmul double %x, %y
|
|
ret double %a
|
|
}
|
|
|
|
; CHECK-LABEL: fdiv64:
|
|
; CHECK: f64.div $push[[LR:[0-9]+]]=, $pop{{[0-9]+}}, $pop{{[0-9]+}}{{$}}
|
|
; CHECK-NEXT: return $pop[[LR]]{{$}}
|
|
define double @fdiv64(double %x, double %y) {
|
|
%a = fdiv double %x, %y
|
|
ret double %a
|
|
}
|
|
|
|
; CHECK-LABEL: fabs64:
|
|
; CHECK: f64.abs $push[[LR:[0-9]+]]=, $pop{{[0-9]+}}{{$}}
|
|
; CHECK-NEXT: return $pop[[LR]]{{$}}
|
|
define double @fabs64(double %x) {
|
|
%a = call double @llvm.fabs.f64(double %x)
|
|
ret double %a
|
|
}
|
|
|
|
; CHECK-LABEL: fneg64:
|
|
; CHECK: f64.neg $push[[LR:[0-9]+]]=, $pop{{[0-9]+}}{{$}}
|
|
; CHECK-NEXT: return $pop[[LR]]{{$}}
|
|
define double @fneg64(double %x) {
|
|
%a = fsub double -0., %x
|
|
ret double %a
|
|
}
|
|
|
|
; CHECK-LABEL: copysign64:
|
|
; CHECK: f64.copysign $push[[LR:[0-9]+]]=, $pop{{[0-9]+}}, $pop{{[0-9]+}}{{$}}
|
|
; CHECK-NEXT: return $pop[[LR]]{{$}}
|
|
define double @copysign64(double %x, double %y) {
|
|
%a = call double @llvm.copysign.f64(double %x, double %y)
|
|
ret double %a
|
|
}
|
|
|
|
; CHECK-LABEL: sqrt64:
|
|
; CHECK: f64.sqrt $push[[LR:[0-9]+]]=, $pop{{[0-9]+}}{{$}}
|
|
; CHECK-NEXT: return $pop[[LR]]{{$}}
|
|
define double @sqrt64(double %x) {
|
|
%a = call double @llvm.sqrt.f64(double %x)
|
|
ret double %a
|
|
}
|
|
|
|
; CHECK-LABEL: ceil64:
|
|
; CHECK: f64.ceil $push[[LR:[0-9]+]]=, $pop{{[0-9]+}}{{$}}
|
|
; CHECK-NEXT: return $pop[[LR]]{{$}}
|
|
define double @ceil64(double %x) {
|
|
%a = call double @llvm.ceil.f64(double %x)
|
|
ret double %a
|
|
}
|
|
|
|
; CHECK-LABEL: floor64:
|
|
; CHECK: f64.floor $push[[LR:[0-9]+]]=, $pop{{[0-9]+}}{{$}}
|
|
; CHECK-NEXT: return $pop[[LR]]{{$}}
|
|
define double @floor64(double %x) {
|
|
%a = call double @llvm.floor.f64(double %x)
|
|
ret double %a
|
|
}
|
|
|
|
; CHECK-LABEL: trunc64:
|
|
; CHECK: f64.trunc $push[[LR:[0-9]+]]=, $pop{{[0-9]+}}{{$}}
|
|
; CHECK-NEXT: return $pop[[LR]]{{$}}
|
|
define double @trunc64(double %x) {
|
|
%a = call double @llvm.trunc.f64(double %x)
|
|
ret double %a
|
|
}
|
|
|
|
; CHECK-LABEL: nearest64:
|
|
; CHECK: f64.nearest $push[[LR:[0-9]+]]=, $pop{{[0-9]+}}{{$}}
|
|
; CHECK-NEXT: return $pop[[LR]]{{$}}
|
|
define double @nearest64(double %x) {
|
|
%a = call double @llvm.nearbyint.f64(double %x)
|
|
ret double %a
|
|
}
|
|
|
|
; CHECK-LABEL: nearest64_via_rint:
|
|
; CHECK: f64.nearest $push[[LR:[0-9]+]]=, $pop{{[0-9]+}}{{$}}
|
|
; CHECK-NEXT: return $pop[[LR]]{{$}}
|
|
define double @nearest64_via_rint(double %x) {
|
|
%a = call double @llvm.rint.f64(double %x)
|
|
ret double %a
|
|
}
|
|
|
|
; CHECK-LABEL: fmin64:
|
|
; CHECK: f64.min $push1=, $pop{{[0-9]+}}, $pop[[LR]]{{$}}
|
|
; CHECK-NEXT: return $pop1{{$}}
|
|
define double @fmin64(double %x) {
|
|
%a = fcmp ult double %x, 0.0
|
|
%b = select i1 %a, double %x, double 0.0
|
|
ret double %b
|
|
}
|
|
|
|
; CHECK-LABEL: fmax64:
|
|
; CHECK: f64.max $push1=, $pop{{[0-9]+}}, $pop[[LR]]{{$}}
|
|
; CHECK-NEXT: return $pop1{{$}}
|
|
define double @fmax64(double %x) {
|
|
%a = fcmp ugt double %x, 0.0
|
|
%b = select i1 %a, double %x, double 0.0
|
|
ret double %b
|
|
}
|
|
|
|
; CHECK-LABEL: fmin64_intrinsic:
|
|
; CHECK: f64.min $push0=, $pop{{[0-9]+}}, $pop{{[0-9]+}}{{$}}
|
|
; CHECK-NEXT: return $pop0{{$}}
|
|
declare double @llvm.minimum.f64(double, double)
|
|
define double @fmin64_intrinsic(double %x, double %y) {
|
|
%a = call double @llvm.minimum.f64(double %x, double %y)
|
|
ret double %a
|
|
}
|
|
|
|
; CHECK-LABEL: fmax64_intrinsic:
|
|
; CHECK: f64.max $push0=, $pop{{[0-9]+}}, $pop{{[0-9]+}}{{$}}
|
|
; CHECK-NEXT: return $pop0{{$}}
|
|
declare double @llvm.maximum.f64(double, double)
|
|
define double @fmax64_intrinsic(double %x, double %y) {
|
|
%a = call double @llvm.maximum.f64(double %x, double %y)
|
|
ret double %a
|
|
}
|
|
|
|
; CHECK-LABEL: fma64:
|
|
; CHECK: {{^}} call $push[[LR:[0-9]+]]=, fma, $pop{{[0-9]+}}, $pop{{[0-9]+}}, $pop{{[0-9]+}}{{$}}
|
|
; CHECK-NEXT: return $pop[[LR]]{{$}}
|
|
define double @fma64(double %a, double %b, double %c) {
|
|
%d = call double @llvm.fma.f64(double %a, double %b, double %c)
|
|
ret double %d
|
|
}
|