| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix a bunch more layering of CodeGen headers that are in Target | David Blaikie | 2017-11-17 | 1 | -1/+1 |
* | Target/TargetInstrInfo.h -> CodeGen/TargetInstrInfo.h to match layering | David Blaikie | 2017-11-08 | 1 | -1/+1 |
* | Sort the remaining #include lines in include/... and lib/.... | Chandler Carruth | 2017-06-06 | 1 | -1/+1 |
* | Refactoring with range-based for, NFC | Krzysztof Parzyszek | 2017-05-04 | 1 | -49/+40 |
* | Replace uint16_t with the MCPhysReg typedef in many places. A lot of physical... | Craig Topper | 2015-12-05 | 1 | -2/+2 |
* | Add allnodes() iterator range to SelectionDAG. NFC. | Pete Cooper | 2015-07-14 | 1 | -3/+2 |
* | Convert a bunch of loops to foreach. NFC. | Pete Cooper | 2015-06-26 | 1 | -2/+1 |
* | Update SetVector to rely on the underlying set's insert to return a pair<iter... | David Blaikie | 2014-11-19 | 1 | -1/+1 |
* | Convert some EVTs to MVTs where only a SimpleValueType is needed. | Craig Topper | 2014-11-16 | 1 | -5/+5 |
* | ScheduleDAG: record PhysReg dependencies represented by CopyFromReg nodes | Tim Northover | 2014-10-23 | 1 | -7/+13 |
* | [Modules] Remove potential ODR violations by sinking the DEBUG_TYPE | Chandler Carruth | 2014-04-22 | 1 | -1/+2 |
* | [C++11] More 'nullptr' conversion. In some cases just using a boolean check i... | Craig Topper | 2014-04-14 | 1 | -15/+15 |
* | [C++11] Add 'override' keyword to virtual methods that override their base cl... | Craig Topper | 2014-03-08 | 1 | -4/+5 |
* | Use SmallVectorImpl& instead of SmallVector to avoid repeating small vector s... | Craig Topper | 2013-07-14 | 1 | -6/+6 |
* | Move all of the header files which are involved in modelling the LLVM IR | Chandler Carruth | 2013-01-02 | 1 | -2/+2 |
* | Use the new script to sort the includes of every file under lib. | Chandler Carruth | 2012-12-03 | 1 | -8/+8 |
* | ScheduleDAG interface. Added OrderKind to distinguish nonregister dependencies. | Andrew Trick | 2012-11-06 | 1 | -10/+11 |
* | Symbol hygiene: Make sure declarations and definitions match, make helper fun... | Benjamin Kramer | 2012-10-20 | 1 | -0/+2 |
* | Add a really faster pre-RA scheduler (-pre-RA-sched=linearize). It doesn't use | Evan Cheng | 2012-10-17 | 1 | -0/+157 |
* | Move TargetData to DataLayout. | Micah Villmow | 2012-10-08 | 1 | -1/+1 |
* | Simplify some more getAliasSet callers. | Jakob Stoklund Olesen | 2012-06-01 | 1 | -10/+5 |
* | Use uint16_t to store instruction implicit uses and defs. Reduces static data. | Craig Topper | 2012-03-08 | 1 | -2/+2 |
* | misched preparation: rename core scheduler methods for consistency. | Andrew Trick | 2012-03-07 | 1 | -6/+6 |
* | misched preparation: modularize schedule verification. | Andrew Trick | 2012-03-07 | 1 | -1/+1 |
* | whitespace | Andrew Trick | 2012-03-07 | 1 | -5/+5 |
* | Use uint16_t to store register overlaps to reduce static data. | Craig Topper | 2012-03-04 | 1 | -1/+1 |
* | - Rename TargetInstrDesc, TargetOperandInfo to MCInstrDesc and MCOperandInfo and | Evan Cheng | 2011-06-28 | 1 | -11/+11 |
* | Distinguish early clobber output operands from clobbered registers. | Jakob Stoklund Olesen | 2011-06-27 | 1 | -1/+2 |
* | Re-commit 127368 and 127371. They are exonerated. | Evan Cheng | 2011-03-10 | 1 | -5/+12 |
* | Revert 127368 and 127371 for now. | Evan Cheng | 2011-03-09 | 1 | -12/+5 |
* | Change the definition of TargetRegisterInfo::getCrossCopyRegClass to be more | Evan Cheng | 2011-03-09 | 1 | -5/+12 |
* | flags -> glue for selectiondag | Chris Lattner | 2010-12-23 | 1 | -3/+3 |
* | rename MVT::Flag to MVT::Glue. "Flag" is a terrible name for | Chris Lattner | 2010-12-21 | 1 | -3/+3 |
* | Make fast scheduler handle asm clobbers correctly. | Dale Johannesen | 2010-08-17 | 1 | -21/+53 |
* | Add a VT argument to getMinimalPhysRegClass and replace the copy related uses | Rafael Espindola | 2010-06-29 | 1 | -1/+1 |
* | Trim unneeded includes. | Evan Cheng | 2010-01-21 | 1 | -1/+0 |
* | Change errs() to dbgs(). | David Greene | 2010-01-05 | 1 | -8/+8 |
* | Remove includes of Support/Compiler.h that are no longer needed after the | Nick Lewycky | 2009-10-25 | 1 | -1/+0 |
* | Remove VISIBILITY_HIDDEN from class/struct found inside anonymous namespaces. | Nick Lewycky | 2009-10-25 | 1 | -2/+2 |
* | The ScheduleDAG framework now requires an AliasAnalysis argument, though | Dan Gohman | 2009-10-09 | 1 | -1/+1 |
* | Fix integer overflow in instruction scheduling. This can happen if we have | Reid Kleckner | 2009-09-30 | 1 | -4/+4 |
* | Use VerifySchedule instead of doing the work manually. | Dan Gohman | 2009-09-28 | 1 | -33/+3 |
* | eliminate uses of cerr() | Chris Lattner | 2009-08-23 | 1 | -6/+6 |
* | remove a few DOUTs here and there. | Chris Lattner | 2009-08-23 | 1 | -8/+9 |
* | Split EVT into MVT and EVT, the former representing _just_ a primitive type, ... | Owen Anderson | 2009-08-11 | 1 | -3/+3 |
* | Rename MVT to EVT, in preparation for splitting SimpleValueType out into its ... | Owen Anderson | 2009-08-10 | 1 | -7/+7 |
* | llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. | Torok Edwin | 2009-07-14 | 1 | -2/+2 |
* | assert(0) -> LLVM_UNREACHABLE. | Torok Edwin | 2009-07-11 | 1 | -1/+1 |
* | Convert more assert(0)+abort() -> LLVM_UNREACHABLE, | Torok Edwin | 2009-07-11 | 1 | -2/+2 |
* | Instead of passing in an unsigned value for the optimization level, use an enum, | Bill Wendling | 2009-04-29 | 1 | -1/+1 |