[llvm] r253472 - [WebAssembly] Add more whitespace characters to prettify the assembly output.

Dan Gohman via llvm-commits llvm-commits at lists.llvm.org
Wed Nov 18 09:05:36 PST 2015


Author: djg
Date: Wed Nov 18 11:05:35 2015
New Revision: 253472

URL: http://llvm.org/viewvc/llvm-project?rev=253472&view=rev
Log:
[WebAssembly] Add more whitespace characters to prettify the assembly output.

Modified:
    llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrCall.td
    llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrControl.td

Modified: llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrCall.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrCall.td?rev=253472&r1=253471&r2=253472&view=diff
==============================================================================
--- llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrCall.td (original)
+++ llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrCall.td Wed Nov 18 11:05:35 2015
@@ -24,7 +24,7 @@ def : I<(outs), (ins i64imm:$amt1, i64im
 multiclass CALL<WebAssemblyRegClass vt> {
   def CALL_#vt : I<(outs vt:$dst), (ins global:$callee, variable_ops),
                    [(set vt:$dst, (WebAssemblycall1 (WebAssemblywrapper tglobaladdr:$callee)))],
-                   "call\t$callee, $dst">;
+                   "call    \t$callee, $dst">;
   def CALL_INDIRECT_#vt : I<(outs vt:$dst), (ins I32:$callee, variable_ops),
                             [(set vt:$dst, (WebAssemblycall1 I32:$callee))],
                             "call_indirect\t$callee, $dst">;
@@ -37,7 +37,7 @@ let Uses = [SP32, SP64], isCall = 1 in {
 
   def CALL_VOID : I<(outs), (ins global:$callee, variable_ops),
                     [(WebAssemblycall0 (WebAssemblywrapper tglobaladdr:$callee))],
-                    "call\t$callee">;
+                    "call    \t$callee">;
   def CALL_INDIRECT_VOID : I<(outs), (ins I32:$callee, variable_ops),
                              [(WebAssemblycall0 I32:$callee)],
                              "call_indirect\t$callee">;

Modified: llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrControl.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrControl.td?rev=253472&r1=253471&r2=253472&view=diff
==============================================================================
--- llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrControl.td (original)
+++ llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrControl.td Wed Nov 18 11:05:35 2015
@@ -15,11 +15,11 @@
 let isBranch = 1, isTerminator = 1, hasCtrlDep = 1 in {
 def BR_IF : I<(outs), (ins I32:$a, bb_op:$dst),
               [(brcond I32:$a, bb:$dst)],
-               "br_if\t$a, $dst">;
+               "br_if   \t$a, $dst">;
 let isBarrier = 1 in {
 def BR   : I<(outs), (ins bb_op:$dst),
              [(br bb:$dst)],
-             "br\t$dst">;
+             "br      \t$dst">;
 } // isBarrier = 1
 } // isBranch = 1, isTerminator = 1, hasCtrlDep = 1
 
@@ -29,19 +29,19 @@ def BR   : I<(outs), (ins bb_op:$dst),
 let isTerminator = 1, hasCtrlDep = 1, isBarrier = 1 in {
 def SWITCH_I32 : I<(outs), (ins I32:$index, variable_ops),
                    [(WebAssemblyswitch I32:$index)],
-                   "switch\t$index">;
+                   "switch  \t$index">;
 def SWITCH_I64 : I<(outs), (ins I64:$index, variable_ops),
                    [(WebAssemblyswitch I64:$index)],
-                   "switch\t$index">;
+                   "switch  \t$index">;
 } // isTerminator = 1, hasCtrlDep = 1, isBarrier = 1
 
 // Placemarkers to indicate the start of a block or loop scope.
-def BLOCK     : I<(outs), (ins bb_op:$dst), [], "block\t$dst">;
-def LOOP      : I<(outs), (ins bb_op:$dst), [], "loop\t$dst">;
+def BLOCK     : I<(outs), (ins bb_op:$dst), [], "block   \t$dst">;
+def LOOP      : I<(outs), (ins bb_op:$dst), [], "loop    \t$dst">;
 
 multiclass RETURN<WebAssemblyRegClass vt> {
   def RETURN_#vt : I<(outs), (ins vt:$val), [(WebAssemblyreturn vt:$val)],
-                     "return\t$val">;
+                     "return  \t$val">;
 }
 
 let isTerminator = 1, hasCtrlDep = 1, isBarrier = 1 in {




More information about the llvm-commits mailing list