Files
clang-p2996/llvm/test/CodeGen/WebAssembly/pr51651.ll
Nikita Popov 16086d47c0 [WebAssembly] Fix FastISel of condition in different block (PR51651)
If the icmp is in a different block, then the register for the icmp
operand may not be initialized, as it nominally does not have
cross-block uses. Add a check that the icmp is in the same block
as the branch, which should be the common case.

This matches what X86 FastISel does:
5b6b090cf2/llvm/lib/Target/X86/X86FastISel.cpp (L1648)

The "not" transform that could have a similar issue is dropped
entirely, because it is currently dead: The incoming value is
a branch or select condition of type i1, but this code requires
an i32 to trigger.

Fixes https://bugs.llvm.org/show_bug.cgi?id=51651.

Differential Revision: https://reviews.llvm.org/D108840
2021-08-28 10:28:24 +02:00

40 lines
1.1 KiB
LLVM

; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc -O0 -mtriple=wasm32-unknown-unknown -wasm-disable-explicit-locals -wasm-keep-registers < %s | FileCheck %s
define i32 @test(i8* %p, i8* %p2) {
; CHECK-LABEL: test:
; CHECK: .functype test (i32, i32) -> (i32)
; CHECK-NEXT: # %bb.0:
; CHECK-NEXT: i32.load8_u $3=, 0($0)
; CHECK-NEXT: i32.eqz $2=, $3
; CHECK-NEXT: i32.store8 0($1), $3
; CHECK-NEXT: # %bb.1: # %bb2
; CHECK-NEXT: i32.const $4=, 1
; CHECK-NEXT: i32.and $5=, $2, $4
; CHECK-NEXT: block
; CHECK-NEXT: br_if 0, $5 # 0: down to label0
; CHECK-NEXT: # %bb.2: # %bb4
; CHECK-NEXT: i32.const $6=, 0
; CHECK-NEXT: return $6
; CHECK-NEXT: .LBB0_3: # %bb3
; CHECK-NEXT: end_block # label0:
; CHECK-NEXT: i32.const $7=, 1
; CHECK-NEXT: return $7
%v = load i8, i8* %p
%v.ext = zext i8 %v to i32
%cond = icmp eq i32 %v.ext, 0
; Cause FastISel abort.
%shl = shl i8 %v, 0
store i8 %shl, i8* %p2
br label %bb2
bb2:
br i1 %cond, label %bb3, label %bb4
bb4:
ret i32 0
bb3:
ret i32 1
}