summaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/LiveRegMatrix.cpp
AgeCommit message (Expand)Author
2025-01-01[CodeGen] LiveRegMatrix: Use allocator through a unique_ptr (#120556)Akshat Oke
2024-12-06[CodeGen][PM] Initialize analyses with isAnalysis=true (#118779)Akshat Oke
2024-10-28VirtRegRewriter: Add implicit register defs for live out undef lanes (#112679)Matt Arsenault
2024-10-22[NewPM][CodeGen] Port LiveRegMatrix to NPM (#109938)Akshat Oke
2024-10-22[NewPM][CodeGen] Port VirtRegMap to NPM (#109936)Akshat Oke
2024-07-10[CodeGen][NewPM] Port `LiveIntervals` to new pass manager (#98118)paperchalice
2023-06-16[MC] Add MCRegisterInfo::regunits for iteration over register unitsSergei Barannikov
2022-02-03[nfc][regalloc] const LiveIntervals within the allocatorMircea Trofin
2021-04-01[regalloc] Ensure Query::collectInterferringVregs is called before interval i...Mircea Trofin
2021-03-16Revert "[regalloc] Ensure Query::collectInterferringVregs is called before in...Nikita Popov
2021-03-16[regalloc] Ensure Query::collectInterferringVregs is called before interval i...Mircea Trofin
2020-12-10[X86] AMX programming model.Luo, Yuanke
2020-10-12[NFC][MC] Use MCRegister in LiveRangeMatrixMircea Trofin
2020-09-16[NFC][Regalloc] accessors for 'reg' and 'weight'Mircea Trofin
2019-11-13Sink all InitializePasses.h includesReid Kleckner
2019-08-15Apply llvm-prefer-register-over-unsigned from clang-tidy to LLVMDaniel Sanders
2019-01-19Update the file headers across all of the LLVM projects in the monorepoChandler Carruth
2018-05-14Rename DEBUG macro to LLVM_DEBUG.Nicola Zaghen
2018-01-31Take into account the cost of local intervals when selecting split candidate.Marina Yatsina
2017-12-13Rename LiveIntervalAnalysis.h to LiveIntervals.hMatthias Braun
2017-11-28[CodeGen] Rename functions PrintReg* to printReg*Francis Visoiu Mistrih
2017-11-17Fix a bunch more layering of CodeGen headers that are in TargetDavid Blaikie
2017-06-06Sort the remaining #include lines in include/... and lib/....Chandler Carruth
2017-03-02LiveRegMatrix: Fix some subreg interference checksMatthias Braun
2017-03-01LIU:::Query: Query LiveRange instead of LiveInterval; NFCMatthias Braun
2017-02-17[CodeGen] Fix some Clang-tidy modernize and Include What You Use warnings; ot...Eugene Zelenko
2016-12-16Implement LaneBitmask::any(), use it to replace !none(), NFCIKrzysztof Parzyszek
2016-12-15Extract LaneBitmask into a separate typeKrzysztof Parzyszek
2016-08-06Move helpers into anonymous namespaces. NFC.Benjamin Kramer
2015-09-25TargetRegisterInfo: Introduce PrintLaneMask.Matthias Braun
2015-09-25TargetRegisterInfo: Add typedef unsigned LaneBitmask and use it where apropri...Matthias Braun
2015-07-14MachineRegisterInfo: Remove UsedPhysReg infrastructureMatthias Braun
2015-07-14RAGreedy: Keep track of allocated PhysRegs internallyMatthias Braun
2015-01-14[cleanup] Re-sort all the #include lines in LLVM usingChandler Carruth
2014-12-11LiveInterval: Use range based for loops for subregister ranges.Matthias Braun
2014-12-10LiveRegMatrix: Respect subregister liveness when allocating registers.Matthias Braun
2014-10-14Remove unnecessary TargetMachine.h includes.Eric Christopher
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-04-22[Modules] Remove potential ODR violations by sinking the DEBUG_TYPEChandler Carruth
2014-03-06Replace OwningPtr<T> with std::unique_ptr<T>.Ahmed Charles
2014-02-06This small change reduces compile time for small programs on targets that havePuyan Lotfi
2013-10-10Represent RegUnit liveness with LiveRange instanceMatthias Braun
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth
2012-11-28Make the LiveRegMatrix analysis available to targets.Jakob Stoklund Olesen
2012-09-06Allow overlaps between virtreg and physreg live ranges.Jakob Stoklund Olesen
2012-06-15Accept null PhysReg arguments to checkRegMaskInterference.Jakob Stoklund Olesen
2012-06-09Sketch a LiveRegMatrix analysis pass.Jakob Stoklund Olesen