| Age | Commit message (Expand) | Author |
| 2006-03-09 | switch the t-d scheduler to use a really dumb and trivial critical path | Chris Lattner |
| 2006-03-09 | Pull latency information for target instructions out of the latency tables. :) | Chris Lattner |
| 2006-03-09 | don't copy all itinerary data | Chris Lattner |
| 2006-03-09 | PriorityQueue is an instance var, use it. | Chris Lattner |
| 2006-03-09 | add some comments | Chris Lattner |
| 2006-03-09 | Refactor the priority mechanism one step further: now that it is a separate | Chris Lattner |
| 2006-03-08 | Get rid of the multiple copies of getStringValue. Now a Constant:: method. | Jim Laskey |
| 2006-03-08 | Split the priority function computation and priority queue management out | Chris Lattner |
| 2006-03-08 | switch from an explicitly managed list of SUnits to a simple vector of sunits | Chris Lattner |
| 2006-03-08 | Shrinkify some fields, fit to 80 columns | Chris Lattner |
| 2006-03-08 | revert the previous patch, didn't mean to check it in yet | Chris Lattner |
| 2006-03-08 | remove "Slot", it is dead | Chris Lattner |
| 2006-03-08 | Change the interface for getting a target HazardRecognizer to be more clean. | Chris Lattner |
| 2006-03-07 | Fix some formatting, when looking for hazards, prefer target nodes over | Chris Lattner |
| 2006-03-06 | update file comment | Chris Lattner |
| 2006-03-06 | Remove some code that doesn't make sense | Evan Cheng |
| 2006-03-06 | Remove SUnit::Priority1: it is re-calculated on demand as number of live | Evan Cheng |
| 2006-03-06 | Hoist the HazardRecognizer out of the ScheduleDAGList.cpp file to where | Chris Lattner |
| 2006-03-05 | Comment fixes | Chris Lattner |
| 2006-03-05 | Don't depend on the C99 copysign function, implement it ourselves. | Chris Lattner |
| 2006-03-05 | When a hazard recognizer needs noops to be inserted, do so. This represents | Chris Lattner |
| 2006-03-05 | Implement G5HazardRecognizer as a trivial thing that wants 5 cycles between | Chris Lattner |
| 2006-03-05 | Add basic hazard recognizer support. noop insertion isn't complete yet though. | Chris Lattner |
| 2006-03-05 | Fix VC++ compilation error. | Jeff Cohen |
| 2006-03-05 | Split the list scheduler into top-down and bottom-up pieces. The priority | Chris Lattner |
| 2006-03-05 | Move the available queue to being inside the ListSchedule method, since it | Chris Lattner |
| 2006-03-05 | Reinstate this now that the offending opposite xform has been removed. | Chris Lattner |
| 2006-03-05 | Do not fold (add (shl x, c1), (shl c2, c1)) -> (shl (add x, c2), c1), | Chris Lattner |
| 2006-03-05 | print arbitrary constant pool entries | Chris Lattner |
| 2006-03-05 | Back out fold (shl (add x, c1), c2) -> (add (shl x, c2), c1<<c2) for now. | Evan Cheng |
| 2006-03-05 | Add some simple copysign folds | Chris Lattner |
| 2006-03-05 | Codegen copysign[f] into a FCOPYSIGN node | Chris Lattner |
| 2006-03-04 | fold (mul (add x, c1), c2) -> (add (mul x, c2), c1*c2) | Chris Lattner |
| 2006-03-03 | Add more vector NodeTypes: VSDIV, VUDIV, VAND, VOR, and VXOR. | Evan Cheng |
| 2006-03-03 | Number of NodeTypes now exceeds 128. | Evan Cheng |
| 2006-03-03 | SDOperand::isOperand should not be a forwarding. It must check *this against ... | Evan Cheng |
| 2006-03-03 | Added isOperand(N): true if this is an operand of N | Evan Cheng |
| 2006-03-03 | A bit more tweaking | Evan Cheng |
| 2006-03-03 | Fix VC++ compilation errors. | Jeff Cohen |
| 2006-03-03 | remove the read/write port/io intrinsics. | Chris Lattner |
| 2006-03-03 | Split memcpy/memset/memmove intrinsics into i32/i64 versions, resolving | Chris Lattner |
| 2006-03-02 | - Fixed some priority calculation bugs that were causing bug 478. Among them: | Evan Cheng |
| 2006-03-01 | Fix CodeGen/Generic/2006-03-01-dagcombineinfloop.ll, an infinite loop | Chris Lattner |
| 2006-03-01 | Fix a typo evan noticed | Chris Lattner |
| 2006-03-01 | Add support for target-specific dag combines | Chris Lattner |
| 2006-03-01 | Add interfaces for targets to provide target-specific dag combiner optimizati... | Chris Lattner |
| 2006-03-01 | Add a new AddToWorkList method, start using it | Chris Lattner |
| 2006-03-01 | Pull shifts by a constant through multiplies (a form of reassociation), | Chris Lattner |
| 2006-03-01 | Vector ops lowering. | Evan Cheng |
| 2006-03-01 | - Added VConstant as an abstract version of ConstantVec. | Evan Cheng |