mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-26 12:20:42 +00:00
Revert r108369, sorting llvm.dbg.declare information by source position,
since it doesn't work for front-ends which don't emit column information (which includes llvm-gcc in its present configuration), and doesn't work for clang for K&R style variables where the variables are declared in a different order from the parameter list. Instead, make a separate pass through the instructions to collect the llvm.dbg.declare instructions in order. This ensures that the debug information for variables is emitted in this order. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108538 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -20,6 +20,7 @@
|
||||
#include "llvm/IntrinsicInst.h"
|
||||
#include "llvm/LLVMContext.h"
|
||||
#include "llvm/Module.h"
|
||||
#include "llvm/Analysis/DebugInfo.h"
|
||||
#include "llvm/CodeGen/Analysis.h"
|
||||
#include "llvm/CodeGen/MachineFunction.h"
|
||||
#include "llvm/CodeGen/MachineFrameInfo.h"
|
||||
@@ -116,12 +117,43 @@ void FunctionLoweringInfo::set(const Function &fn, MachineFunction &mf) {
|
||||
}
|
||||
|
||||
for (; BB != EB; ++BB)
|
||||
for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I)
|
||||
for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I) {
|
||||
// Mark values used outside their block as exported, by allocating
|
||||
// a virtual register for them.
|
||||
if (isUsedOutsideOfDefiningBlock(I))
|
||||
if (!isa<AllocaInst>(I) ||
|
||||
!StaticAllocaMap.count(cast<AllocaInst>(I)))
|
||||
InitializeRegForValue(I);
|
||||
|
||||
// Collect llvm.dbg.declare information. This is done now instead of
|
||||
// during the initial isel pass through the IR so that it is done
|
||||
// in a predictable order.
|
||||
if (const DbgDeclareInst *DI = dyn_cast<DbgDeclareInst>(I)) {
|
||||
MachineModuleInfo &MMI = MF->getMMI();
|
||||
if (MMI.hasDebugInfo() &&
|
||||
DIVariable(DI->getVariable()).Verify() &&
|
||||
!DI->getDebugLoc().isUnknown()) {
|
||||
// Don't handle byval struct arguments or VLAs, for example.
|
||||
// Non-byval arguments are handled here (they refer to the stack
|
||||
// temporary alloca at this point).
|
||||
const Value *Address = DI->getAddress();
|
||||
if (Address) {
|
||||
if (const BitCastInst *BCI = dyn_cast<BitCastInst>(Address))
|
||||
Address = BCI->getOperand(0);
|
||||
if (const AllocaInst *AI = dyn_cast<AllocaInst>(Address)) {
|
||||
DenseMap<const AllocaInst *, int>::iterator SI =
|
||||
StaticAllocaMap.find(AI);
|
||||
if (SI != StaticAllocaMap.end()) { // Check for VLAs.
|
||||
int FI = SI->second;
|
||||
MMI.setVariableDbgInfo(DI->getVariable(),
|
||||
FI, DI->getDebugLoc());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Create an initial MachineBasicBlock for each LLVM BasicBlock in F. This
|
||||
// also creates the initial PHI MachineInstrs, though none of the input
|
||||
// operands are populated.
|
||||
|
||||
Reference in New Issue
Block a user