Open Quuxplusone opened 12 years ago
Bugzilla Link | PR13021 |
Status | CONFIRMED |
Importance | P normal |
Reported by | Antoine Balestrat (antoine.balestrat@gmail.com) |
Reported on | 2012-06-04 03:14:12 -0700 |
Last modified on | 2018-02-17 09:32:13 -0800 |
Version | trunk |
Hardware | PC Linux |
CC | anton@korobeynikov.info, baldrick@free.fr, ditaliano@apple.com, geek4civic@gmail.com, llvm-bugs@lists.llvm.org, willdtz@gmail.com |
Fixed by commit(s) | |
Attachments | |
Blocks | |
Blocked by | |
See also |
Maybe due to reassociate bug
Yes, it looks like this is me, and corresponds to this FIXME in reassociate:
// FIXME: Rather than repeating values Weight times, use a vector of
// (ValueEntry, multiplicity) pairs.
It sees a multiply expression which is a**67108864, and in order to be
compatible
with the existing reassociate transforms, which expect this in the form "a list
of copies of a", it pushes 67108864 copies of a into the vector.
I've been working on this but haven't finished yet. I've disabled the transform
at the origin of the problem for the moment.
Test where this still applies:
define float @patatino(float %x) {
%t0 = fmul fast float %x, %x
%t1 = fmul fast float %t0, %t0
%t2 = fmul fast float %t1, %t1
%t3 = fmul fast float %t2, %t2
%t4 = fmul fast float %t3, %t3
%t5 = fmul fast float %t4, %t4
%t6 = fmul fast float %t5, %t5
%t7 = fmul fast float %t6, %t6
%t8 = fmul fast float %t7, %t7
%t9 = fmul fast float %t8, %t8
%t10 = fmul fast float %t9, %t9
%t11 = fmul fast float %t10, %t10
%t12 = fmul fast float %t11, %t11
%t13 = fmul fast float %t12, %t12
%t14 = fmul fast float %t13, %t13
%t15 = fmul fast float %t14, %t14
%t16 = fmul fast float %t15, %t15
%t17 = fmul fast float %t16, %t16
%t18 = fmul fast float %t17, %t17
%t19 = fmul fast float %t18, %t18
%t20 = fmul fast float %t19, %t19
%t21 = fmul fast float %t20, %t20
%t22 = fmul fast float %t21, %t21
%t23 = fmul fast float %t22, %t22
%t24 = fmul fast float %t23, %t23
%t25 = fmul fast float %t24, %t24
%t26 = fmul fast float %t25, %t25
%t27 = fmul fast float %t26, %t26
%t28 = fmul fast float %t27, %t27
ret float %t28
}