1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 20:12:56 +02:00
llvm-mirror/test/CodeGen/WebAssembly/implicit-def.ll
Thomas Lively a5cfab2155 [WebAssembly] Emit a splat for v128 IMPLICIT_DEF
Summary:
This is a code size savings and is also important to get runnable code
while engines do not support v128.const.

Reviewers: aheejin, dschuff

Subscribers: sbc100, jgravelle-google, sunfish, llvm-commits

Differential Revision: https://reviews.llvm.org/D55910

llvm-svn: 349724
2018-12-20 04:20:32 +00:00

134 lines
4.0 KiB
LLVM

; RUN: llc -o - %s -asm-verbose=false -wasm-keep-registers -disable-wasm-fallthrough-return-opt -mattr=+simd128 | FileCheck %s
target datalayout = "e-m:e-p:32:32-i64:64-n32:64-S128"
target triple = "wasm32-unknown-unknown"
; Test that stackified IMPLICIT_DEF instructions are converted into
; CONST_XXX instructions to provide an explicit push.
; CHECK-LABEL: implicit_def_i32:
; CHECK: .LBB{{[0-9]+}}_4:{{$}}
; CHECK-NEXT: end_block{{$}}
; CHECK-NEXT: i32.const $push[[R:[0-9]+]]=, 0{{$}}
; CHECK-NEXT: return $pop[[R]]{{$}}
; CHECK-NEXT: end_function{{$}}
define i32 @implicit_def_i32() {
br i1 undef, label %A, label %X
A: ; preds = %0
%d = icmp slt i1 0, 0
br i1 %d, label %C, label %B
B: ; preds = %A
br label %C
C: ; preds = %B, %A
%h = phi i32 [ undef, %A ], [ 0, %B ]
br label %X
X: ; preds = %0, C
%i = phi i32 [ 1, %0 ], [ %h, %C ]
ret i32 %i
}
; CHECK-LABEL: implicit_def_i64:
; CHECK: .LBB{{[0-9]+}}_4:{{$}}
; CHECK-NEXT: end_block{{$}}
; CHECK-NEXT: i64.const $push[[R:[0-9]+]]=, 0{{$}}
; CHECK-NEXT: return $pop[[R]]{{$}}
; CHECK-NEXT: end_function{{$}}
define i64 @implicit_def_i64() {
br i1 undef, label %A, label %X
A: ; preds = %0
%d = icmp slt i1 0, 0
br i1 %d, label %C, label %B
B: ; preds = %A
br label %C
C: ; preds = %B, %A
%h = phi i64 [ undef, %A ], [ 0, %B ]
br label %X
X: ; preds = %0, C
%i = phi i64 [ 1, %0 ], [ %h, %C ]
ret i64 %i
}
; CHECK-LABEL: implicit_def_f32:
; CHECK: .LBB{{[0-9]+}}_4:{{$}}
; CHECK-NEXT: end_block{{$}}
; CHECK-NEXT: f32.const $push[[R:[0-9]+]]=, 0x0p0{{$}}
; CHECK-NEXT: return $pop[[R]]{{$}}
; CHECK-NEXT: end_function{{$}}
define float @implicit_def_f32() {
br i1 undef, label %A, label %X
A: ; preds = %0
%d = icmp slt i1 0, 0
br i1 %d, label %C, label %B
B: ; preds = %A
br label %C
C: ; preds = %B, %A
%h = phi float [ undef, %A ], [ 0.0, %B ]
br label %X
X: ; preds = %0, C
%i = phi float [ 1.0, %0 ], [ %h, %C ]
ret float %i
}
; CHECK-LABEL: implicit_def_f64:
; CHECK: .LBB{{[0-9]+}}_4:{{$}}
; CHECK-NEXT: end_block{{$}}
; CHECK-NEXT: f64.const $push[[R:[0-9]+]]=, 0x0p0{{$}}
; CHECK-NEXT: return $pop[[R]]{{$}}
; CHECK-NEXT: end_function{{$}}
define double @implicit_def_f64() {
br i1 undef, label %A, label %X
A: ; preds = %0
%d = icmp slt i1 0, 0
br i1 %d, label %C, label %B
B: ; preds = %A
br label %C
C: ; preds = %B, %A
%h = phi double [ undef, %A ], [ 0.0, %B ]
br label %X
X: ; preds = %0, C
%i = phi double [ 1.0, %0 ], [ %h, %C ]
ret double %i
}
; CHECK-LABEL: implicit_def_v4i32:
; CHECK: .LBB{{[0-9]+}}_4:{{$}}
; CHECK-NEXT: end_block{{$}}
; CHECK-NEXT: i32.const $push[[L0:[0-9]+]]=, 0{{$}}
; CHECK-NEXT: i32x4.splat $push[[R:[0-9]+]]=, $pop[[L0]]
; CHECK-NEXT: return $pop[[R]]{{$}}
; CHECK-NEXT: end_function{{$}}
define <4 x i32> @implicit_def_v4i32() {
br i1 undef, label %A, label %X
A: ; preds = %0
%d = icmp slt i1 0, 0
br i1 %d, label %C, label %B
B: ; preds = %A
br label %C
C: ; preds = %B, %A
%h = phi <4 x i32> [ undef, %A ], [ <i32 0, i32 0, i32 0, i32 0>, %B ]
br label %X
X: ; preds = %0, C
%i = phi <4 x i32> [ <i32 1, i32 1, i32 1, i32 1>, %0 ], [ %h, %C ]
ret <4 x i32> %i
}