Displaying 3 results from an estimated 3 matches for "d2472".
Did you mean:
2472
2013 Dec 25
3
[LLVMdev] lsan for LLVM bootstrap; leaks in TableGen
Hi,
We are trying to enable LeakSanitizer on our asan/msan llvm bootstrap bot
(http://lab.llvm.org:8011/builders/sanitizer-x86_64-linux-bootstrap/).
In clang itself there are two leaks
(http://llvm.org/bugs/show_bug.cgi?id=18318,
http://llvm-reviews.chandlerc.com/D2472)
and one lsan-hostile feature (http://llvm.org/bugs/show_bug.cgi?id=18320),
all of which are easy to fix.
And there are also lots of leaks in TableGen.
Would anyone be interested in fixing TableGen leaks?
I'd guess not since TableGen is not a user-facing utility, leaks there are
not too harmfu...
2013 Dec 25
2
[LLVMdev] [cfe-dev] lsan for LLVM bootstrap; leaks in TableGen
...> We are trying to enable LeakSanitizer on our asan/msan llvm bootstrap bot
>
> (http://lab.llvm.org:8011/builders/sanitizer-x86_64-linux-bootstrap/).
>
> In clang itself there are two leaks
>
> (http://llvm.org/bugs/show_bug.cgi?id=18318,
> http://llvm-reviews.chandlerc.com/D2472)
>
> and one lsan-hostile feature (http://llvm.org/bugs/show_bug.cgi?id=18320),
>
> all of which are easy to fix.
>
> And there are also lots of leaks in TableGen.
I think the problem with TableGen is that we call leak checking too
late - after the global destructors,
not before...
2013 Dec 26
2
[LLVMdev] [cfe-dev] lsan for LLVM bootstrap; leaks in TableGen
...ap
>> bot
>> >
>> > (http://lab.llvm.org:8011/builders/sanitizer-x86_64-linux-bootstrap/).
>> >
>> > In clang itself there are two leaks
>> >
>> > (http://llvm.org/bugs/show_bug.cgi?id=18318,
>> > http://llvm-reviews.chandlerc.com/D2472)
>> >
>> > and one lsan-hostile feature (
>> http://llvm.org/bugs/show_bug.cgi?id=18320),
>> >
>> > all of which are easy to fix.
>> >
>> > And there are also lots of leaks in TableGen.
>>
>> I think the problem with TableGen i...