Displaying 1 result from an estimated 1 matches for "23fb1e8a".
2010 Feb 03
1
[LLVMdev] scalarrepl tuning
...e total size and number of elements for each aggregate encountered by SROA.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: sroa-stats.png
Type: image/png
Size: 6939 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100203/23fb1e8a/attachment.png>
-------------- next part --------------
The old SROA code would only consider the points in the lower left quadrant: size <= 128 bytes and elements <= 32. The obvious diagonal lines made me realize that most of the large aggregates are arrays (duh!) and that it would be...