2015-07-11 02:23:10 +08:00
|
|
|
// WebAssemblyInstrFloat.td-WebAssembly Float codegen support ---*- tablegen -*-
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
///
|
|
|
|
/// \file
|
|
|
|
/// \brief WebAssembly Floating-point operand code-gen constructs.
|
|
|
|
///
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2015-11-06 04:42:30 +08:00
|
|
|
defm ADD : BinaryFP<fadd, "add">;
|
|
|
|
defm SUB : BinaryFP<fsub, "sub">;
|
|
|
|
defm MUL : BinaryFP<fmul, "mul">;
|
|
|
|
defm DIV : BinaryFP<fdiv, "div">;
|
|
|
|
defm SQRT : UnaryFP<fsqrt, "sqrt">;
|
2015-08-25 02:23:13 +08:00
|
|
|
|
2015-11-06 04:42:30 +08:00
|
|
|
defm ABS : UnaryFP<fabs, "abs">;
|
|
|
|
defm NEG : UnaryFP<fneg, "neg">;
|
|
|
|
defm COPYSIGN : BinaryFP<fcopysign, "copysign">;
|
2015-08-11 10:45:15 +08:00
|
|
|
|
2015-11-11 05:40:21 +08:00
|
|
|
defm MIN : BinaryFP<fminnan, "min">;
|
|
|
|
defm MAX : BinaryFP<fmaxnan, "max">;
|
|
|
|
|
2015-11-06 04:42:30 +08:00
|
|
|
defm CEIL : UnaryFP<fceil, "ceil">;
|
|
|
|
defm FLOOR : UnaryFP<ffloor, "floor">;
|
|
|
|
defm TRUNC : UnaryFP<ftrunc, "trunc">;
|
|
|
|
defm NEAREST : UnaryFP<fnearbyint, "nearest">;
|
2015-08-25 02:23:13 +08:00
|
|
|
|
|
|
|
// WebAssembly doesn't expose inexact exceptions, so map frint to fnearbyint.
|
2015-09-26 09:09:44 +08:00
|
|
|
def : Pat<(frint f32:$src), (NEAREST_F32 f32:$src)>;
|
|
|
|
def : Pat<(frint f64:$src), (NEAREST_F64 f64:$src)>;
|
2015-07-15 05:13:29 +08:00
|
|
|
|
2015-11-06 04:42:30 +08:00
|
|
|
defm EQ : ComparisonFP<SETOEQ, "eq">;
|
|
|
|
defm NE : ComparisonFP<SETUNE, "ne">;
|
|
|
|
defm LT : ComparisonFP<SETOLT, "lt">;
|
|
|
|
defm LE : ComparisonFP<SETOLE, "le">;
|
|
|
|
defm GT : ComparisonFP<SETOGT, "gt">;
|
|
|
|
defm GE : ComparisonFP<SETOGE, "ge">;
|
2015-07-15 05:13:29 +08:00
|
|
|
|
2015-08-13 01:53:29 +08:00
|
|
|
// Don't care floating-point comparisons, supported via other comparisons.
|
|
|
|
def : Pat<(seteq f32:$lhs, f32:$rhs), (EQ_F32 f32:$lhs, f32:$rhs)>;
|
|
|
|
def : Pat<(setne f32:$lhs, f32:$rhs), (NE_F32 f32:$lhs, f32:$rhs)>;
|
|
|
|
def : Pat<(setlt f32:$lhs, f32:$rhs), (LT_F32 f32:$lhs, f32:$rhs)>;
|
|
|
|
def : Pat<(setle f32:$lhs, f32:$rhs), (LE_F32 f32:$lhs, f32:$rhs)>;
|
|
|
|
def : Pat<(setgt f32:$lhs, f32:$rhs), (GT_F32 f32:$lhs, f32:$rhs)>;
|
|
|
|
def : Pat<(setge f32:$lhs, f32:$rhs), (GE_F32 f32:$lhs, f32:$rhs)>;
|
|
|
|
def : Pat<(seteq f64:$lhs, f64:$rhs), (EQ_F64 f64:$lhs, f64:$rhs)>;
|
|
|
|
def : Pat<(setne f64:$lhs, f64:$rhs), (NE_F64 f64:$lhs, f64:$rhs)>;
|
|
|
|
def : Pat<(setlt f64:$lhs, f64:$rhs), (LT_F64 f64:$lhs, f64:$rhs)>;
|
|
|
|
def : Pat<(setle f64:$lhs, f64:$rhs), (LE_F64 f64:$lhs, f64:$rhs)>;
|
|
|
|
def : Pat<(setgt f64:$lhs, f64:$rhs), (GT_F64 f64:$lhs, f64:$rhs)>;
|
|
|
|
def : Pat<(setge f64:$lhs, f64:$rhs), (GE_F64 f64:$lhs, f64:$rhs)>;
|
|
|
|
|
2015-11-04 06:40:40 +08:00
|
|
|
def SELECT_F32 : I<(outs F32:$dst), (ins I32:$cond, F32:$lhs, F32:$rhs),
|
2015-11-06 04:42:30 +08:00
|
|
|
[(set F32:$dst, (select I32:$cond, F32:$lhs, F32:$rhs))],
|
|
|
|
"f32.select $dst, $cond, $lhs, $rhs">;
|
2015-11-04 06:40:40 +08:00
|
|
|
def SELECT_F64 : I<(outs F64:$dst), (ins I32:$cond, F64:$lhs, F64:$rhs),
|
2015-11-06 04:42:30 +08:00
|
|
|
[(set F64:$dst, (select I32:$cond, F64:$lhs, F64:$rhs))],
|
|
|
|
"f64.select $dst, $cond, $lhs, $rhs">;
|