| Commit message (Expand) | Author | Age | Files | Lines |
* | Make file use stylesheets and be HTML-4.01 (Strict)-compliant. | Misha Brukman | 2004-05-12 | 1 | -386/+442 |
* | Made document HTML-4.01 (Strict)-compliant. | Misha Brukman | 2004-05-12 | 1 | -69/+78 |
* | Make file standard-compliant once again. | Misha Brukman | 2004-05-12 | 1 | -21/+10 |
* | Made file comply with HTML-4.01 (Strict) | Misha Brukman | 2004-05-12 | 1 | -234/+179 |
* | Turn the block extractor on by default now that it basically works, eliminati... | Chris Lattner | 2004-05-12 | 1 | -7/+0 |
* | Made file HTML-4.01 (Strict)-compliant. | Misha Brukman | 2004-05-12 | 1 | -12/+12 |
* | Made to be HTML-4.01 (Strict)-compliant. | Misha Brukman | 2004-05-12 | 1 | -14/+16 |
* | Made to be HTML-4.01 (Strict) -compliant. | Misha Brukman | 2004-05-12 | 1 | -13/+18 |
* | Add proper footer since this file is HTML-4.01 compliant. | Misha Brukman | 2004-05-12 | 1 | -6/+9 |
* | Make document HTML-4.01 (Strict) compliant. | Misha Brukman | 2004-05-12 | 1 | -265/+184 |
* | Fix grammar: remove `the' before LLVM. | Misha Brukman | 2004-05-12 | 1 | -2/+2 |
* | * Make the document format follow the stringent purple standards (like the rest | Misha Brukman | 2004-05-12 | 1 | -265/+162 |
* | Pass boolean constants into function calls more efficiently, generating: | Chris Lattner | 2004-05-12 | 2 | -2/+14 |
* | Do not pass in the same argument to the extracted function more than once, and | Chris Lattner | 2004-05-12 | 1 | -1/+8 |
* | Check to see if all blocks are extractible first. | Chris Lattner | 2004-05-12 | 1 | -8/+19 |
* | Implement support for code extracting basic blocks that have a return | Chris Lattner | 2004-05-12 | 1 | -2/+12 |
* | Implement splitting of PHI nodes, allowing block extraction of BB's that have | Chris Lattner | 2004-05-12 | 1 | -7/+96 |
* | * Pull some code out into the definedInRegion/definedInCaller methods | Chris Lattner | 2004-05-12 | 1 | -78/+78 |
* | Generate substantially better code when there are a limited number of exits | Chris Lattner | 2004-05-12 | 1 | -22/+61 |
* | Two minor improvements: | Chris Lattner | 2004-05-12 | 1 | -18/+14 |
* | Don't leave dead bytecode.output files around if the optimizer/block extracto... | Chris Lattner | 2004-05-12 | 1 | -6/+5 |
* | This file has been superseded by docs/index.html . | Misha Brukman | 2004-05-12 | 1 | -128/+1 |
* | Implement the final missing bits for block extractor support. Now bugpoint | Chris Lattner | 2004-05-12 | 1 | -2/+35 |
* | Add link to Valgrind. | Misha Brukman | 2004-05-12 | 1 | -2/+3 |
* | Implement basic block extraction for the miscompilation debugger. This still... | Chris Lattner | 2004-05-11 | 3 | -0/+188 |
* | A class that is meant to be a base class should have a virtual destructor | Chris Lattner | 2004-05-11 | 1 | -0/+2 |
* | Add a note to make sure the program is memory correct | Chris Lattner | 2004-05-11 | 1 | -3/+9 |
* | Added obsequi. | John Criswell | 2004-05-11 | 1 | -0/+1 |
* | Use inttypes.h, which exists on all of Linux, Solaris and Darwin. | Brian Gaeke | 2004-05-11 | 1 | -2/+1 |
* | Unbreak the build on X86. | Chris Lattner | 2004-05-11 | 1 | -0/+1 |
* | Squash warnings on Solaris/sparc... the test suite is not working for me so I | Brian Gaeke | 2004-05-11 | 1 | -2/+2 |
* | Do not hardcode the name of gcc, because its full pathname may have been | Brian Gaeke | 2004-05-11 | 1 | -1/+1 |
* | Do not depend on the path to bash | Brian Gaeke | 2004-05-11 | 1 | -1/+1 |
* | Include <sys/types.h> to get the definition of int64_t on Solaris. | Brian Gaeke | 2004-05-11 | 1 | -0/+1 |
* | Switch this from using an std::map to using a DenseMap. This speeds up | Chris Lattner | 2004-05-10 | 1 | -6/+5 |
* | Use a new VRegPHIUseCount to compute uses of PHI values by other phi values | Chris Lattner | 2004-05-10 | 1 | -14/+21 |
* | Now that we use an ilist of machine instructions, iterators are more robust | Chris Lattner | 2004-05-10 | 1 | -5/+8 |
* | Fix a fairly serious pessimizaion that was preventing us from efficiently | Chris Lattner | 2004-05-10 | 2 | -4/+6 |
* | Bug fixed | Chris Lattner | 2004-05-10 | 1 | -0/+1 |
* | Patch to fix PR337. Make sure to mark all aliased physical registers as used | Chris Lattner | 2004-05-10 | 1 | -3/+8 |
* | Testcase for PR337, which was reduced by Reid Spencer. | Chris Lattner | 2004-05-10 | 1 | -0/+15 |
* | Bug 178 Fixed | Reid Spencer | 2004-05-09 | 1 | -0/+2 |
* | Changes to make the Stacker Stack use 64 bit values. This *should* get | Reid Spencer | 2004-05-09 | 5 | -42/+37 |
* | Fix some comments, avoid sign extending booleans when zero extend works fine | Chris Lattner | 2004-05-09 | 2 | -10/+10 |
* | Generate more efficient code for casting booleans to integers (no sign extens... | Chris Lattner | 2004-05-09 | 2 | -2/+2 |
* | syntactically loopify natural loops so that the GCC loop optimizer can find t... | Chris Lattner | 2004-05-09 | 2 | -104/+170 |
* | Do not emit prototypes for setjmp/longjmp, as they are handled specially | Chris Lattner | 2004-05-09 | 2 | -2/+4 |
* | Fine grainify namespacification | Chris Lattner | 2004-05-09 | 1 | -4/+1 |
* | Make the floating point constant pools local to each function, split the | Chris Lattner | 2004-05-09 | 2 | -198/+224 |
* | Bug fixed. | Brian Gaeke | 2004-05-09 | 1 | -8/+12 |