Displaying 20 results from an estimated 9000 matches similar to: "[LLVMdev] memory leaks at compiler termination"
2013 Mar 02
0
[LLVMdev] memory leaks at compiler termination
On Mar 2, 2013 3:18 AM, "reed kotler" <rkotler at mips.com> wrote:
>
> Does LLVM try and make sure that all memory is freed before compiler exit?
>
> For example, It seems like the ARM constant pool code that I'm reading
will leave a lot of un-deallocated memory.
>
> Maybe I'm missing something here.
Is it that necessary to have the compiler free
2013 Mar 02
1
[LLVMdev] memory leaks at compiler termination
On Sat, Mar 2, 2013 at 12:56 PM, Alexander Potapenko <glider at google.com>wrote:
>
> On Mar 2, 2013 3:18 AM, "reed kotler" <rkotler at mips.com> wrote:
> >
> > Does LLVM try and make sure that all memory is freed before compiler
> exit?
> >
> > For example, It seems like the ARM constant pool code that I'm reading
> will leave a lot
2013 Nov 19
1
[LLVMdev] Broken build: r194813
Hi,
can you please check the problem is fixed by r195125?
On Tue, Nov 19, 2013 at 2:35 PM, Alexander Potapenko <glider at google.com> wrote:
> Hi Cameron,
>
> I'm planning to address this issue today.
>
> HTH,
> Alex
>
> On Mon, Nov 18, 2013 at 9:45 PM, Cameron McInally
> <cameron.mcinally at nyu.edu> wrote:
>> Hey guys,
>>
>> My local
2019 Aug 01
2
Dead store elimination in the backend for -ftrivial-auto-var-init
On Thu, Aug 1, 2019 at 6:38 PM JF Bastien <jfbastien at apple.com> wrote:
>
>
>
> > On Aug 1, 2019, at 9:20 AM, Alexander Potapenko <glider at google.com> wrote:
> >
> > On Thu, Aug 1, 2019 at 6:09 PM JF Bastien <jfbastien at apple.com> wrote:
> >>
> >> Hi Alexander,
> >>
> >> The code doesn’t compile. Could you send
2013 Nov 20
2
[LLVMdev] Can't compile compiler-rt, asan error
Can you please reconfigure and attach the full log of 'make VERBOSE=1' ?
On Nov 20, 2013 8:25 AM, "Yuchen Wu" <yuchenericwu at hotmail.com> wrote:
> It looks like it:
>
> [/Volumes/Files/yuchen_wu/dev/llvm/build]$ xcrun --show-sdk-path --sdk
> iphonesimulator
>
>
2013 Nov 18
2
[LLVMdev] Broken build: r194813
Hey guys,
My local build is broken after:
>r194813 | glider | 2013-11-15 08:13:01 -0500 (Fri, 15 Nov 2013) | 2 lines
>
>[ASan] Add the configure+make rules for building the ASan runtime for iOS
> simulator.
Tim Northover was kind enough to track this down to a dependency on
the “iphonesimulator” SDK. How should this issue be resolved? I'm
currently following the receipe to build
2019 Aug 07
2
Dead store elimination in the backend for -ftrivial-auto-var-init
There are two problems:
1. padding after union and call to q(), without LTO we can't remove that
store.
2. shortcut which I have which ignores all instructions q() . this assume
that memset to acpar.match, acpar.matchinfo also useful which is not true. I
should be able to improve this case.
On Thu, Aug 1, 2019 at 11:29 PM Vitaly Buka <vitalybuka at google.com> wrote:
> On a first
2013 Nov 20
2
[LLVMdev] Can't compile compiler-rt, asan error
I'm running Mavericks. I'll attach the make log once it's done.
________________________________
> Date: Wed, 20 Nov 2013 08:40:12 +0400
> Subject: RE: [LLVMdev] Can't compile compiler-rt, asan error
> From: glider at google.com
> To: yuchenericwu at hotmail.com
> CC: llvmdev at cs.uiuc.edu
>
>
> Also, which version of OSX you're running?
>
2019 Aug 01
2
Dead store elimination in the backend for -ftrivial-auto-var-init
On Thu, Aug 1, 2019 at 6:09 PM JF Bastien <jfbastien at apple.com> wrote:
>
> Hi Alexander,
>
> The code doesn’t compile. Could you send a godbolt.org link that shows the issue?
Sorry about that, here's the link: https://godbolt.org/z/-PinQP
Lines 4 to 8 are initializing |acpar|.
If I'm understanding correctly, the store to 8(%rsp) at line 7 can be
removed because of the
2012 Dec 04
3
[LLVMdev] radr://12777299, "potential pthread/eh bug exposed by libsanitizer"
+kledzik at apple.com
The dynamic runtime is using dylib interposition (google for
"__DATA,__interpose).
If I'm understanding correctly (Nick, can you please confirm this?)
this allows to interpose the function regardless of the two-level
namespace.
The support for dynamic runtime in ASan is almost there. But the new
interposition method has revealed some issues with the allocator which
2013 Nov 19
0
[LLVMdev] Broken build: r194813
Hi Cameron,
I'm planning to address this issue today.
HTH,
Alex
On Mon, Nov 18, 2013 at 9:45 PM, Cameron McInally
<cameron.mcinally at nyu.edu> wrote:
> Hey guys,
>
> My local build is broken after:
>
>>r194813 | glider | 2013-11-15 08:13:01 -0500 (Fri, 15 Nov 2013) | 2 lines
>>
>>[ASan] Add the configure+make rules for building the ASan runtime for iOS
2013 Mar 21
2
[LLVMdev] (Not) instrumenting global string literals that end up in .cstrings on Mac
(forgot to CC llvmdev)
On Thu, Mar 21, 2013 at 5:54 PM, Alexander Potapenko <glider at google.com> wrote:
> Hey Anna, Nick, Ted,
>
> We've the following problem with string literals under ASan on Mac.
> Some global string constants end up being put into the .cstring
> section, for which the following rules apply:
> - the strings can't contain zeroes in their
2015 Jul 08
2
[LLVMdev] DataFlowSanitizer only for Linux
FWIW see also http://lists.cs.uiuc.edu/pipermail/cfe-dev/2015-June/043301.html
As far as I understand DFSan functionality isn't required for
libFuzzer to work, so it should be safe to disable DFSan support on
Mac.
On Wed, Jul 8, 2015 at 7:45 AM, Kostya Serebryany <kcc at google.com> wrote:
> +pcc , glider
>
> On Mon, Jul 6, 2015 at 12:59 PM, Juan Ceasar <juan.d.ceasar at
2018 Sep 05
2
AddressSanitizer on SPECCPU2006
Hi Alex
Thanks for your email. But it seems not work. I removed the
-fsanitize=address flag.
The global buffer overflow message doesn't show. However, no *.sancov file
is created after I run perlbench. Thus, I could not get the BB coverage. Do
you have any ideas? Many Thanks
Regards
Muhui
Alexander Potapenko <glider at google.com> 于2018年9月5日周三 下午7:14写道:
> Hi Muhui,
>
> If
2013 Nov 20
2
[LLVMdev] Can't compile compiler-rt, asan error
"If the answer is no", of course.
On Nov 20, 2013 8:02 AM, "Alexander Potapenko" <glider at google.com> wrote:
> Do you have the iossim sdk installed on your machine (check by 'xcrun
> --show-sdk-path --sdk iphonesimulator')?
> If the answer is yes and you're testing on ToT, that's a bug. I'll take a
> look.
> On Nov 20, 2013 5:05 AM,
2011 Dec 09
2
[LLVMdev] [PATCH] Add the disable_aslr option that will disable the address space layout randomization under AddressSanitizer on 10.6
+llvmdev
Question to MacOS gurus: is there a way to disable ASLR (address space
layout randomization) on Darwin at link time
instead of doing setenv("DYLD_NO_PIE", "1", 1); and reexec?
Thanks,
--kcc
On Fri, Dec 9, 2011 at 4:28 AM, Alexander Potapenko <glider at google.com>wrote:
> The attached patch introduces the disable_aslr option (off by default)
> and the
2012 Jan 17
1
[LLVMdev] Memory leaks in LLVM on linux
On Fri, Jan 13, 2012 at 10:31 PM, Villmow, Micah <Micah.Villmow at amd.com> wrote:
> Also, this can be easily reproduced with the following command:
>
> valgrind --tool=memcheck --show-reachable=yes --leak-check=full
> --track-origins=yes --leak-check=full opt -disable-opt -O0 <some random
> bitcode file>
>
>
>
> Micah
>
Hi Micah,
the
2015 Jul 10
2
[LLVMdev] DataFlowSanitizer only for Linux
Kostya,
I took a quick stab at patching libFuzzer for Apple, but so far I'm
thinking something else is incorrect. Patch is attached but when I went to
reproduce the examples, the toy example went fine, but with PCRE and
Heartbleed I noticed the coverage statistics were pretty poor, and didn't
find anything. Admittedly I moved onto Heartbleed pretty quickly so PCRE
probably isn't the
2013 Nov 20
0
[LLVMdev] Can't compile compiler-rt, asan error
Also, which version of OSX you're running?
On Nov 20, 2013 8:32 AM, "Alexander Potapenko" <glider at google.com> wrote:
> Can you please reconfigure and attach the full log of 'make VERBOSE=1' ?
> On Nov 20, 2013 8:25 AM, "Yuchen Wu" <yuchenericwu at hotmail.com> wrote:
>
>> It looks like it:
>>
>>
2019 Apr 16
2
Interprocedural DSE for -ftrivial-auto-var-init
Can you post numbers for how many stores get eliminated from CTMark?
> On Apr 16, 2019, at 11:45 AM, Vitaly Buka <vitalybuka at google.com> wrote:
>
> I tried -Os and effect of new approach significantly increases.
> I run regular DSE and immediately myDSE. With -Os myDSE removes more than 50% of DSE number.
> Which is expected as -Os inlines less and regular DSE can't