- Mar 28, 2013
-
-
Alexey Samsonov authored
llvm-svn: 178238
-
Kostya Serebryany authored
llvm-svn: 178231
-
Alexey Samsonov authored
Fix unmatching ASan runtime flag for init-order checking exposed by r178158. Add a test for r178158. llvm-svn: 178229
-
Kostya Serebryany authored
[tsan] don't use -fno-builtin for tests; add a test for a false negative bug (inlined memcpy is not instrumented) llvm-svn: 178228
-
Richard Smith authored
compiler-rt part of r178194. Remove ubsan test for diagnostic on inf/nan conversion between floating-point types. llvm-svn: 178195
-
- Mar 27, 2013
-
-
Dmitry Vyukov authored
llvm-svn: 178159
-
Dmitry Vyukov authored
(e.g. suppressions and print_suppressions) llvm-svn: 178158
-
Dmitry Vyukov authored
llvm-svn: 178157
-
Alexey Samsonov authored
llvm-svn: 178131
-
Alexey Samsonov authored
llvm-svn: 178129
-
Alexey Samsonov authored
llvm-svn: 178128
-
- Mar 26, 2013
-
-
Alexey Samsonov authored
[ASan] Change the ABI of __asan_before_dynamic_init function: now it takes pointer to private string with module name. This string serves as a unique module ID in ASan runtime. compiler-rt part llvm-svn: 178014
-
Alexander Potapenko authored
llvm-svn: 178012
-
Kostya Serebryany authored
llvm-svn: 178011
-
Dmitry Vyukov authored
llvm-svn: 178010
-
Dmitry Vyukov authored
llvm-svn: 178009
-
Alexander Potapenko authored
a flag to skip cache update for cases when that's unacceptable (e.g. lsan). Patch by Sergey Matveev (earthdok@google.com) llvm-svn: 178000
-
Alexey Samsonov authored
llvm-svn: 177998
-
Kostya Serebryany authored
llvm-svn: 177996
-
Kostya Serebryany authored
[asan] print thread number while reporting invalid-free and double-free; add tests; also add a test for use-after-poison llvm-svn: 177993
-
- Mar 25, 2013
-
-
Timur Iskhodzhanov authored
llvm-svn: 177927
-
Alexey Samsonov authored
llvm-svn: 177870
-
Alexey Samsonov authored
llvm-svn: 177868
-
Dmitry Vyukov authored
The hook can be overriden in frontend to print to e.g. a file. llvm-svn: 177864
-
Alexey Samsonov authored
llvm-svn: 177862
-
Alexey Samsonov authored
[Sanitizer] Compile sanitizer runtimes with -Wno-non-virtual-dtor. Virtual dtors may be a problem for us, as sanitizer runtime should not generally assume libstdc++ presence. llvm-svn: 177860
-
Alexey Samsonov authored
llvm-svn: 177859
-
Dmitry Vyukov authored
llvm-svn: 177858
-
Dmitry Vyukov authored
llvm-svn: 177857
-
Alexey Samsonov authored
llvm-svn: 177854
-
Alexey Samsonov authored
llvm-svn: 177851
-
- Mar 23, 2013
-
-
Richard Smith authored
specify which symbols are exported to DSOs when the sanitizer is statically linked into a binary. llvm-svn: 177784
-
- Mar 22, 2013
-
-
Timur Iskhodzhanov authored
llvm-svn: 177746
-
Timur Iskhodzhanov authored
Band-aid fix for the Windows build caused by r177710. Long-term, atomic_compare_exchange_strong should be a template on Windows too... llvm-svn: 177745
-
Dmitry Vyukov authored
llvm-svn: 177741
-
Evgeniy Stepanov authored
llvm-svn: 177728
-
Dmitry Vyukov authored
Requires llvm r177717. llvm-svn: 177726
-
Kostya Serebryany authored
Before: the function name was stored by the compiler as a constant string and the run-time was printing it. Now: the PC is stored instead and the run-time prints the full symbolized frame. This adds a couple of instructions into every function with non-empty stack frame, but also reduces the binary size because we store less strings (I saw 2% size reduction). This change bumps the asan ABI version to v3. compiler-rt part, llvm part will follow. Example of report (now): ==31711==ERROR: AddressSanitizer: stack-buffer-overflow on address 0x7fffa77cf1c5 at pc 0x41feb0 bp 0x7fffa77cefb0 sp 0x7fffa77cefa8 READ of size 1 at 0x7fffa77cf1c5 thread T0 #0 0x41feaf in Frame0(int, char*, char*, char*) stack-oob-frames.cc:20 #1 0x41f7ff in Frame1(int, char*, char*) stack-oob-frames.cc:24 #2 0x41f477 in Frame2(int, char*) stack-oob-frames.cc:28 #3 0x41f194 in Frame3(int) stack-oob-frames.cc:32 #4 0x41eee0 in main stack-oob-frames.cc:38 #5 0x7f0c5566f76c (/lib/x86_64-linux-gnu/libc.so.6+0x2176c) #6 0x41eb1c (/usr/local/google/kcc/llvm_cmake/a.out+0x41eb1c) Address 0x7fffa77cf1c5 is located in stack of thread T0 at offset 293 in frame #0 0x41f87f in Frame0(int, char*, char*, char*) stack-oob-frames.cc:12 <<<<<<<<<<<<<< this is new This frame has 6 object(s): [32, 36) 'frame.addr' [96, 104) 'a.addr' [160, 168) 'b.addr' [224, 232) 'c.addr' [288, 292) 's' [352, 360) 'd' llvm-svn: 177723
-
Evgeniy Stepanov authored
llvm-svn: 177718
-
Evgeniy Stepanov authored
llvm-svn: 177716
-