LLVM 19.0.0git
Public Member Functions | Static Public Member Functions | List of all members
llvm::LiveRegUnits Class Reference

A set of register units used to track register liveness. More...

#include "llvm/CodeGen/LiveRegUnits.h"

Public Member Functions

 LiveRegUnits ()=default
 Constructs a new empty LiveRegUnits set.
 
 LiveRegUnits (const TargetRegisterInfo &TRI)
 Constructs and initialize an empty LiveRegUnits set.
 
void init (const TargetRegisterInfo &TRI)
 Initialize and clear the set.
 
void clear ()
 Clears the set.
 
bool empty () const
 Returns true if the set is empty.
 
void addReg (MCPhysReg Reg)
 Adds register units covered by physical register Reg.
 
void addRegMasked (MCPhysReg Reg, LaneBitmask Mask)
 Adds register units covered by physical register Reg that are part of the lanemask Mask.
 
void removeReg (MCPhysReg Reg)
 Removes all register units covered by physical register Reg.
 
void removeRegsNotPreserved (const uint32_t *RegMask)
 Removes register units not preserved by the regmask RegMask.
 
void addRegsInMask (const uint32_t *RegMask)
 Adds register units not preserved by the regmask RegMask.
 
bool available (MCPhysReg Reg) const
 Returns true if no part of physical register Reg is live.
 
void stepBackward (const MachineInstr &MI)
 Updates liveness when stepping backwards over the instruction MI.
 
void accumulate (const MachineInstr &MI)
 Adds all register units used, defined or clobbered in MI.
 
void addLiveOuts (const MachineBasicBlock &MBB)
 Adds registers living out of block MBB.
 
void addLiveIns (const MachineBasicBlock &MBB)
 Adds registers living into block MBB.
 
void addUnits (const BitVector &RegUnits)
 Adds all register units marked in the bitvector RegUnits.
 
void removeUnits (const BitVector &RegUnits)
 Removes all register units marked in the bitvector RegUnits.
 
const BitVectorgetBitVector () const
 Return the internal bitvector representation of the set.
 

Static Public Member Functions

static void accumulateUsedDefed (const MachineInstr &MI, LiveRegUnits &ModifiedRegUnits, LiveRegUnits &UsedRegUnits, const TargetRegisterInfo *TRI)
 For a machine instruction MI, adds all register units used in UsedRegUnits and defined or clobbered in ModifiedRegUnits.
 

Detailed Description

A set of register units used to track register liveness.

Definition at line 30 of file LiveRegUnits.h.

Constructor & Destructor Documentation

◆ LiveRegUnits() [1/2]

llvm::LiveRegUnits::LiveRegUnits ( )
default

Constructs a new empty LiveRegUnits set.

◆ LiveRegUnits() [2/2]

llvm::LiveRegUnits::LiveRegUnits ( const TargetRegisterInfo TRI)
inline

Constructs and initialize an empty LiveRegUnits set.

Definition at line 39 of file LiveRegUnits.h.

References init(), and TRI.

Member Function Documentation

◆ accumulate()

void LiveRegUnits::accumulate ( const MachineInstr MI)

Adds all register units used, defined or clobbered in MI.

This is useful when walking over a range of instruction to find registers unused over the whole range.

Definition at line 69 of file LiveRegUnits.cpp.

References addReg(), addRegsInMask(), and MI.

Referenced by canRenameUntilSecondLoad(), canRenameUpToDef(), and llvm::ARMBaseInstrInfo::isMBBSafeToOutlineFrom().

◆ accumulateUsedDefed()

static void llvm::LiveRegUnits::accumulateUsedDefed ( const MachineInstr MI,
LiveRegUnits ModifiedRegUnits,
LiveRegUnits UsedRegUnits,
const TargetRegisterInfo TRI 
)
inlinestatic

For a machine instruction MI, adds all register units used in UsedRegUnits and defined or clobbered in ModifiedRegUnits.

This is useful when walking over a range of instructions to track registers used or defined seperately.

Definition at line 47 of file LiveRegUnits.h.

References addReg(), addRegsInMask(), assert(), MI, Reg, and TRI.

Referenced by llvm::HexagonRegisterInfo::eliminateFrameIndex(), and INITIALIZE_PASS().

◆ addLiveIns()

void LiveRegUnits::addLiveIns ( const MachineBasicBlock MBB)

Adds registers living into block MBB.

