- Jan 03, 2009
-
-
Bill Wendling authored
llvm-svn: 61599
-
Bill Wendling authored
llvm-svn: 61598
-
Scott Michel authored
- Remove custom lowering for BRCOND - Add remaining functionality for branches in SPUInstrInfo, such as branch condition reversal and load/store folding. Updated BrCond test to reflect branch reversal. llvm-svn: 61597
-
Bill Wendling authored
llvm-svn: 61596
-
- Jan 02, 2009
-
-
Misha Brukman authored
llvm-svn: 61595
-
Misha Brukman authored
llvm-svn: 61594
-
Misha Brukman authored
llvm-svn: 61593
-
Misha Brukman authored
types of files (TableGen, LLVM assembly, HTML files, etc.) llvm-svn: 61592
-
Scott Michel authored
register copies a little easier to pick out from the output. - Fix bug 3192. llvm-svn: 61591
-
Misha Brukman authored
* Minor spacing and comment cleanups llvm-svn: 61590
-
Nick Lewycky authored
pending a correct solution. llvm-svn: 61589
-
Misha Brukman authored
from: copy-pasted straight from the coding standards doc! Oh, the irony. llvm-svn: 61586
-
Daniel Dunbar authored
llvm-svn: 61585
-
Daniel Dunbar authored
llvm-svn: 61584
-
Misha Brukman authored
llvm-svn: 61583
-
Misha Brukman authored
* Fixed cursors in terminal by setting nocompatible (sorry, vi users) * Enable syntax highlighting so that this file can stand on its own * Highlight trailing whitespace * Fixed commands to delete trailing whitespaces and convert tabs to spaces llvm.vim and tablegen.vim * Removed trailing whitespace, as it's now very visible llvm-svn: 61582
-
Misha Brukman authored
llvm-svn: 61581
-
Duncan Sands authored
not have pointer type. In particular, it may be the condition argument for a select or a GEP index. While I was unable to construct a testcase for which some bits of the original pointer are captured due to one of these, it's very very close to being possible - so play safe and exclude these possibilities. llvm-svn: 61580
-
Nuno Lopes authored
llvm-svn: 61576
-
Nuno Lopes authored
llvm-svn: 61572
-
Nuno Lopes authored
llvm-svn: 61571
-
Duncan Sands authored
the argument to be stored to an alloca by tracking uses of the alloca. This occurs 4 times (out of 7121, 0.05%) in MultiSource/Applications, so may not be worth it. On the other hand, it is easy to do and fairly cheap. The functions it helps are: W_addcom and W_addlit in spiff; process_args (argv) in d (make_dparser); ercPixConcealIMB in JM/ldecod. llvm-svn: 61570
-
Duncan Sands authored
change. llvm-svn: 61569
-
Duncan Sands authored
llvm-svn: 61567
-
Chris Lattner authored
llvm-svn: 61566
-
Duncan Sands authored
llvm-svn: 61565
-
Chris Lattner authored
llvm-svn: 61564
-
Chris Lattner authored
llvm-svn: 61563
-
Chris Lattner authored
llvm-svn: 61562
-
Chris Lattner authored
llvm-svn: 61561
-
Chris Lattner authored
llvm-svn: 61560
-
Chris Lattner authored
llvm-svn: 61559
-
Chris Lattner authored
and clean recursive descent parser. This change has a couple of ramifications: 1. The parser code is about 400 lines shorter (in what we maintain, not including what is autogenerated). 2. The code should be significantly faster than the old code because we don't have to work around bison's poor handling of datatypes with ctors/dtors. This also makes the code much more resistant to memory leaks. 3. We now get caret diagnostics from the .ll parser, woo. 4. The actual diagnostics emited from the parser are completely different so a bunch of testcases had to be updated. 5. I now disallow "%ty = type opaque %ty = type i32". There was no good reason to support this, it was just an accident of the old implementation. I have no reason to think that anyone is actually using this. 6. The syntax for sticking a global variable has changed to make it unambiguous. I don't think anyone is depending on this since only clang supports this and it is not solid yet, so I'm not worried about anything breaking. 7. This gets rid of the last use of bison, and along with it the .cvs files. I'll prune this from the makefiles as a subsequent commit. There are a few minor cleanups that can be done after this commit (suggestions welcome!) but this passes dejagnu testing and is ready for its time in the limelight. llvm-svn: 61558
-
Evan Cheng authored
Do not isel load folding bt instructions for pentium m, core, core2, and AMD processors. These are significantly slower than a load followed by a bt of a register. llvm-svn: 61557
-
Evan Cheng authored
llvm-svn: 61556
-
Evan Cheng authored
Use movaps / movd to extract vector element 0 even with sse4.1. It's still cheaper than pextrw especially if the value is in memory. llvm-svn: 61555
-
Nick Lewycky authored
llvm-svn: 61554
-
Nick Lewycky authored
reason. Two functions which mutually require each other to be nocapture are not currently supported. llvm-svn: 61553
-
Nick Lewycky authored
functions that don't write can't leak a pointer except through the return value, so a void readonly function is implicitly nocapture. Test these, and add a test that verifies that f1 calling f2 with an otherwise dead pointer gets both of them marked nocapture. llvm-svn: 61552
-
Bill Wendling authored
llvm-svn: 61551
-