forked from OSchip/llvm-project
Remove the unused offset from DBG_VALUE (NFC)
Followup to r309426. rdar://problem/33580047 llvm-svn: 309450
This commit is contained in:
parent
d92ac5a259
commit
8b9bb534a1
|
@ -396,22 +396,22 @@ inline MachineInstrBuilder BuildMI(MachineBasicBlock *BB, const DebugLoc &DL,
|
|||
}
|
||||
|
||||
/// This version of the builder builds a DBG_VALUE intrinsic
|
||||
/// for either a value in a register or a register-indirect+offset
|
||||
/// for either a value in a register or a register-indirect
|
||||
/// address. The convention is that a DBG_VALUE is indirect iff the
|
||||
/// second operand is an immediate.
|
||||
MachineInstrBuilder BuildMI(MachineFunction &MF, const DebugLoc &DL,
|
||||
const MCInstrDesc &MCID, bool IsIndirect,
|
||||
unsigned Reg, unsigned Offset,
|
||||
const MDNode *Variable, const MDNode *Expr);
|
||||
unsigned Reg, const MDNode *Variable,
|
||||
const MDNode *Expr);
|
||||
|
||||
/// This version of the builder builds a DBG_VALUE intrinsic
|
||||
/// for either a value in a register or a register-indirect+offset
|
||||
/// for either a value in a register or a register-indirect
|
||||
/// address and inserts it at position I.
|
||||
MachineInstrBuilder BuildMI(MachineBasicBlock &BB,
|
||||
MachineBasicBlock::iterator I, const DebugLoc &DL,
|
||||
const MCInstrDesc &MCID, bool IsIndirect,
|
||||
unsigned Reg, unsigned Offset,
|
||||
const MDNode *Variable, const MDNode *Expr);
|
||||
unsigned Reg, const MDNode *Variable,
|
||||
const MDNode *Expr);
|
||||
|
||||
/// Clone a DBG_VALUE whose value has been spilled to FrameIndex.
|
||||
MachineInstr *buildDbgValueForSpill(MachineBasicBlock &BB,
|
||||
|
|
|
@ -461,7 +461,7 @@ void LiveDebugValues::transferSpillInst(MachineInstr &MI,
|
|||
int SpillOffset = extractSpillBaseRegAndOffset(MI, SpillBase);
|
||||
const MachineInstr *DMI = &VarLocIDs[ID].MI;
|
||||
MachineInstr *SpDMI =
|
||||
BuildMI(*MF, DMI->getDebugLoc(), DMI->getDesc(), true, SpillBase, 0,
|
||||
BuildMI(*MF, DMI->getDebugLoc(), DMI->getDesc(), true, SpillBase,
|
||||
DMI->getDebugVariable(), DMI->getDebugExpression());
|
||||
SpDMI->getOperand(1).setImm(SpillOffset);
|
||||
DEBUG(dbgs() << "Creating DBG_VALUE inst for spill: ";
|
||||
|
@ -582,7 +582,7 @@ bool LiveDebugValues::join(MachineBasicBlock &MBB, VarLocInMBB &OutLocs,
|
|||
const MachineInstr *DMI = &DiffIt.MI;
|
||||
MachineInstr *MI =
|
||||
BuildMI(MBB, MBB.instr_begin(), DMI->getDebugLoc(), DMI->getDesc(),
|
||||
DMI->isIndirectDebugValue(), DMI->getOperand(0).getReg(), 0,
|
||||
DMI->isIndirectDebugValue(), DMI->getOperand(0).getReg(),
|
||||
DMI->getDebugVariable(), DMI->getDebugExpression());
|
||||
if (DMI->isIndirectDebugValue())
|
||||
MI->getOperand(1).setImm(DMI->getOperand(1).getImm());
|
||||
|
|
|
@ -941,7 +941,7 @@ void UserValue::insertDebugValue(MachineBasicBlock *MBB, SlotIndex Idx,
|
|||
"Expected inlined-at fields to agree");
|
||||
if (Loc.isReg())
|
||||
BuildMI(*MBB, I, getDebugLoc(), TII.get(TargetOpcode::DBG_VALUE),
|
||||
IsIndirect, Loc.getReg(), offset, Variable, Expression);
|
||||
IsIndirect, Loc.getReg(), Variable, Expression);
|
||||
else
|
||||
BuildMI(*MBB, I, getDebugLoc(), TII.get(TargetOpcode::DBG_VALUE))
|
||||
.add(Loc)
|
||||
|
|
|
@ -2334,8 +2334,8 @@ void MachineInstr::emitError(StringRef Msg) const {
|
|||
|
||||
MachineInstrBuilder llvm::BuildMI(MachineFunction &MF, const DebugLoc &DL,
|
||||
const MCInstrDesc &MCID, bool IsIndirect,
|
||||
unsigned Reg, unsigned Offset,
|
||||
const MDNode *Variable, const MDNode *Expr) {
|
||||
unsigned Reg, const MDNode *Variable,
|
||||
const MDNode *Expr) {
|
||||
assert(isa<DILocalVariable>(Variable) && "not a variable");
|
||||
assert(cast<DIExpression>(Expr)->isValid() && "not an expression");
|
||||
assert(cast<DILocalVariable>(Variable)->isValidLocationForIntrinsic(DL) &&
|
||||
|
@ -2343,30 +2343,26 @@ MachineInstrBuilder llvm::BuildMI(MachineFunction &MF, const DebugLoc &DL,
|
|||
if (IsIndirect)
|
||||
return BuildMI(MF, DL, MCID)
|
||||
.addReg(Reg, RegState::Debug)
|
||||
.addImm(Offset)
|
||||
.addImm(0U)
|
||||
.addMetadata(Variable)
|
||||
.addMetadata(Expr);
|
||||
else {
|
||||
assert(Offset == 0 && "A direct address cannot have an offset.");
|
||||
else
|
||||
return BuildMI(MF, DL, MCID)
|
||||
.addReg(Reg, RegState::Debug)
|
||||
.addReg(0U, RegState::Debug)
|
||||
.addMetadata(Variable)
|
||||
.addMetadata(Expr);
|
||||
}
|
||||
}
|
||||
|
||||
MachineInstrBuilder llvm::BuildMI(MachineBasicBlock &BB,
|
||||
MachineBasicBlock::iterator I,
|
||||
const DebugLoc &DL, const MCInstrDesc &MCID,
|
||||
bool IsIndirect, unsigned Reg,
|
||||
unsigned Offset, const MDNode *Variable,
|
||||
const MDNode *Expr) {
|
||||
const MDNode *Variable, const MDNode *Expr) {
|
||||
assert(isa<DILocalVariable>(Variable) && "not a variable");
|
||||
assert(cast<DIExpression>(Expr)->isValid() && "not an expression");
|
||||
MachineFunction &MF = *BB.getParent();
|
||||
MachineInstr *MI =
|
||||
BuildMI(MF, DL, MCID, IsIndirect, Reg, Offset, Variable, Expr);
|
||||
MachineInstr *MI = BuildMI(MF, DL, MCID, IsIndirect, Reg, Variable, Expr);
|
||||
BB.insert(I, MI);
|
||||
return MachineInstrBuilder(MF, MI);
|
||||
}
|
||||
|
@ -2378,7 +2374,8 @@ MachineInstr *llvm::buildDbgValueForSpill(MachineBasicBlock &BB,
|
|||
const MDNode *Var = Orig.getDebugVariable();
|
||||
const auto *Expr = cast_or_null<DIExpression>(Orig.getDebugExpression());
|
||||
bool IsIndirect = Orig.isIndirectDebugValue();
|
||||
uint64_t Offset = IsIndirect ? Orig.getOperand(1).getImm() : 0;
|
||||
if (IsIndirect)
|
||||
assert(Orig.getOperand(1).getImm() == 0 && "DBG_VALUE with nonzero offset");
|
||||
DebugLoc DL = Orig.getDebugLoc();
|
||||
assert(cast<DILocalVariable>(Var)->isValidLocationForIntrinsic(DL) &&
|
||||
"Expected inlined-at fields to agree");
|
||||
|
@ -2389,7 +2386,7 @@ MachineInstr *llvm::buildDbgValueForSpill(MachineBasicBlock &BB,
|
|||
Expr = DIExpression::prepend(Expr, DIExpression::WithDeref);
|
||||
return BuildMI(BB, I, DL, Orig.getDesc())
|
||||
.addFrameIndex(FrameIndex)
|
||||
.addImm(Offset)
|
||||
.addImm(0U)
|
||||
.addMetadata(Var)
|
||||
.addMetadata(Expr);
|
||||
}
|
||||
|
|
|
@ -1187,7 +1187,7 @@ bool FastISel::selectIntrinsicCall(const IntrinsicInst *II) {
|
|||
// into an indirect DBG_VALUE.
|
||||
BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
|
||||
TII.get(TargetOpcode::DBG_VALUE), /*IsIndirect*/ true,
|
||||
Op->getReg(), 0, DI->getVariable(), DI->getExpression());
|
||||
Op->getReg(), DI->getVariable(), DI->getExpression());
|
||||
} else
|
||||
BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc,
|
||||
TII.get(TargetOpcode::DBG_VALUE))
|
||||
|
@ -1239,7 +1239,7 @@ bool FastISel::selectIntrinsicCall(const IntrinsicInst *II) {
|
|||
} else if (unsigned Reg = lookUpRegForValue(V)) {
|
||||
// FIXME: This does not handle register-indirect values at offset 0.
|
||||
bool IsIndirect = false;
|
||||
BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, IsIndirect, Reg, 0,
|
||||
BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, II, IsIndirect, Reg,
|
||||
DI->getVariable(), DI->getExpression());
|
||||
} else {
|
||||
// We can't yet handle anything else here because it would require
|
||||
|
|
|
@ -4815,7 +4815,7 @@ bool SelectionDAGBuilder::EmitFuncArgumentDbgValue(
|
|||
if (Op->isReg())
|
||||
FuncInfo.ArgDbgValues.push_back(
|
||||
BuildMI(MF, DL, TII->get(TargetOpcode::DBG_VALUE), IsIndirect,
|
||||
Op->getReg(), 0, Variable, Expr));
|
||||
Op->getReg(), Variable, Expr));
|
||||
else
|
||||
FuncInfo.ArgDbgValues.push_back(
|
||||
BuildMI(MF, DL, TII->get(TargetOpcode::DBG_VALUE))
|
||||
|
|
|
@ -529,12 +529,14 @@ bool SelectionDAGISel::runOnMachineFunction(MachineFunction &mf) {
|
|||
const MDNode *Expr = MI->getDebugExpression();
|
||||
DebugLoc DL = MI->getDebugLoc();
|
||||
bool IsIndirect = MI->isIndirectDebugValue();
|
||||
unsigned Offset = IsIndirect ? MI->getOperand(1).getImm() : 0;
|
||||
if (IsIndirect)
|
||||
assert(MI->getOperand(1).getImm() == 0 &&
|
||||
"DBG_VALUE with nonzero offset");
|
||||
assert(cast<DILocalVariable>(Variable)->isValidLocationForIntrinsic(DL) &&
|
||||
"Expected inlined-at fields to agree");
|
||||
// Def is never a terminator here, so it is ok to increment InsertPos.
|
||||
BuildMI(*EntryMBB, ++InsertPos, DL, TII->get(TargetOpcode::DBG_VALUE),
|
||||
IsIndirect, LDI->second, Offset, Variable, Expr);
|
||||
IsIndirect, LDI->second, Variable, Expr);
|
||||
|
||||
// If this vreg is directly copied into an exported register then
|
||||
// that COPY instructions also need DBG_VALUE, if it is the only
|
||||
|
@ -556,7 +558,7 @@ bool SelectionDAGISel::runOnMachineFunction(MachineFunction &mf) {
|
|||
// declared, rather than whatever is attached to CopyUseMI.
|
||||
MachineInstr *NewMI =
|
||||
BuildMI(*MF, DL, TII->get(TargetOpcode::DBG_VALUE), IsIndirect,
|
||||
CopyUseMI->getOperand(0).getReg(), Offset, Variable, Expr);
|
||||
CopyUseMI->getOperand(0).getReg(), Variable, Expr);
|
||||
MachineBasicBlock::iterator Pos = CopyUseMI;
|
||||
EntryMBB->insertAfter(Pos, NewMI);
|
||||
}
|
||||
|
|
|
@ -553,10 +553,11 @@ MachineInstr *OptimizeLEAPass::replaceDebugValue(MachineInstr &MI,
|
|||
MachineBasicBlock *MBB = MI.getParent();
|
||||
DebugLoc DL = MI.getDebugLoc();
|
||||
bool IsIndirect = MI.isIndirectDebugValue();
|
||||
int64_t Offset = IsIndirect ? MI.getOperand(1).getImm() : 0;
|
||||
const MDNode *Var = MI.getDebugVariable();
|
||||
if (IsIndirect)
|
||||
assert(MI.getOperand(1).getImm() == 0 && "DBG_VALUE with nonzero offset");
|
||||
return BuildMI(*MBB, MBB->erase(&MI), DL, TII->get(TargetOpcode::DBG_VALUE),
|
||||
IsIndirect, VReg, Offset, Var, Expr);
|
||||
IsIndirect, VReg, Var, Expr);
|
||||
}
|
||||
|
||||
// Try to find similar LEAs in the list and replace one with another.
|
||||
|
|
Loading…
Reference in New Issue