mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-12 13:30:51 +00:00
Move the value map from LiveIntervalMap to SplitEditor.
The value map is currently not used, all values are 'complex mapped' and LiveIntervalMap::mapValue is used to dig them out. This is the first step in a series changes leading to the removal of LiveIntervalMap. Its data structures can be shared among all the live intervals created by a split, so it is wasteful to create a copy for each. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@126800 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3afab9c57e
commit
670ccd18ae
@ -210,41 +210,9 @@ makeVV(const VNInfo *a, VNInfo *b) {
|
||||
|
||||
void LiveIntervalMap::reset(LiveInterval *li) {
|
||||
LI = li;
|
||||
Values.clear();
|
||||
LiveOutCache.clear();
|
||||
}
|
||||
|
||||
bool LiveIntervalMap::isComplexMapped(const VNInfo *ParentVNI) const {
|
||||
ValueMap::const_iterator i = Values.find(ParentVNI);
|
||||
return i != Values.end() && i->second == 0;
|
||||
}
|
||||
|
||||
// defValue - Introduce a LI def for ParentVNI that could be later than
|
||||
// ParentVNI->def.
|
||||
VNInfo *LiveIntervalMap::defValue(const VNInfo *ParentVNI, SlotIndex Idx) {
|
||||
assert(LI && "call reset first");
|
||||
assert(ParentVNI && "Mapping NULL value");
|
||||
assert(Idx.isValid() && "Invalid SlotIndex");
|
||||
assert(ParentLI.getVNInfoAt(Idx) == ParentVNI && "Bad ParentVNI");
|
||||
|
||||
// Create a new value.
|
||||
VNInfo *VNI = LI->getNextValue(Idx, 0, LIS.getVNInfoAllocator());
|
||||
|
||||
// Preserve the PHIDef bit.
|
||||
if (ParentVNI->isPHIDef() && Idx == ParentVNI->def)
|
||||
VNI->setIsPHIDef(true);
|
||||
|
||||
// Use insert for lookup, so we can add missing values with a second lookup.
|
||||
std::pair<ValueMap::iterator,bool> InsP =
|
||||
Values.insert(makeVV(ParentVNI, Idx == ParentVNI->def ? VNI : 0));
|
||||
|
||||
// This is now a complex def. Mark with a NULL in valueMap.
|
||||
if (!InsP.second)
|
||||
InsP.first->second = 0;
|
||||
|
||||
return VNI;
|
||||
}
|
||||
|
||||
|
||||
// mapValue - Find the mapped value for ParentVNI at Idx.
|
||||
// Potentially create phi-def values.
|
||||
@ -255,23 +223,6 @@ VNInfo *LiveIntervalMap::mapValue(const VNInfo *ParentVNI, SlotIndex Idx,
|
||||
assert(Idx.isValid() && "Invalid SlotIndex");
|
||||
assert(ParentLI.getVNInfoAt(Idx) == ParentVNI && "Bad ParentVNI");
|
||||
|
||||
// Use insert for lookup, so we can add missing values with a second lookup.
|
||||
std::pair<ValueMap::iterator,bool> InsP =
|
||||
Values.insert(makeVV(ParentVNI, 0));
|
||||
|
||||
// This was an unknown value. Create a simple mapping.
|
||||
if (InsP.second) {
|
||||
if (simple) *simple = true;
|
||||
return InsP.first->second = LI->createValueCopy(ParentVNI,
|
||||
LIS.getVNInfoAllocator());
|
||||
}
|
||||
|
||||
// This was a simple mapped value.
|
||||
if (InsP.first->second) {
|
||||
if (simple) *simple = true;
|
||||
return InsP.first->second;
|
||||
}
|
||||
|
||||
// This is a complex mapped value. There may be multiple defs, and we may need
|
||||
// to create phi-defs.
|
||||
if (simple) *simple = false;
|
||||
@ -589,6 +540,60 @@ void SplitEditor::dump() const {
|
||||
dbgs() << '\n';
|
||||
}
|
||||
|
||||
VNInfo *SplitEditor::defValue(unsigned RegIdx,
|
||||
const VNInfo *ParentVNI,
|
||||
SlotIndex Idx) {
|
||||
assert(ParentVNI && "Mapping NULL value");
|
||||
assert(Idx.isValid() && "Invalid SlotIndex");
|
||||
assert(Edit.getParent().getVNInfoAt(Idx) == ParentVNI && "Bad Parent VNI");
|
||||
LiveInterval *LI = Edit.get(RegIdx);
|
||||
|
||||
// Create a new value.
|
||||
VNInfo *VNI = LI->getNextValue(Idx, 0, LIS.getVNInfoAllocator());
|
||||
|
||||
// Preserve the PHIDef bit.
|
||||
if (ParentVNI->isPHIDef() && Idx == ParentVNI->def)
|
||||
VNI->setIsPHIDef(true);
|
||||
|
||||
// Use insert for lookup, so we can add missing values with a second lookup.
|
||||
std::pair<ValueMap::iterator, bool> InsP =
|
||||
Values.insert(std::make_pair(std::make_pair(RegIdx, ParentVNI->id), VNI));
|
||||
|
||||
// This was the first time (RegIdx, ParentVNI) was mapped.
|
||||
// Keep it as a simple def without any liveness.
|
||||
if (InsP.second)
|
||||
return VNI;
|
||||
|
||||
// If the previous value was a simple mapping, add liveness for it now.
|
||||
if (VNInfo *OldVNI = InsP.first->second) {
|
||||
SlotIndex Def = OldVNI->def;
|
||||
LI->addRange(LiveRange(Def, Def.getNextSlot(), OldVNI));
|
||||
// No longer a simple mapping.
|
||||
InsP.first->second = 0;
|
||||
}
|
||||
|
||||
// This is a complex mapping, add liveness for VNI
|
||||
SlotIndex Def = VNI->def;
|
||||
LI->addRange(LiveRange(Def, Def.getNextSlot(), VNI));
|
||||
|
||||
return VNI;
|
||||
}
|
||||
|
||||
void SplitEditor::markComplexMapped(unsigned RegIdx, const VNInfo *ParentVNI) {
|
||||
assert(ParentVNI && "Mapping NULL value");
|
||||
VNInfo *&VNI = Values[std::make_pair(RegIdx, ParentVNI->id)];
|
||||
|
||||
// ParentVNI was either unmapped or already complex mapped. Either way.
|
||||
if (!VNI)
|
||||
return;
|
||||
|
||||
// This was previously a single mapping. Make sure the old def is represented
|
||||
// by a trivial live range.
|
||||
SlotIndex Def = VNI->def;
|
||||
Edit.get(RegIdx)->addRange(LiveRange(Def, Def.getNextSlot(), VNI));
|
||||
VNI = 0;
|
||||
}
|
||||
|
||||
VNInfo *SplitEditor::defFromParent(unsigned RegIdx,
|
||||
VNInfo *ParentVNI,
|
||||
SlotIndex UseIdx,
|
||||
@ -609,12 +614,12 @@ VNInfo *SplitEditor::defFromParent(unsigned RegIdx,
|
||||
Def = LIS.InsertMachineInstrInMaps(CopyMI).getDefIndex();
|
||||
}
|
||||
|
||||
// Define the value in Reg.
|
||||
VNInfo *VNI = LIMappers[RegIdx].defValue(ParentVNI, Def);
|
||||
VNI->setCopy(CopyMI);
|
||||
// Temporarily mark all values as complex mapped.
|
||||
markComplexMapped(RegIdx, ParentVNI);
|
||||
|
||||
// Add minimal liveness for the new value.
|
||||
Edit.get(RegIdx)->addRange(LiveRange(Def, Def.getNextSlot(), VNI));
|
||||
// Define the value in Reg.
|
||||
VNInfo *VNI = defValue(RegIdx, ParentVNI, Def);
|
||||
VNI->setCopy(CopyMI);
|
||||
return VNI;
|
||||
}
|
||||
|
||||
@ -833,13 +838,11 @@ void SplitEditor::finish() {
|
||||
const VNInfo *ParentVNI = *I;
|
||||
if (ParentVNI->isUnused())
|
||||
continue;
|
||||
LiveIntervalMap &LIM = LIMappers[RegAssign.lookup(ParentVNI->def)];
|
||||
VNInfo *VNI = LIM.defValue(ParentVNI, ParentVNI->def);
|
||||
LIM.getLI()->addRange(LiveRange(ParentVNI->def,
|
||||
ParentVNI->def.getNextSlot(), VNI));
|
||||
unsigned RegIdx = RegAssign.lookup(ParentVNI->def);
|
||||
// Mark all values as complex to force liveness computation.
|
||||
// This should really only be necessary for remat victims, but we are lazy.
|
||||
LIM.markComplexMapped(ParentVNI);
|
||||
markComplexMapped(RegIdx, ParentVNI);
|
||||
defValue(RegIdx, ParentVNI, ParentVNI->def);
|
||||
}
|
||||
|
||||
#ifndef NDEBUG
|
||||
|
@ -162,14 +162,6 @@ class LiveIntervalMap {
|
||||
// The child interval's values are fully contained inside ParentLI values.
|
||||
LiveInterval *LI;
|
||||
|
||||
typedef DenseMap<const VNInfo*, VNInfo*> ValueMap;
|
||||
|
||||
// Map ParentLI values to simple values in LI that are defined at the same
|
||||
// SlotIndex, or NULL for ParentLI values that have complex LI defs.
|
||||
// Note there is a difference between values mapping to NULL (complex), and
|
||||
// values not present (unknown/unmapped).
|
||||
ValueMap Values;
|
||||
|
||||
typedef std::pair<VNInfo*, MachineDomTreeNode*> LiveOutPair;
|
||||
typedef DenseMap<MachineBasicBlock*,LiveOutPair> LiveOutMap;
|
||||
|
||||
@ -203,12 +195,6 @@ public:
|
||||
/// getLI - return the current live interval.
|
||||
LiveInterval *getLI() const { return LI; }
|
||||
|
||||
/// defValue - define a value in LI from the ParentLI value VNI and Idx.
|
||||
/// Idx does not have to be ParentVNI->def, but it must be contained within
|
||||
/// ParentVNI's live range in ParentLI.
|
||||
/// Return the new LI value.
|
||||
VNInfo *defValue(const VNInfo *ParentVNI, SlotIndex Idx);
|
||||
|
||||
/// mapValue - map ParentVNI to the corresponding LI value at Idx. It is
|
||||
/// assumed that ParentVNI is live at Idx.
|
||||
/// If ParentVNI has not been defined by defValue, it is assumed that
|
||||
@ -225,20 +211,6 @@ public:
|
||||
// Idx. Return the found VNInfo, or NULL.
|
||||
VNInfo *extendTo(const MachineBasicBlock *MBB, SlotIndex Idx);
|
||||
|
||||
/// isMapped - Return true is ParentVNI is a known mapped value. It may be a
|
||||
/// simple 1-1 mapping or a complex mapping to later defs.
|
||||
bool isMapped(const VNInfo *ParentVNI) const {
|
||||
return Values.count(ParentVNI);
|
||||
}
|
||||
|
||||
/// isComplexMapped - Return true if ParentVNI has received new definitions
|
||||
/// with defValue.
|
||||
bool isComplexMapped(const VNInfo *ParentVNI) const;
|
||||
|
||||
/// markComplexMapped - Mark ParentVNI as complex mapped regardless of the
|
||||
/// number of definitions.
|
||||
void markComplexMapped(const VNInfo *ParentVNI) { Values[ParentVNI] = 0; }
|
||||
|
||||
// addSimpleRange - Add a simple range from ParentLI to LI.
|
||||
// ParentVNI must be live in the [Start;End) interval.
|
||||
void addSimpleRange(SlotIndex Start, SlotIndex End, const VNInfo *ParentVNI);
|
||||
@ -292,6 +264,29 @@ class SplitEditor {
|
||||
/// LIMappers - One LiveIntervalMap or each interval in Edit.
|
||||
SmallVector<LiveIntervalMap, 4> LIMappers;
|
||||
|
||||
typedef DenseMap<std::pair<unsigned, unsigned>, VNInfo*> ValueMap;
|
||||
|
||||
/// Values - keep track of the mapping from parent values to values in the new
|
||||
/// intervals. Given a pair (RegIdx, ParentVNI->id), Values contains:
|
||||
///
|
||||
/// 1. No entry - the value is not mapped to Edit.get(RegIdx).
|
||||
/// 2. Null - the value is mapped to multiple values in Edit.get(RegIdx).
|
||||
/// Each value is represented by a minimal live range at its def.
|
||||
/// 3. A non-null VNInfo - the value is mapped to a single new value.
|
||||
/// The new value has no live ranges anywhere.
|
||||
ValueMap Values;
|
||||
|
||||
/// defValue - define a value in RegIdx from ParentVNI at Idx.
|
||||
/// Idx does not have to be ParentVNI->def, but it must be contained within
|
||||
/// ParentVNI's live range in ParentLI. The new value is added to the value
|
||||
/// map.
|
||||
/// Return the new LI value.
|
||||
VNInfo *defValue(unsigned RegIdx, const VNInfo *ParentVNI, SlotIndex Idx);
|
||||
|
||||
/// markComplexMapped - Mark ParentVNI as complex mapped in RegIdx regardless
|
||||
/// of the number of defs.
|
||||
void markComplexMapped(unsigned RegIdx, const VNInfo *ParentVNI);
|
||||
|
||||
/// defFromParent - Define Reg from ParentVNI at UseIdx using either
|
||||
/// rematerialization or a COPY from parent. Return the new value.
|
||||
VNInfo *defFromParent(unsigned RegIdx,
|
||||
|
Loading…
Reference in New Issue
Block a user