<feed xmlns='http://www.w3.org/2005/Atom'>
<title>llvm/test/Transforms/InstCombine, branch testing</title>
<subtitle>http://llvm.org</subtitle>
<id>https://git.amat.us/llvm/atom/test/Transforms/InstCombine?h=testing</id>
<link rel='self' href='https://git.amat.us/llvm/atom/test/Transforms/InstCombine?h=testing'/>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/'/>
<updated>2013-03-21T20:28:52Z</updated>
<entry>
<title>Remove unused field in DISubprogram</title>
<updated>2013-03-21T20:28:52Z</updated>
<author>
<name>David Blaikie</name>
<email>dblaikie@gmail.com</email>
</author>
<published>2013-03-21T20:28:52Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=ebb5183a2f16abc7c88241bb42412465f52c2a61'/>
<id>urn:sha1:ebb5183a2f16abc7c88241bb42412465f52c2a61</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177661 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>Split out filename &amp; directory from DIFile to start generalizing over DIScopes</title>
<updated>2013-03-17T21:13:55Z</updated>
<author>
<name>David Blaikie</name>
<email>dblaikie@gmail.com</email>
</author>
<published>2013-03-17T21:13:55Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=b4cf0ab22b5a3ebb720f0b7287fdccfb465b6b7c'/>
<id>urn:sha1:b4cf0ab22b5a3ebb720f0b7287fdccfb465b6b7c</id>
<content type='text'>
This is the first step to making all DIScopes have a common metadata prefix (so
that things (using directives, for example) that can appear in any scope can be
added to that common prefix). DIFile is itself a DIScope so the common prefix
of all DIScopes cannot be a DIFile - instead it's the raw filename/directory
name pair.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177239 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Perform factorization as a last resort of unsafe fadd/fsub simplification.</title>
<updated>2013-03-14T18:08:26Z</updated>
<author>
<name>Shuxin Yang</name>
<email>shuxin.llvm@gmail.com</email>
</author>
<published>2013-03-14T18:08:26Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=a0c9939873c404f272b3e0abb102c335146764fe'/>
<id>urn:sha1:a0c9939873c404f272b3e0abb102c335146764fe</id>
<content type='text'>
Rules include:
  1)1 x*y +/- x*z =&gt; x*(y +/- z) 
    (the order of operands dosen't matter)

  2) y/x +/- z/x =&gt; (y +/- z)/x 

 The transformation is disabled if the new add/sub expr "y +/- z" is a 
denormal/naz/inifinity.

rdar://12911472


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177088 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Remove the unused 4th operand for DIFile debug info metadata</title>
<updated>2013-03-13T22:05:21Z</updated>
<author>
<name>David Blaikie</name>
<email>dblaikie@gmail.com</email>
</author>
<published>2013-03-13T22:05:21Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=e0805a992ddd2823604969c8aac61a2f339f3c01'/>
<id>urn:sha1:e0805a992ddd2823604969c8aac61a2f339f3c01</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@176983 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Refactor filename/directory in DICompileUnit into a DIFile</title>
<updated>2013-03-13T00:01:35Z</updated>
<author>
<name>David Blaikie</name>
<email>dblaikie@gmail.com</email>
</author>
<published>2013-03-13T00:01:35Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=de3077ae6b5ad8e6f417a8f6aa0ca1ae980f6272'/>
<id>urn:sha1:de3077ae6b5ad8e6f417a8f6aa0ca1ae980f6272</id>
<content type='text'>
This is the next step towards making the metadata for DIScopes have a common
prefix rather than having to delegate based on their tag type.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@176913 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Remove unused "isMain" field from DICompileUnit</title>
<updated>2013-03-12T22:43:04Z</updated>
<author>
<name>David Blaikie</name>
<email>dblaikie@gmail.com</email>
</author>
<published>2013-03-12T22:43:04Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=46561ce249984ddea405ce837b53367a59fd9f3b'/>
<id>urn:sha1:46561ce249984ddea405ce837b53367a59fd9f3b</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@176910 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Upgrading debug info test cases to be (more) compatible with the current debug info format.</title>
<updated>2013-03-11T22:37:40Z</updated>
<author>
<name>David Blaikie</name>
<email>dblaikie@gmail.com</email>
</author>
<published>2013-03-11T22:37:40Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=850b74d3927c35850a99b10ca7809f61a3b69c67'/>
<id>urn:sha1:850b74d3927c35850a99b10ca7809f61a3b69c67</id>
<content type='text'>
These cases were found by further work to remove support for debug info
versioning. Common cleanups (other than changing the version info in the tag
field) included adding the last parameter to compile_units (recently added for
fission support) and other cases of trailing fields in lexical blocks, compile
units, and subprograms.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@176834 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>InstCombine: Don't shrink allocas when combining with a bitcast.</title>
<updated>2013-03-06T05:44:53Z</updated>
<author>
<name>Jim Grosbach</name>
<email>grosbach@apple.com</email>
</author>
<published>2013-03-06T05:44:53Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=186d8a3d67ccd2b2401c5d7d4e2cc15c4d1fdeae'/>
<id>urn:sha1:186d8a3d67ccd2b2401c5d7d4e2cc15c4d1fdeae</id>
<content type='text'>
When considering folding a bitcast of an alloca into the alloca itself,
make sure we don't shrink the amount of memory being allocated, or
things rapidly go sideways.

rdar://13324424

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@176547 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>recommit r172363 &amp; r171325 (reverted in r172756)</title>
<updated>2013-03-02T11:36:24Z</updated>
<author>
<name>Nuno Lopes</name>
<email>nunoplopes@sapo.pt</email>
</author>
<published>2013-03-02T11:36:24Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=b443a0aeac38e6fdce063224dfc746c269b0779d'/>
<id>urn:sha1:b443a0aeac38e6fdce063224dfc746c269b0779d</id>
<content type='text'>
This adds minimalistic support for PHI nodes to llvm.objectsize() evaluation

fingers crossed so that it does break clang boostrap again..

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