| Commit message (Expand) | Author | Age | Files | Lines |
| * | Put the assignment back at the top of this method. | Bill Wendling | 2009-03-11 | 1 | -2/+2 |
| * | Two coalescer fixes in one. | Evan Cheng | 2009-03-11 | 2 | -8/+61 |
| * | Make ivars private. Other cleanup. No functionality change. | Bill Wendling | 2009-03-10 | 1 | -59/+27 |
| * | Just make the Dwarf timer group static inside of the getter function. No need... | Bill Wendling | 2009-03-10 | 1 | -7/+5 |
| * | Don't put static functions in anonymous namespace. | Bill Wendling | 2009-03-10 | 1 | -4/+0 |
| * | These should *stop* the timer, not start it again. | Bill Wendling | 2009-03-10 | 1 | -2/+2 |
| * | - Fix misspelled method name. | Bill Wendling | 2009-03-10 | 1 | -11/+5 |
| * | - Create GetOrCreateSourceID from getOrCreateSourceID. GetOrCreateSourceID is | Bill Wendling | 2009-03-10 | 1 | -79/+82 |
| * | Refine the Dwarf writer timers so that they measure exception writing and debug | Bill Wendling | 2009-03-10 | 1 | -143/+169 |
| * | Revert 66358 for now. It's breaking povray, 450.soplex, and 456.hmmer on x86 ... | Evan Cheng | 2009-03-10 | 1 | -53/+2 |
| * | Add a timer to the DwarfWriter pass that measures the total time it takes to | Bill Wendling | 2009-03-10 | 1 | -8/+110 |
| * | Fix a post-RA scheduling liveness bug. When a basic block is being | Dan Gohman | 2009-03-10 | 1 | -9/+22 |
| * | wire up support for emitting "special" values from inline asm | Chris Lattner | 2009-03-10 | 1 | -1/+20 |
| * | Fix PR3763 by using proper APInt methods instead of uint64_t's. | Chris Lattner | 2009-03-09 | 1 | -3/+4 |
| * | Yet another case where the spiller marked two uses of the same register on th... | Evan Cheng | 2009-03-09 | 1 | -19/+10 |
| * | just remove the use_empty() check entirely, the only reason it | Chris Lattner | 2009-03-09 | 1 | -14/+8 |
| * | Make the code generator rip of dead constant expr uses before deciding | Chris Lattner | 2009-03-09 | 1 | -10/+16 |
| * | Pass in a std::string when getting the names of debugging things. This cuts down | Bill Wendling | 2009-03-09 | 5 | -35/+60 |
| * | If a MI uses the same register more than once, only mark one of them as 'kill'. | Evan Cheng | 2009-03-08 | 1 | -6/+22 |
| * | implement an optimization to codegen c ? 1.0 : 2.0 as load { 2.0, 1.0 } + c*4. | Chris Lattner | 2009-03-08 | 1 | -2/+53 |
| * | random cleanups. | Chris Lattner | 2009-03-08 | 1 | -4/+3 |
| * | Introduce new linkage types linkonce_odr, weak_odr, common_odr | Duncan Sands | 2009-03-07 | 6 | -17/+25 |
| * | Fix ScheduleDAGRRList::CopyAndMoveSuccessors' handling of nodes | Dan Gohman | 2009-03-06 | 1 | -7/+7 |
| * | When we split a basic block, there's a default branch to the newly created BB. | Bill Wendling | 2009-03-06 | 1 | -0/+3 |
| * | (Hopefully) silence a warning. | Owen Anderson | 2009-03-05 | 1 | -1/+1 |
| * | Be more careful about choosing restore points when doing restore folding. Th... | Owen Anderson | 2009-03-05 | 1 | -5/+28 |
| * | Fix how livein live intervals are handled. Previously it could end at MBB sta... | Evan Cheng | 2009-03-05 | 1 | -4/+9 |
| * | Fix BuildVectorSDNode::isConstantSplat to handle one-element vectors. | Bob Wilson | 2009-03-04 | 1 | -2/+2 |
| * | Add a restore folder, which shaves a dozen or so machineinstrs off oggenc. U... | Owen Anderson | 2009-03-04 | 1 | -6/+75 |
| * | PR3686: make the legalizer handle bitcast from i80 to x86 long double. | Eli Friedman | 2009-03-04 | 2 | -0/+8 |
| * | Fix PR3701. 1. X86 target renamed eflags register to flags. This matches what... | Evan Cheng | 2009-03-04 | 1 | -25/+54 |
| * | The DAG combiner was performing a BT combine. The BT combine had a value of -1, | Bill Wendling | 2009-03-04 | 1 | -11/+22 |
| * | Generalize BuildVectorSDNode::isConstantSplat to use APInts and handle | Bob Wilson | 2009-03-02 | 1 | -78/+49 |
| * | Fix a problem with DAGCombine on 64b targets where folding | Nate Begeman | 2009-03-01 | 1 | -1/+2 |
| * | Minor optimization: | Evan Cheng | 2009-03-01 | 1 | -29/+237 |
| * | Combine PPC's GetConstantBuildVectorBits and isConstantSplat functions to a new | Bob Wilson | 2009-03-01 | 1 | -0/+91 |
| * | Last commit accidentially deleted this code. | Evan Cheng | 2009-02-28 | 1 | -0/+4 |
| * | It is possible that subprgoram definition is only encoding return value direc... | Devang Patel | 2009-02-27 | 1 | -2/+6 |
| * | Refactor TLS code and add some tests. The tests and expected results are: | Rafael Espindola | 2009-02-27 | 1 | -0/+22 |
| * | MachineLICM CSE should match destination register classes; avoid hoisting imp... | Evan Cheng | 2009-02-27 | 1 | -3/+13 |
| * | Enable stack slot coloring DCE. Evan's spiller fixes were needed before this... | Owen Anderson | 2009-02-26 | 1 | -7/+2 |
| * | The last commit was overly conservative. It's ok to reuse value that's alread... | Evan Cheng | 2009-02-26 | 1 | -7/+0 |
| * | If an available register falls through to a succ block, unset the last kill. ... | Evan Cheng | 2009-02-26 | 1 | -37/+76 |
| * | Revert BuildVectorSDNode related patches: 65426, 65427, and 65296. | Evan Cheng | 2009-02-25 | 7 | -219/+104 |
| * | Fix big-endian codegen bug. We're splitting up | Dale Johannesen | 2009-02-25 | 1 | -1/+2 |
| * | Print variable's display name in dwarf DIE. | Devang Patel | 2009-02-25 | 1 | -1/+1 |
| * | Clean up dwarf writer, part 1. This eliminated the horrible recursive getGlob... | Evan Cheng | 2009-02-25 | 4 | -335/+414 |
| * | Expand tabs to spaces (overlooked in previous commit) | Scott Michel | 2009-02-25 | 1 | -12/+12 |
| * | Remove all "cached" data from BuildVectorSDNode, preferring to retrieve | Scott Michel | 2009-02-25 | 1 | -13/+8 |
| * | Overhaul my earlier submission due to feedback. It's a large patch, but most of | Bill Wendling | 2009-02-24 | 3 | -4/+2 |