[WebAssembly] Un-mangle the conversion instruction names.
authorDan Gohman <dan433584@gmail.com>
Fri, 13 Nov 2015 00:50:04 +0000 (00:50 +0000)
committerDan Gohman <dan433584@gmail.com>
Fri, 13 Nov 2015 00:50:04 +0000 (00:50 +0000)
This arranges the types in the LLVM instruction names in the same order that
they appear in the WebAssembly opcode names, and eliminates
double-underscores.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@252988 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/WebAssembly/WebAssemblyInstrConv.td

index 6783707e8e9e4c0f447850e8a660fef0535129d6..52d5647e0ad303e53bafb7b4b02b2510b69d58af 100644 (file)
 ///
 //===----------------------------------------------------------------------===//
 
-def i64__WRAP_i32 : I<(outs I32:$dst), (ins I64:$src),
-                     [(set I32:$dst, (trunc I64:$src))],
-                     "i32.wrap/i64 $dst, $src">;
+def I32_WRAP_I64 : I<(outs I32:$dst), (ins I64:$src),
+                      [(set I32:$dst, (trunc I64:$src))],
+                      "i32.wrap/i64 $dst, $src">;
 
-def I32__EXTEND_S_I64 : I<(outs I64:$dst), (ins I32:$src),
-                           [(set I64:$dst, (sext I32:$src))],
-                           "i64.extend_s/i32 $dst, $src">;
-def I32__EXTEND_U_I64 : I<(outs I64:$dst), (ins I32:$src),
-                          [(set I64:$dst, (zext I32:$src))],
-                          "i64.extend_u/i32 $dst, $src">;
+def I64_EXTEND_S_I32 : I<(outs I64:$dst), (ins I32:$src),
+                          [(set I64:$dst, (sext I32:$src))],
+                          "i64.extend_s/i32 $dst, $src">;
+def I64_EXTEND_U_I32 : I<(outs I64:$dst), (ins I32:$src),
+                         [(set I64:$dst, (zext I32:$src))],
+                         "i64.extend_u/i32 $dst, $src">;
 
-def F32__TRUNC_S_I32 : I<(outs I32:$dst), (ins F32:$src),
-                         [(set I32:$dst, (fp_to_sint F32:$src))],
-                         "i32.trunc_s/f32 $dst, $src">;
-def F32__TRUNC_U_I32 : I<(outs I32:$dst), (ins F32:$src),
-                         [(set I32:$dst, (fp_to_uint F32:$src))],
-                         "i32.trunc_u/f32 $dst, $src">;
-def F32__TRUNC_S_I64 : I<(outs I64:$dst), (ins F32:$src),
-                         [(set I64:$dst, (fp_to_sint F32:$src))],
-                         "i64.trunc_s/f32 $dst, $src">;
-def F32__TRUNC_U_I64 : I<(outs I64:$dst), (ins F32:$src),
-                         [(set I64:$dst, (fp_to_uint F32:$src))],
-                         "i64.trunc_u/f32 $dst, $src">;
-def F64__TRUNC_S_I32 : I<(outs I32:$dst), (ins F64:$src),
-                         [(set I32:$dst, (fp_to_sint F64:$src))],
-                         "i32.trunc_s/f64 $dst, $src">;
-def F64__TRUNC_U_I32 : I<(outs I32:$dst), (ins F64:$src),
-                         [(set I32:$dst, (fp_to_uint F64:$src))],
-                         "i32.trunc_u/f64 $dst, $src">;
-def F64__TRUNC_S_I64 : I<(outs I64:$dst), (ins F64:$src),
-                         [(set I64:$dst, (fp_to_sint F64:$src))],
-                         "i64.trunc_s/f64 $dst, $src">;
-def F64__TRUNC_U_I64 : I<(outs I64:$dst), (ins F64:$src),
-                         [(set I64:$dst, (fp_to_uint F64:$src))],
-                         "i64.trunc_u/f64 $dst, $src">;
+def I32_TRUNC_S_F32 : I<(outs I32:$dst), (ins F32:$src),
+                        [(set I32:$dst, (fp_to_sint F32:$src))],
+                        "i32.trunc_s/f32 $dst, $src">;
+def I32_TRUNC_U_F32 : I<(outs I32:$dst), (ins F32:$src),
+                        [(set I32:$dst, (fp_to_uint F32:$src))],
+                        "i32.trunc_u/f32 $dst, $src">;
+def I64_TRUNC_S_F32 : I<(outs I64:$dst), (ins F32:$src),
+                        [(set I64:$dst, (fp_to_sint F32:$src))],
+                        "i64.trunc_s/f32 $dst, $src">;
+def I64_TRUNC_U_F32 : I<(outs I64:$dst), (ins F32:$src),
+                        [(set I64:$dst, (fp_to_uint F32:$src))],
+                        "i64.trunc_u/f32 $dst, $src">;
+def I32_TRUNC_S_F64 : I<(outs I32:$dst), (ins F64:$src),
+                        [(set I32:$dst, (fp_to_sint F64:$src))],
+                        "i32.trunc_s/f64 $dst, $src">;
+def I32_TRUNC_U_F64 : I<(outs I32:$dst), (ins F64:$src),
+                        [(set I32:$dst, (fp_to_uint F64:$src))],
+                        "i32.trunc_u/f64 $dst, $src">;
+def I64_TRUNC_S_F64 : I<(outs I64:$dst), (ins F64:$src),
+                        [(set I64:$dst, (fp_to_sint F64:$src))],
+                        "i64.trunc_s/f64 $dst, $src">;
+def I64_TRUNC_U_F64 : I<(outs I64:$dst), (ins F64:$src),
+                        [(set I64:$dst, (fp_to_uint F64:$src))],
+                        "i64.trunc_u/f64 $dst, $src">;
 
