[cfe-commits] r83399 - in /cfe/trunk/lib/CodeGen: CGDebugInfo.cpp CGDebugInfo.h CGExpr.cpp CGStmt.cpp
Devang Patel
dpatel at apple.com
Tue Oct 6 11:36:08 PDT 2009
Author: dpatel
Date: Tue Oct 6 13:36:08 2009
New Revision: 83399
URL: http://llvm.org/viewvc/llvm-project?rev=83399&view=rev
Log:
Add support to attach debug info to an instruction.
This is not yet enabled.
Modified:
cfe/trunk/lib/CodeGen/CGDebugInfo.cpp
cfe/trunk/lib/CodeGen/CGDebugInfo.h
cfe/trunk/lib/CodeGen/CGExpr.cpp
cfe/trunk/lib/CodeGen/CGStmt.cpp
Modified: cfe/trunk/lib/CodeGen/CGDebugInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CGDebugInfo.cpp?rev=83399&r1=83398&r2=83399&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CGDebugInfo.cpp (original)
+++ cfe/trunk/lib/CodeGen/CGDebugInfo.cpp Tue Oct 6 13:36:08 2009
@@ -879,7 +879,7 @@
getOrCreateType(ReturnType, Unit),
Fn->hasInternalLinkage(), true/*definition*/);
- DebugFactory.InsertSubprogramStart(SP, Builder.GetInsertBlock());
+// DebugFactory.InsertSubprogramStart(SP, Builder.GetInsertBlock());
// Push function on region stack.
RegionStack.push_back(SP);
@@ -903,8 +903,19 @@
// Get the appropriate compile unit.
llvm::DICompileUnit Unit = getOrCreateCompileUnit(CurLoc);
PresumedLoc PLoc = SM.getPresumedLoc(CurLoc);
+
+#ifdef ATTACH_DEBUG_INFO_TO_AN_INSN
+ llvm::DIDescriptor DR = RegionStack.back();
+ llvm::DIScope DS = llvm::DIScope(DR.getNode());
+ llvm::DILocation DO(NULL);
+ llvm::DILocation DL =
+ DebugFactory.CreateLocation(PLoc.getLine(), PLoc.getColumn(),
+ DS, DO);
+ Builder.SetCurrentDebugLocation(DL.getNode());
+#else
DebugFactory.InsertStopPoint(Unit, PLoc.getLine(), PLoc.getColumn(),
Builder.GetInsertBlock());
+#endif
}
/// EmitRegionStart- Constructs the debug code for entering a declarative
@@ -915,7 +926,9 @@
D = RegionStack.back();
D = DebugFactory.CreateLexicalBlock(D);
RegionStack.push_back(D);
+#ifndef ATTACH_DEBUG_INFO_TO_AN_INSN
DebugFactory.InsertRegionStart(D, Builder.GetInsertBlock());
+#endif
}
/// EmitRegionEnd - Constructs the debug code for exiting a declarative
@@ -926,7 +939,9 @@
// Provide an region stop point.
EmitStopPoint(Fn, Builder);
+#ifndef ATTACH_DEBUG_INFO_TO_AN_INSN
DebugFactory.InsertRegionEnd(RegionStack.back(), Builder.GetInsertBlock());
+#endif
RegionStack.pop_back();
}
Modified: cfe/trunk/lib/CodeGen/CGDebugInfo.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CGDebugInfo.h?rev=83399&r1=83398&r2=83399&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CGDebugInfo.h (original)
+++ cfe/trunk/lib/CodeGen/CGDebugInfo.h Tue Oct 6 13:36:08 2009
@@ -148,4 +148,5 @@
} // namespace CodeGen
} // namespace clang
+
#endif
Modified: cfe/trunk/lib/CodeGen/CGExpr.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CGExpr.cpp?rev=83399&r1=83398&r2=83399&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CGExpr.cpp (original)
+++ cfe/trunk/lib/CodeGen/CGExpr.cpp Tue Oct 6 13:36:08 2009
@@ -31,7 +31,11 @@
const char *Name) {
if (!Builder.isNamePreserving())
Name = "";
- return new llvm::AllocaInst(Ty, 0, Name, AllocaInsertPt);
+ llvm::AllocaInst *AI = new llvm::AllocaInst(Ty, 0, Name, AllocaInsertPt);
+#ifdef ATTACH_DEBUG_INFO_TO_AN_INSN
+ Builder.SetDebugLocation(AI);
+#endif
+ return AI;
}
/// EvaluateExprAsBool - Perform the usual unary conversions on the specified
Modified: cfe/trunk/lib/CodeGen/CGStmt.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CGStmt.cpp?rev=83399&r1=83398&r2=83399&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CGStmt.cpp (original)
+++ cfe/trunk/lib/CodeGen/CGStmt.cpp Tue Oct 6 13:36:08 2009
@@ -148,12 +148,13 @@
CGDebugInfo *DI = getDebugInfo();
if (DI) {
+#ifdef ATTACH_DEBUG_INFO_TO_AN_INSN
+ DI->setLocation(S.getLBracLoc());
+ DI->EmitRegionStart(CurFn, Builder);
+#else
EnsureInsertPoint();
DI->setLocation(S.getLBracLoc());
- // FIXME: The llvm backend is currently not ready to deal with region_end
- // for block scoping. In the presence of always_inline functions it gets so
- // confused that it doesn't emit any debug info. Just disable this for now.
- //DI->EmitRegionStart(CurFn, Builder);
+#endif
}
// Keep track of the current cleanup stack depth.
@@ -166,13 +167,13 @@
EmitStmt(*I);
if (DI) {
+#ifdef ATTACH_DEBUG_INFO_TO_AN_INSN
+ DI->setLocation(S.getLBracLoc());
+ DI->EmitRegionEnd(CurFn, Builder);
+#else
EnsureInsertPoint();
- DI->setLocation(S.getRBracLoc());
-
- // FIXME: The llvm backend is currently not ready to deal with region_end
- // for block scoping. In the presence of always_inline functions it gets so
- // confused that it doesn't emit any debug info. Just disable this for now.
- //DI->EmitRegionEnd(CurFn, Builder);
+ DI->setLocation(S.getLBracLoc());
+#endif
}
RValue RV;
@@ -478,6 +479,13 @@
BreakContinueStack.push_back(BreakContinue(AfterFor, ContinueBlock));
// If the condition is true, execute the body of the for stmt.
+#ifdef ATTACH_DEBUG_INFO_TO_AN_INSN
+ CGDebugInfo *DI = getDebugInfo();
+ if (DI) {
+ DI->setLocation(S.getSourceRange().getBegin());
+ DI->EmitRegionStart(CurFn, Builder);
+ }
+#endif
EmitStmt(S.getBody());
BreakContinueStack.pop_back();
@@ -490,6 +498,12 @@
// Finally, branch back up to the condition for the next iteration.
EmitBranch(CondBlock);
+#ifdef ATTACH_DEBUG_INFO_TO_AN_INSN
+ if (DI) {
+ DI->setLocation(S.getSourceRange().getEnd());
+ DI->EmitRegionEnd(CurFn, Builder);
+ }
+#endif
// Emit the fall-through block.
EmitBlock(AfterFor, true);
More information about the cfe-commits
mailing list