forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[InstCombine] Prevent infinite loop with two shifts
The following pattern: `(C2 << X) << C1` will usually be transformed into `(C2 << C1) << X`, essentially swapping `X` and `C1`. However, this should not be done when `X` is also a constant, as this can lead to swapping both constants indefinitely. This fixes llvm#118798
- Loading branch information
Showing
2 changed files
with
25 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py | ||
; RUN: opt < %s -passes=instcombine -S | FileCheck %s | ||
|
||
@c = external constant i8 | ||
@c2 = external constant i8 | ||
|
||
define i16 @testfunc() { | ||
; CHECK-LABEL: @testfunc( | ||
; CHECK-NEXT: entry: | ||
; CHECK-NEXT: [[TMP0:%.*]] = shl nuw i64 1, ptrtoint (ptr @c2 to i64) | ||
; CHECK-NEXT: [[TMP1:%.*]] = shl i64 [[TMP0]], ptrtoint (ptr @c to i64) | ||
; CHECK-NEXT: [[TMP2:%.*]] = inttoptr i64 [[TMP1]] to ptr | ||
; CHECK-NEXT: [[TMP3:%.*]] = load i16, ptr [[TMP2]], align 1 | ||
; CHECK-NEXT: ret i16 [[TMP3]] | ||
; | ||
entry: | ||
%0 = shl i64 1, ptrtoint (ptr @c2 to i64) | ||
%1 = shl i64 %0, ptrtoint (ptr @c to i64) | ||
%2 = inttoptr i64 %1 to ptr | ||
%3 = load i16, ptr %2, align 1 | ||
ret i16 %3 | ||
} |