aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/MachineBasicBlock.cpp
AgeCommit message (Expand)AuthorFilesLines
2015-07-29Reverting r243386 because it has serious post-commit concerns that have not b...Aaron Ballman1-0/+5
2015-07-28Changes for MachineBasicBlock to use SortedVector for LiveIns.Puyan Lotfi1-5/+0
2015-06-26CodeGen: Push the ModuleSlotTracker through MachineOperandsDuncan P. N. Exon Smith1-1/+1
2015-06-26CodeGen: Use a single SlotTracker in MachineFunction::print()Duncan P. N. Exon Smith1-1/+16
2015-06-23[MachineBasicBlock] Add getFirstNonDebugInstr to complement getLastNonDebugInstrBenjamin Kramer1-0/+8
2015-06-23[MachineBasicBlock] Use the const_cast(this) trick to reduce duplicationBenjamin Kramer1-25/+0
2015-05-27MachineBasicBlock: Cleanup computeRegisterLiveness()Matthias Braun1-16/+14
2015-05-18MC: Clean up method names in MCContext.Jim Grosbach1-1/+1
2015-03-27Remove superfluous .str() and replace std::string concatenation with Twine.Yaron Keren1-1/+1
2015-02-27Rewrite MachineOperand::print and MachineInstr::print to avoidEric Christopher1-1/+1
2014-12-22The leak detector is dead, long live asan and valgrind.Rafael Espindola1-5/+0
2014-12-11CodeGen: Stop using LeakDetector for MachineInstrDuncan P. N. Exon Smith1-4/+0
2014-12-04Allow target to specify prefix for labelsMatt Arsenault1-3/+1
2014-11-19Update SetVector to rely on the underlying set's insert to return a pair<iter...David Blaikie1-1/+1
2014-08-13[MachineDominatorTree] Provide a method to inform a MachineDominatorTree that aQuentin Colombet1-25/+2
2014-08-05Have MachineFunction cache a pointer to the subtarget to make lookupsEric Christopher1-14/+8
2014-08-04Remove the TargetMachine forwards for TargetSubtargetInfo basedEric Christopher1-8/+17
2014-07-02Fix missing constMatt Arsenault1-1/+1
2014-04-21[Modules] Make Support/Debug.h modular. This requires it to not changeChandler Carruth1-0/+2
2014-04-14[C++11] More 'nullptr' conversion. In some cases just using a boolean check i...Craig Topper1-25/+25
2014-03-07Replace PROLOG_LABEL with a new CFI_INSTRUCTION.Rafael Espindola1-1/+1
2014-03-04[Modules] Move the LeakDetector header into the IR library where theChandler Carruth1-1/+1
2014-03-02[C++11] Replace llvm::next and llvm::prior with std::next and std::prev.Benjamin Kramer1-4/+4
2014-01-29PGO branch weight: update edge weights in IfConverter.Manman Ren1-0/+7
2014-01-09Put the functionality for printing a value to a raw_ostream as anChandler Carruth1-8/+5
2014-01-07Move the LLVM IR asm writer header files into the IR directory, as theyChandler Carruth1-1/+1
2014-01-03Make the llvm mangler depend only on DataLayout.Rafael Espindola1-1/+2
2013-12-07Add a RequireStructuredCFG Field to TargetMachine.Vincent Lejeune1-0/+5
2013-10-10Rename LiveRange to LiveInterval::SegmentMatthias Braun1-3/+3
2013-07-04Live-in copies go *after* EH_LABELs.Jakob Stoklund Olesen1-1/+1
2013-07-03Add MachineBasicBlock::addLiveIn().Jakob Stoklund Olesen1-0/+33
2013-06-18Use pointers to the MCAsmInfo and MCRegInfo.Bill Wendling1-1/+1
2013-04-22Optimize MachineBasicBlock::getSymbol by caching the symbol. Since the symbolEli Bendersky1-7/+11
2013-02-17Remove use of reverse iterators in repairIntervalsInRange(). While they wereCameron Zwarich1-9/+1
2013-02-17Fix a conversion from a forward iterator to a reverse iterator inCameron Zwarich1-6/+7
2013-02-17Add support for updating the LiveIntervals of registers used by 'exotic'Cameron Zwarich1-0/+29
2013-02-12Add blocks to the LiveIntervalAnalysis RegMaskBlocks array when splittingCameron Zwarich1-2/+6
2013-02-12Fix the updating of LiveIntervals after splitting a critical edge. PHI operandCameron Zwarich1-12/+3
2013-02-11Add support for updating LiveIntervals to MachineBasicBlock::SplitCriticalEdg...Cameron Zwarich1-0/+68
2013-02-11Update SlotIndexes after updateTerminator() possibly removes instructions. I amCameron Zwarich1-0/+24
2013-02-10Fix the unused but nearly correct method SlotIndexes::insertMBBInMaps() and addCameron Zwarich1-0/+14
2013-01-02Move all of the header files which are involved in modelling the LLVM IRChandler Carruth1-2/+2
2012-12-18Tighten up the splice() API for bundled instructions.Jakob Stoklund Olesen1-13/+0
2012-12-18Tighten the insert() API for bundled instructions.Jakob Stoklund Olesen1-0/+12
2012-12-17Tighten up the erase/remove API for bundled instructions.Jakob Stoklund Olesen1-18/+21
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth1-7/+7
2012-11-20Fix physical register liveness calculations:Tim Northover1-6/+9
2012-10-26Make sure I is not the end iterator when isInsideBundle is called. Akira Hatanaka1-2/+3
2012-10-08Move TargetData to DataLayout.Micah Villmow1-1/+1
2012-09-12Add a function computeRegisterLiveness() to MachineBasicBlock. This uses anal...James Molloy1-0/+74