Definition at line 155 of file LiveRegUnits.cpp.

References addBlockLiveIns(), llvm::MachineBasicBlock::getParent(), and MBB.

Referenced by llvm::SIFrameLowering::emitPrologue(), llvm::RegScavenger::enterBasicBlock(), and initLiveUnits().

◆ addLiveOuts()

void LiveRegUnits::addLiveOuts ( const MachineBasicBlock MBB)

◆ addReg()

void llvm::LiveRegUnits::addReg ( MCPhysReg  Reg)
inline

◆ addRegMasked()

void llvm::LiveRegUnits::addRegMasked ( MCPhysReg  Reg,
LaneBitmask  Mask 
)
inline

Adds register units covered by physical register Reg that are part of the lanemask Mask.

Definition at line 93 of file LiveRegUnits.h.

References Reg, llvm::BitVector::set(), and TRI.

Referenced by addBlockLiveIns(), and llvm::RegScavenger::setRegUsed().

◆ addRegsInMask()

void LiveRegUnits::addRegsInMask ( const uint32_t RegMask)

Adds register units not preserved by the regmask RegMask.

The regmask has the same format as the one in the RegMask machine operand.

Definition at line 33 of file LiveRegUnits.cpp.

References llvm::MachineOperand::clobbersPhysReg(), llvm::MCRegisterInfo::getNumRegUnits(), llvm::MCRegUnitRootIterator::isValid(), and llvm::BitVector::set().

Referenced by accumulate(), and accumulateUsedDefed().

◆ addUnits()

void llvm::LiveRegUnits::addUnits ( const BitVector RegUnits)
inline

Adds all register units marked in the bitvector RegUnits.

Definition at line 144 of file LiveRegUnits.h.

◆ available()

bool llvm::LiveRegUnits::available ( MCPhysReg  Reg) const
inline

◆ clear()

void llvm::LiveRegUnits::clear ( )
inline

Clears the set.

Definition at line 80 of file LiveRegUnits.h.

References llvm::BitVector::reset().

Referenced by INITIALIZE_PASS().

◆ empty()

bool llvm::LiveRegUnits::empty ( ) const
inline

Returns true if the set is empty.

Definition at line 83 of file LiveRegUnits.h.

References llvm::BitVector::none().

Referenced by llvm::SIFrameLowering::emitCSRSpillStores(), llvm::SIFrameLowering::emitPrologue(), and initLiveUnits().

◆ getBitVector()

const BitVector & llvm::LiveRegUnits::getBitVector ( ) const
inline

Return the internal bitvector representation of the set.

Definition at line 152 of file LiveRegUnits.h.

◆ init()

void llvm::LiveRegUnits::init ( const TargetRegisterInfo TRI)
inline

◆ removeReg()

void llvm::LiveRegUnits::removeReg ( MCPhysReg  Reg)
inline

◆ removeRegsNotPreserved()

void LiveRegUnits::removeRegsNotPreserved ( const uint32_t RegMask)

Removes register units not preserved by the regmask RegMask.

The regmask has the same format as the one in the RegMask machine operand.

Definition at line 22 of file LiveRegUnits.cpp.

References llvm::MachineOperand::clobbersPhysReg(), llvm::MCRegisterInfo::getNumRegUnits(), llvm::MCRegUnitRootIterator::isValid(), and llvm::BitVector::reset().

Referenced by llvm::ScheduleDAGInstrs::fixupKills(), and stepBackward().

◆ removeUnits()

void llvm::LiveRegUnits::removeUnits ( const BitVector RegUnits)
inline

Removes all register units marked in the bitvector RegUnits.

Definition at line 148 of file LiveRegUnits.h.

References llvm::BitVector::reset().

◆ stepBackward()

void LiveRegUnits::stepBackward ( const MachineInstr MI)

Updates liveness when stepping backwards over the instruction MI.

This removes all register units defined or clobbered in MI and then adds the units used (as in use operands) in MI.

Definition at line 44 of file LiveRegUnits.cpp.

References addReg(), MI, removeReg(), and removeRegsNotPreserved().

Referenced by llvm::RegScavenger::backward(), llvm::Thumb1InstrInfo::copyPhysReg(), llvm::AArch64InstrInfo::getOutlinableRanges(), initLiveUnits(), and llvm::ReachingDefAnalysis::isRegUsedAfter().


The documentation for this class was generated from the following files: