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

clang 3.4 aborts when compiling dlaed3_ function in Numeric-24.2 on i386 with -fPIC -march=athlon64 #19403

Open
llvmbot opened this issue Mar 3, 2014 · 26 comments
Labels
bugzilla Issues migrated from bugzilla clang Clang issues not falling into any other category

Comments

@llvmbot
Copy link
Collaborator

llvmbot commented Mar 3, 2014

Bugzilla Link 19029
Version 3.4
OS FreeBSD
Attachments run script, preprocessed source
Reporter LLVM Bugzilla Contributor
CC @DimitryAndric,@hfinkel,@jmolloy,@zygoloid

Extended Description

When attempting to compile the dlapack_lite.c file in the python Numeric-24.2 module, clang aborts when it encounters the dlaed3_() function if -march=athlon64 is specified. Clang does not abort without -march=athlon64.

cc -c -O2 -fno-strict-aliasing -fPIC -march=athlon64 dlaed3_.c

Instruction does not dominate all uses!
%arrayidx106 = getelementptr inbounds double* %dlamda, i32 %sub83
%bound1492 = icmp ule double* %arrayidx106, %scevgep473
Instruction does not dominate all uses!
%arrayidx106 = getelementptr inbounds double* %dlamda, i32 %sub83
%bound0491 = icmp ule double* %scevgep471, %arrayidx106
Broken module found, compilation aborted!
Stack dump:
0. Program arguments: /usr/bin/cc -cc1 -triple i386-unknown-freebsd11.0 -emit-obj -disable-free -main-file-name dlaed3_.c -mrelocation-model pic -pic-level 2 -mdisable-fp-elim -relaxed-aliasing -masm-verbose -mconstructor-aliases -target-cpu athlon64 -coverage-file /usr/ports/math/py-numeric/work/Numeric-24.2/Src/dlaed3_.o -resource-dir /usr/bin/../lib/clang/3.4 -O2 -fdebug-compilation-dir /usr/ports/math/py-numeric/work/Numeric-24.2/Src -ferror-limit 19 -fmessage-length 191 -mstackrealign -fobjc-runtime=gnustep -fdiagnostics-show-option -fcolor-diagnostics -vectorize-loops -vectorize-slp -o dlaed3_.o -x c dlaed3_.c

  1. parser at end of file
  2. Code generation
  3. Running pass 'Function Pass Manager' on module 'dlaed3_.c'.
  4. Running pass 'Module Verifier' on function '@dlaed3_'
    cc: error: unable to execute command: Abort trap (core dumped)
    cc: error: clang frontend command failed due to signal (use -v to see invocation)
    FreeBSD clang version 3.4 (tags/RELEASE_34/final 197956) 2014021
    Target: i386-unknown-freebsd11.0
    Thread model: posix
    cc: note: diagnostic msg: PLEASE submit a bug report to http://llvm.org/bugs/ and include the crash backtrace, preprocessed source, and associated run script.
    cc: note: diagnostic msg:

@DimitryAndric
Copy link
Collaborator

Testcase reduces to just this:

a;
dlaed3_(double *q, double *dlamda, double *w) {
int b;
static c, j;
--dlamda;
-a;
for (;; ++j) {
b = j - 1;
for (; c <= b; ++c)
w[c] = q[j] - dlamda[j];
}
}

Strangely enough, it seems to be fixed by:

http://llvm.org/viewvc/llvm-project?view=revision&revision=205264

It also fixes a very similar-looking bug reported by a user of the FreeBSD editors/libreoffice port here:

http://www.freebsd.org/cgi/query-pr.cgi?pr=187177

Hal, I've put you on CC since you are the author of that commit. Any idea if the commit might be just hiding some other problem?

@hfinkel
Copy link
Collaborator

hfinkel commented Apr 22, 2014

Hal, I've put you on CC since you are the author of that commit. Any idea
if the commit might be just hiding some other problem?

That commit did not fix anything, but did change some pass ordering. I'm fairly certain that anything "fixed" by that commit is now just hidden. If you compile with -fno-unroll-loops does the bug come back?

@DimitryAndric
Copy link
Collaborator

If you compile with -fno-unroll-loops does the bug come back?

Yep, with trunk r206915 and -fno-unroll-loops, it bombs again:

