| Commit message (Expand) | Author | Age | Files | Lines |
* | Emit NaNs and INFs bit-identically to the bytecode file, if the system has | Brian Gaeke | 2004-07-21 | 2 | -4/+128 |
* | Add prototypes for platform-independent wrappers for isinf(). | Brian Gaeke | 2004-07-21 | 2 | -0/+8 |
* | Regenerated with autoheader-2.57. | Brian Gaeke | 2004-07-21 | 2 | -6/+20 |
* | Add call to check for isinf(). | Brian Gaeke | 2004-07-21 | 1 | -0/+1 |
* | Add support for checking for isinf(). | Brian Gaeke | 2004-07-21 | 1 | -0/+14 |
* | Regenerated with autoconf-2.57. | Brian Gaeke | 2004-07-21 | 1 | -0/+176 |
* | Add platform-independent wrapper function for isinf(). | Brian Gaeke | 2004-07-21 | 1 | -0/+31 |
* | Move LLVM tool definitions to Makefile.rules | Brian Gaeke | 2004-07-21 | 2 | -17/+15 |
* | Shorts are aligned to 2 bytes, bools to 1 byte (in structs). | Misha Brukman | 2004-07-20 | 1 | -1/+1 |
* | Treat external variables similarly to those with weak linkage: load indirect. | Misha Brukman | 2004-07-20 | 2 | -8/+8 |
* | Refer would-be llvm-gcc source users/hackers to the compilation guide. | Misha Brukman | 2004-07-20 | 1 | -2/+1 |
* | Use C++-style <cstdio> instead of C-style <stdio.h> | Misha Brukman | 2004-07-20 | 2 | -2/+2 |
* | Differentiate between global and weak symbol loads | Misha Brukman | 2004-07-20 | 1 | -1/+2 |
* | * Differentiate between global and weak symbol loads | Misha Brukman | 2004-07-20 | 2 | -128/+90 |
* | Differentiate between global and weak symbol loads | Misha Brukman | 2004-07-20 | 3 | -18/+9 |
* | Double alignment in structs is 4 bytes, not 8. Patch by Nate Begeman. | Misha Brukman | 2004-07-20 | 1 | -1/+1 |
* | Add function to clear all virtual->physical mappings but not assigned | Alkis Evlogimenos | 2004-07-20 | 1 | -0/+5 |
* | Remove unneeded functor. LiveInterval has a < operator. | Alkis Evlogimenos | 2004-07-20 | 1 | -11/+1 |
* | Fix a serious code pessimization problem. If an inlined function has a single | Chris Lattner | 2004-07-20 | 1 | -5/+6 |
* | Implement Transforms/InstCombine/IntPtrCast.ll | Chris Lattner | 2004-07-20 | 1 | -11/+16 |
* | new testcase | Chris Lattner | 2004-07-20 | 1 | -0/+8 |
* | Ignore instructions that are in trivially dead functions. This allows us | Chris Lattner | 2004-07-20 | 1 | -4/+17 |
* | Fix stack frame layout in prologue/epilogue. Patch courtesy of Nate Begeman. | Misha Brukman | 2004-07-20 | 1 | -18/+11 |
* | Dump the old-fashioned C-style <ctype.h> in favor of new `C++'-style <cctype> | Misha Brukman | 2004-07-20 | 2 | -2/+2 |
* | Implement InstCombine/GEPIdxCanon.ll | Chris Lattner | 2004-07-20 | 1 | -1/+10 |
* | New testcase that instcombine should help out with. | Chris Lattner | 2004-07-20 | 1 | -0/+8 |
* | Implement SimplifyCFG/BrUnwind.ll | Chris Lattner | 2004-07-20 | 1 | -2/+9 |
* | test that unconditional branches to unwinds are always eliminated | Chris Lattner | 2004-07-20 | 1 | -0/+12 |
* | Move handing of GlobalValues from getReg() to copyConstantToRegister(), this | Misha Brukman | 2004-07-20 | 2 | -38/+22 |
* | Rewrite cast->cast elimination code completely based on the information we | Chris Lattner | 2004-07-20 | 1 | -43/+53 |
* | Testcases missed by the instruction combiner | Chris Lattner | 2004-07-20 | 1 | -0/+14 |
* | isupper() and tolower() are declared in <ctype.h> | Misha Brukman | 2004-07-20 | 2 | -6/+6 |
* | * Fn args passed in registers are now recorded as used by the call instruction | Misha Brukman | 2004-07-20 | 3 | -18/+54 |
* | * cFP class split into cFP32 and cFP64 | Misha Brukman | 2004-07-20 | 2 | -436/+458 |
* | While I'm at it, don't break codegen of mul by 3,5,9. | Chris Lattner | 2004-07-19 | 2 | -2/+2 |
* | Generate better code for multiplies by negative constants like -4, -1, -9, etc. | Chris Lattner | 2004-07-19 | 2 | -8/+84 |
* | Remove dead code. | Alkis Evlogimenos | 2004-07-19 | 1 | -17/+0 |
* | Tabs to spaces. | Misha Brukman | 2004-07-19 | 1 | -4/+3 |
* | Convert tabs to spaces; fix name of function in assert() description. | Misha Brukman | 2004-07-19 | 1 | -1/+1 |
* | Fix broken link | Chris Lattner | 2004-07-19 | 1 | -2/+2 |
* | Just run 'make', not all-gcc | Chris Lattner | 2004-07-19 | 1 | -3/+3 |
* | Added support for stdint.h. It is now automatically included by | John Criswell | 2004-07-19 | 4 | -3/+148 |
* | Fix a bug that occurs when the last instruction in a range is dead | Chris Lattner | 2004-07-19 | 1 | -3/+6 |
* | When joining intervals, join intervals in deeply nested loops first. This | Chris Lattner | 2004-07-19 | 1 | -4/+34 |
* | Split joinIntervals into two methods | Chris Lattner | 2004-07-19 | 3 | -84/+93 |
* | Fix comment | Chris Lattner | 2004-07-19 | 1 | -3/+2 |
* | bug 122: | Reid Spencer | 2004-07-19 | 1 | -2/+1 |
* | Inline 4 methods | Chris Lattner | 2004-07-19 | 3 | -18/+18 |
* | Delete 4 methods, make clients use hte mark* methods directly | Chris Lattner | 2004-07-19 | 1 | -7/+1 |
* | There is no need to store the MBB along with the MI any more, we can now | Chris Lattner | 2004-07-19 | 4 | -26/+24 |