| Commit message (Expand) | Author | Age | Files | Lines |
* | back out my previous hack | Chris Lattner | 2006-03-09 | 2 | -4/+4 |
* | remove temporary option | Chris Lattner | 2006-03-09 | 1 | -3/+1 |
* | temporary hack to get the build working again, apparently a header | Chris Lattner | 2006-03-09 | 2 | -4/+4 |
* | Move bit field endianness to backend. | Jim Laskey | 2006-03-09 | 2 | -10/+29 |
* | yes yes, enabled debug output is bad | Chris Lattner | 2006-03-09 | 1 | -3/+0 |
* | switch the t-d scheduler to use a really dumb and trivial critical path | Chris Lattner | 2006-03-09 | 1 | -1/+104 |
* | Pull latency information for target instructions out of the latency tables. :) | Chris Lattner | 2006-03-09 | 1 | -46/+80 |
* | don't copy all itinerary data | Chris Lattner | 2006-03-09 | 1 | -1/+1 |
* | PriorityQueue is an instance var, use it. | Chris Lattner | 2006-03-09 | 1 | -39/+33 |
* | add some comments | Chris Lattner | 2006-03-09 | 1 | -8/+13 |
* | Refactor the priority mechanism one step further: now that it is a separate | Chris Lattner | 2006-03-09 | 1 | -136/+185 |
* | Get rid of the multiple copies of getStringValue. Now a Constant:: method. | Jim Laskey | 2006-03-08 | 3 | -61/+3 |
* | Split the priority function computation and priority queue management out | Chris Lattner | 2006-03-08 | 1 | -113/+150 |
* | switch from an explicitly managed list of SUnits to a simple vector of sunits | Chris Lattner | 2006-03-08 | 1 | -35/+28 |
* | Shrinkify some fields, fit to 80 columns | Chris Lattner | 2006-03-08 | 1 | -11/+11 |
* | revert the previous patch, didn't mean to check it in yet | Chris Lattner | 2006-03-08 | 1 | -25/+2 |
* | remove "Slot", it is dead | Chris Lattner | 2006-03-08 | 2 | -34/+56 |
* | Change the interface for getting a target HazardRecognizer to be more clean. | Chris Lattner | 2006-03-08 | 3 | -18/+15 |
* | libstdc++-v3 was failing to build. Needed to handle composite types with empty | Jim Laskey | 2006-03-08 | 1 | -5/+8 |
* | Use "llvm.metadata" section for debug globals. Filter out these globals in the | Jim Laskey | 2006-03-07 | 2 | -2/+9 |
* | Switch to using a numeric id for anchors. | Jim Laskey | 2006-03-07 | 1 | -12/+28 |
* | Bitfield support. | Jim Laskey | 2006-03-07 | 1 | -2/+14 |
* | Fix some formatting, when looking for hazards, prefer target nodes over | Chris Lattner | 2006-03-07 | 1 | -7/+15 |
* | update file comment | Chris Lattner | 2006-03-06 | 1 | -3/+8 |
* | Remove some code that doesn't make sense | Evan Cheng | 2006-03-06 | 1 | -12/+5 |
* | Remove SUnit::Priority1: it is re-calculated on demand as number of live | Evan Cheng | 2006-03-06 | 1 | -35/+25 |
* | Hoist the HazardRecognizer out of the ScheduleDAGList.cpp file to where | Chris Lattner | 2006-03-06 | 2 | -112/+32 |
* | Comment fixes | Chris Lattner | 2006-03-05 | 1 | -2/+2 |
* | Don't depend on the C99 copysign function, implement it ourselves. | Chris Lattner | 2006-03-05 | 1 | -7/+17 |
* | When a hazard recognizer needs noops to be inserted, do so. This represents | Chris Lattner | 2006-03-05 | 2 | -10/+19 |
* | Implement G5HazardRecognizer as a trivial thing that wants 5 cycles between | Chris Lattner | 2006-03-05 | 1 | -2/+42 |
* | Add basic hazard recognizer support. noop insertion isn't complete yet though. | Chris Lattner | 2006-03-05 | 1 | -15/+104 |
* | Fix VC++ compilation error. | Jeff Cohen | 2006-03-05 | 1 | -0/+5 |
* | Split the list scheduler into top-down and bottom-up pieces. The priority | Chris Lattner | 2006-03-05 | 2 | -43/+185 |
* | Move the available queue to being inside the ListSchedule method, since it | Chris Lattner | 2006-03-05 | 1 | -10/+15 |
* | Reinstate this now that the offending opposite xform has been removed. | Chris Lattner | 2006-03-05 | 1 | -0/+7 |
* | Do not fold (add (shl x, c1), (shl c2, c1)) -> (shl (add x, c2), c1), | Chris Lattner | 2006-03-05 | 1 | -18/+0 |
* | print arbitrary constant pool entries | Chris Lattner | 2006-03-05 | 1 | -0/+9 |
* | Back out fold (shl (add x, c1), c2) -> (add (shl x, c2), c1<<c2) for now. | Evan Cheng | 2006-03-05 | 1 | -7/+0 |
* | Add some simple copysign folds | Chris Lattner | 2006-03-05 | 2 | -7/+61 |
* | Codegen copysign[f] into a FCOPYSIGN node | Chris Lattner | 2006-03-05 | 3 | -4/+63 |
* | fold (mul (add x, c1), c2) -> (add (mul x, c2), c1*c2) | Chris Lattner | 2006-03-04 | 1 | -1/+14 |
* | Added support for dwarf block data entries. | Jim Laskey | 2006-03-03 | 1 | -49/+248 |
* | Adding basic structure support. | Jim Laskey | 2006-03-03 | 2 | -4/+46 |
* | Add more vector NodeTypes: VSDIV, VUDIV, VAND, VOR, and VXOR. | Evan Cheng | 2006-03-03 | 2 | -8/+20 |
* | Number of NodeTypes now exceeds 128. | Evan Cheng | 2006-03-03 | 1 | -1/+1 |
* | SDOperand::isOperand should not be a forwarding. It must check *this against ... | Evan Cheng | 2006-03-03 | 1 | -0/+7 |
* | Added isOperand(N): true if this is an operand of N | Evan Cheng | 2006-03-03 | 1 | -0/+7 |
* | A bit more tweaking | Evan Cheng | 2006-03-03 | 1 | -6/+24 |
* | Fix VC++ compilation errors. | Jeff Cohen | 2006-03-03 | 1 | -4/+4 |