| Commit message (Expand) | Author | Age | Files | Lines |
* | Eliminate unnecessary empty string literals. | Dan Gohman | 2010-08-04 | 1 | -1/+1 |
* | Convert some tab stops into spaces. | Duncan Sands | 2010-07-12 | 1 | -1/+1 |
* | Change errs() to dbgs(). | David Greene | 2010-01-05 | 1 | -1/+1 |
* | Add edge source labels to SelectionDAG graphs, now that the graph printing | Dan Gohman | 2009-12-01 | 1 | -0/+5 |
* | Minor cleanups. | Dan Gohman | 2009-12-01 | 1 | -9/+9 |
* | Trim an unnecessary #include. | Dan Gohman | 2009-12-01 | 1 | -1/+0 |
* | Fix last DOTGraphTraits problems in CompilationGraph. | Tobias Grosser | 2009-11-30 | 1 | -1/+1 |
* | Remove ShortNames from getNodeLabel in DOTGraphTraits | Tobias Grosser | 2009-11-30 | 1 | -13/+14 |
* | Instantiate DefaultDOTGraphTraits | Tobias Grosser | 2009-11-30 | 1 | -2/+5 |
* | Fix some refactos for iostream changes (in -Asserts mode). | Daniel Dunbar | 2009-08-23 | 1 | -14/+14 |
* | remove a few DOUTs here and there. | Chris Lattner | 2009-08-23 | 1 | -1/+1 |
* | Split EVT into MVT and EVT, the former representing _just_ a primitive type, ... | Owen Anderson | 2009-08-11 | 1 | -2/+2 |
* | Rename MVT to EVT, in preparation for splitting SimpleValueType out into its ... | Owen Anderson | 2009-08-10 | 1 | -4/+4 |
* | Switch to getNameStr(). | Daniel Dunbar | 2009-07-24 | 1 | -2/+2 |
* | implement DOTGraphTraits<SelectionDAG*>::getNodeLabel in terms of | Chris Lattner | 2009-06-26 | 1 | -138/+5 |
* | dot graph viewing is apparently not using SDNode::print_details, this is bad, | Chris Lattner | 2009-06-26 | 1 | -0/+7 |
* | Get rid of the global CFGOnly flag by threading a ShortNames parameters throu... | Owen Anderson | 2009-06-24 | 1 | -4/+7 |
* | Fix some significant problems with constant pools that resulted in unnecessar... | Evan Cheng | 2009-03-13 | 1 | -1/+1 |
* | Oops...I committed too much. | Bill Wendling | 2009-03-13 | 1 | -2/+2 |
* | Temporarily XFAIL this test. | Bill Wendling | 2009-03-13 | 1 | -2/+2 |
* | Pass in a std::string when getting the names of debugging things. This cuts down | Bill Wendling | 2009-03-09 | 1 | -1/+2 |
* | Move ScheduleDAGSDNodes.h to be a private header. Front-ends | Dan Gohman | 2009-02-06 | 1 | -1/+1 |
* | Use DebugInfo interface to lower dbg_* intrinsics. | Devang Patel | 2009-01-13 | 1 | -1/+3 |
* | Fix printing of PseudoSourceValues in SDNode graphs. | Dan Gohman | 2008-12-15 | 1 | -5/+3 |
* | Experimental post-pass scheduling support. Post-pass scheduling | Dan Gohman | 2008-11-19 | 1 | -79/+11 |
* | Move the code for printing a graph node label for an SUnit into | Dan Gohman | 2008-11-19 | 1 | -21/+18 |
* | Check in the correct version of the patch in r59279. | Dan Gohman | 2008-11-14 | 1 | -1/+1 |
* | Debug printing for SUnits that carry MachineInstrs. | Dan Gohman | 2008-11-14 | 1 | -10/+17 |
* | Initial support for carrying MachineInstrs in SUnits. | Dan Gohman | 2008-11-14 | 1 | -4/+17 |
* | Change DOTGraphTraits<ScheduleDAG*>::getGraphName how to find the name of | Dan Gohman | 2008-11-13 | 1 | -1/+1 |
* | Remove the FlaggedNodes member from SUnit. Instead of requiring each SUnit | Dan Gohman | 2008-11-13 | 1 | -8/+11 |
* | Make the Node member of SUnit private, and add accessors. | Dan Gohman | 2008-11-13 | 1 | -2/+2 |
* | Change ScheduleDAG's DAG member from a reference to a pointer, to prepare | Dan Gohman | 2008-11-13 | 1 | -4/+4 |
* | Fix bogus comparison of "const char *" with c-string literal. Use strcmp ins... | Ted Kremenek | 2008-10-27 | 1 | -2/+2 |
* | Add setSubgraphColor to color an entire portion of a SelectionDAG. This | David Greene | 2008-10-27 | 1 | -0/+57 |
* | Don't truncate GlobalAddress offsets to int in debug output. | Dan Gohman | 2008-10-18 | 1 | -1/+1 |
* | don't print GlobalAddressSDNode's with an offset of zero as "foo0". | Chris Lattner | 2008-09-21 | 1 | -5/+6 |
* | Reverting r56249. On further investigation, this functionality isn't needed. | Bill Wendling | 2008-09-16 | 1 | -2/+3 |
* | Include the alignment value when displaying ConstantPoolSDNodes. | Dan Gohman | 2008-09-16 | 1 | -0/+1 |
* | - Change "ExternalSymbolSDNode" to "SymbolSDNode". | Bill Wendling | 2008-09-16 | 1 | -3/+2 |
* | Define CallSDNode, an SDNode subclass for use with ISD::CALL. | Dan Gohman | 2008-09-13 | 1 | -0/+6 |
* | Rename ConstantSDNode::getValue to getZExtValue, for consistency | Dan Gohman | 2008-09-12 | 1 | -1/+1 |
* | erect abstraction boundaries for accessing SDValue members, rename Val -> Nod... | Gabor Greif | 2008-08-28 | 1 | -3/+3 |
* | disallow direct access to SDValue::ResNo, provide a getter instead | Gabor Greif | 2008-08-26 | 1 | -2/+2 |
* | get MachineConstantPool off std::ostream, onto raw_ostream. It would be | Chris Lattner | 2008-08-23 | 1 | -10/+17 |
* | Move SelectionDAG::viewGraph() out of line; as an inline function | Dan Gohman | 2008-07-30 | 1 | -0/+5 |
* | Make the ScheduleDAG's GraphRoot edge be blue and dashed too, like | Dan Gohman | 2008-07-27 | 1 | -1/+2 |
* | Rename SDOperand to SDValue. | Dan Gohman | 2008-07-27 | 1 | -1/+1 |
* | Make the GraphRoot edge look like a chain edge, which is more accurate, | Dan Gohman | 2008-07-22 | 1 | -1/+2 |
* | Enhance the GraphWriter support for edge destinations, and teach the | Dan Gohman | 2008-07-21 | 1 | -6/+31 |