aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/CalcSpillWeights.cpp
AgeCommit message (Expand)AuthorFilesLines
2019-08-15Apply llvm-prefer-register-over-unsigned from clang-tidy to LLVMDaniel Sanders1-1/+1
2019-08-02Use MCRegister in MCRegisterInfo's interfacesDaniel Sanders1-4/+5
2019-08-01Finish moving TargetRegisterInfo::isVirtualRegister() and friends to llvm::Re...Daniel Sanders1-5/+6
2019-01-19Update the file headers across all of the LLVM projects in the monorepoChandler Carruth1-4/+3
2018-10-05[TargetRegisterInfo] Remove temporary hook enableMultipleCopyHints()Jonas Paulsson1-30/+5
2018-10-03[RA CopyHints] Fix compile-time regressionJonas Paulsson1-2/+4
2018-05-14Rename DEBUG macro to LLVM_DEBUG.Nicola Zaghen1-2/+2
2018-05-09[DebugInfo] Examine all uses of isDebugValue() for debug instructions.Shiva Chen1-1/+1
2017-12-13Rename LiveIntervalAnalysis.h to LiveIntervals.hMatthias Braun1-1/+1
2017-12-05[Regalloc] Generate and store multiple regalloc hints.Jonas Paulsson1-29/+68
2017-11-17Fix a bunch more layering of CodeGen headers that are in TargetDavid Blaikie1-2/+2
2017-11-08Target/TargetInstrInfo.h -> CodeGen/TargetInstrInfo.h to match layeringDavid Blaikie1-1/+1
2017-10-22Add logic to greedy reg alloc to avoid bad eviction chainsMarina Yatsina1-10/+55
2017-09-29[CodeGen] Fix some Clang-tidy modernize-use-using and Include What You Use wa...Eugene Zelenko1-2/+8
2017-06-06Sort the remaining #include lines in include/... and lib/....Chandler Carruth1-1/+1
2016-06-30CodeGen: Use MachineInstr& in TargetInstrInfo, NFCDuncan P. N. Exon Smith1-1/+1
2016-02-27CodeGen: Update LiveIntervalAnalysis API to use MachineInstr&, NFCDuncan P. N. Exon Smith1-2/+1
2016-02-18Remove uses of builtin comma operator.Richard Trieu1-4/+8
2016-02-08[regalloc][WinEH] Do not mark intervals as not spillable if they contain a re...Andrew Kaylor1-2/+5
2015-08-10Trace copies when checking for rematerializability in spill weight calculationRobert Lougher1-2/+37
2014-11-19Update SetVector to rely on the underlying set's insert to return a pair<iter...David Blaikie1-1/+1
2014-11-04[PBQP] Tweak spill costs and coalescing benefitsArnaud A. de Grandmaison1-1/+3
2014-10-14Remove unnecessary TargetMachine.h includes.Eric Christopher1-1/+0
2014-08-05Have MachineFunction cache a pointer to the subtarget to make lookupsEric Christopher1-4/+2
2014-08-04Remove the TargetMachine forwards for TargetSubtargetInfo basedEric Christopher1-2/+5
2014-04-22[Modules] Remove potential ODR violations by sinking the DEBUG_TYPEChandler Carruth1-2/+2
2014-04-21CalcSpillWeights: Hack to prevent x87 nonsenseDuncan P. N. Exon Smith1-1/+5
2014-04-14[C++11] More 'nullptr' conversion. In some cases just using a boolean check i...Craig Topper1-2/+2
2014-03-13Phase 1 of refactoring the MachineRegisterInfo iterators to make them suitableOwen Anderson1-2/+4
2014-03-02[C++11] Replace llvm::tie with std::tie.Benjamin Kramer1-1/+1
2013-12-14[block-freq] Refactor LiveInterals::getSpillWeight to use the new MachineBloc...Michael Gottesman1-1/+1
2013-11-11CalcSpillWeights: allow overidding the spill weight normalizing functionArnaud A. de Grandmaison1-3/+4
2013-11-11CalcSpillWeights: give a better describing name to calculateSpillWeightsArnaud A. de Grandmaison1-3/+3
2013-11-10CalculateSpillWeights does not need to be a passArnaud A. de Grandmaison1-22/+5
2013-11-08Revert "CalculateSpillWeights does not need to be a pass"Arnaud A. de Grandmaison1-5/+22
2013-11-08CalculateSpillWeights does not need to be a passArnaud A. de Grandmaison1-22/+5
2013-11-08CalculateSpillWeights cleanup: remove unneeded includesArnaud A. de Grandmaison1-2/+0
2013-06-17Switch spill weights from a basic loop depth estimation to BlockFrequencyInfo.Benjamin Kramer1-5/+8
2013-04-06typoNadav Rotem1-1/+1
2012-10-15Remove LIS::isAllocatable() and isReserved() helpers.Jakob Stoklund Olesen1-1/+1
2012-08-22Tidy up a few more uses of MF.getFunction()->getName().David Blaikie1-2/+1
2012-08-22Add a getName function to MachineFunction. Use it in places that previously d...Craig Topper1-2/+1
2012-06-20Avoid iterating with LiveIntervals::iterator.Jakob Stoklund Olesen1-9/+11
2012-06-05Stop using LiveIntervals::isReMaterializable().Jakob Stoklund Olesen1-9/+24
2011-08-09Move CalculateRegClass to MRI::recomputeRegClass.Jakob Stoklund Olesen1-32/+0
2011-07-01Don't inflate register classes used by inline asm.Jakob Stoklund Olesen1-0/+3
2011-06-27More refactoring. Move getRegClass from TargetOperandInfo to TargetInstrInfo.Evan Cheng1-1/+2
2011-05-16Teach LiveInterval::isZeroLength about null SlotIndexes.Jakob Stoklund Olesen1-1/+1
2011-04-26Use the new TRI->getLargestLegalSuperClass hook to constrain register class i...Jakob Stoklund Olesen1-50/+29
2011-03-29Recompute register class and hint for registers created during spilling.Jakob Stoklund Olesen1-18/+28