Irini Stavrakantonaki via llvm-dev
2015-Dec-15 01:54 UTC
[llvm-dev] Line number without -Debug ?
Hi list, Is it possible to retrieve the source/IR line number without being on a debug mode? Thank you in advance, -- irini
Eric Christopher via llvm-dev
2015-Dec-15 07:37 UTC
[llvm-dev] Line number without -Debug ?
Not sure what you mean, but the answer is likely "no" as there's nothing for anything to retrieve. Diagnostics inside the compiler can usually get it from certain IR constructs that have line information, but I'm not sure if that's what you mean. -eric On Mon, Dec 14, 2015 at 5:54 PM Irini Stavrakantonaki via llvm-dev < llvm-dev at lists.llvm.org> wrote:> Hi list, > > Is it possible to retrieve the source/IR line number > without being on a debug mode? > > Thank you in advance, > > -- > irini > > _______________________________________________ > LLVM Developers mailing list > llvm-dev at lists.llvm.org > http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20151215/e4471b3b/attachment.html>
Irini Stavrakantonaki via llvm-dev
2015-Dec-15 10:28 UTC
[llvm-dev] Line number without -Debug ?
Hi Eric and thanks for your answer, What I mean is that I want to find the number of line on the IR code of a specific instruction. I found out that I can use: DebugLoc Loc = CurrentInstruction->getDebugLoc(); unsigned Line = Loc.getLine(); But this works only if DEBUGFLAG is True. I'd like to be able to get the Line number without being on a 'Debug' mode. Is this possible? Thanks again, -irini On 15/12/2015 09:37, Eric Christopher wrote:> Not sure what you mean, but the answer is likely "no" as there's > nothing for anything to retrieve. Diagnostics inside the compiler can > usually get it from certain IR constructs that have line information, > but I'm not sure if that's what you mean. > > -eric > > On Mon, Dec 14, 2015 at 5:54 PM Irini Stavrakantonaki via llvm-dev > <llvm-dev at lists.llvm.org <mailto:llvm-dev at lists.llvm.org>> wrote: > > Hi list, > > Is it possible to retrieve the source/IR line number > without being on a debug mode? > > Thank you in advance, > > -- > irini > > _______________________________________________ > LLVM Developers mailing list > llvm-dev at lists.llvm.org <mailto:llvm-dev at lists.llvm.org> > http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev >-- irini -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20151215/9caabadb/attachment.html>