JF Bastien | 5ca0bac | 2015-07-10 18:23:10 +0000 | [diff] [blame] | 1 | //===-- WebAssemblyInstrConv.td-WebAssembly Conversion support -*- tablegen -*-= |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | /// |
| 10 | /// \file |
| 11 | /// \brief WebAssembly datatype conversions, truncations, reinterpretations, |
| 12 | /// promotions, and demotions operand code-gen constructs. |
| 13 | /// |
| 14 | //===----------------------------------------------------------------------===// |
| 15 | |
Dan Gohman | fb3e059 | 2015-11-25 19:36:19 +0000 | [diff] [blame] | 16 | let Defs = [ARGUMENTS] in { |
| 17 | |
Dan Gohman | bc58a7b | 2015-11-13 00:50:04 +0000 | [diff] [blame] | 18 | def I32_WRAP_I64 : I<(outs I32:$dst), (ins I64:$src), |
| 19 | [(set I32:$dst, (trunc I64:$src))], |
Dan Gohman | 1031d4a | 2015-11-15 15:34:19 +0000 | [diff] [blame] | 20 | "i32.wrap/i64\t$dst, $src">; |
Dan Gohman | dc51b96 | 2015-10-03 02:10:28 +0000 | [diff] [blame] | 21 | |
Dan Gohman | bc58a7b | 2015-11-13 00:50:04 +0000 | [diff] [blame] | 22 | def I64_EXTEND_S_I32 : I<(outs I64:$dst), (ins I32:$src), |
| 23 | [(set I64:$dst, (sext I32:$src))], |
Dan Gohman | 1031d4a | 2015-11-15 15:34:19 +0000 | [diff] [blame] | 24 | "i64.extend_s/i32\t$dst, $src">; |
Dan Gohman | bc58a7b | 2015-11-13 00:50:04 +0000 | [diff] [blame] | 25 | def I64_EXTEND_U_I32 : I<(outs I64:$dst), (ins I32:$src), |
| 26 | [(set I64:$dst, (zext I32:$src))], |
Dan Gohman | 1031d4a | 2015-11-15 15:34:19 +0000 | [diff] [blame] | 27 | "i64.extend_u/i32\t$dst, $src">; |
Dan Gohman | dc51b96 | 2015-10-03 02:10:28 +0000 | [diff] [blame] | 28 | |
Dan Gohman | df00a9e | 2015-12-10 00:17:35 +0000 | [diff] [blame] | 29 | } // defs = [ARGUMENTS] |
| 30 | |
| 31 | // Expand a "don't care" extend into zero-extend (chosen over sign-extend |
| 32 | // somewhat arbitrarily, although it favors popular hardware architectures |
| 33 | // and is conceptually a simpler operation). |
| 34 | def : Pat<(i64 (anyext I32:$src)), (I64_EXTEND_U_I32 I32:$src)>; |
| 35 | |
| 36 | let Defs = [ARGUMENTS] in { |
| 37 | |
Dan Gohman | 174b2d8 | 2015-11-29 22:59:19 +0000 | [diff] [blame] | 38 | // Conversion from floating point to integer traps on overflow and invalid. |
| 39 | let hasSideEffects = 1 in { |
Dan Gohman | bc58a7b | 2015-11-13 00:50:04 +0000 | [diff] [blame] | 40 | def I32_TRUNC_S_F32 : I<(outs I32:$dst), (ins F32:$src), |
| 41 | [(set I32:$dst, (fp_to_sint F32:$src))], |
Dan Gohman | 1031d4a | 2015-11-15 15:34:19 +0000 | [diff] [blame] | 42 | "i32.trunc_s/f32\t$dst, $src">; |
Dan Gohman | bc58a7b | 2015-11-13 00:50:04 +0000 | [diff] [blame] | 43 | def I32_TRUNC_U_F32 : I<(outs I32:$dst), (ins F32:$src), |
| 44 | [(set I32:$dst, (fp_to_uint F32:$src))], |
Dan Gohman | 1031d4a | 2015-11-15 15:34:19 +0000 | [diff] [blame] | 45 | "i32.trunc_u/f32\t$dst, $src">; |
Dan Gohman | bc58a7b | 2015-11-13 00:50:04 +0000 | [diff] [blame] | 46 | def I64_TRUNC_S_F32 : I<(outs I64:$dst), (ins F32:$src), |
| 47 | [(set I64:$dst, (fp_to_sint F32:$src))], |
Dan Gohman | 1031d4a | 2015-11-15 15:34:19 +0000 | [diff] [blame] | 48 | "i64.trunc_s/f32\t$dst, $src">; |
Dan Gohman | bc58a7b | 2015-11-13 00:50:04 +0000 | [diff] [blame] | 49 | def I64_TRUNC_U_F32 : I<(outs I64:$dst), (ins F32:$src), |
| 50 | [(set I64:$dst, (fp_to_uint F32:$src))], |
Dan Gohman | 1031d4a | 2015-11-15 15:34:19 +0000 | [diff] [blame] | 51 | "i64.trunc_u/f32\t$dst, $src">; |
Dan Gohman | bc58a7b | 2015-11-13 00:50:04 +0000 | [diff] [blame] | 52 | def I32_TRUNC_S_F64 : I<(outs I32:$dst), (ins F64:$src), |
| 53 | [(set I32:$dst, (fp_to_sint F64:$src))], |
Dan Gohman | 1031d4a | 2015-11-15 15:34:19 +0000 | [diff] [blame] | 54 | "i32.trunc_s/f64\t$dst, $src">; |
Dan Gohman | bc58a7b | 2015-11-13 00:50:04 +0000 | [diff] [blame] | 55 | def I32_TRUNC_U_F64 : I<(outs I32:$dst), (ins F64:$src), |
| 56 | [(set I32:$dst, (fp_to_uint F64:$src))], |
Dan Gohman | 1031d4a | 2015-11-15 15:34:19 +0000 | [diff] [blame] | 57 | "i32.trunc_u/f64\t$dst, $src">; |
Dan Gohman | bc58a7b | 2015-11-13 00:50:04 +0000 | [diff] [blame] | 58 | def I64_TRUNC_S_F64 : I<(outs I64:$dst), (ins F64:$src), |
| 59 | [(set I64:$dst, (fp_to_sint F64:$src))], |
Dan Gohman | 1031d4a | 2015-11-15 15:34:19 +0000 | [diff] [blame] | 60 | "i64.trunc_s/f64\t$dst, $src">; |
Dan Gohman | bc58a7b | 2015-11-13 00:50:04 +0000 | [diff] [blame] | 61 | def I64_TRUNC_U_F64 : I<(outs I64:$dst), (ins F64:$src), |
| 62 | [(set I64:$dst, (fp_to_uint F64:$src))], |
Dan Gohman | 1031d4a | 2015-11-15 15:34:19 +0000 | [diff] [blame] | 63 | "i64.trunc_u/f64\t$dst, $src">; |
Dan Gohman | 174b2d8 | 2015-11-29 22:59:19 +0000 | [diff] [blame] | 64 | } // hasSideEffects = 1 |
Dan Gohman | dc51b96 | 2015-10-03 02:10:28 +0000 | [diff] [blame] | 65 | |
Dan Gohman | bc58a7b | 2015-11-13 00:50:04 +0000 | [diff] [blame] | 66 | def F32_CONVERT_S_I32 : I<(outs F32:$dst), (ins I32:$src), |
| 67 | [(set F32:$dst, (sint_to_fp I32:$src))], |
Dan Gohman | 1031d4a | 2015-11-15 15:34:19 +0000 | [diff] [blame] | 68 | "f32.convert_s/i32\t$dst, $src">; |
Dan Gohman | bc58a7b | 2015-11-13 00:50:04 +0000 | [diff] [blame] | 69 | def F32_CONVERT_U_I32 : I<(outs F32:$dst), (ins I32:$src), |
| 70 | [(set F32:$dst, (uint_to_fp I32:$src))], |
Dan Gohman | 1031d4a | 2015-11-15 15:34:19 +0000 | [diff] [blame] | 71 | "f32.convert_u/i32\t$dst, $src">; |
Dan Gohman | bc58a7b | 2015-11-13 00:50:04 +0000 | [diff] [blame] | 72 | def F64_CONVERT_S_I32 : I<(outs F64:$dst), (ins I32:$src), |
| 73 | [(set F64:$dst, (sint_to_fp I32:$src))], |
Dan Gohman | 1031d4a | 2015-11-15 15:34:19 +0000 | [diff] [blame] | 74 | "f64.convert_s/i32\t$dst, $src">; |
Dan Gohman | bc58a7b | 2015-11-13 00:50:04 +0000 | [diff] [blame] | 75 | def F64_CONVERT_U_I32 : I<(outs F64:$dst), (ins I32:$src), |
| 76 | [(set F64:$dst, (uint_to_fp I32:$src))], |
Dan Gohman | 1031d4a | 2015-11-15 15:34:19 +0000 | [diff] [blame] | 77 | "f64.convert_u/i32\t$dst, $src">; |
Dan Gohman | bc58a7b | 2015-11-13 00:50:04 +0000 | [diff] [blame] | 78 | def F32_CONVERT_S_I64 : I<(outs F32:$dst), (ins I64:$src), |
| 79 | [(set F32:$dst, (sint_to_fp I64:$src))], |
Dan Gohman | 1031d4a | 2015-11-15 15:34:19 +0000 | [diff] [blame] | 80 | "f32.convert_s/i64\t$dst, $src">; |
Dan Gohman | bc58a7b | 2015-11-13 00:50:04 +0000 | [diff] [blame] | 81 | def F32_CONVERT_U_I64 : I<(outs F32:$dst), (ins I64:$src), |
| 82 | [(set F32:$dst, (uint_to_fp I64:$src))], |
Dan Gohman | 1031d4a | 2015-11-15 15:34:19 +0000 | [diff] [blame] | 83 | "f32.convert_u/i64\t$dst, $src">; |
Dan Gohman | bc58a7b | 2015-11-13 00:50:04 +0000 | [diff] [blame] | 84 | def F64_CONVERT_S_I64 : I<(outs F64:$dst), (ins I64:$src), |
| 85 | [(set F64:$dst, (sint_to_fp I64:$src))], |
Dan Gohman | 1031d4a | 2015-11-15 15:34:19 +0000 | [diff] [blame] | 86 | "f64.convert_s/i64\t$dst, $src">; |
Dan Gohman | bc58a7b | 2015-11-13 00:50:04 +0000 | [diff] [blame] | 87 | def F64_CONVERT_U_I64 : I<(outs F64:$dst), (ins I64:$src), |
| 88 | [(set F64:$dst, (uint_to_fp I64:$src))], |
Dan Gohman | 1031d4a | 2015-11-15 15:34:19 +0000 | [diff] [blame] | 89 | "f64.convert_u/i64\t$dst, $src">; |
Dan Gohman | dc51b96 | 2015-10-03 02:10:28 +0000 | [diff] [blame] | 90 | |
Dan Gohman | bc58a7b | 2015-11-13 00:50:04 +0000 | [diff] [blame] | 91 | def F64_PROMOTE_F32 : I<(outs F64:$dst), (ins F32:$src), |
Michael Kuperstein | 2bc3d4d | 2016-08-18 20:08:15 +0000 | [diff] [blame] | 92 | [(set F64:$dst, (fpextend F32:$src))], |
Dan Gohman | 1031d4a | 2015-11-15 15:34:19 +0000 | [diff] [blame] | 93 | "f64.promote/f32\t$dst, $src">; |
Dan Gohman | bc58a7b | 2015-11-13 00:50:04 +0000 | [diff] [blame] | 94 | def F32_DEMOTE_F64 : I<(outs F32:$dst), (ins F64:$src), |
Michael Kuperstein | 2bc3d4d | 2016-08-18 20:08:15 +0000 | [diff] [blame] | 95 | [(set F32:$dst, (fpround F64:$src))], |
Dan Gohman | 1031d4a | 2015-11-15 15:34:19 +0000 | [diff] [blame] | 96 | "f32.demote/f64\t$dst, $src">; |
Dan Gohman | dc51b96 | 2015-10-03 02:10:28 +0000 | [diff] [blame] | 97 | |
Dan Gohman | bc58a7b | 2015-11-13 00:50:04 +0000 | [diff] [blame] | 98 | def I32_REINTERPRET_F32 : I<(outs I32:$dst), (ins F32:$src), |
| 99 | [(set I32:$dst, (bitconvert F32:$src))], |
Dan Gohman | 1031d4a | 2015-11-15 15:34:19 +0000 | [diff] [blame] | 100 | "i32.reinterpret/f32\t$dst, $src">; |
Dan Gohman | bc58a7b | 2015-11-13 00:50:04 +0000 | [diff] [blame] | 101 | def F32_REINTERPRET_I32 : I<(outs F32:$dst), (ins I32:$src), |
| 102 | [(set F32:$dst, (bitconvert I32:$src))], |
Dan Gohman | 1031d4a | 2015-11-15 15:34:19 +0000 | [diff] [blame] | 103 | "f32.reinterpret/i32\t$dst, $src">; |
Dan Gohman | bc58a7b | 2015-11-13 00:50:04 +0000 | [diff] [blame] | 104 | def I64_REINTERPRET_F64 : I<(outs I64:$dst), (ins F64:$src), |
| 105 | [(set I64:$dst, (bitconvert F64:$src))], |
Dan Gohman | 1031d4a | 2015-11-15 15:34:19 +0000 | [diff] [blame] | 106 | "i64.reinterpret/f64\t$dst, $src">; |
Dan Gohman | bc58a7b | 2015-11-13 00:50:04 +0000 | [diff] [blame] | 107 | def F64_REINTERPRET_I64 : I<(outs F64:$dst), (ins I64:$src), |
| 108 | [(set F64:$dst, (bitconvert I64:$src))], |
Dan Gohman | 1031d4a | 2015-11-15 15:34:19 +0000 | [diff] [blame] | 109 | "f64.reinterpret/i64\t$dst, $src">; |
Dan Gohman | fb3e059 | 2015-11-25 19:36:19 +0000 | [diff] [blame] | 110 | |
| 111 | } // Defs = [ARGUMENTS] |