Nikita Popov a105877646
[InstCombine] Remove some of the complexity-based canonicalization (#91185)
The idea behind this canonicalization is that it allows us to handle less
patterns, because we know that some will be canonicalized away. This is
indeed very useful to e.g. know that constants are always on the right.

However, this is only useful if the canonicalization is actually
reliable. This is the case for constants, but not for arguments: Moving
these to the right makes it look like the "more complex" expression is
guaranteed to be on the left, but this is not actually the case in
practice. It fails as soon as you replace the argument with another
instruction.

The end result is that it looks like things correctly work in tests,
while they actually don't. We use the "thwart complexity-based
canonicalization" trick to handle this in tests, but it's often a
challenge for new contributors to get this right, and based on the
regressions this PR originally exposed, we clearly don't get this right
in many cases.

For this reason, I think that it's better to remove this complexity
canonicalization. It will make it much easier to write tests for
commuted cases and make sure that they are handled.
2024-08-21 12:02:54 +02:00

37 lines
1.2 KiB
LLVM

; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 4
; RUN: opt -passes=instcombine -S < %s | FileCheck %s
define i32 @main(ptr %a, i8 %a0, i32 %conv, i8 %a1) {
; CHECK-LABEL: define i32 @main(
; CHECK-SAME: ptr [[A:%.*]], i8 [[A0:%.*]], i32 [[CONV:%.*]], i8 [[A1:%.*]]) {
; CHECK-NEXT: [[A3:%.*]] = trunc i32 [[CONV]] to i8
; CHECK-NEXT: [[OR11:%.*]] = or i8 [[A0]], [[A3]]
; CHECK-NEXT: store i8 [[OR11]], ptr [[A]], align 1
; CHECK-NEXT: [[CMP:%.*]] = icmp slt i8 [[A1]], 0
; CHECK-NEXT: call void @llvm.assume(i1 [[CMP]])
; CHECK-NEXT: ret i32 [[CONV]]
;
%conv1 = sext i8 %a1 to i32
%a2 = xor i32 %conv, 1
%or = or i32 %conv1, %conv
%not = xor i32 %or, -1
%shr = lshr i32 %not, 1
%add.neg3 = sub i32 %a2, %shr
%conv24 = trunc i32 %add.neg3 to i8
store i8 %conv24, ptr %a, align 1
%sext = shl i32 %conv, 0
%conv3 = ashr i32 %sext, 0
%a3 = trunc i32 %conv to i8
%conv5 = or i8 %a3, 0
%xor6 = xor i8 %conv5, 0
%xor816 = xor i8 %a0, 0
%a4 = xor i8 %xor816, 0
%or11 = or i8 %xor6, %a4
store i8 %or11, ptr %a, align 1
%cmp = icmp slt i8 %a1, 0
call void @llvm.assume(i1 %cmp)
ret i32 %conv3
}
declare void @llvm.assume(i1)