| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | It's possible that a flag is added to the SDNode that points back to the | Bill Wendling | 2010-06-24 | 1 | -11/+19 |
* | MorphNodeTo doesn't preserve the memory operands. Because we're morphing a node | Bill Wendling | 2010-06-23 | 1 | -0/+21 |
* | Use A.append(...) instead of A.insert(A.end(), ...) when A is a | Dan Gohman | 2010-06-21 | 1 | -1/+1 |
* | Code refactoring, no functionality changes. | Evan Cheng | 2010-06-10 | 1 | -82/+83 |
* | Fix some latency computation bugs: if the use is not a machine opcode do not ... | Evan Cheng | 2010-05-28 | 1 | -6/+15 |
* | Allow targets more controls on what nodes are scheduled by reg pressure, what... | Evan Cheng | 2010-05-20 | 1 | -0/+20 |
* | Add a hybrid bottom up scheduler that reduce register usage while avoiding | Evan Cheng | 2010-05-20 | 1 | -1/+36 |
* | Code clean up. | Evan Cheng | 2010-05-19 | 1 | -7/+7 |
* | Get rid of the EdgeMapping map. Instead, just check for BasicBlock | Dan Gohman | 2010-05-01 | 1 | -4/+3 |
* | EmitDbgValue doesn't need its EdgeMapping argument. | Dan Gohman | 2010-04-30 | 1 | -7/+6 |
* | Add DBG_VALUE handling for byval parameters; this | Dale Johannesen | 2010-04-26 | 1 | -3/+14 |
* | - Move TargetLowering::EmitTargetCodeForFrameDebugValue to TargetInstrInfo an... | Evan Cheng | 2010-04-26 | 1 | -12/+17 |
* | Fix -Wcast-qual warnings. | Dan Gohman | 2010-04-17 | 1 | -2/+2 |
* | Scheduler assumes SDDbgValue nodes are in source order. That's true currently... | Evan Cheng | 2010-03-25 | 1 | -0/+8 |
* | Remove a fixme that doesn't make sense any more. | Evan Cheng | 2010-03-25 | 1 | -2/+0 |
* | Change how dbg_value sdnodes are converted into machine instructions. Their p... | Evan Cheng | 2010-03-25 | 1 | -16/+115 |
* | Rename SDDbgValue.h to SDNodeDbgValue.h for consistency. | Evan Cheng | 2010-03-14 | 1 | -1/+1 |
* | Progress towards shepherding debug info through SelectionDAG. | Dale Johannesen | 2010-03-10 | 1 | -0/+19 |
* | Change the scheduler from adding nodes in allnodes order | Chris Lattner | 2010-02-24 | 1 | -2/+14 |
* | Enable pre-regalloc scheduling load clustering by default. | Evan Cheng | 2010-01-22 | 1 | -7/+1 |
* | Teach pre-regalloc scheduler to schedule loads from nearby addresses. It may ... | Evan Cheng | 2010-01-22 | 1 | -0/+130 |
* | Change errs() to dbgs(). | David Greene | 2010-01-05 | 1 | -4/+4 |
* | Changes from review: | Bill Wendling | 2009-12-18 | 1 | -6/+0 |
* | Reapply r91392, it was only unmasking the bug, and since TOT is still broken ... | Daniel Dunbar | 2009-12-16 | 1 | -0/+6 |
* | Revert "Initial work on disabling the scheduler. This is a work in progress, and | Daniel Dunbar | 2009-12-16 | 1 | -6/+0 |
* | Initial work on disabling the scheduler. This is a work in progress, and this | Bill Wendling | 2009-12-15 | 1 | -0/+6 |
* | Create a new InstrEmitter class for translating SelectionDAG nodes | Dan Gohman | 2009-10-10 | 1 | -26/+42 |
* | The ScheduleDAG framework now requires an AliasAnalysis argument, though | Dan Gohman | 2009-10-09 | 1 | -1/+1 |
* | Improve MachineMemOperand handling. | Dan Gohman | 2009-09-25 | 1 | -13/+3 |
* | Remove some not-really-used variables, as warned | Duncan Sands | 2009-09-06 | 1 | -2/+0 |
* | Use the schedule itinerary operand use/def cycle information to adjust depend... | David Goodwin | 2009-08-19 | 1 | -4/+9 |
* | Add callback to allow target to adjust latency of schedule dependency edge. | David Goodwin | 2009-08-13 | 1 | -2/+10 |
* | Split EVT into MVT and EVT, the former representing _just_ a primitive type, ... | Owen Anderson | 2009-08-11 | 1 | -8/+8 |
* | Rename MVT to EVT, in preparation for splitting SimpleValueType out into its ... | Owen Anderson | 2009-08-10 | 1 | -9/+9 |
* | Move more to raw_ostream, provide support for writing MachineBasicBlock, | Daniel Dunbar | 2009-07-24 | 1 | -4/+4 |
* | Revert 72707 and 72709, for the moment. | Dale Johannesen | 2009-06-02 | 1 | -7/+0 |
* | Make the implicit inputs and outputs of target-independent | Dale Johannesen | 2009-06-01 | 1 | -0/+7 |
* | Don't set SUnit::hasPhysRegDefs to true unless the defs are | Dan Gohman | 2009-03-23 | 1 | -1/+4 |
* | Add a new bit to SUnit to record whether a node has implicit physreg | Dan Gohman | 2009-03-23 | 1 | -3/+6 |
* | Simplify this code; use a while instead of an if and a do-while. | Dan Gohman | 2009-03-20 | 1 | -9/+6 |
* | When scheduling a block in parts, keep track of the overall | Dan Gohman | 2009-02-11 | 1 | -0/+8 |
* | Move ScheduleDAGSDNodes.h to be a private header. Front-ends | Dan Gohman | 2009-02-06 | 1 | -1/+1 |
* | CreateVirtualRegisters does trivial copy coalescing. If a node def is used by... | Evan Cheng | 2009-01-16 | 1 | -0/+1 |
* | Move a few containers out of ScheduleDAGInstrs::BuildSchedGraph | Dan Gohman | 2009-01-15 | 1 | -3/+2 |
* | Fix PR3241: Currently EmitCopyFromReg emits a copy from the physical register... | Evan Cheng | 2009-01-12 | 1 | -8/+22 |
* | CheckForPhysRegDependency should not return copy cost. It's not used. No func... | Evan Cheng | 2009-01-11 | 1 | -9/+4 |
* | Rename BuildSchedUnits to BuildSchedGraph, and refactor the | Dan Gohman | 2008-12-23 | 1 | -4/+14 |
* | Avoid an unnecessary call to allnodes_size(), which is linear. | Dan Gohman | 2008-12-23 | 1 | -8/+11 |
* | Double the amount of memory reserved for SUnits. This is a | Dan Gohman | 2008-12-17 | 1 | -1/+3 |
* | Remove some special-case logic in ScheduleDAGSDNodes's | Dan Gohman | 2008-12-16 | 1 | -10/+0 |