LLVM 24.0.0git
LiveIntervals.h
Go to the documentation of this file.
1//===- LiveIntervals.h - Live Interval Analysis -----------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9/// \file This file implements the LiveInterval analysis pass. Given some
10/// numbering of each the machine instructions (in this implemention depth-first
11/// order) an interval [i, j) is said to be a live interval for register v if
12/// there is no instruction with number j' > j such that v is live at j' and
13/// there is no instruction with number i' < i such that v is live at i'. In
14/// this implementation intervals can have holes, i.e. an interval might look
15/// like [1,20), [50,65), [1000,1001).
16//
17//===----------------------------------------------------------------------===//
18
19#ifndef LLVM_CODEGEN_LIVEINTERVALS_H
20#define LLVM_CODEGEN_LIVEINTERVALS_H
21
22#include "llvm/ADT/ArrayRef.h"
23#include "llvm/ADT/IndexedMap.h"
32#include "llvm/MC/LaneBitmask.h"
36#include <cassert>
37#include <cstdint>
38#include <utility>
39
40namespace llvm {
41
43
44class BitVector;
47class MachineFunction;
48class MachineInstr;
51class raw_ostream;
52class TargetInstrInfo;
53class VirtRegMap;
54
55class LiveIntervals {
58
59 MachineFunction *MF = nullptr;
60 MachineRegisterInfo *MRI = nullptr;
61 const TargetRegisterInfo *TRI = nullptr;
62 const TargetInstrInfo *TII = nullptr;
63 SlotIndexes *Indexes = nullptr;
64 MachineDominatorTree *DomTree = nullptr;
65 std::unique_ptr<LiveIntervalCalc> LICalc;
66
67 /// Special pool allocator for VNInfo's (LiveInterval val#).
68 VNInfo::Allocator VNInfoAllocator;
69
70 /// Live interval pointers for all the virtual registers.
72
73 /// Sorted list of instructions with register mask operands. Always use the
74 /// 'r' slot, RegMasks are normal clobbers, not early clobbers.
75 SmallVector<SlotIndex, 8> RegMaskSlots;
76
77 /// This vector is parallel to RegMaskSlots, it holds a pointer to the
78 /// corresponding register mask. This pointer can be recomputed as:
79 ///
80 /// MI = Indexes->getInstructionFromIndex(RegMaskSlot[N]);
81 /// unsigned OpNum = findRegMaskOperand(MI);
82 /// RegMaskBits[N] = MI->getOperand(OpNum).getRegMask();
83 ///
84 /// This is kept in a separate vector partly because some standard
85 /// libraries don't support lower_bound() with mixed objects, partly to
86 /// improve locality when searching in RegMaskSlots.
87 /// Also see the comment in LiveInterval::find().
89
90 /// For each basic block number, keep (begin, size) pairs indexing into the
91 /// RegMaskSlots and RegMaskBits arrays.
92 /// Note that basic block numbers may not be layout contiguous, that's why
93 /// we can't just keep track of the first register mask in each basic
94 /// block.
96
97 /// Keeps a live range set for each register unit to track fixed physreg
98 /// interference.
99 SmallVector<LiveRange *, 0> RegUnitRanges;
100
101 // Can only be created from pass manager.
102 LiveIntervals() = default;
103 LiveIntervals(MachineFunction &MF, SlotIndexes &SI, MachineDominatorTree &DT)
104 : Indexes(&SI), DomTree(&DT) {
105 analyze(MF);
106 }
107
108 LLVM_ABI void analyze(MachineFunction &MF);
109
110 LLVM_ABI void clear();
111
112public:
113 LiveIntervals(LiveIntervals &&) = default;
115
117 MachineFunctionAnalysisManager::Invalidator &Inv);
118
119 /// Calculate the spill weight to assign to a single instruction.
120 /// If \p PSI is provided the calculation is altered for optsize functions.
121 LLVM_ABI static float getSpillWeight(bool isDef, bool isUse,
122 const MachineBlockFrequencyInfo *MBFI,
123 const MachineInstr &MI,
124 ProfileSummaryInfo *PSI = nullptr);
125
126 /// Calculate the spill weight to assign to a single instruction.
127 /// If \p PSI is provided the calculation is altered for optsize functions.
128 LLVM_ABI static float getSpillWeight(bool isDef, bool isUse,
129 const MachineBlockFrequencyInfo *MBFI,
130 const MachineBasicBlock *MBB,
131 ProfileSummaryInfo *PSI = nullptr);
132
133 /// Variants taking a precomputed \p OptForSize rather than deriving it from a
134 /// ProfileSummaryInfo.
135 LLVM_ABI static float getSpillWeight(bool isDef, bool isUse,
136 const MachineBlockFrequencyInfo *MBFI,
137 const MachineInstr &MI, bool OptForSize);
138
139 LLVM_ABI static float getSpillWeight(bool isDef, bool isUse,
140 const MachineBlockFrequencyInfo *MBFI,
141 const MachineBasicBlock *MBB,
142 bool OptForSize);
143
145 if (hasInterval(Reg))
146 return *VirtRegIntervals[Reg.id()];
147
149 }
150
152 return const_cast<LiveIntervals *>(this)->getInterval(Reg);
153 }
154
156 return VirtRegIntervals.inBounds(Reg.id()) && VirtRegIntervals[Reg.id()];
157 }
158
159 /// Interval creation.
161 assert(!hasInterval(Reg) && "Interval already exists!");
162 VirtRegIntervals.grow(Reg.id());
163 auto &Interval = VirtRegIntervals[Reg.id()];
164 Interval = createInterval(Reg);
165 return *Interval;
166 }
167
170 computeVirtRegInterval(LI);
171 return LI;
172 }
173
176 NeedSplit = computeVirtRegInterval(LI);
177 return LI;
178 }
179
180 /// Return an existing interval for \p Reg.
181 /// If \p Reg has no interval then this creates a new empty one instead.
182 /// Note: does not trigger interval computation.
186
187 /// Interval removal.
189 auto &Interval = VirtRegIntervals[Reg];
190 delete Interval;
191 Interval = nullptr;
192 }
193
194 /// Given a register and an instruction, adds a live segment from that
195 /// instruction to the end of its MBB.
198
199 /// After removing some uses of a register, shrink its live range to just
200 /// the remaining uses. This method does not compute reaching defs for new
201 /// uses, and it doesn't remove dead defs.
202 /// Dead PHIDef values are marked as unused. New dead machine instructions
203 /// are added to the dead vector. Returns true if the interval may have been
204 /// separated into multiple connected components.
206 SmallVectorImpl<MachineInstr *> *dead = nullptr);
207
208 /// Specialized version of
209 /// shrinkToUses(LiveInterval *li, SmallVectorImpl<MachineInstr*> *dead)
210 /// that works on a subregister live range and only looks at uses matching
211 /// the lane mask of the subregister range.
212 /// This may leave the subrange empty which needs to be cleaned up with
213 /// LiveInterval::removeEmptySubranges() afterwards.
215
216 /// Extend the live range \p LR to reach all points in \p Indices. The
217 /// points in the \p Indices array must be jointly dominated by the union
218 /// of the existing defs in \p LR and points in \p Undefs.
219 ///
220 /// PHI-defs are added as needed to maintain SSA form.
221 ///
222 /// If a SlotIndex in \p Indices is the end index of a basic block, \p LR
223 /// will be extended to be live out of the basic block.
224 /// If a SlotIndex in \p Indices is jointy dominated only by points in
225 /// \p Undefs, the live range will not be extended to that point.
226 ///
227 /// See also LiveRangeCalc::extend().
229 ArrayRef<SlotIndex> Undefs);
230
232 extendToIndices(LR, Indices, /*Undefs=*/{});
233 }
234
235 /// If \p LR has a live value at \p Kill, prune its live range by removing
236 /// any liveness reachable from Kill. Add live range end points to
237 /// EndPoints such that extendToIndices(LI, EndPoints) will reconstruct the
238 /// value's live range.
239 ///
240 /// Calling pruneValue() and extendToIndices() can be used to reconstruct
241 /// SSA form after adding defs to a virtual register.
243 SmallVectorImpl<SlotIndex> *EndPoints);
244
245 /// This function should not be used. Its intent is to tell you that you are
246 /// doing something wrong if you call pruneValue directly on a
247 /// LiveInterval. Indeed, you are supposed to call pruneValue on the main
248 /// LiveRange and all the LiveRanges of the subranges if any.
249 [[maybe_unused]] void pruneValue(LiveInterval &, SlotIndex,
252 "Use pruneValue on the main LiveRange and on each subrange");
253 }
254
255 SlotIndexes *getSlotIndexes() const { return Indexes; }
256
257 /// Returns true if the specified machine instr has been removed or was
258 /// never entered in the map.
259 bool isNotInMIMap(const MachineInstr &Instr) const {
260 return !Indexes->hasIndex(Instr);
261 }
262
263 /// Returns the base index of the given instruction.
265 return Indexes->getInstructionIndex(Instr);
266 }
267
268 /// Returns the instruction associated with the given index.
270 return Indexes->getInstructionFromIndex(index);
271 }
272
273 /// Return the first index in the given basic block.
275 return Indexes->getMBBStartIdx(mbb);
276 }
277
278 /// Return the last index in the given basic block.
280 return Indexes->getMBBEndIdx(mbb);
281 }
282
283 bool isLiveInToMBB(const LiveRange &LR, const MachineBasicBlock *mbb) const {
284 return LR.liveAt(getMBBStartIdx(mbb));
285 }
286
287 bool isLiveOutOfMBB(const LiveRange &LR, const MachineBasicBlock *mbb) const {
288 return LR.liveAt(getMBBEndIdx(mbb).getPrevSlot());
289 }
290
292 return Indexes->getMBBFromIndex(index);
293 }
294
295 /// Adds an empty block \p MBB to the SlotIndexes and regmask maps.
297 insertMBBInMapsImpl(MBB, /*AssumeRegMaskEmpty=*/true);
298 }
299
300 /// After the tail of \p Orig has been sliced into \p SplitBB, updates the
301 /// SlotIndexes and regmask maps and re-slices \p Orig's regmask table across
302 /// the two blocks.
304 insertMBBInMapsImpl(&SplitBB, /*AssumeRegMaskEmpty=*/false);
305 reassignRegMaskSlots(Orig, SplitBB);
306 }
307
309 return Indexes->insertMachineInstrInMaps(MI);
310 }
311
314 for (MachineBasicBlock::iterator I = B; I != E; ++I)
315 Indexes->insertMachineInstrInMaps(*I);
316 }
317
319 Indexes->removeMachineInstrFromMaps(MI);
320 }
321
323 return Indexes->replaceMachineInstrInMaps(MI, NewMI);
324 }
325
326 VNInfo::Allocator &getVNInfoAllocator() { return VNInfoAllocator; }
327
328 /// Implement the dump method.
329 LLVM_ABI void print(raw_ostream &O) const;
330 LLVM_ABI void dump() const;
331
332 // For legacy pass to recompute liveness.
334 clear();
335 analyze(MF);
336 }
337
338 MachineDominatorTree &getDomTree() { return *DomTree; }
339
340 /// If LI is confined to a single basic block, return a pointer to that
341 /// block. If LI is live in to or out of any block, return NULL.
343
344 /// Returns true if VNI is killed by any PHI-def values in LI.
345 /// This may conservatively return true to avoid expensive computations.
346 LLVM_ABI bool hasPHIKill(const LiveInterval &LI, const VNInfo *VNI) const;
347
348 /// Add kill flags to any instruction that kills a virtual register.
349 LLVM_ABI void addKillFlags(const VirtRegMap *);
350
351 /// Call this method to notify LiveIntervals that instruction \p MI has been
352 /// moved within a basic block. This will update the live intervals for all
353 /// operands of \p MI. Moves between basic blocks are not supported.
354 ///
355 /// \param UpdateFlags Update live intervals for nonallocatable physregs.
356 LLVM_ABI void handleMove(MachineInstr &MI, bool UpdateFlags = false);
357
358 /// Update intervals of operands of all instructions in the newly
359 /// created bundle specified by \p BundleStart.
360 ///
361 /// \param UpdateFlags Update live intervals for nonallocatable physregs.
362 ///
363 /// Assumes existing liveness is accurate.
364 /// \pre BundleStart should be the first instruction in the Bundle.
365 /// \pre BundleStart should not have a have SlotIndex as one will be assigned.
367 bool UpdateFlags = false);
368
369 /// Update live intervals for instructions in a range of iterators. It is
370 /// intended for use after target hooks that may insert or remove
371 /// instructions, and is only efficient for a small number of instructions.
372 ///
373 /// OrigRegs is a vector of registers that were originally used by the
374 /// instructions in the range between the two iterators.
375 ///
376 /// Currently, the only changes that are supported are simple removal
377 /// and addition of uses.
381 ArrayRef<Register> OrigRegs);
382
383 // Register mask functions.
384 //
385 // Machine instructions may use a register mask operand to indicate that a
386 // large number of registers are clobbered by the instruction. This is
387 // typically used for calls.
388 //
389 // For compile time performance reasons, these clobbers are not recorded in
390 // the live intervals for individual physical registers. Instead,
391 // LiveIntervalAnalysis maintains a sorted list of instructions with
392 // register mask operands.
393
394 /// Returns a sorted array of slot indices of all instructions with
395 /// register mask operands.
396 ArrayRef<SlotIndex> getRegMaskSlots() const { return RegMaskSlots; }
397
398 /// Returns a sorted array of slot indices of all instructions with register
399 /// mask operands in the basic block numbered \p MBBNum.
401 std::pair<unsigned, unsigned> P = RegMaskBlocks[MBBNum];
402 return getRegMaskSlots().slice(P.first, P.second);
403 }
404
405 /// Returns an array of register mask pointers corresponding to
406 /// getRegMaskSlots().
407 ArrayRef<const uint32_t *> getRegMaskBits() const { return RegMaskBits; }
408
409 /// Returns an array of mask pointers corresponding to
410 /// getRegMaskSlotsInBlock(MBBNum).
412 std::pair<unsigned, unsigned> P = RegMaskBlocks[MBBNum];
413 return getRegMaskBits().slice(P.first, P.second);
414 }
415
416 /// Test if \p LI is live across any register mask instructions, and
417 /// compute a bit mask of physical registers that are not clobbered by any
418 /// of them.
419 ///
420 /// Returns false if \p LI doesn't cross any register mask instructions. In
421 /// that case, the bit vector is not filled in.
423 BitVector &UsableRegs);
424
425 // Register unit functions.
426 //
427 // Fixed interference occurs when MachineInstrs use physregs directly
428 // instead of virtual registers. This typically happens when passing
429 // arguments to a function call, or when instructions require operands in
430 // fixed registers.
431 //
432 // Each physreg has one or more register units, see MCRegisterInfo. We
433 // track liveness per register unit to handle aliasing registers more
434 // efficiently.
435
436 /// Return the live range for register unit \p Unit. It will be computed if
437 /// it doesn't exist.
438 LiveRange &getRegUnit(MCRegUnit Unit) {
439 LiveRange *LR = RegUnitRanges[static_cast<unsigned>(Unit)];
440 if (!LR) {
441 // Compute missing ranges on demand.
442 // Use segment set to speed-up initial computation of the live range.
443 RegUnitRanges[static_cast<unsigned>(Unit)] = LR =
445 computeRegUnitRange(*LR, Unit);
446 }
447 return *LR;
448 }
449
450 /// Return the live range for register unit \p Unit if it has already been
451 /// computed, or nullptr if it hasn't been computed yet.
452 LiveRange *getCachedRegUnit(MCRegUnit Unit) {
453 return RegUnitRanges[static_cast<unsigned>(Unit)];
454 }
455
456 const LiveRange *getCachedRegUnit(MCRegUnit Unit) const {
457 return RegUnitRanges[static_cast<unsigned>(Unit)];
458 }
459
460 /// Remove computed live range for register unit \p Unit. Subsequent uses
461 /// should rely on on-demand recomputation.
462 void removeRegUnit(MCRegUnit Unit) {
463 delete RegUnitRanges[static_cast<unsigned>(Unit)];
464 RegUnitRanges[static_cast<unsigned>(Unit)] = nullptr;
465 }
466
467 /// Remove associated live ranges for the register units associated with \p
468 /// Reg. Subsequent uses should rely on on-demand recomputation. \note This
469 /// method can result in inconsistent liveness tracking if multiple phyical
470 /// registers share a regunit, and should be used cautiously.
472 for (MCRegUnit Unit : TRI->regunits(Reg))
473 removeRegUnit(Unit);
474 }
475
476 /// Remove value numbers and related live segments starting at position
477 /// \p Pos that are part of any liverange of physical register \p Reg or one
478 /// of its subregisters.
480
481 /// Remove value number and related live segments of \p LI and its subranges
482 /// that start at position \p Pos.
484
485 /// Split separate components in LiveInterval \p LI into separate intervals.
486 LLVM_ABI void
489
490 /// For live interval \p LI with correct SubRanges construct matching
491 /// information for the main live range. Expects the main live range to not
492 /// have any segments or value numbers.
494
495private:
496 /// Compute live intervals for all virtual registers.
497 void computeVirtRegs();
498
499 /// Compute RegMaskSlots and RegMaskBits.
500 void computeRegMasks();
501
502 /// Implementation of insertMBBInMaps(). \p MBB must contain no regmask
503 /// operands when \p AssumeRegMaskEmpty is true.
504 void insertMBBInMapsImpl(MachineBasicBlock *MBB, bool AssumeRegMaskEmpty);
505
506 /// Updates the regmask table for \p Orig's instructions that are moved into
507 /// \p SplitBB, so that the table is sliced across both blocks.
508 void reassignRegMaskSlots(MachineBasicBlock &Orig,
509 MachineBasicBlock &SplitBB);
510
511 /// Walk the values in \p LI and check for dead values:
512 /// - Dead PHIDef values are marked as unused.
513 /// - Dead operands are marked as such.
514 /// - Completely dead machine instructions are added to the \p dead vector
515 /// if it is not nullptr.
516 /// Returns true if any PHI value numbers have been removed which may
517 /// have separated the interval into multiple connected components.
518 bool computeDeadValues(LiveInterval &LI,
520
521 LLVM_ABI static LiveInterval *createInterval(Register Reg);
522
523 void printInstrs(raw_ostream &O) const;
524 void dumpInstrs() const;
525
526 void computeLiveInRegUnits();
527 LLVM_ABI void computeRegUnitRange(LiveRange &, MCRegUnit Unit);
528 LLVM_ABI bool computeVirtRegInterval(LiveInterval &);
529
530 using ShrinkToUsesWorkList = SmallVector<std::pair<SlotIndex, VNInfo *>, 16>;
531 void extendSegmentsToUses(LiveRange &Segments, ShrinkToUsesWorkList &WorkList,
532 Register Reg, LaneBitmask LaneMask);
533
534 /// Helper function for repairIntervalsInRange(), walks backwards and
535 /// creates/modifies live segments in \p LR to match the operands found.
536 /// Only full operands or operands with subregisters matching \p LaneMask
537 /// are considered.
538 void repairOldRegInRange(MachineBasicBlock::iterator Begin,
540 const SlotIndex endIdx, LiveRange &LR, Register Reg,
541 LaneBitmask LaneMask = LaneBitmask::getAll());
542
543 class HMEditor;
544};
545
546class LiveIntervalsAnalysis : public AnalysisInfoMixin<LiveIntervalsAnalysis> {
548 LLVM_ABI static AnalysisKey Key;
549
550public:
554};
555
557 : public RequiredPassInfoMixin<LiveIntervalsPrinterPass> {
558 raw_ostream &OS;
559
560public:
561 explicit LiveIntervalsPrinterPass(raw_ostream &OS) : OS(OS) {}
564};
565
567 LiveIntervals LIS;
568
569public:
570 static char ID;
571
573
574 void getAnalysisUsage(AnalysisUsage &AU) const override;
575 void releaseMemory() override { LIS.clear(); }
576
577 /// Pass entry point; Calculates LiveIntervals.
578 bool runOnMachineFunction(MachineFunction &) override;
579
580 /// Implement the dump method.
581 void print(raw_ostream &O, const Module * = nullptr) const override {
582 LIS.print(O);
583 }
584
585 LiveIntervals &getLIS() { return LIS; }
586};
587
588} // end namespace llvm
589
590#endif
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
MachineBasicBlock & MBB
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
#define LLVM_ABI
Definition Compiler.h:215
IRTranslator LLVM IR MI
This file implements an indexed map.
A common definition of LaneBitmask for use in TableGen and CodeGen.
#define I(x, y, z)
Definition MD5.cpp:57
Register Reg
std::pair< uint64_t, uint64_t > Interval
#define P(N)
SI Optimize VGPR LiveRange
This file defines the SmallVector class.
Represent the analysis usage information of a pass.
Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition ArrayRef.h:40
A live range for subregisters.
LiveInterval - This class represents the liveness of a register, or stack slot.
LLVM_ABI Result run(MachineFunction &MF, MachineFunctionAnalysisManager &MFAM)
LLVM_ABI PreservedAnalyses run(MachineFunction &MF, MachineFunctionAnalysisManager &MFAM)
LiveIntervalsPrinterPass(raw_ostream &OS)
void print(raw_ostream &O, const Module *=nullptr) const override
Implement the dump method.
void releaseMemory() override
releaseMemory() - This member can be implemented by a pass if it wants to be able to release its memo...
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - This function should be overriden by passes that need analysis information to do t...
LLVM_ABI void repairIntervalsInRange(MachineBasicBlock *MBB, MachineBasicBlock::iterator Begin, MachineBasicBlock::iterator End, ArrayRef< Register > OrigRegs)
Update live intervals for instructions in a range of iterators.
void removeAllRegUnitsForPhysReg(MCRegister Reg)
Remove associated live ranges for the register units associated with Reg.
bool hasInterval(Register Reg) const
SlotIndex getMBBStartIdx(const MachineBasicBlock *mbb) const
Return the first index in the given basic block.
MachineInstr * getInstructionFromIndex(SlotIndex index) const
Returns the instruction associated with the given index.
LLVM_ABI bool hasPHIKill(const LiveInterval &LI, const VNInfo *VNI) const
Returns true if VNI is killed by any PHI-def values in LI.
SlotIndex InsertMachineInstrInMaps(MachineInstr &MI)
LLVM_ABI bool checkRegMaskInterference(const LiveInterval &LI, BitVector &UsableRegs)
Test if LI is live across any register mask instructions, and compute a bit mask of physical register...
LiveIntervals(LiveIntervals &&)=default
LLVM_ABI void handleMove(MachineInstr &MI, bool UpdateFlags=false)
Call this method to notify LiveIntervals that instruction MI has been moved within a basic block.
void insertMBBInMaps(MachineBasicBlock *MBB)
Adds an empty block MBB to the SlotIndexes and regmask maps.
SlotIndexes * getSlotIndexes() const
const LiveInterval & getInterval(Register Reg) const
ArrayRef< const uint32_t * > getRegMaskBits() const
Returns an array of register mask pointers corresponding to getRegMaskSlots().
LiveInterval & getOrCreateEmptyInterval(Register Reg)
Return an existing interval for Reg.
void reanalyze(MachineFunction &MF)
MachineDominatorTree & getDomTree()
LLVM_ABI void addKillFlags(const VirtRegMap *)
Add kill flags to any instruction that kills a virtual register.
SlotIndex getInstructionIndex(const MachineInstr &Instr) const
Returns the base index of the given instruction.
void removeRegUnit(MCRegUnit Unit)
Remove computed live range for register unit Unit.
LLVM_ABI bool invalidate(MachineFunction &MF, const PreservedAnalyses &PA, MachineFunctionAnalysisManager::Invalidator &Inv)
void RemoveMachineInstrFromMaps(MachineInstr &MI)
VNInfo::Allocator & getVNInfoAllocator()
ArrayRef< const uint32_t * > getRegMaskBitsInBlock(unsigned MBBNum) const
Returns an array of mask pointers corresponding to getRegMaskSlotsInBlock(MBBNum).
SlotIndex getMBBEndIdx(const MachineBasicBlock *mbb) const
Return the last index in the given basic block.
static LLVM_ABI float getSpillWeight(bool isDef, bool isUse, const MachineBlockFrequencyInfo *MBFI, const MachineInstr &MI, ProfileSummaryInfo *PSI=nullptr)
Calculate the spill weight to assign to a single instruction.
ArrayRef< SlotIndex > getRegMaskSlots() const
Returns a sorted array of slot indices of all instructions with register mask operands.
friend class LiveIntervalsWrapperPass
ArrayRef< SlotIndex > getRegMaskSlotsInBlock(unsigned MBBNum) const
Returns a sorted array of slot indices of all instructions with register mask operands in the basic b...
LiveInterval & getInterval(Register Reg)
void InsertMachineInstrRangeInMaps(MachineBasicBlock::iterator B, MachineBasicBlock::iterator E)
friend class LiveIntervalsAnalysis
LLVM_ABI void pruneValue(LiveRange &LR, SlotIndex Kill, SmallVectorImpl< SlotIndex > *EndPoints)
If LR has a live value at Kill, prune its live range by removing any liveness reachable from Kill.
LiveInterval & createAndComputeVirtRegInterval(Register Reg, bool &NeedSplit)
void removeInterval(Register Reg)
Interval removal.
bool isNotInMIMap(const MachineInstr &Instr) const
Returns true if the specified machine instr has been removed or was never entered in the map.
LLVM_ABI void handleMoveIntoNewBundle(MachineInstr &BundleStart, bool UpdateFlags=false)
Update intervals of operands of all instructions in the newly created bundle specified by BundleStart...
void pruneValue(LiveInterval &, SlotIndex, SmallVectorImpl< SlotIndex > *)
This function should not be used.
LiveRange & getRegUnit(MCRegUnit Unit)
Return the live range for register unit Unit.
LLVM_ABI MachineBasicBlock * intervalIsInOneMBB(const LiveInterval &LI) const
If LI is confined to a single basic block, return a pointer to that block.
const LiveRange * getCachedRegUnit(MCRegUnit Unit) const
LiveRange * getCachedRegUnit(MCRegUnit Unit)
Return the live range for register unit Unit if it has already been computed, or nullptr if it hasn't...
LLVM_ABI void removeVRegDefAt(LiveInterval &LI, SlotIndex Pos)
Remove value number and related live segments of LI and its subranges that start at position Pos.
LLVM_ABI LiveInterval::Segment addSegmentToEndOfBlock(Register Reg, MachineInstr &startInst)
Given a register and an instruction, adds a live segment from that instruction to the end of its MBB.
LLVM_ABI bool shrinkToUses(LiveInterval *li, SmallVectorImpl< MachineInstr * > *dead=nullptr)
After removing some uses of a register, shrink its live range to just the remaining uses.
LLVM_ABI void constructMainRangeFromSubranges(LiveInterval &LI)
For live interval LI with correct SubRanges construct matching information for the main live range.
LiveInterval & createEmptyInterval(Register Reg)
Interval creation.
LLVM_ABI void extendToIndices(LiveRange &LR, ArrayRef< SlotIndex > Indices, ArrayRef< SlotIndex > Undefs)
Extend the live range LR to reach all points in Indices.
LLVM_ABI void dump() const
void extendToIndices(LiveRange &LR, ArrayRef< SlotIndex > Indices)
bool isLiveOutOfMBB(const LiveRange &LR, const MachineBasicBlock *mbb) const
LLVM_ABI void print(raw_ostream &O) const
Implement the dump method.
LLVM_ABI void removePhysRegDefAt(MCRegister Reg, SlotIndex Pos)
Remove value numbers and related live segments starting at position Pos that are part of any liverang...
void splitAt(MachineBasicBlock &Orig, MachineBasicBlock &SplitBB)
After the tail of Orig has been sliced into SplitBB, updates the SlotIndexes and regmask maps and re-...
LLVM_ABI void splitSeparateComponents(LiveInterval &LI, SmallVectorImpl< LiveInterval * > &SplitLIs)
Split separate components in LiveInterval LI into separate intervals.
MachineBasicBlock * getMBBFromIndex(SlotIndex index) const
bool isLiveInToMBB(const LiveRange &LR, const MachineBasicBlock *mbb) const
LiveInterval & createAndComputeVirtRegInterval(Register Reg)
SlotIndex ReplaceMachineInstrInMaps(MachineInstr &MI, MachineInstr &NewMI)
This class represents the liveness of a register, stack slot, etc.
bool liveAt(SlotIndex index) const
Wrapper class representing physical registers. Should be passed by value.
Definition MCRegister.h:41
MachineInstrBundleIterator< MachineInstr > iterator
MachineBlockFrequencyInfo pass uses BlockFrequencyInfoImpl implementation to estimate machine basic b...
DominatorTree Class - Concrete subclass of DominatorTreeBase that is used to compute a normal dominat...
Representation of each machine instruction.
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
A Module instance is used to store all the information related to an LLVM module.
Definition Module.h:67
A set of analyses that are preserved following a run of a transformation pass.
Definition Analysis.h:112
Analysis providing profile information.
Wrapper class representing virtual and physical registers.
Definition Register.h:20
SlotIndex - An opaque wrapper around machine indexes.
Definition SlotIndexes.h:66
SlotIndexes pass.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
TargetInstrInfo - Interface to description of machine instruction set.
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
VNInfo - Value Number Information.
BumpPtrAllocator Allocator
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition raw_ostream.h:53
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
This is an optimization pass for GlobalISel generic memory operations.
LLVM_ABI cl::opt< bool > UseSegmentSetForPhysRegs
@ Kill
The last use of a register.
AnalysisManager< MachineFunction > MachineFunctionAnalysisManager
A CRTP mix-in that provides informational APIs needed for analysis passes.
A special type used by analysis passes to provide an address that identifies that particular analysis...
Definition Analysis.h:29
static constexpr LaneBitmask getAll()
Definition LaneBitmask.h:82
This represents a simple continuous liveness interval for a value.
A CRTP mix-in for passes that should not be skipped.