LLVM API Documentation

Public Types | Public Member Functions | Static Public Attributes
llvm::LiveRegMatrix Class Reference

#include <LiveRegMatrix.h>

Inheritance diagram for llvm::LiveRegMatrix:
Inheritance graph
[legend]
Collaboration diagram for llvm::LiveRegMatrix:
Collaboration graph
[legend]

List of all members.

Public Types

enum  InterferenceKind { IK_Free = 0, IK_VirtReg, IK_RegUnit, IK_RegMask }

Public Member Functions

 LiveRegMatrix ()
void invalidateVirtRegs ()
InterferenceKind checkInterference (LiveInterval &VirtReg, unsigned PhysReg)
void assign (LiveInterval &VirtReg, unsigned PhysReg)
void unassign (LiveInterval &VirtReg)
bool checkRegMaskInterference (LiveInterval &VirtReg, unsigned PhysReg=0)
bool checkRegUnitInterference (LiveInterval &VirtReg, unsigned PhysReg)
LiveIntervalUnion::Queryquery (LiveInterval &VirtReg, unsigned RegUnit)
LiveIntervalUniongetLiveUnions ()

Static Public Attributes

static char ID = 0

Detailed Description

Definition at line 39 of file LiveRegMatrix.h.


Member Enumeration Documentation

Enumerator:
IK_Free 

No interference, go ahead and assign.

IK_VirtReg 

Virtual register interference. There are interfering virtual registers assigned to PhysReg or its aliases. This interference could be resolved by unassigning those other virtual registers.

IK_RegUnit 

Register unit interference. A fixed live range is in the way, typically argument registers for a call. This can't be resolved by unassigning other virtual registers.

IK_RegMask 

RegMask interference. The live range is crossing an instruction with a regmask operand that doesn't preserve PhysReg. This typically means VirtReg is live across a call, and PhysReg isn't call-preserved.

Definition at line 81 of file LiveRegMatrix.h.


Constructor & Destructor Documentation

Definition at line 40 of file LiveRegMatrix.cpp.


Member Function Documentation

void LiveRegMatrix::assign ( LiveInterval VirtReg,
unsigned  PhysReg 
)

Assign VirtReg to PhysReg. This will mark VirtReg's live range as occupied in the LiveRegMatrix and update VirtRegMap. The live range is expected to be available in PhysReg.

Definition at line 75 of file LiveRegMatrix.cpp.

References llvm::dbgs(), DEBUG, llvm::MCRegisterInfo::DiffListIterator::isValid(), llvm::LiveInterval::reg, and llvm::MachineRegisterInfo::setPhysRegUsed().

Referenced by llvm::RegAllocBase::allocatePhysRegs().

Check for interference before assigning VirtReg to PhysReg. If this function returns IK_Free, it is legal to assign(VirtReg, PhysReg). When there is more than one kind of interference, the InterferenceKind with the highest enum value is returned.

Definition at line 141 of file LiveRegMatrix.cpp.

References llvm::LiveIntervalUnion::Query::checkInterference(), checkRegMaskInterference(), checkRegUnitInterference(), llvm::LiveRange::empty(), IK_Free, IK_RegMask, IK_RegUnit, IK_VirtReg, llvm::MCRegisterInfo::DiffListIterator::isValid(), and query().

Check for regmask interference only. Return true if VirtReg crosses a regmask operand that clobbers PhysReg. If PhysReg is null, check if VirtReg crosses any regmask operands.

Definition at line 102 of file LiveRegMatrix.cpp.

References llvm::LiveIntervals::checkRegMaskInterference(), llvm::BitVector::clear(), llvm::BitVector::empty(), llvm::LiveInterval::reg, and llvm::BitVector::test().

Referenced by checkInterference().

Check for regunit interference only. Return true if VirtReg overlaps a fixed assignment of one of PhysRegs's register units.

Definition at line 120 of file LiveRegMatrix.cpp.

References llvm::LiveRange::empty(), llvm::LiveIntervals::getRegUnit(), llvm::LiveIntervals::getSlotIndexes(), llvm::MCRegisterInfo::DiffListIterator::isValid(), llvm::LiveRange::overlaps(), and llvm::LiveInterval::reg.

Referenced by checkInterference().

Directly access the live interval unions per regunit. This returns an array indexed by the regunit number.

Definition at line 142 of file LiveRegMatrix.h.

Invalidate cached interference queries after modifying virtual register live ranges. Interference checks may return stale information unless caches are invalidated.

Definition at line 79 of file LiveRegMatrix.h.

Referenced by llvm::RegAllocBase::allocatePhysRegs().

Query a line of the assigned virtual register matrix directly. Use MCRegUnitIterator to enumerate all regunits in the desired PhysReg. This returns a reference to an internal Query data structure that is only valid until the next query() call.

Definition at line 133 of file LiveRegMatrix.cpp.

References llvm::LiveIntervalUnion::Query::init().

Referenced by checkInterference().

Unassign VirtReg from its PhysReg. Assuming that VirtReg was previously assigned to a PhysReg, this undoes the assignment and updates VirtRegMap accordingly.

Definition at line 89 of file LiveRegMatrix.cpp.

References llvm::dbgs(), DEBUG, llvm::MCRegisterInfo::DiffListIterator::isValid(), and llvm::LiveInterval::reg.


Member Data Documentation

char LiveRegMatrix::ID = 0 [static]

Definition at line 65 of file LiveRegMatrix.h.


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