[WebAssembly] Rename several functions and types according to the new spec.
authorDan Gohman <dan433584@gmail.com>
Sat, 26 Sep 2015 01:09:44 +0000 (01:09 +0000)
committerDan Gohman <dan433584@gmail.com>
Sat, 26 Sep 2015 01:09:44 +0000 (01:09 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@248644 91177308-0d34-0410-b5e6-96231b3b80d8

14 files changed:
lib/Target/WebAssembly/WebAssemblyISelLowering.cpp
lib/Target/WebAssembly/WebAssemblyInstrCall.td
lib/Target/WebAssembly/WebAssemblyInstrControl.td
lib/Target/WebAssembly/WebAssemblyInstrConv.td
lib/Target/WebAssembly/WebAssemblyInstrFloat.td
lib/Target/WebAssembly/WebAssemblyInstrFormats.td
lib/Target/WebAssembly/WebAssemblyInstrInfo.td
lib/Target/WebAssembly/WebAssemblyInstrInteger.td
lib/Target/WebAssembly/WebAssemblyInstrMemory.td
lib/Target/WebAssembly/WebAssemblyRegisterInfo.td
test/CodeGen/WebAssembly/fp32.ll
test/CodeGen/WebAssembly/fp64.ll
test/CodeGen/WebAssembly/load-ext.ll
test/CodeGen/WebAssembly/load-store-i1.ll

index 5d2a79c797ebd9f79c0ac5ba0746fd98c430638b..c9be0b3f2df7a9861c5256e36d212627dcc09354 100644 (file)
@@ -107,10 +107,10 @@ WebAssemblyTargetLowering::WebAssemblyTargetLowering(
   setStackPointerRegisterToSaveRestore(
       Subtarget->hasAddr64() ? WebAssembly::SP64 : WebAssembly::SP32);
   // Set up the register classes.
-  addRegisterClass(MVT::i32, &WebAssembly::Int32RegClass);
-  addRegisterClass(MVT::i64, &WebAssembly::Int64RegClass);
-  addRegisterClass(MVT::f32, &WebAssembly::Float32RegClass);
-  addRegisterClass(MVT::f64, &WebAssembly::Float64RegClass);
+  addRegisterClass(MVT::i32, &WebAssembly::I32RegClass);
+  addRegisterClass(MVT::i64, &WebAssembly::I64RegClass);
+  addRegisterClass(MVT::f32, &WebAssembly::F32RegClass);
+  addRegisterClass(MVT::f64, &WebAssembly::F64RegClass);
   // Compute derived properties from the register classes.
   computeRegisterProperties(Subtarget->getRegisterInfo());
 
index d3430f225eef2b00e51338ff62958e149367bcd2..23f6eff58bea5bcc22eba9e4b3819105fc963be2 100644 (file)
@@ -22,23 +22,23 @@ def : I<(outs), (ins i64imm:$amt1, i64imm:$amt2),
 } // isCodeGenOnly = 1
 
 multiclass CALL<WebAssemblyRegClass vt> {
-  def CALL_#vt : I<(outs vt:$dst), (ins Int32:$callee, variable_ops),
-                   [(set vt:$dst, (WebAssemblycall1 Int32:$callee))]>;
+  def CALL_#vt : I<(outs vt:$dst), (ins I32:$callee, variable_ops),
+                   [(set vt:$dst, (WebAssemblycall1 I32:$callee))]>;
 }
 let Uses = [SP32, SP64], isCall = 1 in {
-  defm : CALL<Int32>;
-  defm : CALL<Int64>;
-  defm : CALL<Float32>;
-  defm : CALL<Float64>;
+  defm : CALL<I32>;
+  defm : CALL<I64>;
+  defm : CALL<F32>;
+  defm : CALL<F64>;
 
-  def CALL_VOID : I<(outs), (ins Int32:$callee, variable_ops),
-                    [(WebAssemblycall0 Int32:$callee)]>;
+  def CALL_VOID : I<(outs), (ins I32:$callee, variable_ops),
+                    [(WebAssemblycall0 I32:$callee)]>;
 } // Uses = [SP32,SP64], isCall = 1
 
 /*
  * TODO(jfb): Add the following.
  *
- * call_direct: call function directly
+ * call: call function directly
  * call_indirect: call function indirectly
  * addressof: obtain a function pointer value for a given function
  */
index a349da6b97162a317105e7968c9a7c96ce3dda03..4fa567c98d72aee864abd55b20f6cbc8329d100b 100644 (file)
@@ -26,8 +26,8 @@
  */
 
 let isBranch = 1, isTerminator = 1, hasCtrlDep = 1 in {
-def BRIF : I<(outs), (ins bb_op:$dst, Int32:$a),
-             [(brcond Int32:$a, bb:$dst)]>;
+def BRIF : I<(outs), (ins bb_op:$dst, I32:$a),
+             [(brcond I32:$a, bb:$dst)]>;
 let isBarrier = 1 in {
 def BR   : I<(outs), (ins bb_op:$dst),
              [(br bb:$dst)]>;
@@ -38,10 +38,10 @@ def BR   : I<(outs), (ins bb_op:$dst),
 // jump tables, so in practice we don't ever use SWITCH_I64 in wasm32 mode
 // currently.
 let isTerminator = 1, hasCtrlDep = 1, isBarrier = 1 in {
-def SWITCH_I32 : I<(outs), (ins Int32:$index, variable_ops),
-                   [(WebAssemblyswitch Int32:$index)]>;
-def SWITCH_I64 : I<(outs), (ins Int64:$index, variable_ops),
-                   [(WebAssemblyswitch Int64:$index)]>;
+def SWITCH_I32 : I<(outs), (ins I32:$index, variable_ops),
+                   [(WebAssemblyswitch I32:$index)]>;
+def SWITCH_I64 : I<(outs), (ins I64:$index, variable_ops),
+                   [(WebAssemblyswitch I64:$index)]>;
 } // isTerminator = 1, hasCtrlDep = 1, isBarrier = 1
 
 // Placemarkers to indicate the start of a block or loop scope.
@@ -52,9 +52,9 @@ multiclass RETURN<WebAssemblyRegClass vt> {
   def RETURN_#vt : I<(outs), (ins vt:$val), [(WebAssemblyreturn vt:$val)]>;
 }
 let isReturn = 1, isTerminator = 1, hasCtrlDep = 1, isBarrier = 1 in {
-  defm : RETURN<Int32>;
-  defm : RETURN<Int64>;
-  defm : RETURN<Float32>;
-  defm : RETURN<Float64>;
+  defm : RETURN<I32>;
+  defm : RETURN<I64>;
+  defm : RETURN<F32>;
+  defm : RETURN<F64>;
   def RETURN_VOID : I<(outs), (ins), [(WebAssemblyreturn)]>;
 } // isReturn = 1, isTerminator = 1, hasCtrlDep = 1, isBarrier = 1
index 6479a67167b55bf498823364a43e26d708e627f6..ca1068f7f39fdf23a2f26114cca44569f6906de2 100644 (file)
 /*
  * TODO(jfb): Add the following.
  *
- * int32.wrap[int64]: wrap a 64-bit integer to a 32-bit integer
- * int32.trunc_signed[float32]: truncate a 32-bit float to a signed 32-bit integer
- * int32.trunc_signed[float64]: truncate a 64-bit float to a signed 32-bit integer
- * int32.trunc_unsigned[float32]: truncate a 32-bit float to an unsigned 32-bit integer
- * int32.trunc_unsigned[float64]: truncate a 64-bit float to an unsigned 32-bit integer
- * int32.reinterpret[float32]: reinterpret the bits of a 32-bit float as a 32-bit integer
- * int64.extend_signed[int32]: extend a signed 32-bit integer to a 64-bit integer
- * int64.extend_unsigned[int32]: extend an unsigned 32-bit integer to a 64-bit integer
- * int64.trunc_signed[float32]: truncate a 32-bit float to a signed 64-bit integer
- * int64.trunc_signed[float64]: truncate a 64-bit float to a signed 64-bit integer
- * int64.trunc_unsigned[float32]: truncate a 32-bit float to an unsigned 64-bit integer
- * int64.trunc_unsigned[float64]: truncate a 64-bit float to an unsigned 64-bit integer
- * int64.reinterpret[float64]: reinterpret the bits of a 64-bit float as a 64-bit integer
- * float32.demote[float64]: demote a 64-bit float to a 32-bit float
- * float32.cvt_signed[int32]: convert a signed 32-bit integer to a 32-bit float
- * float32.cvt_signed[int64]: convert a signed 64-bit integer to a 32-bit float
- * float32.cvt_unsigned[int32]: convert an unsigned 32-bit integer to a 32-bit float
- * float32.cvt_unsigned[int64]: convert an unsigned 64-bit integer to a 32-bit float
- * float32.reinterpret[int32]: reinterpret the bits of a 32-bit integer as a 32-bit float
- * float64.promote[float32]: promote a 32-bit float to a 64-bit float
- * float64.cvt_signed[int32]: convert a signed 32-bit integer to a 64-bit float
- * float64.cvt_signed[int64]: convert a signed 64-bit integer to a 64-bit float
- * float64.cvt_unsigned[int32]: convert an unsigned 32-bit integer to a 64-bit float
- * float64.cvt_unsigned[int64]: convert an unsigned 64-bit integer to a 64-bit float
- * float64.reinterpret[int64]: reinterpret the bits of a 64-bit integer as a 64-bit float
+ * i32.wrap[i64]: wrap a 64-bit integer to a 32-bit integer
+ * i32.trunc_s[f32]: truncate a 32-bit float to a signed 32-bit integer
+ * i32.trunc_s[f64]: truncate a 64-bit float to a signed 32-bit integer
+ * i32.trunc_u[f32]: truncate a 32-bit float to an unsigned 32-bit integer
+ * i32.trunc_u[f64]: truncate a 64-bit float to an unsigned 32-bit integer
+ * i32.reinterpret[f32]: reinterpret the bits of a 32-bit float as a 32-bit integer
+ * i64.extend_s[i32]: extend a signed 32-bit integer to a 64-bit integer
+ * i64.extend_u[i32]: extend an unsigned 32-bit integer to a 64-bit integer
+ * i64.trunc_s[f32]: truncate a 32-bit float to a signed 64-bit integer
+ * i64.trunc_s[f64]: truncate a 64-bit float to a signed 64-bit integer
+ * i64.trunc_u[f32]: truncate a 32-bit float to an unsigned 64-bit integer
+ * i64.trunc_u[f64]: truncate a 64-bit float to an unsigned 64-bit integer
+ * i64.reinterpret[f64]: reinterpret the bits of a 64-bit float as a 64-bit integer
+ * f32.demote[f64]: demote a 64-bit float to a 32-bit float
+ * f32.convert_s[i32]: convert a signed 32-bit integer to a 32-bit float
+ * f32.convert_s[i64]: convert a signed 64-bit integer to a 32-bit float
+ * f32.convert_u[i32]: convert an unsigned 32-bit integer to a 32-bit float
+ * f32.convert_u[i64]: convert an unsigned 64-bit integer to a 32-bit float
+ * f32.reinterpret[i32]: reinterpret the bits of a 32-bit integer as a 32-bit float
+ * f64.promote[f32]: promote a 32-bit float to a 64-bit float
+ * f64.convert_s[i32]: convert a signed 32-bit integer to a 64-bit float
+ * f64.convert_s[i64]: convert a signed 64-bit integer to a 64-bit float
+ * f64.convert_u[i32]: convert an unsigned 32-bit integer to a 64-bit float
+ * f64.convert_u[i64]: convert an unsigned 64-bit integer to a 64-bit float
+ * f64.reinterpret[i64]: reinterpret the bits of a 64-bit integer as a 64-bit float
  */
 
-def WRAP_I64_I32 : I<(outs Int32:$dst), (ins Int64:$src),
-                     [(set Int32:$dst, (trunc Int64:$src))]>;
+def WRAP_I64_I32 : I<(outs I32:$dst), (ins I64:$src),
+                     [(set I32:$dst, (trunc I64:$src))]>;
index 69db7e71ae1e8edbafb410aec3709525763905a1..570bf50cceae77e2f9ad24d363f22e57d970676d 100644 (file)
@@ -25,11 +25,11 @@ defm COPYSIGN : BinaryFP<fcopysign>;
 defm CEIL : UnaryFP<fceil>;
 defm FLOOR : UnaryFP<ffloor>;
 defm TRUNC : UnaryFP<ftrunc>;
-defm NEARESTINT : UnaryFP<fnearbyint>;
+defm NEAREST : UnaryFP<fnearbyint>;
 
 // WebAssembly doesn't expose inexact exceptions, so map frint to fnearbyint.
-def : Pat<(frint f32:$src), (NEARESTINT_F32 f32:$src)>;
-def : Pat<(frint f64:$src), (NEARESTINT_F64 f64:$src)>;
+def : Pat<(frint f32:$src), (NEAREST_F32 f32:$src)>;
+def : Pat<(frint f64:$src), (NEAREST_F64 f64:$src)>;
 
 defm EQ : ComparisonFP<SETOEQ>;
 defm NE : ComparisonFP<SETUNE>;
@@ -55,6 +55,6 @@ def : Pat<(setge f64:$lhs, f64:$rhs), (GE_F64 f64:$lhs, f64:$rhs)>;
 /*
  * 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
+ * f32.min: minimum (binary operator); if either operand is NaN, returns NaN
+ * f32.max: maximum (binary operator); if either operand is NaN, returns NaN
  */
index 61de5ddd716b1c8ff046a05b0fd4f6672f083682..dd7a01713c15610c4f9e03af7e04e4ee55e8ee6a 100644 (file)
@@ -30,38 +30,38 @@ class I<dag oops, dag iops, list<dag> pattern, string cstr = "">
 
 // Unary and binary instructions, for the local types that WebAssembly supports.
 multiclass UnaryInt<SDNode node> {
-  def _I32 : I<(outs Int32:$dst), (ins Int32:$src),
-               [(set Int32:$dst, (node Int32:$src))]>;
-  def _I64 : I<(outs Int64:$dst), (ins Int64:$src),
-               [(set Int64:$dst, (node Int64:$src))]>;
+  def _I32 : I<(outs I32:$dst), (ins I32:$src),
+               [(set I32:$dst, (node I32:$src))]>;
+  def _I64 : I<(outs I64:$dst), (ins I64:$src),
+               [(set I64:$dst, (node I64:$src))]>;
 }
 multiclass BinaryInt<SDNode node> {
-  def _I32 : I<(outs Int32:$dst), (ins Int32:$lhs, Int32:$rhs),
-               [(set Int32:$dst, (node Int32:$lhs, Int32:$rhs))]>;
-  def _I64 : I<(outs Int64:$dst), (ins Int64:$lhs, Int64:$rhs),
-               [(set Int64:$dst, (node Int64:$lhs, Int64:$rhs))]>;
+  def _I32 : I<(outs I32:$dst), (ins I32:$lhs, I32:$rhs),
+               [(set I32:$dst, (node I32:$lhs, I32:$rhs))]>;
+  def _I64 : I<(outs I64:$dst), (ins I64:$lhs, I64:$rhs),
+               [(set I64:$dst, (node I64:$lhs, I64:$rhs))]>;
 }
 multiclass UnaryFP<SDNode node> {
-  def _F32 : I<(outs Float32:$dst), (ins Float32:$src),
-               [(set Float32:$dst, (node Float32:$src))]>;
-  def _F64 : I<(outs Float64:$dst), (ins Float64:$src),
-               [(set Float64:$dst, (node Float64:$src))]>;
+  def _F32 : I<(outs F32:$dst), (ins F32:$src),
+               [(set F32:$dst, (node F32:$src))]>;
+  def _F64 : I<(outs F64:$dst), (ins F64:$src),
+               [(set F64:$dst, (node F64:$src))]>;
 }
 multiclass BinaryFP<SDNode node> {
-  def _F32 : I<(outs Float32:$dst), (ins Float32:$lhs, Float32:$rhs),
-               [(set Float32:$dst, (node Float32:$lhs, Float32:$rhs))]>;
-  def _F64 : I<(outs Float64:$dst), (ins Float64:$lhs, Float64:$rhs),
-               [(set Float64:$dst, (node Float64:$lhs, Float64:$rhs))]>;
+  def _F32 : I<(outs F32:$dst), (ins F32:$lhs, F32:$rhs),
+               [(set F32:$dst, (node F32:$lhs, F32:$rhs))]>;
+  def _F64 : I<(outs F64:$dst), (ins F64:$lhs, F64:$rhs),
+               [(set F64:$dst, (node F64:$lhs, F64:$rhs))]>;
 }
 multiclass ComparisonInt<CondCode cond> {
-  def _I32 : I<(outs Int32:$dst), (ins Int32:$lhs, Int32:$rhs),
-               [(set Int32:$dst, (setcc Int32:$lhs, Int32:$rhs, cond))]>;
-  def _I64 : I<(outs Int32:$dst), (ins Int64:$lhs, Int64:$rhs),
-               [(set Int32:$dst, (setcc Int64:$lhs, Int64:$rhs, cond))]>;
+  def _I32 : I<(outs I32:$dst), (ins I32:$lhs, I32:$rhs),
+               [(set I32:$dst, (setcc I32:$lhs, I32:$rhs, cond))]>;
+  def _I64 : I<(outs I32:$dst), (ins I64:$lhs, I64:$rhs),
+               [(set I32:$dst, (setcc I64:$lhs, I64:$rhs, cond))]>;
 }
 multiclass ComparisonFP<CondCode cond> {
-  def _F32 : I<(outs Int32:$dst), (ins Float32:$lhs, Float32:$rhs),
-               [(set Int32:$dst, (setcc Float32:$lhs, Float32:$rhs, cond))]>;
-  def _F64 : I<(outs Int32:$dst), (ins Float64:$lhs, Float64:$rhs),
-               [(set Int32:$dst, (setcc Float64:$lhs, Float64:$rhs, cond))]>;
+  def _F32 : I<(outs I32:$dst), (ins F32:$lhs, F32:$rhs),
+               [(set I32:$dst, (setcc F32:$lhs, F32:$rhs, cond))]>;
+  def _F64 : I<(outs I32:$dst), (ins F64:$lhs, F64:$rhs),
+               [(set I32:$dst, (setcc F64:$lhs, F64:$rhs, cond))]>;
 }
index 63ff03fe6c032a2c87f40b38814ac34c6e690a50..f3564b53a670f2eda72a59ca8f9c7fbf5c7d6cd0 100644 (file)
@@ -87,26 +87,26 @@ multiclass ARGUMENT<WebAssemblyRegClass vt> {
   def ARGUMENT_#vt : I<(outs vt:$res), (ins i32imm:$argno),
                        [(set vt:$res, (WebAssemblyargument timm:$argno))]>;
 }
-defm : ARGUMENT<Int32>;
-defm : ARGUMENT<Int64>;
-defm : ARGUMENT<Float32>;
-defm : ARGUMENT<Float64>;
+defm : ARGUMENT<I32>;
+defm : ARGUMENT<I64>;
+defm : ARGUMENT<F32>;
+defm : ARGUMENT<F64>;
 
 
-def Immediate_I32 : I<(outs Int32:$res), (ins i32imm:$imm),
-                      [(set Int32:$res, imm:$imm)]>;
-def Immediate_I64 : I<(outs Int64:$res), (ins i64imm:$imm),
-                      [(set Int64:$res, imm:$imm)]>;
-def Immediate_F32 : I<(outs Float32:$res), (ins f32imm:$imm),
-                      [(set Float32:$res, fpimm:$imm)]>;
-def Immediate_F64 : I<(outs Float64:$res), (ins f64imm:$imm),
-                      [(set Float64:$res, fpimm:$imm)]>;
+def Immediate_I32 : I<(outs I32:$res), (ins i32imm:$imm),
+                      [(set I32:$res, imm:$imm)]>;
+def Immediate_I64 : I<(outs I64:$res), (ins i64imm:$imm),
+                      [(set I64:$res, imm:$imm)]>;
+def Immediate_F32 : I<(outs F32:$res), (ins f32imm:$imm),
+                      [(set F32:$res, fpimm:$imm)]>;
+def Immediate_F64 : I<(outs F64:$res), (ins f64imm:$imm),
+                      [(set F64:$res, fpimm:$imm)]>;
 
 // Special types of immediates. FIXME: Hard-coded as 32-bit for now.
-def GLOBAL : I<(outs Int32:$dst), (ins global:$addr),
-               [(set Int32:$dst, (WebAssemblywrapper tglobaladdr:$addr))]>;
-def JUMP_TABLE : I<(outs Int32:$dst), (ins tjumptable_op:$addr),
-                   [(set Int32:$dst, (WebAssemblywrapper tjumptable:$addr))]>;
+def GLOBAL : I<(outs I32:$dst), (ins global:$addr),
+               [(set I32:$dst, (WebAssemblywrapper tglobaladdr:$addr))]>;
+def JUMP_TABLE : I<(outs I32:$dst), (ins tjumptable_op:$addr),
+                   [(set I32:$dst, (WebAssemblywrapper tjumptable:$addr))]>;
 
 //===----------------------------------------------------------------------===//
 // Additional sets of instructions.
index 16a21082bd397812edf5e89e6a5c6b4908ca0544..073b261ef0985f234a25d611f05067629657ed36 100644 (file)
@@ -42,7 +42,7 @@ defm CTZ : UnaryInt<cttz>;
 defm POPCNT : UnaryInt<ctpop>;
 
 // Expand the "don't care" operations to supported operations.
-def : Pat<(ctlz_zero_undef Int32:$src), (CLZ_I32 Int32:$src)>;
-def : Pat<(ctlz_zero_undef Int64:$src), (CLZ_I64 Int64:$src)>;
-def : Pat<(cttz_zero_undef Int32:$src), (CTZ_I32 Int32:$src)>;
-def : Pat<(cttz_zero_undef Int64:$src), (CTZ_I64 Int64:$src)>;
+def : Pat<(ctlz_zero_undef I32:$src), (CLZ_I32 I32:$src)>;
+def : Pat<(ctlz_zero_undef I64:$src), (CLZ_I64 I64:$src)>;
+def : Pat<(cttz_zero_undef I32:$src), (CTZ_I32 I32:$src)>;
+def : Pat<(cttz_zero_undef I64:$src), (CTZ_I64 I64:$src)>;
index dd4c24516224a3865652aa50cb604d07026ba2a2..84b8847f2a12514f3b7c50eda9249677a4dd53ce 100644 (file)
 // types when loading, and truncate when storing.
 
 // Basic load.
-def LOAD_I32_ : I<(outs Int32:$dst), (ins Int32:$addr),
-                  [(set Int32:$dst, (load Int32:$addr))]>;
-def LOAD_I64_ : I<(outs Int64:$dst), (ins Int32:$addr),
-                  [(set Int64:$dst, (load Int32:$addr))]>;
-def LOAD_F32_ : I<(outs Float32:$dst), (ins Int32:$addr),
-                  [(set Float32:$dst, (load Int32:$addr))]>;
-def LOAD_F64_ : I<(outs Float64:$dst), (ins Int32:$addr),
-                  [(set Float64:$dst, (load Int32:$addr))]>;
+def LOAD_I32_ : I<(outs I32:$dst), (ins I32:$addr),
+                  [(set I32:$dst, (load I32:$addr))]>;
+def LOAD_I64_ : I<(outs I64:$dst), (ins I32:$addr),
+                  [(set I64:$dst, (load I32:$addr))]>;
+def LOAD_F32_ : I<(outs F32:$dst), (ins I32:$addr),
+                  [(set F32:$dst, (load I32:$addr))]>;
+def LOAD_F64_ : I<(outs F64:$dst), (ins I32:$addr),
+                  [(set F64:$dst, (load I32:$addr))]>;
 
 // Extending load.
-def LOAD_SX_I8_I32_  : I<(outs Int32:$dst), (ins Int32:$addr),
-                         [(set Int32:$dst, (sextloadi8 Int32:$addr))]>;
-def LOAD_ZX_I8_I32_  : I<(outs Int32:$dst), (ins Int32:$addr),
-                         [(set Int32:$dst, (zextloadi8 Int32:$addr))]>;
-def LOAD_SX_I16_I32_ : I<(outs Int32:$dst), (ins Int32:$addr),
-                         [(set Int32:$dst, (sextloadi16 Int32:$addr))]>;
-def LOAD_ZX_I16_I32_ : I<(outs Int32:$dst), (ins Int32:$addr),
-                         [(set Int32:$dst, (zextloadi16 Int32:$addr))]>;
-def LOAD_SX_I8_I64_  : I<(outs Int64:$dst), (ins Int32:$addr),
-                         [(set Int64:$dst, (sextloadi8 Int32:$addr))]>;
-def LOAD_ZX_I8_I64_  : I<(outs Int64:$dst), (ins Int32:$addr),
-                         [(set Int64:$dst, (zextloadi8 Int32:$addr))]>;
-def LOAD_SX_I16_I64_ : I<(outs Int64:$dst), (ins Int32:$addr),
-                         [(set Int64:$dst, (sextloadi16 Int32:$addr))]>;
-def LOAD_ZX_I16_I64_ : I<(outs Int64:$dst), (ins Int32:$addr),
-                         [(set Int64:$dst, (zextloadi16 Int32:$addr))]>;
-def LOAD_SX_I32_I64_ : I<(outs Int64:$dst), (ins Int32:$addr),
-                         [(set Int64:$dst, (sextloadi32 Int32:$addr))]>;
-def LOAD_ZX_I32_I64_ : I<(outs Int64:$dst), (ins Int32:$addr),
-                         [(set Int64:$dst, (zextloadi32 Int32:$addr))]>;
+def LOAD_S_i8_I32_  : I<(outs I32:$dst), (ins I32:$addr),
+                        [(set I32:$dst, (sextloadi8 I32:$addr))]>;
+def LOAD_U_i8_I32_  : I<(outs I32:$dst), (ins I32:$addr),
+                        [(set I32:$dst, (zextloadi8 I32:$addr))]>;
+def LOAD_S_i16_I32_ : I<(outs I32:$dst), (ins I32:$addr),
+                        [(set I32:$dst, (sextloadi16 I32:$addr))]>;
+def LOAD_U_i16_I32_ : I<(outs I32:$dst), (ins I32:$addr),
+                        [(set I32:$dst, (zextloadi16 I32:$addr))]>;
+def LOAD_S_i8_I64_  : I<(outs I64:$dst), (ins I32:$addr),
+                        [(set I64:$dst, (sextloadi8 I32:$addr))]>;
+def LOAD_U_i8_I64_  : I<(outs I64:$dst), (ins I32:$addr),
+                        [(set I64:$dst, (zextloadi8 I32:$addr))]>;
+def LOAD_S_i16_I64_ : I<(outs I64:$dst), (ins I32:$addr),
+                        [(set I64:$dst, (sextloadi16 I32:$addr))]>;
+def LOAD_U_i16_I64_ : I<(outs I64:$dst), (ins I32:$addr),
+                        [(set I64:$dst, (zextloadi16 I32:$addr))]>;
+def LOAD_S_I32_I64_ : I<(outs I64:$dst), (ins I32:$addr),
+                        [(set I64:$dst, (sextloadi32 I32:$addr))]>;
+def LOAD_U_I32_I64_ : I<(outs I64:$dst), (ins I32:$addr),
+                        [(set I64:$dst, (zextloadi32 I32:$addr))]>;
 
 // "Don't care" extending load become zero-extending load.
-def : Pat<(i32 (extloadi8 Int32:$addr)),  (LOAD_ZX_I8_I32_ $addr)>;
-def : Pat<(i32 (extloadi16 Int32:$addr)), (LOAD_ZX_I16_I32_ $addr)>;
-def : Pat<(i64 (extloadi8 Int32:$addr)),  (LOAD_ZX_I8_I64_ $addr)>;
-def : Pat<(i64 (extloadi16 Int32:$addr)), (LOAD_ZX_I16_I64_ $addr)>;
-def : Pat<(i64 (extloadi32 Int32:$addr)), (LOAD_ZX_I32_I64_ $addr)>;
+def : Pat<(i32 (extloadi8 I32:$addr)),  (LOAD_U_i8_I32_ $addr)>;
+def : Pat<(i32 (extloadi16 I32:$addr)), (LOAD_U_i16_I32_ $addr)>;
+def : Pat<(i64 (extloadi8 I32:$addr)),  (LOAD_U_i8_I64_ $addr)>;
+def : Pat<(i64 (extloadi16 I32:$addr)), (LOAD_U_i16_I64_ $addr)>;
+def : Pat<(i64 (extloadi32 I32:$addr)), (LOAD_U_I32_I64_ $addr)>;
 
 // Basic store.
 // Note: WebAssembly inverts SelectionDAG's usual operand order.
-def STORE_I32_  : I<(outs), (ins Int32:$addr, Int32:$val),
-                    [(store Int32:$val, Int32:$addr)]>;
-def STORE_I64_  : I<(outs), (ins Int32:$addr, Int64:$val),
-                    [(store Int64:$val, Int32:$addr)]>;
-def STORE_F32_  : I<(outs), (ins Int32:$addr, Float32:$val),
-                    [(store Float32:$val, Int32:$addr)]>;
-def STORE_F64_  : I<(outs), (ins Int32:$addr, Float64:$val),
-                    [(store Float64:$val, Int32:$addr)]>;
+def STORE_I32_  : I<(outs), (ins I32:$addr, I32:$val),
+                    [(store i32:$val, I32:$addr)]>;
+def STORE_I64_  : I<(outs), (ins I32:$addr, I64:$val),
+                    [(store i64:$val, I32:$addr)]>;
+def STORE_F32_  : I<(outs), (ins I32:$addr, F32:$val),
+                    [(store f32:$val, I32:$addr)]>;
+def STORE_F64_  : I<(outs), (ins I32:$addr, F64:$val),
+                    [(store f64:$val, I32:$addr)]>;
 
 // Truncating store.
-def STORE_I8_I32  : I<(outs), (ins Int32:$addr, Int32:$val),
-                      [(truncstorei8 Int32:$val, Int32:$addr)]>;
-def STORE_I16_I32 : I<(outs), (ins Int32:$addr, Int32:$val),
-                      [(truncstorei16 Int32:$val, Int32:$addr)]>;
-def STORE_I8_I64  : I<(outs), (ins Int32:$addr, Int64:$val),
-                      [(truncstorei8 Int64:$val, Int32:$addr)]>;
-def STORE_I16_I64 : I<(outs), (ins Int32:$addr, Int64:$val),
-                      [(truncstorei16 Int64:$val, Int32:$addr)]>;
-def STORE_I32_I64 : I<(outs), (ins Int32:$addr, Int64:$val),
-                      [(truncstorei32 Int64:$val, Int32:$addr)]>;
+def STORE_i8_I32  : I<(outs), (ins I32:$addr, I32:$val),
+                      [(truncstorei8 I32:$val, I32:$addr)]>;
+def STORE_i16_I32 : I<(outs), (ins I32:$addr, I32:$val),
+                      [(truncstorei16 I32:$val, I32:$addr)]>;
+def STORE_i8_I64  : I<(outs), (ins I32:$addr, I64:$val),
+                      [(truncstorei8 I64:$val, I32:$addr)]>;
+def STORE_i16_I64 : I<(outs), (ins I32:$addr, I64:$val),
+                      [(truncstorei16 I64:$val, I32:$addr)]>;
+def STORE_I32_I64 : I<(outs), (ins I32:$addr, I64:$val),
+                      [(truncstorei32 I64:$val, I32:$addr)]>;
 
 // Page size.
-def page_size_I32 : I<(outs Int32:$dst), (ins),
-                      [(set Int32:$dst, (int_wasm_page_size))]>,
+def page_size_I32 : I<(outs I32:$dst), (ins),
+                      [(set I32:$dst, (int_wasm_page_size))]>,
                     Requires<[HasAddr32]>;
-def page_size_I64 : I<(outs Int64:$dst), (ins),
-                      [(set Int64:$dst, (int_wasm_page_size))]>,
+def page_size_I64 : I<(outs I64:$dst), (ins),
+                      [(set I64:$dst, (int_wasm_page_size))]>,
                     Requires<[HasAddr64]>;
index 2ba42eb94a40577344a66a224ccbb73620c59cbc..2402bc52ed2fc7ff8ebb1f3fa9d18829bd13a7bb 100644 (file)
@@ -48,7 +48,7 @@ foreach i = 0-4 in {
 //  Register classes
 //===----------------------------------------------------------------------===//
 
-def Int32 : WebAssemblyRegClass<[i32], 32, (add (sequence "I%u", 0, 4), SP32)>;
-def Int64 : WebAssemblyRegClass<[i64], 64, (add (sequence "L%u", 0, 4), SP64)>;
-def Float32 : WebAssemblyRegClass<[f32], 32, (add (sequence "F%u", 0, 4))>;
-def Float64 : WebAssemblyRegClass<[f64], 64, (add (sequence "D%u", 0, 4))>;
+def I32 : WebAssemblyRegClass<[i32], 32, (add (sequence "I%u", 0, 4), SP32)>;
+def I64 : WebAssemblyRegClass<[i64], 64, (add (sequence "L%u", 0, 4), SP64)>;
+def F32 : WebAssemblyRegClass<[f32], 32, (add (sequence "F%u", 0, 4))>;
+def F64 : WebAssemblyRegClass<[f64], 64, (add (sequence "D%u", 0, 4))>;
index 754ff95155ae3442e88458c2540c1ed0605b0427..35f6c4207d7388d29d9592fe7f31e30819ab0048 100644 (file)
@@ -95,16 +95,16 @@ define float @trunc32(float %x) {
   ret float %a
 }
 
-; CHECK-LABEL: (func $nearestint32
-; CHECK: (setlocal @1 (nearestint @0))
-define float @nearestint32(float %x) {
+; CHECK-LABEL: (func $nearest32
+; CHECK: (setlocal @1 (nearest @0))
+define float @nearest32(float %x) {
   %a = call float @llvm.nearbyint.f32(float %x)
   ret float %a
 }
 
-; CHECK-LABEL: (func $nearestint32_via_rint
-; CHECK: (setlocal @1 (nearestint @0))
-define float @nearestint32_via_rint(float %x) {
+; CHECK-LABEL: (func $nearest32_via_rint
+; CHECK: (setlocal @1 (nearest @0))
+define float @nearest32_via_rint(float %x) {
   %a = call float @llvm.rint.f32(float %x)
   ret float %a
 }
index af4d945c4bc7536f78b4b034b5f921de006b8e71..cbe1ed4434c16c8d1830e49de362f48022842ebc 100644 (file)
@@ -95,16 +95,16 @@ define double @trunc64(double %x) {
   ret double %a
 }
 
-; CHECK-LABEL: (func $nearestint64
-; CHECK: (setlocal @1 (nearestint @0))
-define double @nearestint64(double %x) {
+; CHECK-LABEL: (func $nearest64
+; CHECK: (setlocal @1 (nearest @0))
+define double @nearest64(double %x) {
   %a = call double @llvm.nearbyint.f64(double %x)
   ret double %a
 }
 
-; CHECK-LABEL: (func $nearestint64_via_rint
-; CHECK: (setlocal @1 (nearestint @0))
-define double @nearestint64_via_rint(double %x) {
+; CHECK-LABEL: (func $nearest64_via_rint
+; CHECK: (setlocal @1 (nearest @0))
+define double @nearest64_via_rint(double %x) {
   %a = call double @llvm.rint.f64(double %x)
   ret double %a
 }
index 6700db6218d97a7be9ec9d4c409b1afa07dfab75..0d244a4458d14897bf1599aaea4d18a78edd2974 100644 (file)
@@ -6,7 +6,7 @@ target datalayout = "e-p:32:32-i64:64-n32:64-S128"
 target triple = "wasm32-unknown-unknown"
 
 ; CHECK-LABEL: (func $sext_i8_i32
-; CHECK: (setlocal @1 (load_sx_i8_i32 @0))
+; CHECK: (setlocal @1 (load_s_i8_i32 @0))
 define i32 @sext_i8_i32(i8 *%p) {
   %v = load i8, i8* %p
   %e = sext i8 %v to i32
@@ -14,7 +14,7 @@ define i32 @sext_i8_i32(i8 *%p) {
 }
 
 ; CHECK-LABEL: (func $zext_i8_i32
-; CHECK: (setlocal @1 (load_zx_i8_i32 @0))
+; CHECK: (setlocal @1 (load_u_i8_i32 @0))
 define i32 @zext_i8_i32(i8 *%p) {
   %v = load i8, i8* %p
   %e = zext i8 %v to i32
@@ -22,7 +22,7 @@ define i32 @zext_i8_i32(i8 *%p) {
 }
 
 ; CHECK-LABEL: (func $sext_i16_i32
-; CHECK: (setlocal @1 (load_sx_i16_i32 @0))
+; CHECK: (setlocal @1 (load_s_i16_i32 @0))
 define i32 @sext_i16_i32(i16 *%p) {
   %v = load i16, i16* %p
   %e = sext i16 %v to i32
@@ -30,7 +30,7 @@ define i32 @sext_i16_i32(i16 *%p) {
 }
 
 ; CHECK-LABEL: (func $zext_i16_i32
-; CHECK: (setlocal @1 (load_zx_i16_i32 @0))
+; CHECK: (setlocal @1 (load_u_i16_i32 @0))
 define i32 @zext_i16_i32(i16 *%p) {
   %v = load i16, i16* %p
   %e = zext i16 %v to i32
@@ -38,7 +38,7 @@ define i32 @zext_i16_i32(i16 *%p) {
 }
 
 ; CHECK-LABEL: (func $sext_i8_i64
-; CHECK: (setlocal @1 (load_sx_i8_i64 @0))
+; CHECK: (setlocal @1 (load_s_i8_i64 @0))
 define i64 @sext_i8_i64(i8 *%p) {
   %v = load i8, i8* %p
   %e = sext i8 %v to i64
@@ -46,7 +46,7 @@ define i64 @sext_i8_i64(i8 *%p) {
 }
 
 ; CHECK-LABEL: (func $zext_i8_i64
-; CHECK: (setlocal @1 (load_zx_i8_i64 @0))
+; CHECK: (setlocal @1 (load_u_i8_i64 @0))
 define i64 @zext_i8_i64(i8 *%p) {
   %v = load i8, i8* %p
   %e = zext i8 %v to i64
@@ -54,7 +54,7 @@ define i64 @zext_i8_i64(i8 *%p) {
 }
 
 ; CHECK-LABEL: (func $sext_i16_i64
-; CHECK: (setlocal @1 (load_sx_i16_i64 @0))
+; CHECK: (setlocal @1 (load_s_i16_i64 @0))
 define i64 @sext_i16_i64(i16 *%p) {
   %v = load i16, i16* %p
   %e = sext i16 %v to i64
@@ -62,7 +62,7 @@ define i64 @sext_i16_i64(i16 *%p) {
 }
 
 ; CHECK-LABEL: (func $zext_i16_i64
-; CHECK: (setlocal @1 (load_zx_i16_i64 @0))
+; CHECK: (setlocal @1 (load_u_i16_i64 @0))
 define i64 @zext_i16_i64(i16 *%p) {
   %v = load i16, i16* %p
   %e = zext i16 %v to i64
@@ -70,7 +70,7 @@ define i64 @zext_i16_i64(i16 *%p) {
 }
 
 ; CHECK-LABEL: (func $sext_i32_i64
-; CHECK: (setlocal @1 (load_sx_i32_i64 @0))
+; CHECK: (setlocal @1 (load_s_i32_i64 @0))
 define i64 @sext_i32_i64(i32 *%p) {
   %v = load i32, i32* %p
   %e = sext i32 %v to i64
@@ -78,7 +78,7 @@ define i64 @sext_i32_i64(i32 *%p) {
 }
 
 ; CHECK-LABEL: (func $zext_i32_i64
-; CHECK: (setlocal @1 (load_zx_i32_i64 @0))
+; CHECK: (setlocal @1 (load_u_i32_i64 @0))
 define i64 @zext_i32_i64(i32 *%p) {
   %v = load i32, i32* %p
   %e = zext i32 %v to i64
index a40567e589bba48bcc4ff43c6d84f15a4cb834b9..effe2fedf26d1802c605e5ff2fd30a9ff59a1d7e 100644 (file)
@@ -5,43 +5,43 @@
 target datalayout = "e-p:32:32-i64:64-n32:64-S128"
 target triple = "wasm32-unknown-unknown"
 
-; CHECK-LABEL: (func $load_unsigned_i1_i32
-; CHECK:      (setlocal @1 (load_zx_i8_i32 @0))
+; CHECK-LABEL: (func $load_u_i1_i32
+; CHECK:      (setlocal @1 (load_u_i8_i32 @0))
 ; CHECK-NEXT: (return @1)
-define i32 @load_unsigned_i1_i32(i1* %p) {
+define i32 @load_u_i1_i32(i1* %p) {
   %v = load i1, i1* %p
   %e = zext i1 %v to i32
   ret i32 %e
 }
 
-; CHECK-LABEL: (func $load_signed_i1_i32
-; CHECK:      (setlocal @1 (load_zx_i8_i32 @0))
+; CHECK-LABEL: (func $load_s_i1_i32
+; CHECK:      (setlocal @1 (load_u_i8_i32 @0))
 ; CHECK-NEXT: (setlocal @2 (immediate 31))
 ; CHECK-NEXT: (setlocal @3 (shl @1 @2))
 ; CHECK-NEXT: (setlocal @4 (shr_s @3 @2))
 ; CHECK-NEXT: (return @4)
-define i32 @load_signed_i1_i32(i1* %p) {
+define i32 @load_s_i1_i32(i1* %p) {
   %v = load i1, i1* %p
   %e = sext i1 %v to i32
   ret i32 %e
 }
 
-; CHECK-LABEL: (func $load_unsigned_i1_i64
-; CHECK:      (setlocal @1 (load_zx_i8_i64 @0))
+; CHECK-LABEL: (func $load_u_i1_i64
+; CHECK:      (setlocal @1 (load_u_i8_i64 @0))
 ; CHECK-NEXT: (return @1)
-define i64 @load_unsigned_i1_i64(i1* %p) {
+define i64 @load_u_i1_i64(i1* %p) {
   %v = load i1, i1* %p
   %e = zext i1 %v to i64
   ret i64 %e
 }
 
-; CHECK-LABEL: (func $load_signed_i1_i64
-; CHECK:      (setlocal @1 (load_zx_i8_i64 @0))
+; CHECK-LABEL: (func $load_s_i1_i64
+; CHECK:      (setlocal @1 (load_u_i8_i64 @0))
 ; CHECK-NEXT: (setlocal @2 (immediate 63))
 ; CHECK-NEXT: (setlocal @3 (shl @1 @2))
 ; CHECK-NEXT: (setlocal @4 (shr_s @3 @2))
 ; CHECK-NEXT: (return @4)
-define i64 @load_signed_i1_i64(i1* %p) {
+define i64 @load_s_i1_i64(i1* %p) {
   %v = load i1, i1* %p
   %e = sext i1 %v to i64
   ret i64 %e