Skip to content

Commit

Permalink
Add DEBUG message.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@113614 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
Devang Patel committed Sep 10, 2010
1 parent 1ec2ee6 commit 4bafda9
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
8 changes: 6 additions & 2 deletions lib/CodeGen/RegAllocFast.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -798,9 +798,11 @@ void RAFast::AllocateBasicBlock() {
setPhysReg(MI, i, LRI->second.PhysReg);
else {
int SS = StackSlotForVirtReg[Reg];
if (SS == -1)
if (SS == -1) {
// We can't allocate a physreg for a DebugValue, sorry!
DEBUG(dbgs() << "Unable to allocate vreg used by DBG_VALUE");
MO.setReg(0);
}
else {
// Modify DBG_VALUE now that the value is in a spill slot.
int64_t Offset = MI->getOperand(1).getImm();
Expand All @@ -817,9 +819,11 @@ void RAFast::AllocateBasicBlock() {
MI = NewDV;
ScanDbgValue = true;
break;
} else
} else {
// We can't allocate a physreg for a DebugValue; sorry!
DEBUG(dbgs() << "Unable to allocate vreg used by DBG_VALUE");
MO.setReg(0);
}
}
}
}
Expand Down
12 changes: 10 additions & 2 deletions lib/CodeGen/SelectionDAG/FastISel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -473,10 +473,18 @@ bool FastISel::SelectCall(const User *I) {
return true;
const AllocaInst *AI = dyn_cast<AllocaInst>(Address);
// Don't handle byval struct arguments or VLAs, for example.
if (!AI)
if (!AI) {
// Building the map above is target independent. Generating DBG_VALUE
// inline is target dependent; do this now.
(void)TargetSelectInstruction(cast<Instruction>(I));
DenseMap<const Value *, unsigned>::iterator It =
FuncInfo.ValueMap.find(Address);
if (0 && It != FuncInfo.ValueMap.end()) {
BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
TII.get(TargetOpcode::DBG_VALUE))
.addReg(It->second, RegState::Debug).addImm(0).addMetadata(DI->getVariable());
} else
(void)TargetSelectInstruction(cast<Instruction>(I));
}
return true;
}
case Intrinsic::dbg_value: {
Expand Down

0 comments on commit 4bafda9

Please sign in to comment.