mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-16 11:05:54 +00:00
While extending definition range of a debug variable, consult lexical scopes also. There is no point extending debug variable out side its lexical block. This provides 6x compile time speedup in some cases.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@137250 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9ce256421a
commit
c722c3d5ff
@ -28,6 +28,7 @@
|
||||
#include "llvm/Analysis/DebugInfo.h"
|
||||
#include "llvm/ADT/IntervalMap.h"
|
||||
#include "llvm/ADT/Statistic.h"
|
||||
#include "llvm/CodeGen/LexicalScopes.h"
|
||||
#include "llvm/CodeGen/LiveIntervalAnalysis.h"
|
||||
#include "llvm/CodeGen/MachineDominators.h"
|
||||
#include "llvm/CodeGen/MachineFunction.h"
|
||||
@ -201,7 +202,8 @@ public:
|
||||
void extendDef(SlotIndex Idx, unsigned LocNo,
|
||||
LiveInterval *LI, const VNInfo *VNI,
|
||||
SmallVectorImpl<SlotIndex> *Kills,
|
||||
LiveIntervals &LIS, MachineDominatorTree &MDT);
|
||||
LiveIntervals &LIS, MachineDominatorTree &MDT,
|
||||
LexicalScopes &LS);
|
||||
|
||||
/// addDefsFromCopies - The value in LI/LocNo may be copies to other
|
||||
/// registers. Determine if any of the copies are available at the kill
|
||||
@ -219,7 +221,8 @@ public:
|
||||
/// computeIntervals - Compute the live intervals of all locations after
|
||||
/// collecting all their def points.
|
||||
void computeIntervals(MachineRegisterInfo &MRI,
|
||||
LiveIntervals &LIS, MachineDominatorTree &MDT);
|
||||
LiveIntervals &LIS, MachineDominatorTree &MDT,
|
||||
LexicalScopes &LS);
|
||||
|
||||
/// renameRegister - Update locations to rewrite OldReg as NewReg:SubIdx.
|
||||
void renameRegister(unsigned OldReg, unsigned NewReg, unsigned SubIdx,
|
||||
@ -253,6 +256,7 @@ class LDVImpl {
|
||||
LocMap::Allocator allocator;
|
||||
MachineFunction *MF;
|
||||
LiveIntervals *LIS;
|
||||
LexicalScopes LS;
|
||||
MachineDominatorTree *MDT;
|
||||
const TargetRegisterInfo *TRI;
|
||||
|
||||
@ -455,10 +459,12 @@ bool LDVImpl::collectDebugValues(MachineFunction &mf) {
|
||||
void UserValue::extendDef(SlotIndex Idx, unsigned LocNo,
|
||||
LiveInterval *LI, const VNInfo *VNI,
|
||||
SmallVectorImpl<SlotIndex> *Kills,
|
||||
LiveIntervals &LIS, MachineDominatorTree &MDT) {
|
||||
LiveIntervals &LIS, MachineDominatorTree &MDT,
|
||||
LexicalScopes &LS) {
|
||||
SmallVector<SlotIndex, 16> Todo;
|
||||
Todo.push_back(Idx);
|
||||
|
||||
SmallPtrSet<const MachineBasicBlock *, 4> LBlocks;
|
||||
LS.getMachineBasicBlocks(dl, LBlocks);
|
||||
do {
|
||||
SlotIndex Start = Todo.pop_back_val();
|
||||
MachineBasicBlock *MBB = LIS.getMBBFromIndex(Start);
|
||||
@ -505,8 +511,11 @@ void UserValue::extendDef(SlotIndex Idx, unsigned LocNo,
|
||||
continue;
|
||||
const std::vector<MachineDomTreeNode*> &Children =
|
||||
MDT.getNode(MBB)->getChildren();
|
||||
for (unsigned i = 0, e = Children.size(); i != e; ++i)
|
||||
Todo.push_back(LIS.getMBBStartIdx(Children[i]->getBlock()));
|
||||
for (unsigned i = 0, e = Children.size(); i != e; ++i) {
|
||||
MachineBasicBlock *MBB = Children[i]->getBlock();
|
||||
if (LBlocks.count(MBB) != 0 || LS.dominates(dl, MBB))
|
||||
Todo.push_back(LIS.getMBBStartIdx(MBB));
|
||||
}
|
||||
} while (!Todo.empty());
|
||||
}
|
||||
|
||||
@ -586,7 +595,8 @@ UserValue::addDefsFromCopies(LiveInterval *LI, unsigned LocNo,
|
||||
void
|
||||
UserValue::computeIntervals(MachineRegisterInfo &MRI,
|
||||
LiveIntervals &LIS,
|
||||
MachineDominatorTree &MDT) {
|
||||
MachineDominatorTree &MDT,
|
||||
LexicalScopes &LS) {
|
||||
SmallVector<std::pair<SlotIndex, unsigned>, 16> Defs;
|
||||
|
||||
// Collect all defs to be extended (Skipping undefs).
|
||||
@ -605,10 +615,10 @@ UserValue::computeIntervals(MachineRegisterInfo &MRI,
|
||||
LiveInterval *LI = &LIS.getInterval(Loc.getReg());
|
||||
const VNInfo *VNI = LI->getVNInfoAt(Idx);
|
||||
SmallVector<SlotIndex, 16> Kills;
|
||||
extendDef(Idx, LocNo, LI, VNI, &Kills, LIS, MDT);
|
||||
extendDef(Idx, LocNo, LI, VNI, &Kills, LIS, MDT, LS);
|
||||
addDefsFromCopies(LI, LocNo, Kills, Defs, MRI, LIS);
|
||||
} else
|
||||
extendDef(Idx, LocNo, 0, 0, 0, LIS, MDT);
|
||||
extendDef(Idx, LocNo, 0, 0, 0, LIS, MDT, LS);
|
||||
}
|
||||
|
||||
// Finally, erase all the undefs.
|
||||
@ -621,7 +631,7 @@ UserValue::computeIntervals(MachineRegisterInfo &MRI,
|
||||
|
||||
void LDVImpl::computeIntervals() {
|
||||
for (unsigned i = 0, e = userValues.size(); i != e; ++i) {
|
||||
userValues[i]->computeIntervals(MF->getRegInfo(), *LIS, *MDT);
|
||||
userValues[i]->computeIntervals(MF->getRegInfo(), *LIS, *MDT, LS);
|
||||
userValues[i]->mapVirtRegs(this);
|
||||
}
|
||||
}
|
||||
@ -632,6 +642,7 @@ bool LDVImpl::runOnMachineFunction(MachineFunction &mf) {
|
||||
MDT = &pass.getAnalysis<MachineDominatorTree>();
|
||||
TRI = mf.getTarget().getRegisterInfo();
|
||||
clear();
|
||||
LS.initialize(mf);
|
||||
DEBUG(dbgs() << "********** COMPUTING LIVE DEBUG VARIABLES: "
|
||||
<< ((Value*)mf.getFunction())->getName()
|
||||
<< " **********\n");
|
||||
@ -639,6 +650,7 @@ bool LDVImpl::runOnMachineFunction(MachineFunction &mf) {
|
||||
bool Changed = collectDebugValues(mf);
|
||||
computeIntervals();
|
||||
DEBUG(print(dbgs()));
|
||||
LS.releaseMemory();
|
||||
return Changed;
|
||||
}
|
||||
|
||||
|
@ -5,7 +5,7 @@ target triple = "thumbv7-apple-macosx10.6.7"
|
||||
|
||||
;CHECK: Ldebug_loc0:
|
||||
;CHECK-NEXT: .long Ltmp1
|
||||
;CHECK-NEXT: .long Ltmp3
|
||||
;CHECK-NEXT: .long Ltmp2
|
||||
;CHECK-NEXT: Lset9 = Ltmp10-Ltmp9 @ Loc expr size
|
||||
;CHECK-NEXT: .short Lset9
|
||||
;CHECK-NEXT: Ltmp9:
|
||||
|
@ -29,8 +29,8 @@ entry:
|
||||
get_local_id.exit: ; preds = %4
|
||||
%6 = phi i32 [ %5, %4 ]
|
||||
call void @llvm.dbg.value(metadata !{i32 %6}, i64 0, metadata !10), !dbg !12
|
||||
%7 = call <4 x i32> @__amdil_get_global_id_int() nounwind
|
||||
%8 = extractelement <4 x i32> %7, i32 0
|
||||
%7 = call <4 x i32> @__amdil_get_global_id_int() nounwind, !dbg !12
|
||||
%8 = extractelement <4 x i32> %7, i32 0, !dbg !12
|
||||
br label %9
|
||||
|
||||
; <label>:9 ; preds = %get_local_id.exit
|
||||
|
Loading…
Reference in New Issue
Block a user