| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Add a new getNode() method that takes a pointer to an already-intern'd list | Chris Lattner | 2006-08-14 | 3 | -103/+88 |
* | Avoid extra string copy. | Devang Patel | 2006-08-14 | 1 | -2/+3 |
* | For PR876: | Reid Spencer | 2006-08-14 | 1 | -1/+1 |
* | For PR876: | Reid Spencer | 2006-08-14 | 1 | -1/+1 |
* | Use mangler, instead of addUnderscore(), to get mangled name. | Devang Patel | 2006-08-14 | 2 | -16/+28 |
* | Provide indentation of the generated program. | Reid Spencer | 2006-08-14 | 1 | -181/+267 |
* | remove SelectionDAG::InsertISelMapEntry, it is dead | Chris Lattner | 2006-08-14 | 2 | -16/+0 |
* | Add code to resize the CSEMap hash table. This doesn't speedup codegen of | Chris Lattner | 2006-08-14 | 5 | -6/+56 |
* | avoid a warning | Chris Lattner | 2006-08-14 | 1 | -1/+1 |
* | Handle single-entry PHI nodes correctly. This fixes PR877 and | Chris Lattner | 2006-08-14 | 1 | -1/+11 |
* | new testcase from PR877 | Chris Lattner | 2006-08-14 | 1 | -0/+466 |
* | Fix more validation issues | Chris Lattner | 2006-08-14 | 1 | -3/+4 |
* | Update the example to work with llvm-gcc4. Fix validation errors. | Chris Lattner | 2006-08-14 | 1 | -5/+86 |
* | Add the actual constant to the hash for ConstantPool nodes. Thanks to | Chris Lattner | 2006-08-14 | 2 | -0/+2 |
* | typo | Chris Lattner | 2006-08-14 | 1 | -1/+1 |
* | Fix a typo. | Reid Spencer | 2006-08-14 | 1 | -1/+1 |
* | Fix several grammaros and a few HTML usage items. | Reid Spencer | 2006-08-14 | 1 | -187/+180 |
* | select code like | Rafael Espindola | 2006-08-14 | 2 | -1/+57 |
* | Make all tools that use llvmdo have a -topdir option that allows the top | Reid Spencer | 2006-08-14 | 6 | -127/+186 |
* | Use < and > | Devang Patel | 2006-08-14 | 1 | -1/+1 |
* | Fix verification failures. | Devang Patel | 2006-08-14 | 1 | -14/+16 |
* | Add lto doc link. | Devang Patel | 2006-08-14 | 1 | -0/+4 |
* | Add lto doc. | Devang Patel | 2006-08-14 | 1 | -0/+361 |
* | Added some comments to clarify code around sub TestDirectory | Patrick Jenkins | 2006-08-14 | 1 | -2/+1 |
* | Add llvm2cpp. | Reid Spencer | 2006-08-13 | 1 | -3/+4 |
* | 1. fix bug by ensuring we start at the llvm source root. | Reid Spencer | 2006-08-13 | 1 | -1/+6 |
* | Count the documentation. Otherwise we take a 30,000 hit in the LOC on the | Reid Spencer | 2006-08-13 | 1 | -5/+5 |
* | Use the new -code-only option to llvmdo so that we only count things that | Reid Spencer | 2006-08-13 | 1 | -1/+1 |
* | Add a -code-only option which restricts llvmdo to visiting just those | Reid Spencer | 2006-08-13 | 1 | -80/+116 |
* | Changes for LLVM coding standard compliance: | Reid Spencer | 2006-08-13 | 1 | -508/+491 |
* | Emit .set directives for jump table entries when possible, which reduces | Nate Begeman | 2006-08-12 | 4 | -4/+50 |
* | Fix a bug in a recent refactoring that broke a bunch of stuff. | Chris Lattner | 2006-08-12 | 1 | -1/+1 |
* | Fix an obvious bug, noticed by inspection. No current targets trigger this. | Chris Lattner | 2006-08-12 | 1 | -3/+3 |
* | Don't attempt to split subloops out of a loop with a huge number of backedges. | Chris Lattner | 2006-08-12 | 1 | -8/+19 |
* | New testcase, this used to take hours to loopsimplify. | Chris Lattner | 2006-08-12 | 2 | -0/+5 |
* | Make Loop::getExitBlocks significantly faster for large loops. Instead of | Chris Lattner | 2006-08-12 | 1 | -3/+9 |
* | Reimplement the loopsimplify code which deletes edges from unreachable | Chris Lattner | 2006-08-12 | 1 | -29/+53 |
* | Track # nodes in a CSEMap. | Chris Lattner | 2006-08-12 | 1 | -0/+1 |
* | Switch to using SuperFastHash instead of adding all elements together. This | Chris Lattner | 2006-08-12 | 1 | -6/+24 |
* | Lexer.cpp is a generated file both in lib/AsmParser and projects/Stacker | Reid Spencer | 2006-08-11 | 1 | -0/+1 |
* | Switch NodeID to track 32-bit chunks instead of 8-bit chunks, for a 2.5% | Chris Lattner | 2006-08-11 | 2 | -31/+18 |
* | remove IncludeFile turds in MathExtras.h, which bloats every .o file that | Chris Lattner | 2006-08-11 | 3 | -16/+9 |
* | Weed out some cruft and add in some missing extensions. | Reid Spencer | 2006-08-11 | 1 | -18/+40 |
* | Weed out cruft that should not be counted and add in extensions we | Reid Spencer | 2006-08-11 | 1 | -106/+50 |
* | move code out of line so that GCC doesn't inline it at -O3 | Chris Lattner | 2006-08-11 | 1 | -61/+68 |
* | Added information for the new nightly tester. | Patrick Jenkins | 2006-08-11 | 1 | -19/+35 |
* | Split SmallVector into SmallVector and SmallVectorImpl, which allows us to | Chris Lattner | 2006-08-11 | 1 | -40/+45 |
* | Added two flags (-submit-server and -submit-script) which allow the user to s... | Patrick Jenkins | 2006-08-11 | 1 | -5/+18 |
* | Make this script not care where it is run from by getting the llvm src | Reid Spencer | 2006-08-11 | 1 | -1/+1 |
* | Remove 8 more std::map's. | Chris Lattner | 2006-08-11 | 3 | -108/+74 |