-
Notifications
You must be signed in to change notification settings - Fork 12k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
LoadStoreVectorizer hangs on certain examples, when its reorder function goes into a cycle. Detect this cycle and explicitly forbid it, using an assert, and document the resulting crash in a test-case under AArch64.
- Loading branch information
Showing
2 changed files
with
17 additions
and
0 deletions.
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
15 changes: 15 additions & 0 deletions
15
llvm/test/Transforms/LoadStoreVectorizer/AArch64/pr37865.ll
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,15 @@ | ||
; REQUIRES: asserts | ||
; RUN: not --crash opt -mtriple=aarch64 -passes=load-store-vectorizer \ | ||
; RUN: -disable-output %s 2>&1 | FileCheck %s | ||
|
||
define i32 @load_cycle(ptr %x) { | ||
; CHECK: Unexpected cycle while re-ordering instructions | ||
entry: | ||
%gep.x.1 = getelementptr inbounds [2 x i32], ptr %x, i32 0, i32 1 | ||
%load.x.1 = load i32, ptr %gep.x.1 | ||
%rem = urem i32 %load.x.1, 1 | ||
%gep.x.2 = getelementptr inbounds [2 x i32], ptr %x, i32 %rem, i32 0 | ||
%load.x.2 = load i32, ptr %gep.x.2 | ||
%ret = add i32 %load.x.2, %load.x.1 | ||
ret i32 %ret | ||
} |