| Commit message (Expand) | Author | Age | Files | Lines |
* | remove std::ostream versions of printing stuff for MBB and MF, | Chris Lattner | 2009-08-23 | 1 | -10/+1 |
* | remove dead PrefixPrinter class. | Chris Lattner | 2009-08-23 | 1 | -6/+4 |
* | random cleanups. | Chris Lattner | 2009-08-23 | 1 | -25/+24 |
* | fix another bozo bug | Chris Lattner | 2009-08-18 | 1 | -2/+2 |
* | fix accidentally inverted conditional and add comment. | Chris Lattner | 2009-08-18 | 1 | -1/+4 |
* | turn this conditional into something humans might actually | Chris Lattner | 2009-08-18 | 1 | -8/+25 |
* | Re-apply LiveInterval index dumping patch, with fixes suggested by Bill | David Greene | 2009-08-03 | 1 | -4/+6 |
* | Move more to raw_ostream, provide support for writing MachineBasicBlock, | Daniel Dunbar | 2009-07-24 | 1 | -1/+11 |
* | revert r76602, 76603, and r76615, pending design discussions. | Chris Lattner | 2009-07-21 | 1 | -3/+1 |
* | Add PrefixPrinter arguments to the dump routines for MachineFunction and | David Greene | 2009-07-21 | 1 | -1/+3 |
* | If a MachineBasicBlock has multiple ways of reaching another block, | Dan Gohman | 2009-05-05 | 1 | -4/+2 |
* | Reapply 68073, with fixes. EH Landing-pad basic blocks are not | Dan Gohman | 2009-03-31 | 1 | -0/+10 |
* | Constify arguments in isSuccessor and isLayoutSuccessor. | Dan Gohman | 2009-03-30 | 1 | -2/+2 |
* | Delete unnecessary parens around return values. | Dan Gohman | 2009-01-08 | 1 | -1/+1 |
* | Switch the MachineOperand accessors back to the short names like | Dan Gohman | 2008-10-03 | 1 | -1/+1 |
* | Add a new MachineBasicBlock utility function, isLayoutSuccessor, that | Dan Gohman | 2008-10-02 | 1 | -0/+5 |
* | Remove isImm(), isReg(), and friends, in favor of | Dan Gohman | 2008-09-13 | 1 | -1/+2 |
* | Fold the useful features of alist and alist_node into ilist, and | Dan Gohman | 2008-07-28 | 1 | -24/+12 |
* | Re-introduce LeakDetector support for MachineInstrs and MachineBasicBlocks. | Dan Gohman | 2008-07-17 | 1 | -0/+12 |
* | Pool-allocation for MachineInstrs, MachineBasicBlocks, and | Dan Gohman | 2008-07-07 | 1 | -53/+53 |
* | Added addition atomic instrinsics and, or, xor, min, and max. | Mon P Wang | 2008-05-05 | 1 | -0/+13 |
* | - Check if a register is livein before removing it. It may have already been ... | Evan Cheng | 2008-04-24 | 1 | -0/+5 |
* | Add a quick and dirty "loop aligner pass". x86 uses it to align its loops to ... | Evan Cheng | 2008-02-28 | 1 | -0/+1 |
* | Rename PrintableName to Name. | Bill Wendling | 2008-02-26 | 1 | -1/+1 |
* | Change "Name" to "AsmName" in the target register info. Gee, a refactoring tool | Bill Wendling | 2008-02-26 | 1 | -1/+1 |
* | Rename MRegisterInfo to TargetRegisterInfo. | Dan Gohman | 2008-02-10 | 1 | -7/+7 |
* | remove #includage | Chris Lattner | 2008-01-07 | 1 | -1/+1 |
* | rename TargetInstrDescriptor -> TargetInstrDesc. | Chris Lattner | 2008-01-07 | 1 | -3/+3 |
* | Rename MachineInstr::getInstrDescriptor -> getDesc(), which reflects | Chris Lattner | 2008-01-07 | 1 | -4/+3 |
* | Implement automatically updated def/use lists for all MachineInstr register | Chris Lattner | 2008-01-01 | 1 | -4/+55 |
* | properly encapsulate the parent field of MBB and MI with get/set accessors. | Chris Lattner | 2007-12-31 | 1 | -19/+21 |
* | Add new shorter predicates for testing machine operands for various types: | Chris Lattner | 2007-12-30 | 1 | -3/+2 |
* | Remove attribution from file headers, per discussion on llvmdev. | Chris Lattner | 2007-12-29 | 1 | -2/+2 |
* | Use empty() member functions when that's what's being tested for instead | Dan Gohman | 2007-10-03 | 1 | -1/+1 |
* | Silence warning while compiling with gcc 4.2 | Anton Korobeynikov | 2007-09-02 | 1 | -1/+2 |
* | Fix misue of iterator pointing to erased object. Uncovered by | David Greene | 2007-06-29 | 1 | -3/+3 |
* | Move CorrectExtraCFGEdges() from BranchFolding.cpp to a MachineBasicBlock met... | Evan Cheng | 2007-06-18 | 1 | -0/+60 |
* | Move ReplaceUsesOfBlockWith() out of BranchFolding into a MachineBasicBlock g... | Evan Cheng | 2007-06-04 | 1 | -0/+27 |
* | Move isSuccessor() offline, change it to use std::find. | Evan Cheng | 2007-05-17 | 1 | -0/+6 |
* | print isLandingPad() for MBBs | Chris Lattner | 2007-04-30 | 1 | -3/+5 |
* | Print preds / succs BB numbers. | Evan Cheng | 2007-03-09 | 1 | -2/+2 |
* | Re-apply my liveintervalanalysis changes. Now with PR1207 fixes. | Evan Cheng | 2007-02-19 | 1 | -1/+7 |
* | For PR1207: | Reid Spencer | 2007-02-19 | 1 | -7/+1 |
* | Added removeLiveIn. | Evan Cheng | 2007-02-17 | 1 | -1/+7 |
* | Add live-ins to MachineBasicBlock. | Evan Cheng | 2007-02-10 | 1 | -1/+22 |
* | The best unbreakage yet, addressing Bill's concerns. | Jeff Cohen | 2006-12-16 | 1 | -5/+0 |
* | An even better unbreakage... | Jeff Cohen | 2006-12-15 | 1 | -0/+5 |
* | Removed more <iostream> includes | Bill Wendling | 2006-12-07 | 1 | -2/+1 |
* | Change MachineInstr ctor's to take a TargetInstrDescriptor reference instead | Evan Cheng | 2006-11-27 | 1 | -1/+1 |
* | Implement operator<< for machine basic blocks to make it easier to dump them. | Chris Lattner | 2006-11-18 | 1 | -0/+4 |