Age | Commit message (Expand) | Author |
2008-11-19 | Experimental post-pass scheduling support. Post-pass scheduling | Dan Gohman |
2008-11-19 | Move the code for printing a graph node label for an SUnit into | Dan Gohman |
2008-11-19 | Convert SUnit's dump method into a print method and implement | Dan Gohman |
2008-11-19 | Fix debug printing of flagged SDNodes in SUnits so that they | Dan Gohman |
2008-11-18 | Change SUnit's dump method to take a ScheduleDAG* instead of | Dan Gohman |
2008-11-14 | Add support for building a ScheduleDAG from MachineInstrs. This is currently | Dan Gohman |
2008-11-13 | Remove the FlaggedNodes member from SUnit. Instead of requiring each SUnit | Dan Gohman |
2008-11-13 | Make the Node member of SUnit private, and add accessors. | Dan Gohman |
2008-11-13 | Change ScheduleDAG's DAG member from a reference to a pointer, to prepare | Dan Gohman |
2008-11-11 | Avoid relying on the SelectionDAG for initializing the MachineFunction and | Dan Gohman |
2008-10-25 | SDNodes may have at most one Flag result. Update this comment | Dan Gohman |
2008-09-03 | Separate MachineInstr-emitting routines from actual scheduling | Dan Gohman |
2008-08-28 | erect abstraction boundaries for accessing SDValue members, rename Val -> Nod... | Gabor Greif |
2008-08-27 | Optimize ScheduleDAG's ComputeDepths and ComputeHeights to not need | Dan Gohman |
2008-08-26 | disallow direct access to SDValue::ResNo, provide a getter instead | Gabor Greif |
2008-07-27 | Rename SDOperand to SDValue. | Dan Gohman |
2008-07-27 | Tidy SDNode::use_iterator, and complete the transition to have it | Dan Gohman |
2008-07-17 | Add a new function, ReplaceAllUsesOfValuesWith, which handles bulk | Dan Gohman |
2008-07-14 | Reapply 53476 and 53480, with a fix so that it properly updates | Dan Gohman |
2008-07-12 | Back out 53476 and 53480 for now. Somehow they cause llc to miscompile 179.art. | Evan Cheng |
2008-07-11 | Fix an obsolete top-level comment. | Dan Gohman |
2008-07-11 | Factor out debugging code into the common base class. | Dan Gohman |
2008-07-07 | Pool-allocation for MachineInstrs, MachineBasicBlocks, and | Dan Gohman |
2008-07-07 | Make DenseMap's insert return a pair, to more closely resemble std::map. | Dan Gohman |
2008-07-02 | Replace a few uses of SelectionDAG::getTargetNode with | Dan Gohman |
2008-07-02 | - Use a faster priority comparison function if -fast. | Evan Cheng |
2008-07-01 | Split ISD::LABEL into ISD::DBG_LABEL and ISD::EH_LABEL, eliminating | Dan Gohman |
2008-06-21 | Remove a redundant return. | Dan Gohman |
2008-06-21 | Remove ScheduleDAG's SUnitMap altogether. Instead, use SDNode's NodeId | Dan Gohman |
2008-06-21 | Add a priority queue class, which is a wrapper around std::priority_queue | Dan Gohman |
2008-06-21 | Change ScheduleDAG's SUnitMap from DenseMap<SDNode*, vector<SUnit*> > | Dan Gohman |
2008-06-20 | Clean up some uses of std::distance, now that we have allnodes_size. | Dan Gohman |
2008-06-06 | Wrap MVT::ValueType in a struct to get type safety | Duncan Sands |
2008-05-14 | Use a better idiom to silence compiler warnings. | Evan Cheng |
2008-05-14 | Really silence compiler warnings. | Evan Cheng |
2008-05-14 | Silence some compiler warnings. | Evan Cheng |
2008-04-20 | Switch to using Simplified ConstantFP::get API. | Chris Lattner |
2008-04-16 | Ongoing work on improving the instruction selection infrastructure: | Roman Levenstein |
2008-04-15 | Treat EntryToken nodes as "passive" so that they aren't added to the | Dan Gohman |
2008-04-07 | Rename MemOperand to MachineMemOperand. This was suggested by | Dan Gohman |
2008-04-07 | Re-commit of the r48822, where the infinite looping problem discovered | Roman Levenstein |
2008-04-03 | Start of a series of patches related to implicit_def. | Evan Cheng |
2008-04-03 | Backing out 48222 temporarily. | Evan Cheng |
2008-03-26 | Use a linked data structure for the uses lists of an SDNode, just like | Roman Levenstein |
2008-03-25 | A quick nm audit turned up several fixed tables and objects that were | Dan Gohman |
2008-03-16 | Make insert_subreg a two-address instruction, vastly simplifying LowerSubregs... | Christopher Lamb |
2008-03-15 | Replace all target specific implicit def instructions with a target independe... | Evan Cheng |
2008-03-14 | Livein copy scheduling fixes: do not coalesce physical register copies, corre... | Evan Cheng |
2008-03-12 | Experimental scheduler change to schedule / coalesce the copies added for fun... | Evan Cheng |
2008-03-11 | Recommitting parts of r48130. These do not appear to cause the observed failu... | Christopher Lamb |