summaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/PostRASchedulerList.cpp
AgeCommit message (Expand)Author
2015-06-23Revert r240137 (Fixed/added namespace ending comments using clang-tidy. NFC)Alexander Kornienko
2015-06-19Fixed/added namespace ending comments using clang-tidy. NFCAlexander Kornienko
2015-06-13Rename TargetSubtargetInfo::enablePostMachineScheduler() to enablePostRASched...Matthias Braun
2015-04-11Use 'override/final' instead of 'virtual' for overridden methodsAlexander Kornienko
2015-01-27The subtarget is cached on the MachineFunction. Access it directly.Eric Christopher
2014-10-29Whitespace.NAKAMURA Takumi
2014-10-14Grab the subtarget and subtarget dependent variables off ofEric Christopher
2014-08-20Cleanup: Delete seemingly unused reference to MachineDominatorTree from Sched...Alexey Samsonov
2014-08-20Fix null reference creation in ScheduleDAGInstrs constructor call.Alexey Samsonov
2014-08-05Have MachineFunction cache a pointer to the subtarget to make lookupsEric Christopher
2014-08-04Remove the TargetMachine forwards for TargetSubtargetInfo basedEric Christopher
2014-07-15Move Post RA Scheduling flag bit into SchedMachineModelSanjay Patel
2014-04-22[Modules] Remove potential ODR violations by sinking the DEBUG_TYPEChandler Carruth
2014-04-14[C++11] More 'nullptr' conversion. In some cases just using a boolean check i...Craig Topper
2014-03-31Disable each MachineFunctionPass for 'optnone' functions, unless thatPaul Robinson
2014-03-23remove a bunch of unused private methodsNuno Lopes
2014-03-07[C++11] Add 'override' keyword to virtual methods that override their base cl...Craig Topper
2014-03-02[C++11] Replace llvm::next and llvm::prior with std::next and std::prev.Benjamin Kramer
2013-12-28Move the PostRA scheduler's fixupKills function for reuse.Andrew Trick
2013-12-11Add two additional hazard recognizer functionsHal Finkel
2013-10-16After PostRA scheduling, don't set kill flags on undef operands.Andrew Trick
2013-08-23mi-sched: Don't call MBB.size() in initSUnits. The driver already has instr c...Andrew Trick
2013-05-22Simplify logic now that r182490 is in place. No functional change intended.Chad Rosier
2013-02-05Remove special-casing of return blocks for liveness.Jakob Stoklund Olesen
2012-12-20Use MachineInstrBuilder in a few CodeGen passes.Jakob Stoklund Olesen
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth
2012-11-13misched: Don't consider artificial edges weak edges.Andrew Trick
2012-11-12misched: Infrastructure for weak DAG edges.Andrew Trick
2012-10-15Switch most getReservedRegs() clients to the MRI equivalent.Jakob Stoklund Olesen
2012-09-11Release build: guard dump functions withManman Ren
2012-09-06Release build: guard dump functions with "ifndef NDEBUG"Manman Ren
2012-08-22Add a getName function to MachineFunction. Use it in places that previously d...Craig Topper
2012-06-06Move RegisterClassInfo.h.Andrew Trick
2012-06-06Remove unused private fields found by clang's new -Wunused-private-field.Benjamin Kramer
2012-06-01Switch all register list clients to the new MC*Iterator interface.Jakob Stoklund Olesen
2012-04-23This patch fixes a problem which arose when using the Post-RA schedulerPreston Gurd
2012-03-09misched interface: rename Begin/End to RegionBegin/RegionEnd since they are n...Andrew Trick
2012-03-07misched prep: Expose the ScheduleDAGInstrs interface so targets mayAndrew Trick
2012-03-07misched prep: rename InsertPos to End.Andrew Trick
2012-03-07misched preparation: rename core scheduler methods for consistency.Andrew Trick
2012-03-07misched preparation: clarify ScheduleDAG and ScheduleDAGInstrs roles.Andrew Trick
2012-03-07misched preparation: modularize schedule emission.Andrew Trick
2012-03-07misched preparation: modularize schedule printing.Andrew Trick
2012-03-07misched preparation: modularize schedule verification.Andrew Trick
2012-03-05Convert more GenRegisterInfo tables from unsigned to uint16_t to reduce stati...Craig Topper
2012-02-23BitVectorize loop.Benjamin Kramer
2012-02-23post-ra-sched: Turn the KillIndices vector into a bitvector, it only stored t...Benjamin Kramer
2012-02-23post-ra-sched: Replace a std::set of regs with a bitvector.Benjamin Kramer
2012-02-23Make calls scheduling boundaries post-ra.Jakob Stoklund Olesen
2012-02-23Handle regmasks in FixupKills.Jakob Stoklund Olesen