| Commit message (Expand) | Author | Age | Files | Lines |
* | new testcase for PR590 | Chris Lattner | 2005-06-30 | 1 | -0/+51 |
* | Make the x86 asm printer darwin-aware. This mostly entails doing the same | Nate Begeman | 2005-06-30 | 1 | -12/+15 |
* | restore old srcValueNode behavior and try to to work around it | Andrew Lenharth | 2005-06-29 | 4 | -55/+76 |
* | Don't crash on a query where the block is not in any loop. Thanks to | Chris Lattner | 2005-06-29 | 1 | -1/+2 |
* | Bug fixed. | John Criswell | 2005-06-29 | 1 | -0/+6 |
* | Doh! Forgot to LLVMify the style. | John Criswell | 2005-06-29 | 1 | -2/+0 |
* | tracking the instructions causing loads and stores provides more information ... | Andrew Lenharth | 2005-06-29 | 3 | -8/+5 |
* | Basic fix for PR#591; don't convert an fprintf() to an fwrite() if there | John Criswell | 2005-06-29 | 1 | -0/+9 |
* | thinko | Andrew Lenharth | 2005-06-29 | 1 | -0/+1 |
* | unify SelectExpr and SelectFP | Andrew Lenharth | 2005-06-29 | 1 | -190/+155 |
* | fix most regressions | Andrew Lenharth | 2005-06-29 | 1 | -1/+2 |
* | support more relocations for stores also | Andrew Lenharth | 2005-06-29 | 2 | -1/+36 |
* | Get rid of all symbolic loads. I now do gernate all relocations sequences | Andrew Lenharth | 2005-06-29 | 3 | -230/+76 |
* | Add ElfWriter stuff to Visual Studio | Jeff Cohen | 2005-06-28 | 2 | -2/+13 |
* | some call work | Andrew Lenharth | 2005-06-27 | 2 | -2/+128 |
* | Adapt the code for handling uint -> fp conversion for the 32 bit case to | Andrew Lenharth | 2005-06-27 | 1 | -0/+35 |
* | So, it turns out I forgot that one valid way of restoring GP after a call | Andrew Lenharth | 2005-06-27 | 1 | -3/+3 |
* | Initial set of .td file changes necessary to get scalar fp in xmm registers | Nate Begeman | 2005-06-27 | 2 | -2/+126 |
* | get rid of another pseudo op | Andrew Lenharth | 2005-06-27 | 2 | -3/+4 |
* | generate address of constant pool entries | Andrew Lenharth | 2005-06-27 | 2 | -5/+10 |
* | Misha happification patch | Andrew Lenharth | 2005-06-27 | 1 | -91/+142 |
* | Reduce use of pseudo ops | Andrew Lenharth | 2005-06-27 | 2 | -8/+41 |
* | missed a load | Andrew Lenharth | 2005-06-27 | 1 | -3/+7 |
* | make constant pool labels local | Andrew Lenharth | 2005-06-27 | 1 | -2/+2 |
* | who said we had to use the return address in the return address register. Mi... | Andrew Lenharth | 2005-06-27 | 2 | -5/+8 |
* | Add support to the X86 backend for emitting ELF files. To use this, we | Chris Lattner | 2005-06-27 | 3 | -2/+55 |
* | iniital checkin of ELFWriter implementation | Chris Lattner | 2005-06-27 | 1 | -0/+230 |
* | iniital checkin of ELFWriter header. | Chris Lattner | 2005-06-27 | 1 | -0/+174 |
* | depend more on legalize putting constants on the RHS | Andrew Lenharth | 2005-06-26 | 1 | -92/+29 |
* | With setOperationAction(ISD::UINT_TO_FP, MVT::i64, Expand), Legalize | Andrew Lenharth | 2005-06-26 | 1 | -36/+12 |
* | add a new -filetype argument to llc. | Chris Lattner | 2005-06-25 | 1 | -7/+31 |
* | add some new file types | Chris Lattner | 2005-06-25 | 1 | -1/+1 |
* | minor cleanups, use copy ctor instead of manually doing it. | Chris Lattner | 2005-06-25 | 1 | -4/+3 |
* | refactor this interface | Chris Lattner | 2005-06-25 | 1 | -1/+1 |
* | Refactor the addPassesToEmitAssembly interface into a addPassesToEmitFile | Chris Lattner | 2005-06-25 | 19 | -41/+72 |
* | refactor these interfaces a bit | Chris Lattner | 2005-06-25 | 1 | -5/+12 |
* | improve comments | Chris Lattner | 2005-06-24 | 1 | -3/+3 |
* | Fix grammar | Chris Lattner | 2005-06-24 | 1 | -1/+1 |
* | add a note about variable length array | Chris Lattner | 2005-06-24 | 1 | -0/+16 |
* | add a debug type | Chris Lattner | 2005-06-24 | 1 | -0/+1 |
* | remove a pseudo instruction, make ret always right, and fix vararg chains | Andrew Lenharth | 2005-06-23 | 4 | -15/+20 |
* | finally, Working varargs | Andrew Lenharth | 2005-06-23 | 1 | -13/+24 |
* | more complete Lowering for vacopy and vaarg | Andrew Lenharth | 2005-06-22 | 1 | -1/+29 |
* | If we support structs as va_list, we must pass pointers to them to va_copy | Andrew Lenharth | 2005-06-22 | 9 | -66/+43 |
* | SelectionDAG is very unhappy when the argument to an intrinsic is a struct | Andrew Lenharth | 2005-06-22 | 1 | -4/+3 |
* | Make it easier to find alpha stuff in doxygen, and fixup labeling | Andrew Lenharth | 2005-06-22 | 2 | -17/+52 |
* | Fixed indentation. | John Criswell | 2005-06-20 | 1 | -3/+3 |
* | because some functions just use va_start and pass things to vfprintf | Andrew Lenharth | 2005-06-20 | 1 | -0/+11 |
* | the correct fix was to fix AliasAnalysis.getModRefInfo | Andrew Lenharth | 2005-06-20 | 1 | -4/+0 |
* | make AliasAnalysis know that VAArg writes memory. This is extremely conserva... | Andrew Lenharth | 2005-06-20 | 1 | -0/+5 |