<feed xmlns='http://www.w3.org/2005/Atom'>
<title>bcm5719-llvm/llvm/lib/CodeGen/Makefile, branch meklort-10.0.1</title>
<subtitle>Project Ortega BCM5719 LLVM</subtitle>
<id>https://git.raptorcs.com/git/bcm5719-llvm/atom?h=meklort-10.0.1</id>
<link rel='self' href='https://git.raptorcs.com/git/bcm5719-llvm/atom?h=meklort-10.0.1'/>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/'/>
<updated>2016-01-26T21:29:08+00:00</updated>
<entry>
<title>Remove autoconf support</title>
<updated>2016-01-26T21:29:08+00:00</updated>
<author>
<name>Chris Bieneman</name>
<email>beanz@apple.com</email>
</author>
<published>2016-01-26T21:29:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=e49730d4baa8443ad56f59bd8066bf4c1e56ea72'/>
<id>urn:sha1:e49730d4baa8443ad56f59bd8066bf4c1e56ea72</id>
<content type='text'>
Summary:
This patch is provided in preparation for removing autoconf on 1/26. The proposal to remove autoconf on 1/26 was discussed on the llvm-dev thread here: http://lists.llvm.org/pipermail/llvm-dev/2016-January/093875.html

"I felt a great disturbance in the [build system], as if millions of [makefiles] suddenly cried out in terror and were suddenly silenced. I fear something [amazing] has happened."
- Obi Wan Kenobi

Reviewers: chandlerc, grosbach, bob.wilson, tstellarAMD, echristo, whitequark

Subscribers: chfast, simoncook, emaste, jholewinski, tberghammer, jfb, danalbert, srhines, arsenm, dschuff, jyknight, dsanders, joker.eph, llvm-commits

Differential Revision: http://reviews.llvm.org/D16471

llvm-svn: 258861
</content>
</entry>
<entry>
<title>Resubmit r237954 (MIR Serialization: print and parse LLVM IR using MIR format).</title>
<updated>2015-05-27T18:02:19+00:00</updated>
<author>
<name>Alex Lorenz</name>
<email>arphaman@gmail.com</email>
</author>
<published>2015-05-27T18:02:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=2bdb4e1063f5cbc8bb1262d90cca056e9fb31fbb'/>
<id>urn:sha1:2bdb4e1063f5cbc8bb1262d90cca056e9fb31fbb</id>
<content type='text'>
This commit a 3rd attempt at comitting the initial MIR serialization patch.
The first commit (r237708) was reverted in 237730. Then the second commit
(r237954) was reverted in r238007, as the MIR library under CodeGen caused
a circular dependency where the CodeGen library depended on MIR and MIR
library depended on CodeGen.

This commit has fixed the dependencies between CodeGen and MIR by
reorganizing the MIR serialization code - the code that prints out
MIR has been moved to CodeGen, and the MIR library has been renamed
to MIRParser. Now the CodeGen library doesn't depend on the
MIRParser library, thus the circular dependency no longer exists.

--Original Commit Message--

MIR Serialization: print and parse LLVM IR using MIR format.

This commit is the initial commit for the MIR serialization project.
It creates a new library under CodeGen called 'MIR'. This new
library adds a new machine function pass that prints out the LLVM IR
using the MIR format. This pass is then added as a last pass when a
'stop-after' option is used in llc. The new library adds the initial
functionality for parsing of MIR files as well. This commit also
extends the llc tool so that it can recognize and parse MIR input files.

Reviewers: Duncan P. N. Exon Smith, Matthias Braun, Philip Reames

Differential Revision: http://reviews.llvm.org/D9616 

llvm-svn: 238341
</content>
</entry>
<entry>
<title>Revert r237954, "Resubmit r237708 (MIR Serialization: print and parse LLVM IR using MIR format)."</title>
<updated>2015-05-22T07:17:07+00:00</updated>
<author>
<name>NAKAMURA Takumi</name>
<email>geek4civic@gmail.com</email>
</author>
<published>2015-05-22T07:17:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=263b27997d5a1d4bab75c2cd20a397ed80e32925'/>
<id>urn:sha1:263b27997d5a1d4bab75c2cd20a397ed80e32925</id>
<content type='text'>
It brought cyclic dependencies between LLVMCodeGen and LLVMMIR.

llvm-svn: 238007
</content>
</entry>
<entry>
<title>Resubmit r237708 (MIR Serialization: print and parse LLVM IR using MIR format).</title>
<updated>2015-05-21T20:54:45+00:00</updated>
<author>
<name>Alex Lorenz</name>
<email>arphaman@gmail.com</email>
</author>
<published>2015-05-21T20:54:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=c37baf82a92ab6c1359a137862734c3dfe129472'/>
<id>urn:sha1:c37baf82a92ab6c1359a137862734c3dfe129472</id>
<content type='text'>
This commit is a 2nd attempt at committing the initial MIR serialization patch.
The first commit (r237708) made the incremental buildbots unstable and was 
reverted in r237730. The original commit didn't add a terminating null 
character to the LLVM IR source which was passed to LLParser, and this 
sometimes caused the test 'llvmIR.mir' to fail with a parsing error because 
the LLVM IR source didn't have a null character immediately after the end 
and thus LLLexer encountered some garbage characters that ultimately caused 
the error.

