This is an archive of the discontinued LLVM Phabricator instance.

[WebAssembly] Fix FastISel of condition in different block (PR51651)
ClosedPublic

Authored by nikic on Aug 27 2021, 1:26 PM.

Details

Summary

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: https://github.com/llvm/llvm-project/blob/5b6b090cf2129228f05d7d0f504676b67f7524cf/llvm/lib/Target/X86/X86FastISel.cpp#L1648

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

Diff Detail

Event Timeline

nikic created this revision.Aug 27 2021, 1:26 PM
nikic requested review of this revision.Aug 27 2021, 1:26 PM
Herald added a project: Restricted Project. · View Herald TranscriptAug 27 2021, 1:26 PM
nikic added inline comments.Aug 27 2021, 1:27 PM
llvm/lib/Target/WebAssembly/WebAssemblyFastISel.cpp
433

This code could principally have the same issue. However, it's also dead code, so I just dropped it entirely.

The reason it's dead is that V must have i1 type here (used either as a branch or select condition), while this checks that the type is i32.

tlively accepted this revision.Aug 27 2021, 2:02 PM

Looks good, thanks!

This revision is now accepted and ready to land.Aug 27 2021, 2:02 PM