Displaying 3 results from an estimated 3 matches for "dbgstoppointinstr".
Did you mean:
dbgstoppointinst
2009 Apr 30
0
[LLVMdev] Pulling line number/file/path information from DbgStopPointInst instructions
...g line numbers. If you happen to have a code fragment
> that is known to work, it would be much appreciated.
>
Hi Sarah,
I'm not sure if this will help you out, but take a look at how
DwarfWriter::getOrCreateSourceID is used. Unfortunately, I don't see
how to get the file name from a DbgStopPointInstr right offhand.
Things in the CodeGen/AsmPrinter/DwarfWriter.cpp file have changed
quite a bit in recent months...
-bw
> What it used to work was calling getFileName()->getNameStr() on the
> DbgStopPointInst, which returned a std::string, but in LLVM 2.5 the
> code compiles, but that s...
2009 Apr 30
2
[LLVMdev] Pulling line number/file/path information from DbgStopPointInst instructions
Hi folks,
I had some code that used to work fine in earlier versions of LLVM,
but is now failing. I have some code that expands DbgStopPointInst
instructions to my own entry points in an opt pass, but it's currently
failing to get the file name and path back, though it is still
correctly getting line numbers. If you happen to have a code fragment
that is known to work, it would be
2009 Apr 30
2
[LLVMdev] Pulling line number/file/path information from DbgStopPointInst instructions
...have a code fragment
>> that is known to work, it would be much appreciated.
>>
> Hi Sarah,
>
> I'm not sure if this will help you out, but take a look at how
> DwarfWriter::getOrCreateSourceID is used. Unfortunately, I don't see
> how to get the file name from a DbgStopPointInstr right offhand.
> Things in the CodeGen/AsmPrinter/DwarfWriter.cpp file have changed
> quite a bit in recent months...
>
> -bw
>
>> What it used to work was calling getFileName()->getNameStr() on the
>> DbgStopPointInst, which returned a std::string, but in LLVM 2.5 the...