<feed xmlns='http://www.w3.org/2005/Atom'>
<title>llvm/lib/Transforms/Scalar, branch testing</title>
<subtitle>http://llvm.org</subtitle>
<id>https://git.amat.us/llvm/atom/lib/Transforms/Scalar?h=testing</id>
<link rel='self' href='https://git.amat.us/llvm/atom/lib/Transforms/Scalar?h=testing'/>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/'/>
<updated>2013-03-21T09:52:18Z</updated>
<entry>
<title>[SROA] Prefix names using a custom IRBuilder inserter.</title>
<updated>2013-03-21T09:52:18Z</updated>
<author>
<name>Chandler Carruth</name>
<email>chandlerc@gmail.com</email>
</author>
<published>2013-03-21T09:52:18Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=d647ec52396ed0f1886537114ab587c71fc43565'/>
<id>urn:sha1:d647ec52396ed0f1886537114ab587c71fc43565</id>
<content type='text'>
The key part of this is ensuring that name prefixes remain in a Twine
form until we get to a point where we can nuke them under NDEBUG. This
is tricky using the old APIs as they played fast and loose with Twine,
which is prone to serious error. The inserter is much cleaner as it is
actually in the call stack leading to the setName call, and so has
a good opportunity to prepend the prefix.

This matters more than you might imagine because most runs over an
alloca find a single partition, and rewrite 3 or 4 instructions
referring to it. As a consequence doing this lazily and exclusively with
Twine allows the optimizer to delete more of it and shaves another 2% to
3% off of the release build's SROA run time for PR15412. I also think
the APIs are cleaner, and the use of Twine is more reliable, so
I consider it a win-win despite the churn required to reach this state.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177631 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>simplify-libcalls: Removed unused variable</title>
<updated>2013-03-21T02:44:07Z</updated>
<author>
<name>Meador Inge</name>
<email>meadori@codesourcery.com</email>
</author>
<published>2013-03-21T02:44:07Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=a2c6256b2afc7943d55c0965f3bb081f7a893b53'/>
<id>urn:sha1:a2c6256b2afc7943d55c0965f3bb081f7a893b53</id>
<content type='text'>
The 'Modified' variable should have been removed from SimplifyLibCalls
in r177619, but was missed.  This commit removes it.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177622 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Move library call prototype attribute inference to functionattrs</title>
<updated>2013-03-21T00:55:59Z</updated>
<author>
<name>Meador Inge</name>
<email>meadori@codesourcery.com</email>
</author>
<published>2013-03-21T00:55:59Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=cf47ce616c53040cb8aa09eff9dc0b693e571842'/>
<id>urn:sha1:cf47ce616c53040cb8aa09eff9dc0b693e571842</id>
<content type='text'>
The simplify-libcalls pass implemented a doInitialization hook to infer
function prototype attributes for well-known functions.  Given that the
simplify-libcalls pass is going away *and* that the functionattrs pass
is already in place to deduce function attributes, I am moving this logic
to the functionattrs pass.  This approach was discussed during patch
review:
http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20121126/157465.html.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177619 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Fix a silly search-and-replace goof with r177495 that only broke</title>
<updated>2013-03-20T07:40:56Z</updated>
<author>
<name>Chandler Carruth</name>
<email>chandlerc@gmail.com</email>
</author>
<published>2013-03-20T07:40:56Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=fd060a94a46db75c45b2a1789a8bc597a03e6ac1'/>
<id>urn:sha1:fd060a94a46db75c45b2a1789a8bc597a03e6ac1</id>
<content type='text'>
non-release builds.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177498 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>[SROA] Don't preserve the IR names in release builds.</title>
<updated>2013-03-20T07:30:36Z</updated>
<author>
<name>Chandler Carruth</name>
<email>chandlerc@gmail.com</email>
</author>
<published>2013-03-20T07:30:36Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=05c6d0b16f8c442a29b03b312f9fb6910955a8ec'/>
<id>urn:sha1:05c6d0b16f8c442a29b03b312f9fb6910955a8ec</id>
<content type='text'>
This is espcially important because the new SROA pass goes to great
lengths to provide helpful names for debugging, and as a consequence
they can become very slow to render.

Good for between 5% and 15% of the SROA runtime on some slow test cases
such as the one in PR15412.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177495 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Move the endif to the correct line so we don't have warnings about</title>
<updated>2013-03-20T06:47:00Z</updated>
<author>
<name>Chandler Carruth</name>
<email>chandlerc@gmail.com</email>
</author>
<published>2013-03-20T06:47:00Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=30ee9c2093897a0edfe3bd23e6c754c4d88cbd88'/>
<id>urn:sha1:30ee9c2093897a0edfe3bd23e6c754c4d88cbd88</id>
<content type='text'>
unused statistics variables.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177494 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Introduce some new statistics to help track the exact behavior of the</title>
<updated>2013-03-20T06:30:46Z</updated>
<author>
<name>Chandler Carruth</name>
<email>chandlerc@gmail.com</email>
</author>
<published>2013-03-20T06:30:46Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=f2b649da0f433511e9e0d602ee59e9f687dd846c'/>
<id>urn:sha1:f2b649da0f433511e9e0d602ee59e9f687dd846c</id>
<content type='text'>
new SROA pass.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177493 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Update global merge pass according to Duncan's advices:</title>
<updated>2013-03-19T21:46:49Z</updated>
<author>
<name>Quentin Colombet</name>
<email>qcolombet@apple.com</email>
</author>
<published>2013-03-19T21:46:49Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=9deb91722cc4a7e0aa220b0a210c56ac95c62d73'/>
<id>urn:sha1:9deb91722cc4a7e0aa220b0a210c56ac95c62d73</id>
<content type='text'>
- Remove useless includes
- Change misleading comments
- Move code into doFinalization


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177445 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>IndVarSimplify: do not recompute an IV value outside of the loop if :</title>
<updated>2013-03-19T20:00:22Z</updated>
<author>
<name>Arnaud A. de Grandmaison</name>
<email>arnaud.adegm@gmail.com</email>
</author>
<published>2013-03-19T20:00:22Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=eb9a42e8ab5ffb5a8f02c2f78876ed03dd883416'/>
<id>urn:sha1:eb9a42e8ab5ffb5a8f02c2f78876ed03dd883416</id>
<content type='text'>
- it is trivially known to be used inside the loop in a way that can not be optimized away
- there is no use outside of the loop which can take advantage of the computation hoisting

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177432 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Revert "Cleanup some SCEV logic a bit."</title>
<updated>2013-03-19T05:10:27Z</updated>
<author>
<name>Andrew Trick</name>
<email>atrick@apple.com</email>
</author>
<published>2013-03-19T05:10:27Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=d37c8568e68d0ea3492503cd192783900e2d922a'/>
<id>urn:sha1:d37c8568e68d0ea3492503cd192783900e2d922a</id>
<content type='text'>
This reverts commit 82cd8f7382322bee7a71cdc31f7a923c44d37d32.

Just add a comment instead!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177377 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
</feed>
