- Jun 27, 2012
-
-
Chandler Carruth authored
just-built Clang binary, and linking them against the just-built ASan runtime. This is *very* brittle. I expect it will require tweaking, and I've pro-actively disabled it on non-Unix builds and on cross-builds. It is also currently missing dependency edges on GoogleTest header files and a few other corner cases, but those can be fixed. This is the major milestone of a mini-bootstrap-like build of the unittest. llvm-svn: 159255
-
- Jun 26, 2012
-
-
Kostya Serebryany authored
llvm-svn: 159204
-
Alexey Samsonov authored
llvm-svn: 159198
-
Daniel Dunbar authored
be built here. llvm-svn: 159172
-
- Jun 25, 2012
-
-
Kostya Serebryany authored
llvm-svn: 159143
-
Dmitry Vyukov authored
llvm-svn: 159142
-
Dmitry Vyukov authored
llvm-svn: 159141
-
Kostya Serebryany authored
llvm-svn: 159140
-
Kostya Serebryany authored
llvm-svn: 159139
-
Kostya Serebryany authored
llvm-svn: 159137
-
Kostya Serebryany authored
[asan] move tests from asan_interface_test.cc to asan_noinst_test.cc. Now all these tests do not require instrumentation and work directly with asan rt llvm-svn: 159135
-
Chandler Carruth authored
Add the initial support for building ASan tests. The first change here is to try to get the CFLAGS to more closely match those used by the old Makefile. There are probably still goofs here, ASan folks, your review would be appreciated. The second big change is to add support for building both instrumentation based an non-instrumentation based unittests for ASan. They are built a bit differently from how the old makefiles managed things. Specifically, there are two binaries, one for the non-instrumented case, and one for the instrumented case. Also, the instrumented unit tests rely on the host compiler supporting AddressSanitizer's intrumentation pass. This is kind-of gross, but I don't know of a better way yet. I've mailed llvmdev to discuss this issue. One big caveat is that the detection logic currently doesn't work. I've commented it out temporarily as I'd like to get feedback from the ASan developers, etc. llvm-svn: 159134
-
Kostya Serebryany authored
llvm-svn: 159132
-
Chandler Carruth authored
ASan, and friends. This explicitly switches the CompilerRT CMake build to require CMake version 2.8.8 or newer which provides first-class support for "object" libraries which consist of a pile of '.o' files -- exactly what is desired for composing runtime libraries. I've gone ahead and switched to using this. I've also added the interception library which I missed initially. And I've added proper dependencies between the various libraries. With this, I'm able to build archives for asan that appear to contain all of the necessary .o files. The final tweak here is to start setting up the compile flags and macro defines expected by ASan and its helper libraries. These may not be entirely correct currently, they're based loosely on my reading of the old Makefiles. However, they can be tweaked more easily now that they're wired up properly. llvm-svn: 159129
-
Chandler Carruth authored
llvm-svn: 159128
-
Kostya Serebryany authored
llvm-svn: 159122
-
- Jun 23, 2012
-
-
Kostya Serebryany authored
llvm-svn: 159083
-
- Jun 22, 2012
-
-
Chandler Carruth authored
include of int_lib.h. The purpose of this change is to make the C code conform to the pedantic rules of C99 -- an empty translation unit is not valid. It should have absolutely no functional impact, and changes nothing about the built libraries. llvm-svn: 159034
-
Chandler Carruth authored
number of -pedantic warnings. llvm-svn: 159033
-
Chandler Carruth authored
llvm-svn: 159032
-
Chandler Carruth authored
there. I didn't notice this because I had a stub that wasn't checked in floating around in my client. llvm-svn: 159025
-
Kostya Serebryany authored
llvm-svn: 159002
-
Stephen Canon authored
Allow divsi3 to take advantage of a hardware unsigned divide when it is available, by replacing an explicit call to udivsi3 with the divide operator. Patch by Sébastien Bourdeauducq. llvm-svn: 158996
-
Kostya Serebryany authored
llvm-svn: 158991
-
Dmitry Vyukov authored
This improves signal-/fork-safety of instrumented programs. llvm-svn: 158988
-
- Jun 21, 2012
-
-
Alexander Potapenko authored
llvm-svn: 158922
-
Alexander Potapenko authored
llvm-svn: 158921
-
Kostya Serebryany authored
[tsan] first step in implementing a custom allocator for tsan (and msan) which saves precious shadow llvm-svn: 158913
-
Alexey Samsonov authored
llvm-svn: 158905
-
Alexander Potapenko authored
Enable AddressSanitizerMac.CFAllocatorDefaultDoubleFree and AddressSanitizerMac.CFAllocatorMallocDoubleFree, which now work fine. llvm-svn: 158886
-
Alexander Potapenko authored
Introduce the mac_ignore_invalid_free flag (0 by default) which makes both cf_free and mz_free ignore invalid free invocations and leak memory. llvm-svn: 158885
-
Alexander Potapenko authored
llvm-svn: 158870
-
Alexander Potapenko authored
Actually intercept free() to ensure that the deallocations caused by other functions directly calling it are routed to our allocator. For the allocations that do not belong to any malloc zone check whether they're padded with a pointer to ASan's CFAllocator. If so, free the original (unpadded) pointer. This should fix AddressSanitizerMac.NSURLDeallocation and issue 70. llvm-svn: 158863
-
- Jun 20, 2012
-
-
Alexander Potapenko authored
llvm-svn: 158843
-
Kostya Serebryany authored
llvm-svn: 158821
-
Chandler Carruth authored
to get it working again, two changes were needed: - I had to give up on glob-based file expansion. This just isn't well supported by CMake, and until we convince upstream there of its value, it's not worth dealing with the pain. - Add the common library as otherwise even ASan won't build. This now builds again, although the "correctness" of it is a touch debatable. ;] Specifically, there is no merging of the common runtime library with the asan runtime library into a single archive file. I'm not really sure what the best technique is for that, and it may be influenced by the ongoing discussion about how best to link runtime libraries. Note of course that this is still very much WIP. It doesn't entirely work yet, and remains disabled by the LLVM projects/CMakeLists.txt until it is in a working state. llvm-svn: 158811
-
- Jun 19, 2012
-
-
Alexey Samsonov authored
llvm-svn: 158710
-
Alexey Samsonov authored
[TSan] Add a comment that tsan_flags.h may be included in the user code, and therefore shouldn't include other headers from TSan or common sanitizer runtime. User may need tsan_flags.h to provide its implementation of __tsan::OverrideFlags llvm-svn: 158708
-
Alexey Samsonov authored
[Sanitizer] State that sanitizer_libc.h header can be included in the user code (and therefore it shouldn't include other sanitizer runtime headers). llvm-svn: 158707
-
Alexey Samsonov authored
llvm-svn: 158706
-