$ /share/dim/llvm/206915-trunk-freebsd11-i386-ninja-rel-1/bin/clang -cc1 -triple i386-unknown-freebsd11.0 -emit-obj -disable-free -main-file-name pr19029-reduced.c -mrelocation-model pic -pic-level 2 -mdisable-fp-elim -relaxed-aliasing -masm-verbose -mconstructor-aliases -target-cpu athlon64 -O2 -ferror-limit 19 -fmessage-length 191 -mstackrealign -fobjc-runtime=gnustep -fdiagnostics-show-option -fcolor-diagnostics -vectorize-loops -vectorize-slp -fno-unroll-loops -x c pr19029-reduced.c
pr19029-reduced.c:1:1: warning: type specifier missing, defaults to 'int' [-Wimplicit-int]
a;
^
pr19029-reduced.c:2:1: warning: type specifier missing, defaults to 'int' [-Wimplicit-int]
dlaed3_(double *q, double *dlamda, double *w) {
^~~~~~~
pr19029-reduced.c:4:10: warning: type specifier missing, defaults to 'int' [-Wimplicit-int]
static c, j;

pr19029-reduced.c:4:13: warning: type specifier missing, defaults to 'int' [-Wimplicit-int]
static c, j;
~~~~~~    ^
pr19029-reduced.c:6:3: warning: expression result unused [-Wunused-value]
-a;
^~
Instruction does not dominate all uses!
%27 = getelementptr inbounds double* %dlamda, i32 %6
%bound112 = icmp ule double* %27, %scevgep6
Instruction does not dominate all uses!
%27 = getelementptr inbounds double* %dlamda, i32 %6
%bound011 = icmp ule double* %scevgep, %27
Instruction does not dominate all uses!
%25 = getelementptr inbounds double* %q, i32 %3
%bound1 = icmp ule double* %25, %scevgep6
Instruction does not dominate all uses!
%25 = getelementptr inbounds double* %q, i32 %3
%bound0 = icmp ule double* %scevgep, %25
fatal error: error in backend: Broken function found, compilation aborted!

@DimitryAndric
Copy link
Collaborator

...

Yep, with trunk r206915 and -fno-unroll-loops, it bombs again:

By bisecting backwards, I found out this error seems to have been introduced here:

http://llvm.org/viewvc/llvm-project?view=revision&revision=189858

"Enable late-vectorization by default. This patch changes the default setting for the LateVectorization flag that controls where the loop-vectorizer is ran."

I guess the actual bug is yet another side-effect exposed by this change? Nadav, since you authored r189858, I've put you on CC too, do you have any idea?

@DimitryAndric
Copy link
Collaborator

More general testcase, reproduces with any target CPU

...

It also fixes a very similar-looking bug reported by a user of the FreeBSD
editors/libreoffice port here:

http://www.freebsd.org/cgi/query-pr.cgi?pr=187177

Here is a small testcase reduced from that bug's original, which crashes clang trunk r206915 in the same manner, without even setting any CPU type:

$ clang -cc1 -triple x86_64-unknown-linux -emit-obj -relaxed-aliasing -O2 -vectorize-loops -fno-unroll-loops pr19029-2.cpp
Instruction does not dominate all uses!
%24 = getelementptr inbounds %struct._rtl_uString* %2, i64 0, i32 2, i64 %13
%bc7 = bitcast i16* %24 to i8*
Instruction does not dominate all uses!
%24 = getelementptr inbounds %struct._rtl_uString* %2, i64 0, i32 2, i64 %13
%bc = bitcast i16* %24 to i8*
fatal error: error in backend: Broken function found, compilation aborted!

Some additional data points:

  • Removing -relaxed-aliasing makes the bug disappear.
  • Lowering to -O1 makes the bug disappear.
  • Removing -vectorize-loops makes the bug disappear.
  • And obviously, removing -fno-unroll-loops also makes the bug disappear.

@DimitryAndric
Copy link
Collaborator

By bisecting backwards, I found out this error seems to have been introduced
here:

http://llvm.org/viewvc/llvm-project?view=revision&revision=189858

"Enable late-vectorization by default. This patch changes the default
setting for the LateVectorization flag that controls where the
loop-vectorizer is ran."

So when forcing late vectorization on, using -mllvm -late-vectorize=true, I searched backwards again, and now ended up at this previous revision (again by nadav), which seems to introduce the crash:

http://llvm.org/viewvc/llvm-project?view=revision&revision=189539

"This patch moves the SLP-vectorizer and BB-vectorizer back into SCC passes"

I'm not sure if there is any option I can enable for earlier revisions, to partially undo this, so I can figure out where the actual problem originates?

@DimitryAndric
Copy link
Collaborator

For completeness' sake, both testcases can be reproduced by using the following flags:

clang -cc1 -triple x86_64-unknown-freebsd11.0 -emit-obj -O2 -vectorize-loops -mllvm -late-vectorize=true

The actual triple does not matter too much, I also tried:

  • i386-unknown-freebsd11.0
  • i386-unknown-linux
  • x86_64-unknown-linux

@llvmbot
Copy link
Collaborator Author

llvmbot commented Apr 23, 2014

It looks like a bug in the loop-vectorizer. Can you reduce the test case to a bitcode file?

@DimitryAndric
Copy link
Collaborator

.ll version of first reduced testcase
I can convert the testcases to .ll format, that seems to work fine. Here is the .ll version of the first one. When I attempt to run llvm-as (from trunk r206915) on it, I get the same backend error as before:

llvm-as: assembly parsed, but does not verify as correct!
Instruction does not dominate all uses!
%43 = getelementptr inbounds double* %dlamda, i64 %.sum
%bound112 = icmp ule double* %43, %scevgep6
Instruction does not dominate all uses!
%43 = getelementptr inbounds double* %dlamda, i64 %.sum
%bound011 = icmp ule double* %scevgep, %43
Instruction does not dominate all uses!
%41 = getelementptr inbounds double* %q, i64 %40
%bound1 = icmp ule double* %41, %scevgep6
Instruction does not dominate all uses!
%41 = getelementptr inbounds double* %q, i64 %40
%bound0 = icmp ule double* %scevgep, %41
Broken module found, compilation terminated.
Broken module found, compilation terminated.

@DimitryAndric
Copy link
Collaborator

.ll version of second reduced testcase
Similar to the first .ll testcase, this crashes llvm-as:

$ llvm-as pr19029-2.ll
llvm-as: assembly parsed, but does not verify as correct!
Instruction does not dominate all uses!
%33 = getelementptr inbounds %struct._rtl_uString* %2, i64 0, i32 2, i64 %12
%bc8 = bitcast i16* %33 to i8*
Instruction does not dominate all uses!
%33 = getelementptr inbounds %struct._rtl_uString* %2, i64 0, i32 2, i64 %12
%bc = bitcast i16* %33 to i8*
Broken module found, compilation terminated.
Broken module found, compilation terminated.

@llvmbot
Copy link
Collaborator Author

llvmbot commented Apr 23, 2014

There is a clang flag for printing the IR before every transformation. I think that the generated LL file that you attached is already invalid. We need to catch it before it becomes invalid.

@DimitryAndric
Copy link
Collaborator

The flag appears to be -mllvm -print-before-all, but most of the 79 intermediate IR files don't seem to be complete, e.g. the very first one prints:

llvm-as: temp01.ll:12:41: error: use of undefined metadata '#0'
%5 = load double** %3, align 8, !tbaa !​0
^

Others result in errors like:

llvm-as: temp24.ll:3:8: error: expected 'type' after '='
%5 = load i32* @​dlaed3_.c, align 4, !tbaa !​0
^

The pass numbers that do work without errors are:

08: *** IR Dump Before Interprocedural Sparse Conditional Constant Propagation
09: *** IR Dump Before Dead Argument Elimination
60: *** IR Dump Before Function Integration/Inlining ***printing a value
61: *** IR Dump Before Deduce function attributes ***printing a value
62: *** IR Dump Before A No-Op Barrier Pass

Then pass 75 ('Before Strip Unused Function Prototypes') dies with the 'Instruction does not dominate all uses!' error. The previous pass is 'Before Simplify the CFG', but the produced IR is apparently not valid.

@llvmbot
Copy link
Collaborator Author

llvmbot commented Apr 23, 2014

What was the last pass that finished successfully? You can manually place a breakpoint before that pass and dump the module.

@DimitryAndric
Copy link
Collaborator

Tarball with intermediate .ll files
Here's the collection of each intermediate .ll file. The temp74.ll file is the one that causes the crash, most of the earlier ones don't get accepted by llvm-as.

@hfinkel
Copy link
Collaborator

hfinkel commented Apr 24, 2014

Created attachment 12427 [details]
Tarball with intermediate .ll files

Here's the collection of each intermediate .ll file. The temp74.ll file is
the one that causes the crash, most of the earlier ones don't get accepted
by llvm-as.

How exactly do you run these to reproduce the bad output?

@DimitryAndric
Copy link
Collaborator

Created attachment 12427 [details]
Tarball with intermediate .ll files

Here's the collection of each intermediate .ll file. The temp74.ll file is
the one that causes the crash, most of the earlier ones don't get accepted
by llvm-as.

How exactly do you run these to reproduce the bad output?

Just run 'llvm-as' on them; no special flags needed.

@hfinkel
Copy link
Collaborator

hfinkel commented Apr 24, 2014

Created attachment 12427 [details]
Tarball with intermediate .ll files

Here's the collection of each intermediate .ll file. The temp74.ll file is
the one that causes the crash, most of the earlier ones don't get accepted
by llvm-as.

How exactly do you run these to reproduce the bad output?

Just run 'llvm-as' on them; no special flags needed.

How did you generate the files? If we're to isolate the bug, we need to be able to run the optimization pass so that it generates the bad output. llvm-as will just verify that the output is invalid once the bug has already been triggered.

@DimitryAndric
Copy link
Collaborator

How did you generate the files? If we're to isolate the bug, we need to be
able to run the optimization pass so that it generates the bad output.

I couldn't get bugpoint to work (it tries to run /usr/bin/gcc, which does not exist on my system... :), so I used -mllvm -print-before-all as a clang option, e.g.:

clang -cc1 -triple x86_64-unknown-freebsd11.0 -emit-obj -O2 -vectorize-loops -mllvm -late-vectorize=true -mllvm -print-before-all pr19029-1.c 2> irdumps.txt

This logs all the IR into irdumps.txt. I use the following python fragment to split out the dumps in separate files:

#!/usr/bin/env python
irfile = open('irdumps.txt', 'r')
counter = 0
outfile = None
for line in irfile:
if line.startswith('*** IR Dump'):
counter += 1
if outfile:
outfile.close()
print 'Opening output file %d...' % counter
outfile = open('temp%02d.ll' % counter, 'w')
outfile.write('; %s' % line)
elif outfile:
outfile.write(line)
if outfile:
outfile.close()

Unfortunately, not each pass logs the full IR, for some reason, so not each individual dump is useful at this time. Nadav suggested instead to run clang in gdb and set a breakpoint on the pass manager, but I'm not sure how to dump the current IR as a file from gdb...

@DimitryAndric
Copy link
Collaborator

IR of pr19029-1 just before FPPassManager's Loop Vectorization pass
It turns out the IR becomes invalid after FPPassManager's Loop Vectorization pass. I will attach the .ll from before and after.

@DimitryAndric
Copy link
Collaborator

@DimitryAndric
Copy link
Collaborator

Note that LoopVectorize::runOnFunction() calls processLoop() only once. Before the call, the module is still OK, after the call it is broken.

@DimitryAndric
Copy link
Collaborator

Some more investigation shows that LoopVectorize::processLoop() calls InnerLoopVectorizer::vectorize(). This first calls InnerLoopVectorizer::createEmptyLoop(), after which the IR is already bad. This is not the case before the createEmptyLoop() call.

I'm not sure if the IR is supposed to be consistent throughout the InnerLoopVectorizer implementation, however...

@DimitryAndric
Copy link
Collaborator

Nadav, do you need any other .ll output? I think attachment 12445 is the last stage before the LoopVectorizer does something bad to the IR.

@DimitryAndric
Copy link
Collaborator

Ping :)

@DimitryAndric
Copy link
Collaborator

Ping 2 :)

@DimitryAndric
Copy link
Collaborator

Turns out this finally got fixed in https://reviews.llvm.org/rL229419 ("Run LICM as part of the cleanup phase from the scalar optimizer") by James Molloy.

@llvmbot llvmbot transferred this issue from llvm/llvm-bugzilla-archive Dec 9, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bugzilla Issues migrated from bugzilla clang Clang issues not falling into any other category
Projects
None yet
Development

No branches or pull requests

3 participants