Files
clang-p2996/llvm/test/Transforms/CodeGenPrepare/X86/pr72046.ll
Nikita Popov c9832da350 [CGP] Drop nneg flag when moving zext past instruction (#72103)
Fix the issue by not reusing the zext at all. The code already handles
creation of new zexts if more than one is needed. Always use that
code-path instead of trying to reuse the old zext in some case.
(Alternatively we could also drop poison-generating flags on the old
zext, but it seems cleaner to not reuse it at all, especially if it's
not always possible anyway.)

Fixes https://github.com/llvm/llvm-project/issues/72046.
2023-11-14 09:03:06 +01:00

20 lines
859 B
LLVM

; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 3
; RUN: opt -S -codegenprepare -mtriple=x86_64-unknown-unknown < %s | FileCheck %s
; Make sure the nneg flag is dropped when lshr and zext are interchanged.
define i8 @get(ptr %box, i32 %in) {
; CHECK-LABEL: define i8 @get(
; CHECK-SAME: ptr [[BOX:%.*]], i32 [[IN:%.*]]) {
; CHECK-NEXT: [[PROMOTED:%.*]] = zext i32 [[IN]] to i64
; CHECK-NEXT: [[SHR:%.*]] = lshr i64 [[PROMOTED]], 24
; CHECK-NEXT: [[ARRAYIDX:%.*]] = getelementptr inbounds i8, ptr [[BOX]], i64 [[SHR]]
; CHECK-NEXT: [[RES:%.*]] = load i8, ptr [[ARRAYIDX]], align 1
; CHECK-NEXT: ret i8 [[RES]]
;
%shr = lshr i32 %in, 24
%idxprom = zext nneg i32 %shr to i64
%arrayidx = getelementptr inbounds i8, ptr %box, i64 %idxprom
%res = load i8, ptr %arrayidx, align 1
ret i8 %res
}