JF Bastien | 5ca0bac | 2015-07-10 18:23:10 +0000 | [diff] [blame] | 1 | // WebAssemblyInstrFloat.td-WebAssembly Float codegen support ---*- tablegen -*- |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
JF Bastien | 5ca0bac | 2015-07-10 18:23:10 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | /// |
| 9 | /// \file |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 10 | /// WebAssembly Floating-point operand code-gen constructs. |
JF Bastien | 5ca0bac | 2015-07-10 18:23:10 +0000 | [diff] [blame] | 11 | /// |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Thomas Lively | 914f0f2 | 2018-08-23 00:36:43 +0000 | [diff] [blame] | 14 | multiclass UnaryFP<SDNode node, string name, bits<32> f32Inst, |
| 15 | bits<32> f64Inst> { |
| 16 | defm _F32 : I<(outs F32:$dst), (ins F32:$src), (outs), (ins), |
| 17 | [(set F32:$dst, (node F32:$src))], |
| 18 | !strconcat("f32.", !strconcat(name, "\t$dst, $src")), |
| 19 | !strconcat("f32.", name), f32Inst>; |
| 20 | defm _F64 : I<(outs F64:$dst), (ins F64:$src), (outs), (ins), |
| 21 | [(set F64:$dst, (node F64:$src))], |
| 22 | !strconcat("f64.", !strconcat(name, "\t$dst, $src")), |
| 23 | !strconcat("f64.", name), f64Inst>; |
| 24 | } |
| 25 | multiclass BinaryFP<SDNode node, string name, bits<32> f32Inst, |
| 26 | bits<32> f64Inst> { |
| 27 | defm _F32 : I<(outs F32:$dst), (ins F32:$lhs, F32:$rhs), (outs), (ins), |
| 28 | [(set F32:$dst, (node F32:$lhs, F32:$rhs))], |
| 29 | !strconcat("f32.", !strconcat(name, "\t$dst, $lhs, $rhs")), |
| 30 | !strconcat("f32.", name), f32Inst>; |
| 31 | defm _F64 : I<(outs F64:$dst), (ins F64:$lhs, F64:$rhs), (outs), (ins), |
| 32 | [(set F64:$dst, (node F64:$lhs, F64:$rhs))], |
| 33 | !strconcat("f64.", !strconcat(name, "\t$dst, $lhs, $rhs")), |
| 34 | !strconcat("f64.", name), f64Inst>; |
| 35 | } |
| 36 | multiclass ComparisonFP<CondCode cond, string name, bits<32> f32Inst, bits<32> f64Inst> { |
| 37 | defm _F32 : I<(outs I32:$dst), (ins F32:$lhs, F32:$rhs), (outs), (ins), |
| 38 | [(set I32:$dst, (setcc F32:$lhs, F32:$rhs, cond))], |
| 39 | !strconcat("f32.", !strconcat(name, "\t$dst, $lhs, $rhs")), |
| 40 | !strconcat("f32.", name), f32Inst>; |
| 41 | defm _F64 : I<(outs I32:$dst), (ins F64:$lhs, F64:$rhs), (outs), (ins), |
| 42 | [(set I32:$dst, (setcc F64:$lhs, F64:$rhs, cond))], |
| 43 | !strconcat("f64.", !strconcat(name, "\t$dst, $lhs, $rhs")), |
| 44 | !strconcat("f64.", name), f64Inst>; |
| 45 | } |
| 46 | |
Dan Gohman | 174b2d8 | 2015-11-29 22:59:19 +0000 | [diff] [blame] | 47 | let isCommutable = 1 in |
Dan Gohman | c968297 | 2016-10-24 20:21:49 +0000 | [diff] [blame] | 48 | defm ADD : BinaryFP<fadd, "add ", 0x92, 0xa0>; |
| 49 | defm SUB : BinaryFP<fsub, "sub ", 0x93, 0xa1>; |
Dan Gohman | 174b2d8 | 2015-11-29 22:59:19 +0000 | [diff] [blame] | 50 | let isCommutable = 1 in |
Dan Gohman | c968297 | 2016-10-24 20:21:49 +0000 | [diff] [blame] | 51 | defm MUL : BinaryFP<fmul, "mul ", 0x94, 0xa2>; |
| 52 | defm DIV : BinaryFP<fdiv, "div ", 0x95, 0xa3>; |
| 53 | defm SQRT : UnaryFP<fsqrt, "sqrt", 0x91, 0x9f>; |
Dan Gohman | 896e53f | 2015-08-24 18:23:13 +0000 | [diff] [blame] | 54 | |
Dan Gohman | c968297 | 2016-10-24 20:21:49 +0000 | [diff] [blame] | 55 | defm ABS : UnaryFP<fabs, "abs ", 0x8b, 0x99>; |
| 56 | defm NEG : UnaryFP<fneg, "neg ", 0x8c, 0x9a>; |
| 57 | defm COPYSIGN : BinaryFP<fcopysign, "copysign", 0x98, 0xa6>; |
JF Bastien | ef172fc | 2015-08-11 02:45:15 +0000 | [diff] [blame] | 58 | |
Dan Gohman | 174b2d8 | 2015-11-29 22:59:19 +0000 | [diff] [blame] | 59 | let isCommutable = 1 in { |
Thomas Lively | 30f1d69 | 2018-10-24 22:49:55 +0000 | [diff] [blame] | 60 | defm MIN : BinaryFP<fminimum, "min ", 0x96, 0xa4>; |
| 61 | defm MAX : BinaryFP<fmaximum, "max ", 0x97, 0xa5>; |
Dan Gohman | 174b2d8 | 2015-11-29 22:59:19 +0000 | [diff] [blame] | 62 | } // isCommutable = 1 |
Dan Gohman | b84ae9b | 2015-11-10 21:40:21 +0000 | [diff] [blame] | 63 | |
Dan Gohman | c968297 | 2016-10-24 20:21:49 +0000 | [diff] [blame] | 64 | defm CEIL : UnaryFP<fceil, "ceil", 0x8d, 0x9b>; |
| 65 | defm FLOOR : UnaryFP<ffloor, "floor", 0x8e, 0x9c>; |
| 66 | defm TRUNC : UnaryFP<ftrunc, "trunc", 0x8f, 0x9d>; |
| 67 | defm NEAREST : UnaryFP<fnearbyint, "nearest", 0x90, 0x9e>; |
Dan Gohman | 896e53f | 2015-08-24 18:23:13 +0000 | [diff] [blame] | 68 | |
Dan Gohman | f170ba0 | 2015-12-10 04:55:31 +0000 | [diff] [blame] | 69 | // DAGCombine oddly folds casts into the rhs of copysign. Unfold them. |
| 70 | def : Pat<(fcopysign F64:$lhs, F32:$rhs), |
| 71 | (COPYSIGN_F64 F64:$lhs, (F64_PROMOTE_F32 F32:$rhs))>; |
| 72 | def : Pat<(fcopysign F32:$lhs, F64:$rhs), |
| 73 | (COPYSIGN_F32 F32:$lhs, (F32_DEMOTE_F64 F64:$rhs))>; |
| 74 | |
Dan Gohman | 896e53f | 2015-08-24 18:23:13 +0000 | [diff] [blame] | 75 | // WebAssembly doesn't expose inexact exceptions, so map frint to fnearbyint. |
Dan Gohman | d0bf981 | 2015-09-26 01:09:44 +0000 | [diff] [blame] | 76 | def : Pat<(frint f32:$src), (NEAREST_F32 f32:$src)>; |
| 77 | def : Pat<(frint f64:$src), (NEAREST_F64 f64:$src)>; |
JF Bastien | d9767a3 | 2015-07-14 21:13:29 +0000 | [diff] [blame] | 78 | |
Dan Gohman | 174b2d8 | 2015-11-29 22:59:19 +0000 | [diff] [blame] | 79 | let isCommutable = 1 in { |
Dan Gohman | c968297 | 2016-10-24 20:21:49 +0000 | [diff] [blame] | 80 | defm EQ : ComparisonFP<SETOEQ, "eq ", 0x5b, 0x61>; |
| 81 | defm NE : ComparisonFP<SETUNE, "ne ", 0x5c, 0x62>; |
Dan Gohman | 174b2d8 | 2015-11-29 22:59:19 +0000 | [diff] [blame] | 82 | } // isCommutable = 1 |
Dan Gohman | c968297 | 2016-10-24 20:21:49 +0000 | [diff] [blame] | 83 | defm LT : ComparisonFP<SETOLT, "lt ", 0x5d, 0x63>; |
Dan Gohman | 3a74cfe | 2017-03-09 23:08:21 +0000 | [diff] [blame] | 84 | defm LE : ComparisonFP<SETOLE, "le ", 0x5f, 0x65>; |
| 85 | defm GT : ComparisonFP<SETOGT, "gt ", 0x5e, 0x64>; |
Dan Gohman | c968297 | 2016-10-24 20:21:49 +0000 | [diff] [blame] | 86 | defm GE : ComparisonFP<SETOGE, "ge ", 0x60, 0x66>; |
JF Bastien | d9767a3 | 2015-07-14 21:13:29 +0000 | [diff] [blame] | 87 | |
JF Bastien | 71d29ac | 2015-08-12 17:53:29 +0000 | [diff] [blame] | 88 | // Don't care floating-point comparisons, supported via other comparisons. |
| 89 | def : Pat<(seteq f32:$lhs, f32:$rhs), (EQ_F32 f32:$lhs, f32:$rhs)>; |
| 90 | def : Pat<(setne f32:$lhs, f32:$rhs), (NE_F32 f32:$lhs, f32:$rhs)>; |
| 91 | def : Pat<(setlt f32:$lhs, f32:$rhs), (LT_F32 f32:$lhs, f32:$rhs)>; |
| 92 | def : Pat<(setle f32:$lhs, f32:$rhs), (LE_F32 f32:$lhs, f32:$rhs)>; |
| 93 | def : Pat<(setgt f32:$lhs, f32:$rhs), (GT_F32 f32:$lhs, f32:$rhs)>; |
| 94 | def : Pat<(setge f32:$lhs, f32:$rhs), (GE_F32 f32:$lhs, f32:$rhs)>; |
| 95 | def : Pat<(seteq f64:$lhs, f64:$rhs), (EQ_F64 f64:$lhs, f64:$rhs)>; |
| 96 | def : Pat<(setne f64:$lhs, f64:$rhs), (NE_F64 f64:$lhs, f64:$rhs)>; |
| 97 | def : Pat<(setlt f64:$lhs, f64:$rhs), (LT_F64 f64:$lhs, f64:$rhs)>; |
| 98 | def : Pat<(setle f64:$lhs, f64:$rhs), (LE_F64 f64:$lhs, f64:$rhs)>; |
| 99 | def : Pat<(setgt f64:$lhs, f64:$rhs), (GT_F64 f64:$lhs, f64:$rhs)>; |
| 100 | def : Pat<(setge f64:$lhs, f64:$rhs), (GE_F64 f64:$lhs, f64:$rhs)>; |
| 101 | |
Wouter van Oortmerssen | 48dac31 | 2018-06-18 21:22:44 +0000 | [diff] [blame] | 102 | defm SELECT_F32 : I<(outs F32:$dst), (ins F32:$lhs, F32:$rhs, I32:$cond), |
| 103 | (outs), (ins), |
| 104 | [(set F32:$dst, (select I32:$cond, F32:$lhs, F32:$rhs))], |
| 105 | "f32.select\t$dst, $lhs, $rhs, $cond", "f32.select", 0x1b>; |
| 106 | defm SELECT_F64 : I<(outs F64:$dst), (ins F64:$lhs, F64:$rhs, I32:$cond), |
| 107 | (outs), (ins), |
| 108 | [(set F64:$dst, (select I32:$cond, F64:$lhs, F64:$rhs))], |
| 109 | "f64.select\t$dst, $lhs, $rhs, $cond", "f64.select", 0x1b>; |
Dan Gohman | fb3e059 | 2015-11-25 19:36:19 +0000 | [diff] [blame] | 110 | |
Dan Gohman | d9b4218 | 2015-11-25 22:13:48 +0000 | [diff] [blame] | 111 | // ISD::SELECT requires its operand to conform to getBooleanContents, but |
| 112 | // WebAssembly's select interprets any non-zero value as true, so we can fold |
| 113 | // a setne with 0 into a select. |
| 114 | def : Pat<(select (i32 (setne I32:$cond, 0)), F32:$lhs, F32:$rhs), |
Dan Gohman | d46b092 | 2016-02-05 17:14:59 +0000 | [diff] [blame] | 115 | (SELECT_F32 F32:$lhs, F32:$rhs, I32:$cond)>; |
Dan Gohman | d9b4218 | 2015-11-25 22:13:48 +0000 | [diff] [blame] | 116 | def : Pat<(select (i32 (setne I32:$cond, 0)), F64:$lhs, F64:$rhs), |
Dan Gohman | d46b092 | 2016-02-05 17:14:59 +0000 | [diff] [blame] | 117 | (SELECT_F64 F64:$lhs, F64:$rhs, I32:$cond)>; |
Dan Gohman | d9b4218 | 2015-11-25 22:13:48 +0000 | [diff] [blame] | 118 | |
| 119 | // And again, this time with seteq instead of setne and the arms reversed. |
| 120 | def : Pat<(select (i32 (seteq I32:$cond, 0)), F32:$lhs, F32:$rhs), |
Dan Gohman | d46b092 | 2016-02-05 17:14:59 +0000 | [diff] [blame] | 121 | (SELECT_F32 F32:$rhs, F32:$lhs, I32:$cond)>; |
Dan Gohman | d9b4218 | 2015-11-25 22:13:48 +0000 | [diff] [blame] | 122 | def : Pat<(select (i32 (seteq I32:$cond, 0)), F64:$lhs, F64:$rhs), |
Dan Gohman | d46b092 | 2016-02-05 17:14:59 +0000 | [diff] [blame] | 123 | (SELECT_F64 F64:$rhs, F64:$lhs, I32:$cond)>; |
Thomas Lively | eb15d00 | 2018-10-29 18:38:12 +0000 | [diff] [blame] | 124 | |
| 125 | // The legalizer inserts an unnecessary `and 1` to make input conform |
| 126 | // to getBooleanContents, which we can lower away. |
| 127 | def : Pat<(select (i32 (and I32:$cond, 1)), F32:$lhs, F32:$rhs), |
| 128 | (SELECT_F32 F32:$lhs, F32:$rhs, I32:$cond)>; |
| 129 | def : Pat<(select (i32 (and I32:$cond, 1)), F64:$lhs, F64:$rhs), |
| 130 | (SELECT_F64 F64:$lhs, F64:$rhs, I32:$cond)>; |