This commit also includes the other test fixes I committed in
r237712 (llc path fix) and r237723 (remove target triple) which
also got reverted in r237730.

--Original Commit Message--

MIR Serialization: print and parse LLVM IR using MIR format.

This commit is the initial commit for the MIR serialization project.
It creates a new library under CodeGen called 'MIR'. This new
library adds a new machine function pass that prints out the LLVM IR 
using the MIR format. This pass is then added as a last pass when a 
'stop-after' option is used in llc. The new library adds the initial 
functionality for parsing of MIR files as well. This commit also 
extends the llc tool so that it can recognize and parse MIR input files.

Reviewers: Duncan P. N. Exon Smith, Matthias Braun, Philip Reames

Differential Revision: http://reviews.llvm.org/D9616

llvm-svn: 237954
</content>
</entry>
<entry>
<title>Revert r237708 (MIR serialization) - incremental buildbots became unstable.</title>
<updated>2015-05-19T21:41:28+00:00</updated>
<author>
<name>Alex Lorenz</name>
<email>arphaman@gmail.com</email>
</author>
<published>2015-05-19T21:41:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=de1970fe668a345b4dd033a82581b2cf50b0cfe4'/>
<id>urn:sha1:de1970fe668a345b4dd033a82581b2cf50b0cfe4</id>
<content type='text'>
The incremental buildbots entered a pass-fail cycle where during the fail
cycle one of the tests from this commit fails for an unknown reason. I
have reverted this commit and will investigate the cause of this problem.

llvm-svn: 237730
</content>
</entry>
<entry>
<title>MIR Serialization: print and parse LLVM IR using MIR format.</title>
<updated>2015-05-19T18:17:39+00:00</updated>
<author>
<name>Alex Lorenz</name>
<email>arphaman@gmail.com</email>
</author>
<published>2015-05-19T18:17:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=c5e0d4d146bed47b4e306b8f9fa0a2766d14a641'/>
<id>urn:sha1:c5e0d4d146bed47b4e306b8f9fa0a2766d14a641</id>
<content type='text'>
This commit is the initial commit for the MIR serialization project.
It creates a new library under CodeGen called 'MIR'. This new
library adds a new machine function pass that prints out the LLVM IR 
using the MIR format. This pass is then added as a last pass when a 
'stop-after' option is used in llc. The new library adds the initial 
functionality for parsing of MIR files as well. This commit also 
extends the llc tool so that it can recognize and parse MIR input files.

Reviewers: Duncan P. N. Exon Smith, Matthias Braun, Philip Reames

Differential Revision: http://reviews.llvm.org/D9616

llvm-svn: 237708
</content>
</entry>
<entry>
<title>make -fno-rtti the default unless a directory builds with REQUIRES_RTTI.</title>
<updated>2010-01-24T20:43:08+00:00</updated>
<author>
<name>Chris Lattner</name>
<email>sabre@nondot.org</email>
</author>
<published>2010-01-24T20:43:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=823aed16f96cd77a88fb6a8113751a8628e6169d'/>
<id>urn:sha1:823aed16f96cd77a88fb6a8113751a8628e6169d</id>
<content type='text'>
llvm-svn: 94378
</content>
</entry>
<entry>
<title>Stop building RTTI information for *most* llvm libraries.  Notable</title>
<updated>2010-01-22T06:49:46+00:00</updated>
<author>
<name>Chris Lattner</name>
<email>sabre@nondot.org</email>
</author>
<published>2010-01-22T06:49:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=7ba0661f270219546aa3729fc676112a754d0b3a'/>
<id>urn:sha1:7ba0661f270219546aa3729fc676112a754d0b3a</id>
<content type='text'>
missing ones are libsupport, libsystem and libvmcore.  libvmcore is
currently blocked on bugpoint, which uses EH.  Once it stops using
EH, we can switch it off.

This #if 0's out 3 unit tests, because gtest requires RTTI information.
Suggestions welcome on how to fix this.

llvm-svn: 94164
</content>
</entry>
<entry>
<title>Removed trailing whitespace from Makefiles.</title>
<updated>2009-01-09T16:44:42+00:00</updated>
<author>
<name>Misha Brukman</name>
<email>brukman+llvm@gmail.com</email>
</author>
<published>2009-01-09T16:44:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=5cbf22391667568c36943f89c0568d1ca4eb006f'/>
<id>urn:sha1:5cbf22391667568c36943f89c0568d1ca4eb006f</id>
<content type='text'>
llvm-svn: 61991
</content>
</entry>
<entry>
<title>Move all assembler printing related stuff into new libAsmPrinter</title>
<updated>2008-08-17T13:53:04+00:00</updated>
<author>
<name>Anton Korobeynikov</name>
<email>asl@math.spbu.ru</email>
</author>
<published>2008-08-17T13:53:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=9cb0e94dc79657144d639c722619e1e4fc19040e'/>
<id>urn:sha1:9cb0e94dc79657144d639c722619e1e4fc19040e</id>
<content type='text'>
llvm-svn: 54885
</content>
</entry>
</feed>
