aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/VirtRegRewriter.cpp
Commit message (Expand)AuthorAgeFilesLines
* Fix evil VirtRegRewriter bug.Jakob Stoklund Olesen2011-03-301-0/+28
* Teach VirtRegRewriter about the new virtual register numbers. No functional c...Jakob Stoklund Olesen2011-03-301-10/+11
* VirtRegRewriter assertion fix.Andrew Trick2011-02-221-2/+4
* Remove a duplicated check.Evan Cheng2011-02-161-1/+1
* VirtRegRewriter fix: update kill flags, which are used by the scavenger.Andrew Trick2011-01-271-64/+88
* Teach VirtRegRewriter to update slot indexes when erasing instructions.Jakob Stoklund Olesen2011-01-121-38/+26
* Annotate VirtRegRewriter debug output with slot indexes.Jakob Stoklund Olesen2011-01-121-2/+2
* Do not model all INLINEASM instructions as having unmodelled side effects.Evan Cheng2011-01-071-2/+9
* DBG_VALUE does not have any side effects; it also makes no sense to mark it c...Evan Cheng2011-01-071-1/+2
* Prune includes.Benjamin Kramer2010-11-061-1/+1
* Properly handle reloading and spilling around partial redefines inJakob Stoklund Olesen2010-10-111-0/+14
* Per discussion with Sanjiv, remove the PIC16 target from mainline. When/ifChris Lattner2010-10-111-1/+1
* Extract method ProcessUses from LocalRewriter::RewriteMBB. Both parent and childJakob Stoklund Olesen2010-10-081-320/+336
* Don't add <imp-def> operands during register rewriting.Jakob Stoklund Olesen2010-09-071-16/+9
* VirtRegRewriter checks for early clobbers before it reuses an available stackJakob Stoklund Olesen2010-09-031-5/+7
* Avoid using a live std::multimap iterator while editing the map. It looks likeJakob Stoklund Olesen2010-08-051-7/+13
* 80 columnJim Grosbach2010-07-271-4/+4
* fix typoJim Grosbach2010-07-271-1/+1
* Remove remaining calls to TII::isMoveInstr.Jakob Stoklund Olesen2010-07-161-36/+0
* Convert the last getPhysicalRegisterRegClass in VirtRegRewriter.cpp toRafael Espindola2010-07-121-1/+1
* Convert uses of getPhysicalRegisterRegClass in VirtRegRewriter.cpp.Rafael Espindola2010-07-111-2/+2
* Replace copyRegToReg with COPY everywhere in lib/CodeGen except for FastISel.Jakob Stoklund Olesen2010-07-101-30/+11
* Change TII::foldMemoryOperand API to require the machine instruction to beJakob Stoklund Olesen2010-07-091-8/+8
* Handle COPY in VirtRegRewriter.Jakob Stoklund Olesen2010-07-091-0/+28
* Convert EXTRACT_SUBREG to COPY when emitting machine instrs.Jakob Stoklund Olesen2010-07-081-1/+1
* Cosmetic.Dale Johannesen2010-06-251-5/+2
* Fix a case where an earlyclobber operand of an asmDale Johannesen2010-06-251-0/+17
* Slightly change the meaning of the reMaterialize target hook when the originalJakob Stoklund Olesen2010-06-021-2/+1
* Teach VirtRegRewriter to handle spilling in instructions that have multipleJakob Stoklund Olesen2010-05-211-1/+7
* It's not safe eliminate copies where src and dst have different sub-register ...Evan Cheng2010-05-111-2/+4
* Add a DebugLoc argument to TargetInstrInfo::copyRegToReg, so that itDan Gohman2010-05-061-3/+6
* Add argument TargetRegisterInfo to loadRegFromStackSlot and storeRegToStackSlot.Evan Cheng2010-05-061-10/+11
* Remove DBG_VALUE which reference dead stack slots.Evan Cheng2010-04-291-2/+19
* Fix a number of clang -Wsign-compare warnings that didn't have an obviousJohn McCall2010-04-061-1/+1
* Code clean up. Move includes from VirtRegRewriter.h to VirtRegRewriter.cpp.Evan Cheng2010-04-061-0/+2
* Avoid being influenced by the presence of dbg_value instructions.Evan Cheng2010-03-301-4/+15
* Debug info shouldn't affect kills.Dale Johannesen2010-03-261-0/+3
* Extract methods from LocalRewriter::RewriteMBB bringing it down to 666 lines.Jakob Stoklund Olesen2010-03-111-168/+197
* VirtRegRewriter spring cleaning. No functional change.Jakob Stoklund Olesen2010-03-111-1255/+1292
* Uniformize the way these options are printed. Requested byDuncan Sands2010-02-181-1/+1
* Fix PR6283.Jakob Stoklund Olesen2010-02-131-15/+16
* fix a layering violation: VirtRegRewriter.cpp shouldn't use AsmPrinter.h.Chris Lattner2010-02-101-4/+3
* fix missing #includes.Chris Lattner2010-02-101-0/+1
* move target-independent opcodes out of TargetInstrInfoChris Lattner2010-02-091-3/+2
* Add <imp-def> and <imp-kill> operands when replacing virtual sub-register def...Jakob Stoklund Olesen2010-01-061-17/+37
* Change errs() to dbgs().David Greene2010-01-051-45/+45
* improve portability to avoid conflicting with std::next in c++'0x.Chris Lattner2009-12-031-14/+14
* Add MachineBasicBlock::getName, and use it in place of getBasicBlock()->getName.Jakob Stoklund Olesen2009-11-201-1/+1
* Fixed the in-place spiller and trivial rewriter, which had been broken by the...Lang Hames2009-11-181-10/+21
* Added getSubRegIndex(A,B) that returns subreg index of A to B. Use it to repl...Evan Cheng2009-11-141-5/+2