-def I32__CONVERT_S_F32 : I<(outs F32:$dst), (ins I32:$src),
-                           [(set F32:$dst, (sint_to_fp I32:$src))],
-                           "f32.convert_s/i32 $dst, $src">;
-def I32__CONVERT_U_F32 : I<(outs F32:$dst), (ins I32:$src),
-                           [(set F32:$dst, (uint_to_fp I32:$src))],
-                           "f32.convert_u/i32 $dst, $src">;
-def I32__CONVERT_S_F64 : I<(outs F64:$dst), (ins I32:$src),
-                           [(set F64:$dst, (sint_to_fp I32:$src))],
-                           "f64.convert_s/i32 $dst, $src">;
-def I32__CONVERT_U_F64 : I<(outs F64:$dst), (ins I32:$src),
-                           [(set F64:$dst, (uint_to_fp I32:$src))],
-                           "f64.convert_u/i32 $dst, $src">;
-def I64__CONVERT_S_F32 : I<(outs F32:$dst), (ins I64:$src),
-                           [(set F32:$dst, (sint_to_fp I64:$src))],
-                           "f32.convert_s/i64 $dst, $src">;
-def I64__CONVERT_U_F32 : I<(outs F32:$dst), (ins I64:$src),
-                           [(set F32:$dst, (uint_to_fp I64:$src))],
-                           "f32.convert_u/i64 $dst, $src">;
-def I64__CONVERT_S_F64 : I<(outs F64:$dst), (ins I64:$src),
-                           [(set F64:$dst, (sint_to_fp I64:$src))],
-                           "f64.convert_s/i64 $dst, $src">;
-def I64__CONVERT_U_F64 : I<(outs F64:$dst), (ins I64:$src),
-                           [(set F64:$dst, (uint_to_fp I64:$src))],
-                           "f64.convert_u/i64 $dst, $src">;
+def F32_CONVERT_S_I32 : I<(outs F32:$dst), (ins I32:$src),
+                          [(set F32:$dst, (sint_to_fp I32:$src))],
+                          "f32.convert_s/i32 $dst, $src">;
+def F32_CONVERT_U_I32 : I<(outs F32:$dst), (ins I32:$src),
+                          [(set F32:$dst, (uint_to_fp I32:$src))],
+                          "f32.convert_u/i32 $dst, $src">;
+def F64_CONVERT_S_I32 : I<(outs F64:$dst), (ins I32:$src),
+                          [(set F64:$dst, (sint_to_fp I32:$src))],
+                          "f64.convert_s/i32 $dst, $src">;
+def F64_CONVERT_U_I32 : I<(outs F64:$dst), (ins I32:$src),
+                          [(set F64:$dst, (uint_to_fp I32:$src))],
+                          "f64.convert_u/i32 $dst, $src">;
+def F32_CONVERT_S_I64 : I<(outs F32:$dst), (ins I64:$src),
+                          [(set F32:$dst, (sint_to_fp I64:$src))],
+                          "f32.convert_s/i64 $dst, $src">;
+def F32_CONVERT_U_I64 : I<(outs F32:$dst), (ins I64:$src),
+                          [(set F32:$dst, (uint_to_fp I64:$src))],
+                          "f32.convert_u/i64 $dst, $src">;
+def F64_CONVERT_S_I64 : I<(outs F64:$dst), (ins I64:$src),
+                          [(set F64:$dst, (sint_to_fp I64:$src))],
+                          "f64.convert_s/i64 $dst, $src">;
+def F64_CONVERT_U_I64 : I<(outs F64:$dst), (ins I64:$src),
+                          [(set F64:$dst, (uint_to_fp I64:$src))],
+                          "f64.convert_u/i64 $dst, $src">;
 
