Age | Commit message (Expand) | Author |
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 |
2008-03-11 | When the register allocator runs out of registers, spill a physical register ... | Evan Cheng |
2008-03-11 | variadic instructions don't have operand info for variadic arguments. | Chris Lattner |
2008-03-11 | If a register operand comes from the variadic part of a node, don't | Chris Lattner |
2008-03-10 | Correctly clone FlaggedNodes. | Dan Gohman |
2008-03-10 | Revert 48125, 48126, and 48130 for now to unbreak some x86-64 tests. | Evan Cheng |
2008-03-10 | Allow insert_subreg into implicit, target-specific values. | Christopher Lamb |
2008-03-09 | teach X86InstrInfo::copyRegToReg how to copy into ST(0) from | Chris Lattner |
2008-03-09 | Add ScheduleDAG support for copytoreg where the src/dst register are | Chris Lattner |
2008-03-09 | fix 80 col violation | Chris Lattner |
2008-03-04 | Some improvements related to the computation of heights, depths of SUnits. | Roman Levenstein |