[LLVMdev] debug information for functions
Alireza.Moshtaghi at microchip.com
Alireza.Moshtaghi at microchip.com
Mon Jun 8 10:02:33 PDT 2009
I would assume this is similar to the problem of dealing with structure
tags, and I guess your proposal is along lines of the same solution
right?
A.
________________________________
From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu]
On Behalf Of Vasudev.Negi at microchip.com
Sent: Monday, June 08, 2009 3:25 AM
To: llvmdev at cs.uiuc.edu
Subject: debug information for functions
Suppose I have fun.h as:
static void fun() {
int a =10;
}
Now I have two files foo.c and goo.c as
foo.c :
#include "fun.h"
void foo()
{
fun();
}
goo.c:
#include "fun.h"
void goo()
{
fun();
}
I get .bc files for foo.c and foo.bc through clang. Now I run llvm-ld
with -disable-opt for foo.bc and goo.bc. In the resulting .bc files, one
of the two functions fun, is renamed to fun<number>. There are two
llvm.dbg.subprogram descriptors created for the two fun functions. Both
have name foo . So there is no way to know which descriptor represents
which function. I am trying to get this information in assembly printer.
Proposed solution : llvm.dbg.subprogram.type should have a reference to
function is represents. This is in the same way as
llvm.dbg.global_variable.type has a reference to global variable it
represents.
Thanks
Vasudev
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090608/4a413879/attachment.html>
More information about the llvm-dev
mailing list