Displaying 6 results from an estimated 6 matches for "defaultonoff".
2013 Jul 09
1
[LLVMdev] Problem Using libLLVM-3.3.so
...his is related to the failures I'm seeing with the LLVM shared object - I don't know. Here is the valgrind report:
==15093== Jump to the invalid address stated on the next line
==15093== at 0x0: ???
==15093== by 0x285C2321: llvm::cl::parser<(anonymous namespace)::DefaultOnOff>::~parser() (CommandLine.h:629)
==15093== by 0x285C23D9: llvm::cl::opt<(anonymous namespace)::DefaultOnOff, false, llvm::cl::parser<(anonymous namespace)::DefaultOnOff>::~opt() (CommandLine.h:1
==15093== by 0x285A3BD1: __tcf_5 (DwarfDebug.cpp:85)
==15093== by...
2013 Jul 08
0
[LLVMdev] Problem Using libLLVM-3.3.so
Rick Sullivan <ricks at carbondesignsystems.com> writes:
[snip]
> The problem is this. For some simulations, the LLVM shared library
> seems to take a segfault on exit. It runs correctly, but when the
> simulator finishes, it crashes on exit.
[snip]
>
> Does anybody have any ideas as to why this might be happening?
Can you run the application under gdb and obtain a
2013 Jul 08
2
[LLVMdev] Problem Using libLLVM-3.3.so
We're using the LLVM 3.3 AArch64 disassembler in the following way. We have built LLVM 3.3 on Linux as a shared library; and have a main program that dynamically loads shared objects (.so libraries). The program is a simulator (though that shouldn't be relevant to this question), and the shared objects it loads are electronic components that participate in the simulation. If the electronic
2020 Jan 12
2
LLD PDB Lines zero number issue
...-unknown-locations” option logic is not complex, could we port the code logic into llvm\lib\CodeGen\AsmPrinter\CodeViewDebug.cpp as well? I’ve submitted a BZ for this requirment: https://bugs.llvm.org/show_bug.cgi?id=44522
llvm-project\llvm\lib\CodeGen\AsmPrinter\DwarfDebug.cpp :
static cl::opt<DefaultOnOff> UnknownLocations(
"use-unknown-locations", cl::Hidden,
cl::desc("Make an absence of debug location information explicit."),
cl::values(clEnumVal(Default, "At top of block or after label"),
clEnumVal(Enable, "In all cases"), clEn...
2020 Jan 14
2
LLD PDB Lines zero number issue
...-unknown-locations” option logic is not complex, could we port the code logic into llvm\lib\CodeGen\AsmPrinter\CodeViewDebug.cpp as well? I’ve submitted a BZ for this requirment: https://bugs.llvm.org/show_bug.cgi?id=44522
llvm-project\llvm\lib\CodeGen\AsmPrinter\DwarfDebug.cpp :
static cl::opt<DefaultOnOff> UnknownLocations(
"use-unknown-locations", cl::Hidden,
cl::desc("Make an absence of debug location information explicit."),
cl::values(clEnumVal(Default, "At top of block or after label"),
clEnumVal(Enable, "In all cases"), clEn...
2020 Jan 09
2
LLD PDB Lines zero number issue
On Thu, 9 Jan 2020, David Blaikie via llvm-dev wrote:
> +rnk who works on COFF debugging things.
>
> My understanding is that this has nothing to do with the linker - but is a
> function of LLVM optimizations creating line zero debug locations. I believe
> rnk & folks have disabled line zero emission for CodeView debug info in some
> manner - perhaps that needs a flag? or