Files
archived-llvm/lib/Target/WebAssembly/WebAssemblyInstrConv.td
JF Bastien 0c4ea613c4 [WebAssembly] Update opcode name format for conversions
Summary:
Conversion opcode name format should be f64.convert_u/i64 not f64_convert_u

Author: s3ththompson
Reviewers: jfb
Subscribers: sunfish, jfb, llvm-commits, dschuff
Differential Revision: http://reviews.llvm.org/D14160

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@251613 91177308-0d34-0410-b5e6-96231b3b80d8
2015-10-29 04:10:52 +00:00

71 lines
3.6 KiB
TableGen

//===-- WebAssemblyInstrConv.td-WebAssembly Conversion 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 datatype conversions, truncations, reinterpretations,
/// promotions, and demotions operand code-gen constructs.
///
//===----------------------------------------------------------------------===//
def I64__WRAP_I32 : I<(outs I32:$dst), (ins I64:$src),
[(set I32:$dst, (trunc I64:$src))]>;
def I32__EXTEND_S_I64 : I<(outs I64:$dst), (ins I32:$src),
[(set I64:$dst, (sext I32:$src))]>;
def I32__EXTEND_U_I64 : I<(outs I64:$dst), (ins I32:$src),
[(set I64:$dst, (zext I32:$src))]>;
def F32__TRUNC_S_I32 : I<(outs I32:$dst), (ins F32:$src),
[(set I32:$dst, (fp_to_sint F32:$src))]>;
def F32__TRUNC_U_I32 : I<(outs I32:$dst), (ins F32:$src),
[(set I32:$dst, (fp_to_uint F32:$src))]>;
def F32__TRUNC_S_I64 : I<(outs I64:$dst), (ins F32:$src),
[(set I64:$dst, (fp_to_sint F32:$src))]>;
def F32__TRUNC_U_I64 : I<(outs I64:$dst), (ins F32:$src),
[(set I64:$dst, (fp_to_uint F32:$src))]>;
def F64__TRUNC_S_I32 : I<(outs I32:$dst), (ins F64:$src),
[(set I32:$dst, (fp_to_sint F64:$src))]>;
def F64__TRUNC_U_I32 : I<(outs I32:$dst), (ins F64:$src),
[(set I32:$dst, (fp_to_uint F64:$src))]>;
def F64__TRUNC_S_I64 : I<(outs I64:$dst), (ins F64:$src),
[(set I64:$dst, (fp_to_sint F64:$src))]>;
def F64__TRUNC_U_I64 : I<(outs I64:$dst), (ins F64:$src),
[(set I64:$dst, (fp_to_uint F64:$src))]>;
def I32__CONVERT_S_F32 : I<(outs F32:$dst), (ins I32:$src),
[(set F32:$dst, (sint_to_fp I32:$src))]>;
def I32__CONVERT_U_F32 : I<(outs F32:$dst), (ins I32:$src),
[(set F32:$dst, (uint_to_fp I32:$src))]>;
def I32__CONVERT_S_F64 : I<(outs F64:$dst), (ins I32:$src),
[(set F64:$dst, (sint_to_fp I32:$src))]>;
def I32__CONVERT_U_F64 : I<(outs F64:$dst), (ins I32:$src),
[(set F64:$dst, (uint_to_fp I32:$src))]>;
def I64__CONVERT_S_F32 : I<(outs F32:$dst), (ins I64:$src),
[(set F32:$dst, (sint_to_fp I64:$src))]>;
def I64__CONVERT_U_F32 : I<(outs F32:$dst), (ins I64:$src),
[(set F32:$dst, (uint_to_fp I64:$src))]>;
def I64__CONVERT_S_F64 : I<(outs F64:$dst), (ins I64:$src),
[(set F64:$dst, (sint_to_fp I64:$src))]>;
def I64__CONVERT_U_F64 : I<(outs F64:$dst), (ins I64:$src),
[(set F64:$dst, (uint_to_fp I64:$src))]>;
def F32__PROMOTE_F64 : I<(outs F64:$dst), (ins F32:$src),
[(set F64:$dst, (fextend F32:$src))]>;
def F64__DEMOTE_F32 : I<(outs F32:$dst), (ins F64:$src),
[(set F32:$dst, (fround F64:$src))]>;
def F32__REINTERPRET_I32 : I<(outs I32:$dst), (ins F32:$src),
[(set I32:$dst, (bitconvert F32:$src))]>;
def I32__REINTERPRET_F32 : I<(outs F32:$dst), (ins I32:$src),
[(set F32:$dst, (bitconvert I32:$src))]>;
def F64__REINTERPRET_I64 : I<(outs I64:$dst), (ins F64:$src),
[(set I64:$dst, (bitconvert F64:$src))]>;
def I64__REINTERPRET_F64 : I<(outs F64:$dst), (ins I64:$src),
[(set F64:$dst, (bitconvert I64:$src))]>;