// 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. /// //===----------------------------------------------------------------------===// defm FADD : BinaryFP; defm FSUB : BinaryFP; defm FMUL : BinaryFP; defm FDIV : BinaryFP; defm FABS : UnaryFP; defm FNEG : UnaryFP; defm COPYSIGN : BinaryFP; /* * TODO(jfb): add and test these: * defm CEIL : UnaryFP; * defm FLOOR : UnaryFP; * defm TRUNC : UnaryFP; * defm NEARESTINT : UnaryFP; */ defm EQ : ComparisonFP; defm NE : ComparisonFP; defm LT : ComparisonFP; defm LE : ComparisonFP; defm GT : ComparisonFP; defm GE : ComparisonFP; defm SQRT : UnaryFP; /* * TODO(jfb): Add the following for 32-bit and 64-bit. * * float32.min: minimum (binary operator); if either operand is NaN, returns NaN * float32.max: maximum (binary operator); if either operand is NaN, returns NaN */