mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-01 00:33:09 +00:00
Introduce SpecificBumpPtrAllocator, a wrapper for BumpPtrAllocator which allows
only a single type of object to be allocated. Use it to make VNInfo destruction typesafe. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99919 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
820580dfa9
commit
991de14dd6
@ -67,7 +67,7 @@ namespace llvm {
|
|||||||
} cr;
|
} cr;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
typedef SpecificBumpPtrAllocator<VNInfo> Allocator;
|
||||||
typedef SmallVector<SlotIndex, 4> KillSet;
|
typedef SmallVector<SlotIndex, 4> KillSet;
|
||||||
|
|
||||||
/// The ID number of this value.
|
/// The ID number of this value.
|
||||||
@ -365,10 +365,8 @@ namespace llvm {
|
|||||||
/// getNextValue - Create a new value number and return it. MIIdx specifies
|
/// getNextValue - Create a new value number and return it. MIIdx specifies
|
||||||
/// the instruction that defines the value number.
|
/// the instruction that defines the value number.
|
||||||
VNInfo *getNextValue(SlotIndex def, MachineInstr *CopyMI,
|
VNInfo *getNextValue(SlotIndex def, MachineInstr *CopyMI,
|
||||||
bool isDefAccurate, BumpPtrAllocator &VNInfoAllocator){
|
bool isDefAccurate, VNInfo::Allocator &VNInfoAllocator) {
|
||||||
VNInfo *VNI =
|
VNInfo *VNI = VNInfoAllocator.Allocate();
|
||||||
static_cast<VNInfo*>(VNInfoAllocator.Allocate((unsigned)sizeof(VNInfo),
|
|
||||||
alignof<VNInfo>()));
|
|
||||||
new (VNI) VNInfo((unsigned)valnos.size(), def, CopyMI);
|
new (VNI) VNInfo((unsigned)valnos.size(), def, CopyMI);
|
||||||
VNI->setIsDefAccurate(isDefAccurate);
|
VNI->setIsDefAccurate(isDefAccurate);
|
||||||
valnos.push_back(VNI);
|
valnos.push_back(VNI);
|
||||||
@ -378,11 +376,8 @@ namespace llvm {
|
|||||||
/// Create a copy of the given value. The new value will be identical except
|
/// Create a copy of the given value. The new value will be identical except
|
||||||
/// for the Value number.
|
/// for the Value number.
|
||||||
VNInfo *createValueCopy(const VNInfo *orig,
|
VNInfo *createValueCopy(const VNInfo *orig,
|
||||||
BumpPtrAllocator &VNInfoAllocator) {
|
VNInfo::Allocator &VNInfoAllocator) {
|
||||||
VNInfo *VNI =
|
VNInfo *VNI = VNInfoAllocator.Allocate();
|
||||||
static_cast<VNInfo*>(VNInfoAllocator.Allocate((unsigned)sizeof(VNInfo),
|
|
||||||
alignof<VNInfo>()));
|
|
||||||
|
|
||||||
new (VNI) VNInfo((unsigned)valnos.size(), *orig);
|
new (VNI) VNInfo((unsigned)valnos.size(), *orig);
|
||||||
valnos.push_back(VNI);
|
valnos.push_back(VNI);
|
||||||
return VNI;
|
return VNI;
|
||||||
@ -422,14 +417,14 @@ namespace llvm {
|
|||||||
/// VNInfoAllocator since it will create a new val#.
|
/// VNInfoAllocator since it will create a new val#.
|
||||||
void MergeInClobberRanges(LiveIntervals &li_,
|
void MergeInClobberRanges(LiveIntervals &li_,
|
||||||
const LiveInterval &Clobbers,
|
const LiveInterval &Clobbers,
|
||||||
BumpPtrAllocator &VNInfoAllocator);
|
VNInfo::Allocator &VNInfoAllocator);
|
||||||
|
|
||||||
/// MergeInClobberRange - Same as MergeInClobberRanges except it merge in a
|
/// MergeInClobberRange - Same as MergeInClobberRanges except it merge in a
|
||||||
/// single LiveRange only.
|
/// single LiveRange only.
|
||||||
void MergeInClobberRange(LiveIntervals &li_,
|
void MergeInClobberRange(LiveIntervals &li_,
|
||||||
SlotIndex Start,
|
SlotIndex Start,
|
||||||
SlotIndex End,
|
SlotIndex End,
|
||||||
BumpPtrAllocator &VNInfoAllocator);
|
VNInfo::Allocator &VNInfoAllocator);
|
||||||
|
|
||||||
/// MergeValueInAsValue - Merge all of the live ranges of a specific val#
|
/// MergeValueInAsValue - Merge all of the live ranges of a specific val#
|
||||||
/// in RHS into this live interval as the specified value number.
|
/// in RHS into this live interval as the specified value number.
|
||||||
@ -449,7 +444,7 @@ namespace llvm {
|
|||||||
/// Copy - Copy the specified live interval. This copies all the fields
|
/// Copy - Copy the specified live interval. This copies all the fields
|
||||||
/// except for the register of the interval.
|
/// except for the register of the interval.
|
||||||
void Copy(const LiveInterval &RHS, MachineRegisterInfo *MRI,
|
void Copy(const LiveInterval &RHS, MachineRegisterInfo *MRI,
|
||||||
BumpPtrAllocator &VNInfoAllocator);
|
VNInfo::Allocator &VNInfoAllocator);
|
||||||
|
|
||||||
bool empty() const { return ranges.empty(); }
|
bool empty() const { return ranges.empty(); }
|
||||||
|
|
||||||
|
@ -55,7 +55,7 @@ namespace llvm {
|
|||||||
|
|
||||||
/// Special pool allocator for VNInfo's (LiveInterval val#).
|
/// Special pool allocator for VNInfo's (LiveInterval val#).
|
||||||
///
|
///
|
||||||
BumpPtrAllocator VNInfoAllocator;
|
VNInfo::Allocator VNInfoAllocator;
|
||||||
|
|
||||||
typedef DenseMap<unsigned, LiveInterval*> Reg2IntervalMap;
|
typedef DenseMap<unsigned, LiveInterval*> Reg2IntervalMap;
|
||||||
Reg2IntervalMap r2iMap_;
|
Reg2IntervalMap r2iMap_;
|
||||||
@ -221,7 +221,7 @@ namespace llvm {
|
|||||||
indexes_->renumberIndexes();
|
indexes_->renumberIndexes();
|
||||||
}
|
}
|
||||||
|
|
||||||
BumpPtrAllocator& getVNInfoAllocator() { return VNInfoAllocator; }
|
VNInfo::Allocator& getVNInfoAllocator() { return VNInfoAllocator; }
|
||||||
|
|
||||||
/// getVNInfoSourceReg - Helper function that parses the specified VNInfo
|
/// getVNInfoSourceReg - Helper function that parses the specified VNInfo
|
||||||
/// copy field and returns the source register that defines it.
|
/// copy field and returns the source register that defines it.
|
||||||
|
@ -27,7 +27,7 @@ namespace llvm {
|
|||||||
class LiveStacks : public MachineFunctionPass {
|
class LiveStacks : public MachineFunctionPass {
|
||||||
/// Special pool allocator for VNInfo's (LiveInterval val#).
|
/// Special pool allocator for VNInfo's (LiveInterval val#).
|
||||||
///
|
///
|
||||||
BumpPtrAllocator VNInfoAllocator;
|
VNInfo::Allocator VNInfoAllocator;
|
||||||
|
|
||||||
/// S2IMap - Stack slot indices to live interval mapping.
|
/// S2IMap - Stack slot indices to live interval mapping.
|
||||||
///
|
///
|
||||||
@ -91,7 +91,7 @@ namespace llvm {
|
|||||||
return I->second;
|
return I->second;
|
||||||
}
|
}
|
||||||
|
|
||||||
BumpPtrAllocator& getVNInfoAllocator() { return VNInfoAllocator; }
|
VNInfo::Allocator& getVNInfoAllocator() { return VNInfoAllocator; }
|
||||||
|
|
||||||
virtual void getAnalysisUsage(AnalysisUsage &AU) const;
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const;
|
||||||
virtual void releaseMemory();
|
virtual void releaseMemory();
|
||||||
|
@ -133,8 +133,8 @@ class BumpPtrAllocator {
|
|||||||
|
|
||||||
static MallocSlabAllocator DefaultSlabAllocator;
|
static MallocSlabAllocator DefaultSlabAllocator;
|
||||||
|
|
||||||
|
template<typename T> friend class SpecificBumpPtrAllocator;
|
||||||
public:
|
public:
|
||||||
typedef void (*DTorFunction)(void*);
|
|
||||||
BumpPtrAllocator(size_t size = 4096, size_t threshold = 4096,
|
BumpPtrAllocator(size_t size = 4096, size_t threshold = 4096,
|
||||||
SlabAllocator &allocator = DefaultSlabAllocator);
|
SlabAllocator &allocator = DefaultSlabAllocator);
|
||||||
~BumpPtrAllocator();
|
~BumpPtrAllocator();
|
||||||
@ -143,11 +143,6 @@ public:
|
|||||||
/// to the beginning of it, freeing all memory allocated so far.
|
/// to the beginning of it, freeing all memory allocated so far.
|
||||||
void Reset();
|
void Reset();
|
||||||
|
|
||||||
/// Reset - like Reset(), but call DTorFunction for each allocated
|
|
||||||
/// object. This assumes that all objects allocated with this allocator
|
|
||||||
/// had the same size and alignment specified here.
|
|
||||||
void Reset(size_t Size, size_t Alignment, DTorFunction DTor);
|
|
||||||
|
|
||||||
/// Allocate - Allocate space at the specified alignment.
|
/// Allocate - Allocate space at the specified alignment.
|
||||||
///
|
///
|
||||||
void *Allocate(size_t Size, size_t Alignment);
|
void *Allocate(size_t Size, size_t Alignment);
|
||||||
@ -182,6 +177,45 @@ public:
|
|||||||
void PrintStats() const;
|
void PrintStats() const;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/// SpecificBumpPtrAllocator - Same as BumpPtrAllocator but allows only
|
||||||
|
/// elements of one type to be allocated. This allows calling the destructor
|
||||||
|
/// in DestroyAll() and when the allocator is destroyed.
|
||||||
|
template <typename T>
|
||||||
|
class SpecificBumpPtrAllocator {
|
||||||
|
BumpPtrAllocator Allocator;
|
||||||
|
public:
|
||||||
|
SpecificBumpPtrAllocator(size_t size = 4096, size_t threshold = 4096,
|
||||||
|
SlabAllocator &allocator = BumpPtrAllocator::DefaultSlabAllocator)
|
||||||
|
: Allocator(size, threshold, allocator) {}
|
||||||
|
|
||||||
|
~SpecificBumpPtrAllocator() {
|
||||||
|
DestroyAll();
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Call the destructor of each allocated object and deallocate all but the
|
||||||
|
/// current slab and reset the current pointer to the beginning of it, freeing
|
||||||
|
/// all memory allocated so far.
|
||||||
|
void DestroyAll() {
|
||||||
|
MemSlab *Slab = Allocator.CurSlab;
|
||||||
|
while (Slab) {
|
||||||
|
char *End = Slab == Allocator.CurSlab ? Allocator.CurPtr :
|
||||||
|
(char *)Slab + Slab->Size;
|
||||||
|
for (char *Ptr = (char*)Slab+1; Ptr < End; Ptr += sizeof(T)) {
|
||||||
|
Ptr = Allocator.AlignPtr(Ptr, alignof<T>());
|
||||||
|
if (Ptr + sizeof(T) <= End)
|
||||||
|
reinterpret_cast<T*>(Ptr)->~T();
|
||||||
|
}
|
||||||
|
Slab = Slab->NextPtr;
|
||||||
|
}
|
||||||
|
Allocator.Reset();
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Allocate space for a specific count of elements.
|
||||||
|
T *Allocate(size_t num = 1) {
|
||||||
|
return Allocator.Allocate<T>(num);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
} // end namespace llvm
|
} // end namespace llvm
|
||||||
|
|
||||||
inline void *operator new(size_t Size, llvm::BumpPtrAllocator &Allocator) {
|
inline void *operator new(size_t Size, llvm::BumpPtrAllocator &Allocator) {
|
||||||
|
@ -591,7 +591,7 @@ void LiveInterval::MergeValueInAsValue(
|
|||||||
/// used with an unknown definition value.
|
/// used with an unknown definition value.
|
||||||
void LiveInterval::MergeInClobberRanges(LiveIntervals &li_,
|
void LiveInterval::MergeInClobberRanges(LiveIntervals &li_,
|
||||||
const LiveInterval &Clobbers,
|
const LiveInterval &Clobbers,
|
||||||
BumpPtrAllocator &VNInfoAllocator) {
|
VNInfo::Allocator &VNInfoAllocator) {
|
||||||
if (Clobbers.empty()) return;
|
if (Clobbers.empty()) return;
|
||||||
|
|
||||||
DenseMap<VNInfo*, VNInfo*> ValNoMaps;
|
DenseMap<VNInfo*, VNInfo*> ValNoMaps;
|
||||||
@ -658,7 +658,7 @@ void LiveInterval::MergeInClobberRanges(LiveIntervals &li_,
|
|||||||
void LiveInterval::MergeInClobberRange(LiveIntervals &li_,
|
void LiveInterval::MergeInClobberRange(LiveIntervals &li_,
|
||||||
SlotIndex Start,
|
SlotIndex Start,
|
||||||
SlotIndex End,
|
SlotIndex End,
|
||||||
BumpPtrAllocator &VNInfoAllocator) {
|
VNInfo::Allocator &VNInfoAllocator) {
|
||||||
// Find a value # to use for the clobber ranges. If there is already a value#
|
// Find a value # to use for the clobber ranges. If there is already a value#
|
||||||
// for unknown values, use it.
|
// for unknown values, use it.
|
||||||
VNInfo *ClobberValNo =
|
VNInfo *ClobberValNo =
|
||||||
@ -753,7 +753,7 @@ VNInfo* LiveInterval::MergeValueNumberInto(VNInfo *V1, VNInfo *V2) {
|
|||||||
|
|
||||||
void LiveInterval::Copy(const LiveInterval &RHS,
|
void LiveInterval::Copy(const LiveInterval &RHS,
|
||||||
MachineRegisterInfo *MRI,
|
MachineRegisterInfo *MRI,
|
||||||
BumpPtrAllocator &VNInfoAllocator) {
|
VNInfo::Allocator &VNInfoAllocator) {
|
||||||
ranges.clear();
|
ranges.clear();
|
||||||
valnos.clear();
|
valnos.clear();
|
||||||
std::pair<unsigned, unsigned> Hint = MRI->getRegAllocationHint(RHS.reg);
|
std::pair<unsigned, unsigned> Hint = MRI->getRegAllocationHint(RHS.reg);
|
||||||
|
@ -82,11 +82,6 @@ void LiveIntervals::getAnalysisUsage(AnalysisUsage &AU) const {
|
|||||||
MachineFunctionPass::getAnalysisUsage(AU);
|
MachineFunctionPass::getAnalysisUsage(AU);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void VNInfoDTor(void* Ptr)
|
|
||||||
{
|
|
||||||
reinterpret_cast<VNInfo*>(Ptr)->~VNInfo();
|
|
||||||
}
|
|
||||||
|
|
||||||
void LiveIntervals::releaseMemory() {
|
void LiveIntervals::releaseMemory() {
|
||||||
// Free the live intervals themselves.
|
// Free the live intervals themselves.
|
||||||
for (DenseMap<unsigned, LiveInterval*>::iterator I = r2iMap_.begin(),
|
for (DenseMap<unsigned, LiveInterval*>::iterator I = r2iMap_.begin(),
|
||||||
@ -96,7 +91,7 @@ void LiveIntervals::releaseMemory() {
|
|||||||
r2iMap_.clear();
|
r2iMap_.clear();
|
||||||
|
|
||||||
// Release VNInfo memroy regions after all VNInfo objects are dtor'd.
|
// Release VNInfo memroy regions after all VNInfo objects are dtor'd.
|
||||||
VNInfoAllocator.Reset((unsigned)sizeof(VNInfo), alignof<VNInfo>(), VNInfoDTor);
|
VNInfoAllocator.DestroyAll();
|
||||||
while (!CloneMIs.empty()) {
|
while (!CloneMIs.empty()) {
|
||||||
MachineInstr *MI = CloneMIs.back();
|
MachineInstr *MI = CloneMIs.back();
|
||||||
CloneMIs.pop_back();
|
CloneMIs.pop_back();
|
||||||
|
@ -36,7 +36,7 @@ void LiveStacks::getAnalysisUsage(AnalysisUsage &AU) const {
|
|||||||
|
|
||||||
void LiveStacks::releaseMemory() {
|
void LiveStacks::releaseMemory() {
|
||||||
// Release VNInfo memroy regions after all VNInfo objects are dtor'd.
|
// Release VNInfo memroy regions after all VNInfo objects are dtor'd.
|
||||||
VNInfoAllocator.Reset();
|
VNInfoAllocator.DestroyAll();
|
||||||
S2IMap.clear();
|
S2IMap.clear();
|
||||||
S2RCMap.clear();
|
S2RCMap.clear();
|
||||||
}
|
}
|
||||||
|
@ -665,7 +665,7 @@ PreAllocSplitting::PerformPHIConstructionFallBack(MachineBasicBlock::iterator Us
|
|||||||
|
|
||||||
/// ReconstructLiveInterval - Recompute a live interval from scratch.
|
/// ReconstructLiveInterval - Recompute a live interval from scratch.
|
||||||
void PreAllocSplitting::ReconstructLiveInterval(LiveInterval* LI) {
|
void PreAllocSplitting::ReconstructLiveInterval(LiveInterval* LI) {
|
||||||
BumpPtrAllocator& Alloc = LIs->getVNInfoAllocator();
|
VNInfo::Allocator& Alloc = LIs->getVNInfoAllocator();
|
||||||
|
|
||||||
// Clear the old ranges and valnos;
|
// Clear the old ranges and valnos;
|
||||||
LI->clear();
|
LI->clear();
|
||||||
|
@ -78,21 +78,6 @@ void BumpPtrAllocator::Reset() {
|
|||||||
End = ((char*)CurSlab) + CurSlab->Size;
|
End = ((char*)CurSlab) + CurSlab->Size;
|
||||||
}
|
}
|
||||||
|
|
||||||
void BumpPtrAllocator::Reset(size_t Size, size_t Alignment, DTorFunction DTor) {
|
|
||||||
if (Alignment == 0) Alignment = 1;
|
|
||||||
MemSlab *Slab = CurSlab;
|
|
||||||
while (Slab) {
|
|
||||||
char *End = Slab == CurSlab ? CurPtr : (char*)Slab + Slab->Size;
|
|
||||||
for (char *Ptr = (char*)Slab+1; Ptr < End; Ptr += Size) {
|
|
||||||
Ptr = AlignPtr(Ptr, Alignment);
|
|
||||||
if (Ptr + Size <= End)
|
|
||||||
DTor(Ptr);
|
|
||||||
}
|
|
||||||
Slab = Slab->NextPtr;
|
|
||||||
}
|
|
||||||
Reset();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Allocate - Allocate space at the specified alignment.
|
/// Allocate - Allocate space at the specified alignment.
|
||||||
///
|
///
|
||||||
void *BumpPtrAllocator::Allocate(size_t Size, size_t Alignment) {
|
void *BumpPtrAllocator::Allocate(size_t Size, size_t Alignment) {
|
||||||
|
Loading…
Reference in New Issue
Block a user