| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Print the DAG out more like a DAG in nested format. | Chris Lattner | 2005-01-09 | 1 | -2/+18 | |
| | | | | | llvm-svn: 19422 | |||||
| * | Print out nodes sorted by their address to make it easier to find them in a ↵ | Chris Lattner | 2005-01-09 | 1 | -2/+5 | |
| | | | | | | | list. llvm-svn: 19421 | |||||
| * | Add a simple transformation. This allows us to compile one of the inner | Chris Lattner | 2005-01-09 | 1 | -0/+8 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | loops in stepanov to this: .LBB_Z5test0PdS__2: # no_exit.1 fldl data(,%eax,8) fldl 24(%esp) faddp %st(1) fstl 24(%esp) incl %eax cmpl $2000, %eax fstpl 16(%esp) #FP_REG_KILL jl .LBB_Z5test0PdS__2 instead of this: .LBB_Z5test0PdS__2: # no_exit.1 fldl data(,%eax,8) fldl 24(%esp) faddp %st(1) fstl 24(%esp) incl %eax movl $data, %ecx movl %ecx, %edx addl $16000, %edx subl %ecx, %edx movl %edx, %ecx sarl $2, %ecx shrl $29, %ecx addl %ecx, %edx sarl $3, %edx cmpl %edx, %eax fstpl 16(%esp) #FP_REG_KILL jl .LBB_Z5test0PdS__2 The old instruction selector produced: .LBB_Z5test0PdS__2: # no_exit.1 fldl 24(%esp) faddl data(,%eax,8) fstl 24(%esp) movl %eax, %ecx incl %ecx incl %eax leal data+16000, %edx movl $data, %edi subl %edi, %edx movl %edx, %edi sarl $2, %edi shrl $29, %edi addl %edi, %edx sarl $3, %edx cmpl %edx, %ecx fstpl 16(%esp) #FP_REG_KILL jl .LBB_Z5test0PdS__2 # no_exit.1 Which is even worse! llvm-svn: 19419 | |||||
| * | Add support for FP->INT conversions and back. | Chris Lattner | 2005-01-08 | 1 | -0/+11 | |
| | | | | | llvm-svn: 19369 | |||||
| * | 1ULL << 64 is undefined, don't do it. | Chris Lattner | 2005-01-08 | 1 | -2/+3 | |
| | | | | | llvm-svn: 19365 | |||||
| * | Fix a pointer invalidation problem. This fixes Generic/badarg6.ll | Chris Lattner | 2005-01-07 | 1 | -13/+7 | |
| | | | | | llvm-svn: 19361 | |||||
| * | Fold conditional branches on constants away. | Chris Lattner | 2005-01-07 | 1 | -0/+6 | |
| | | | | | llvm-svn: 19360 | |||||
| * | Fix a thinko in the reassociation code, fixing Generic/badlive.ll | Chris Lattner | 2005-01-07 | 1 | -1/+1 | |
| | | | | | llvm-svn: 19359 | |||||
| * | Simplify: truncate ({zero|sign}_extend (X)) | Chris Lattner | 2005-01-07 | 1 | -0/+9 | |
| | | | | | llvm-svn: 19353 | |||||
| * | Implement RemoveDeadNodes | Chris Lattner | 2005-01-07 | 1 | -0/+119 | |
| | | | | | llvm-svn: 19345 | |||||
| * | Complete rewrite of the SelectionDAG class. | Chris Lattner | 2005-01-07 | 1 | -106/+758 | |
| | | | | | llvm-svn: 19327 | |||||
| * | Add #include <iostream> since Value.h does not #include it any more. | Reid Spencer | 2004-07-04 | 1 | -0/+2 | |
| | | | | | llvm-svn: 14622 | |||||
| * | Rename Type::PrimitiveID to TypeId and ::getPrimitiveID() to ::getTypeID() | Chris Lattner | 2004-06-17 | 1 | -1/+1 | |
| | | | | | llvm-svn: 14201 | |||||
| * | Finegrainify namespacification | Chris Lattner | 2004-06-02 | 1 | -4/+1 | |
| | | | | | llvm-svn: 13948 | |||||
| * | Put all LLVM code into the llvm namespace, as per bug 109. | Brian Gaeke | 2003-11-11 | 1 | -0/+4 | |
| | | | | | llvm-svn: 9903 | |||||
| * | Added LLVM project notice to the top of every C++ source file. | John Criswell | 2003-10-20 | 1 | -0/+7 | |
| | | | | | | | Header files will be on the way. llvm-svn: 9298 | |||||
| * | Add a bunch of new node types, etc | Chris Lattner | 2003-08-15 | 1 | -0/+16 | |
| | | | | | llvm-svn: 7875 | |||||
| * | Initial checkin of SelectionDAG implementation. This is still rough and | Chris Lattner | 2003-08-11 | 1 | -0/+105 | |
| unfinished llvm-svn: 7717 | ||||||

