| Commit message (Expand) | Author | Age | Files | Lines |
* | * Added class comments | Misha Brukman | 2004-02-10 | 1 | -20/+32 |
* | Fix documentation bugs | Chris Lattner | 2004-02-10 | 1 | -6/+7 |
* | Make block profiling the default | Chris Lattner | 2004-02-10 | 1 | -6/+21 |
* | Allow the program to take a '-llvmprof-output filename' option to specify | Chris Lattner | 2004-02-10 | 1 | -2/+30 |
* | initialization calls now return argc. If the program uses the argc value | Chris Lattner | 2004-02-10 | 1 | -17/+24 |
* | Make the initialization calls return argc. | Chris Lattner | 2004-02-10 | 4 | -9/+13 |
* | Doxygen-ify comments, make function prototypes more consistent in format. | Misha Brukman | 2004-02-10 | 1 | -5/+8 |
* | Mention install, RPM, autoconf improvements | Brian Gaeke | 2004-02-10 | 1 | -2/+9 |
* | Bug fixed | Chris Lattner | 2004-02-10 | 1 | -0/+1 |
* | Fix PR228: [sparc] Boolean constants are emitted as true and false | Chris Lattner | 2004-02-10 | 1 | -0/+2 |
* | RPM spec file for LLVM tools and libraries. | Brian Gaeke | 2004-02-10 | 2 | -0/+112 |
* | Should fix pr220 - "make install" doesn't install header files when | Brian Gaeke | 2004-02-10 | 1 | -0/+3 |
* | Doxygenify comments. | Misha Brukman | 2004-02-09 | 1 | -12/+9 |
* | Move this testcase out of /home/vadve/lattner/cvs/llvm/test/Programs/LLVMSource, | Chris Lattner | 2004-02-09 | 1 | -0/+13 |
* | Only add the global variable with the abort message if an unwind actually | Chris Lattner | 2004-02-09 | 1 | -14/+26 |
* | Add global methods that prevent us from using ilist::iterators as | Alkis Evlogimenos | 2004-02-09 | 2 | -0/+24 |
* | Fix PR#226: When emitting padding, always emit it as bytes. Bytes can be | John Criswell | 2004-02-09 | 1 | -8/+5 |
* | Many things have been fixed, so move them out of the "known problems" section | Chris Lattner | 2004-02-09 | 1 | -32/+2 |
* | QOI bug fixed | Chris Lattner | 2004-02-09 | 1 | -0/+1 |
* | It turns out that the two dimensional vectors were causing big slowdowns | Chris Lattner | 2004-02-09 | 1 | -32/+34 |
* | Remove the statistics | Chris Lattner | 2004-02-09 | 1 | -11/+0 |
* | Speed up type resolution some more. On the testcase in PR224, for example, | Chris Lattner | 2004-02-09 | 1 | -8/+27 |
* | When resolving upreferences, if multiple uprefs will be resolved to the same | Chris Lattner | 2004-02-09 | 1 | -6/+24 |
* | SchedGraph doesn't need to be friends with SchedGraphNodeCommon anymore. | Brian Gaeke | 2004-02-09 | 1 | -1/+0 |
* | Move InstrSchedule's iterator begin/end methods inline. | Brian Gaeke | 2004-02-09 | 2 | -56/+8 |
* | Make SchedGraph::dump() use SchedGraphNodeCommon's const_iterator | Brian Gaeke | 2004-02-09 | 2 | -50/+28 |
* | Implement the hashing scheme in an attempt to speed up the "slow" case in | Chris Lattner | 2004-02-09 | 1 | -50/+68 |
* | Fix bug in installation process: MKDIR must respect DESTDIR. | Brian Gaeke | 2004-02-09 | 2 | -5/+5 |
* | This debugging hook is no longer needed. | Chris Lattner | 2004-02-09 | 1 | -2/+0 |
* | Code cleanup in preparation for later changes. Now that ContainedTy's are | Chris Lattner | 2004-02-09 | 1 | -107/+75 |
* | Now that all of the derived types have disciplined interfaces, we can eliminate | Chris Lattner | 2004-02-09 | 3 | -181/+76 |
* | Don't depend on auto data conversion | Chris Lattner | 2004-02-09 | 1 | -1/+1 |
* | Adjust to the changed StructType interface. In particular, getElementTypes()... | Chris Lattner | 2004-02-09 | 16 | -73/+61 |
* | Increase encapsulation of the StructType class, eliminating the getElementTyp... | Chris Lattner | 2004-02-09 | 1 | -9/+15 |
* | Method is gone | Chris Lattner | 2004-02-09 | 1 | -2/+0 |
* | Start using the new and improve interface to FunctionType arguments | Chris Lattner | 2004-02-09 | 13 | -117/+98 |
* | Improve encapsulation in the FunctionType class, by adding param_(iterator/be... | Chris Lattner | 2004-02-09 | 1 | -4/+6 |
* | This #include is not needed, it should have been removed with the last patch | Chris Lattner | 2004-02-09 | 1 | -1/+0 |
* | Instead of searching the entire type graph for a type to determine if it | Chris Lattner | 2004-02-09 | 1 | -8/+29 |
* | Upreferences are always OpaqueTypes, meaning that it is impossible for a non-... | Chris Lattner | 2004-02-09 | 1 | -0/+1 |
* | Another nice speedup for the register allocator. This time, we replace | Chris Lattner | 2004-02-09 | 1 | -37/+55 |
* | Add a new (hidden) option that is useful for profiling. | Chris Lattner | 2004-02-09 | 1 | -1/+5 |
* | Ugh, perform an optimization that GCC should be able to do itself. This | Chris Lattner | 2004-02-09 | 1 | -6/+7 |
* | Only do stuff for the REAL number of physical registers we have, not 1024. | Chris Lattner | 2004-02-09 | 1 | -10/+8 |
* | Change the PhysRegsUsed map into a dense array. Seeing that this is a mapping | Chris Lattner | 2004-02-09 | 1 | -34/+35 |
* | Two problems with these lines of code: | Chris Lattner | 2004-02-09 | 1 | -2/+0 |
* | The ConstantExpr::getCast call can cause a CPR to be generated. If so, | Chris Lattner | 2004-02-09 | 1 | -0/+4 |
* | Fix PR215: [bcwriter] Problem compactifying ConstantPointerRefs | Chris Lattner | 2004-02-09 | 2 | -0/+4 |
* | Fix grammar-o. | Misha Brukman | 2004-02-08 | 1 | -1/+1 |
* | All of spec, including 253.perlbmk should now work. There is still the 254.gap | Chris Lattner | 2004-02-08 | 1 | -28/+4 |