Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SCEV] Another SEGV/stack overflow in LoopGuards #122913

Closed
danilaml opened this issue Jan 14, 2025 · 2 comments · Fixed by #123662
Closed

[SCEV] Another SEGV/stack overflow in LoopGuards #122913

danilaml opened this issue Jan 14, 2025 · 2 comments · Fixed by #123662
Assignees
Labels

Comments

@danilaml
Copy link
Collaborator

Similar to #120615. Looks like the fix wasn't a complete one. Here is an example:

target triple = "x86_64-unknown-linux-gnu"

define ptr @f(i32 %0) {
  switch i32 0, label %bb4 [
    i32 1, label %bb4
    i32 2, label %bb4
    i32 3, label %bb4
    i32 4, label %bb1
    i32 5, label %bb4
    i32 6, label %bb4
  ]

bb:                                               ; No predecessors!
  switch i32 0, label %bb4 [
    i32 0, label %bb4
    i32 1, label %bb1
  ]

bb1:                                              ; preds = %bb2, %bb, %1
  %2 = phi i32 [ %3, %bb2 ], [ 0, %bb ], [ 0, %1 ]
  switch i32 %0, label %bb3 [
    i32 0, label %bb2
    i32 1, label %bb2
    i32 2, label %bb2
  ]

bb2:                                              ; preds = %bb1, %bb1, %bb1
  %3 = add i32 %2, 1
  %4 = icmp ult i32 %0, 0
  br i1 %4, label %bb1, label %bb4

bb3:                                              ; preds = %bb1
  unreachable

bb4:                                              ; preds = %bb2, %bb, %bb, %1, %1, %1, %1, %1, %1
  ret ptr null
}

Crashes with the same command line opt -passes=nary-reassociate --scalar-evolution-use-expensive-range-sharpening
godbolt: https://godbolt.org/z/4d3jo8jTz

@juliannagele
Copy link
Member

Thanks, checking!

@danilaml
Copy link
Collaborator Author

@juliannagele Thanks for looking into it! Do you need any additional info?

github-actions bot pushed a commit to arm/arm-toolchain that referenced this issue Jan 22, 2025
…hout predecessor. (#123662)

Attempting to collect loop guards for loops without a predecessor can
lead to non-terminating recursion trying to construct a SCEV.

Fixes llvm/llvm-project#122913.
juliannagele added a commit to juliannagele/llvm-project that referenced this issue Jan 23, 2025
…essor. (llvm#123662)

Attempting to collect loop guards for loops without a predecessor can
lead to non-terminating recursion trying to construct a SCEV.

Fixes llvm#122913.

(cherry picked from commit 137d706)
juliannagele added a commit to swiftlang/llvm-project that referenced this issue Jan 29, 2025
…essor. (llvm#123662) (#9876)

Attempting to collect loop guards for loops without a predecessor can
lead to non-terminating recursion trying to construct a SCEV.

Fixes llvm#122913.

(cherry picked from commit 137d706)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
2 participants