[llvm] r344981 - [WebAssembly] Fix assembly printing of br_table
Heejin Ahn via llvm-commits
llvm-commits at lists.llvm.org
Mon Oct 22 17:28:14 PDT 2018
Author: aheejin
Date: Mon Oct 22 17:28:14 2018
New Revision: 344981
URL: http://llvm.org/viewvc/llvm-project?rev=344981&view=rev
Log:
[WebAssembly] Fix assembly printing of br_table
Summary: In `br_table's stack version asm string, \t was missing.
Reviewers: aardappel
Subscribers: dschuff, sbc100, jgravelle-google, sunfish, llvm-commits
Differential Revision: https://reviews.llvm.org/D53516
Added:
llvm/trunk/test/CodeGen/WebAssembly/stack-insts.ll
Modified:
llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrControl.td
Modified: llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrControl.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrControl.td?rev=344981&r1=344980&r2=344981&view=diff
==============================================================================
--- llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrControl.td (original)
+++ llvm/trunk/lib/Target/WebAssembly/WebAssemblyInstrControl.td Mon Oct 22 17:28:14 2018
@@ -51,7 +51,7 @@ def BR_TABLE_I32 : NI<(outs), (ins I32:$
let BaseName = "BR_TABLE_I32" in
def BR_TABLE_I32_S : NI<(outs), (ins variable_ops),
[], "true",
- "br_table", 0x0e> {
+ "br_table \t", 0x0e> {
let TSFlags{0} = 1;
let TSFlags{1} = 1;
}
@@ -65,7 +65,7 @@ def BR_TABLE_I64 : NI<(outs), (ins I64:$
let BaseName = "BR_TABLE_I64" in
def BR_TABLE_I64_S : NI<(outs), (ins variable_ops),
[], "true",
- "br_table"> {
+ "br_table \t"> {
let TSFlags{0} = 1;
let TSFlags{1} = 1;
}
Added: llvm/trunk/test/CodeGen/WebAssembly/stack-insts.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/WebAssembly/stack-insts.ll?rev=344981&view=auto
==============================================================================
--- llvm/trunk/test/CodeGen/WebAssembly/stack-insts.ll (added)
+++ llvm/trunk/test/CodeGen/WebAssembly/stack-insts.ll Mon Oct 22 17:28:14 2018
@@ -0,0 +1,32 @@
+; RUN: llc < %s -asm-verbose=false -disable-wasm-fallthrough-return-opt -disable-block-placement -verify-machineinstrs | FileCheck %s
+
+target datalayout = "e-m:e-p:32:32-i64:64-n32:64-S128"
+target triple = "wasm32-unknown-unknown"
+
+declare void @foo0()
+declare void @foo1()
+
+; Tests if br_table is printed correctly with a tab.
+; CHECK-LABEL: test0:
+; CHECK-NOT: br_table0, 1, 0, 1, 0
+; CHECK: br_table 0, 1, 0, 1, 0
+define void @test0(i32 %n) {
+entry:
+ switch i32 %n, label %sw.epilog [
+ i32 0, label %sw.bb
+ i32 1, label %sw.bb.1
+ i32 2, label %sw.bb
+ i32 3, label %sw.bb.1
+ ]
+
+sw.bb: ; preds = %entry, %entry
+ tail call void @foo0()
+ br label %sw.epilog
+
+sw.bb.1: ; preds = %entry, %entry
+ tail call void @foo1()
+ br label %sw.epilog
+
+sw.epilog: ; preds = %entry, %sw.bb, %sw.bb.1
+ ret void
+}
More information about the llvm-commits
mailing list