-def F32__PROMOTE_F64 : I<(outs F64:$dst), (ins F32:$src),
-                         [(set F64:$dst, (fextend F32:$src))],
-                         "f64.promote/f32 $dst, $src">;
-def F64__DEMOTE_F32 : I<(outs F32:$dst), (ins F64:$src),
-                        [(set F32:$dst, (fround F64:$src))],
-                        "f32.demote/f64 $dst, $src">;
+def F64_PROMOTE_F32 : I<(outs F64:$dst), (ins F32:$src),
+                        [(set F64:$dst, (fextend F32:$src))],
+                        "f64.promote/f32 $dst, $src">;
+def F32_DEMOTE_F64 : I<(outs F32:$dst), (ins F64:$src),
+                       [(set F32:$dst, (fround F64:$src))],
+                       "f32.demote/f64 $dst, $src">;
 
-def F32__REINTERPRET_I32 : I<(outs I32:$dst), (ins F32:$src),
-                             [(set I32:$dst, (bitconvert F32:$src))],
-                             "i32.reinterpret/f32 $dst, $src">;
-def I32__REINTERPRET_F32 : I<(outs F32:$dst), (ins I32:$src),
-                             [(set F32:$dst, (bitconvert I32:$src))],
-                             "f32.reinterpret/i32 $dst, $src">;
-def F64__REINTERPRET_I64 : I<(outs I64:$dst), (ins F64:$src),
-                             [(set I64:$dst, (bitconvert F64:$src))],
-                             "i64.reinterpret/f64 $dst, $src">;
-def I64__REINTERPRET_F64 : I<(outs F64:$dst), (ins I64:$src),
-                             [(set F64:$dst, (bitconvert I64:$src))],
-                             "f64.reinterpret/i64 $dst, $src">;
+def I32_REINTERPRET_F32 : I<(outs I32:$dst), (ins F32:$src),
+                            [(set I32:$dst, (bitconvert F32:$src))],
+                            "i32.reinterpret/f32 $dst, $src">;
+def F32_REINTERPRET_I32 : I<(outs F32:$dst), (ins I32:$src),
+                            [(set F32:$dst, (bitconvert I32:$src))],
+                            "f32.reinterpret/i32 $dst, $src">;
+def I64_REINTERPRET_F64 : I<(outs I64:$dst), (ins F64:$src),
+                            [(set I64:$dst, (bitconvert F64:$src))],
+                            "i64.reinterpret/f64 $dst, $src">;
+def F64_REINTERPRET_I64 : I<(outs F64:$dst), (ins I64:$src),
+                            [(set F64:$dst, (bitconvert I64:$src))],
+                            "f64.reinterpret/i64 $dst, $src">;