summaryrefslogtreecommitdiffstats
path: root/clang/lib/Frontend/CompilerInvocation.cpp
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2012-06-12 14:33:56 +0000
committerDuncan Sands <baldrick@free.fr>2012-06-12 14:33:56 +0000
commitd7aeefebd6b049f017711cd7c6ef5f217a17b673 (patch)
tree6c4c990461381d653e5b14321b132eba7c9c69e5 /clang/lib/Frontend/CompilerInvocation.cpp
parent9b4f3700958c7342eda432d0d0f38b2b53f4cb5e (diff)
downloadbcm5719-llvm-d7aeefebd6b049f017711cd7c6ef5f217a17b673.tar.gz
bcm5719-llvm-d7aeefebd6b049f017711cd7c6ef5f217a17b673.zip
Now that Reassociate's LinearizeExprTree can look through arbitrary expression
topologies, it is quite possible for a leaf node to have huge multiplicity, for example: x0 = x*x, x1 = x0*x0, x2 = x1*x1, ... rapidly gives a value which is x raised to a vast power (the multiplicity, or weight, of x). This patch fixes the computation of weights by correctly computing them no matter how big they are, rather than just overflowing and getting a wrong value. It turns out that the weight for a value never needs more bits to represent than the value itself, so it is enough to represent weights as APInts of the same bitwidth and do the right overflow-avoiding dance steps when computing weights. As a side-effect it reduces the number of multiplies needed in some cases of large powers. While there, in view of external uses (eg by the vectorizer) I made LinearizeExprTree static, pushing the rank computation out into users. This is progress towards fixing PR13021. llvm-svn: 158358
Diffstat (limited to 'clang/lib/Frontend/CompilerInvocation.cpp')
0 files changed, 0 insertions, 0 deletions
OpenPOWER on IntegriCloud