1. fc375d1 80 columns by Nico Weber · 12 years ago
  2. f607fc1 [Sanitizer] move rest of mmap routines to common sanitizer runtime by Alexey Samsonov · 12 years ago
  3. 3dbeabb [Sanitizer] move portable GetEnv to common sanitizer runtime by Alexey Samsonov · 12 years ago
  4. 327c1c1 [Sanitizer] Move internal_memcmp to common sanitizer libc by Alexey Samsonov · 12 years ago
  5. 2ea9787 [Sanitizer] Workaround for -Wunused-private-field warning - add an attribute in TSan unit test, and silence this warning as gtest has unused fields. by Alexey Samsonov · 12 years ago
  6. 996651d [ASan] don't include deleted header by Alexey Samsonov · 12 years ago
  7. fc1415a [ASan] remove obsolete header asan_procmaps.h by Alexey Samsonov · 12 years ago
  8. 78159d0 Add test rdx, rdx to fix ASan tests on Mac OS 10.7 x64 by Alexander Potapenko · 12 years ago
  9. 718acdb [Sanitizer] Use __libc_malloc/__libc_free instead of malloc/free inside internal allocator on Linux (important for TSan) by Alexey Samsonov · 12 years ago
  10. 98c8780 [TSan] use efficient real_memcpy inside runtime by Alexey Samsonov · 12 years ago
  11. 4fac148 [Sanitizer] add internal_memset and internal_strrchr to sanitizer_common/ by Alexey Samsonov · 12 years ago
  12. a1a25c1 [ASan] allow calls to memmove during rtl initialization by Alexey Samsonov · 12 years ago
  13. e19cf55 [TSan] s/internal_memset/real_memset by Alexey Samsonov · 12 years ago
  14. c1bdd5a [ASan] add interceptor for strncat by Alexey Samsonov · 12 years ago
  15. f7667cc [Sanitizer] move internal_strdup and internal_memcpy to common runtime. Make internal allocations from TSan runtime call InternalAlloc from common runtime by Alexey Samsonov · 12 years ago
  16. 9fe7b96 [Sanitizer] use unsigned int as a parameter for placement new on 32 bits by Alexey Samsonov · 12 years ago
  17. 47b1634 [Sanitizer] move placement_new definiton from TSan to common runtime by Alexey Samsonov · 12 years ago
  18. 8d4ca28 [Sanitizer] include stdlib.h header to get malloc/free by Alexey Samsonov · 12 years ago
  19. 0334fc8 [asan] slow 16-byte redzones (still experimental) by Kostya Serebryany · 12 years ago
  20. 6e0c3a4 [Sanitizer] Allocator for internal runtime purposes. Currently it calls libcmalloc, but we might have to make it more low-level in future by Alexey Samsonov · 12 years ago
  21. ed996f7 [Sanitizer] Fix mac build. by Alexey Samsonov · 12 years ago
  22. e5931fd [Sanitizer] factor out GetThreadStackTopAndBottom from ASan runtime to common. by Alexey Samsonov · 12 years ago
  23. 6895adc [Sanitizer] __asan::AsanProcMaps -> __sanitizer::ProcessMaps. by Alexey Samsonov · 12 years ago
  24. cffe2f5 [Sanitizer] Move ReadFileToBuffer to sanitizer_common. by Alexey Samsonov · 12 years ago
  25. 1607160 [asan] more compaction: don't use the next field while the chunk is in allocated state by Kostya Serebryany · 12 years ago
  26. 6dc48dd [asan] more allocator compaction by Kostya Serebryany · 12 years ago
  27. a25b346 [Sanitizer] Switch to common mmap/munmap routines in ASan run-time. by Alexey Samsonov · 12 years ago
  28. 8c53e54 [Sanitizer] Make UNIMPLEMENTED macro common. by Alexey Samsonov · 12 years ago
  29. f4a4d5a [asan] more compaction for allocator by Kostya Serebryany · 12 years ago
  30. 15a7761 [Sanitizer] Use common CHECK machinery. Currently each tool has to define its own CheckFailed function. by Alexey Samsonov · 12 years ago
  31. e0cff0b [asan] make tid u32 instead of int by Kostya Serebryany · 12 years ago
  32. 7ebac95 [asan] start compacting the allocator header, the goal is to make it 16 bytes w/o losing any information by Kostya Serebryany · 12 years ago
  33. 9b8a9c1 [tsan,asan] comment out O_CLOEXEC as it causes build failures on old linux kernels by Kostya Serebryany · 12 years ago
  34. 7fdcdf5 [Sanitizer] Remove __attribute__((format)) by Alexey Samsonov · 12 years ago
  35. 675293d [ASan] match type of arguments to format string on Mac. by Alexey Samsonov · 12 years ago
  36. 15503b0 [Sanitizer] fix Win build - ignore __attribute__((format)). by Alexey Samsonov · 12 years ago
  37. e954101 [Sanitizer]: Introduce a common internal printf function. For now, also use tool-specific wrappers TsanPrintf (its output is controlled by TSan flags) and AsanPrintf (which copies its results to the ASan-private buffer). Supported formats: %[z]{d,u,x}, %s, %p. Re-write all format strings in TSan according to this format (this should have no effect on 64-bit platforms). by Alexey Samsonov · 12 years ago
  38. e4309e8 [ASan] more format fixes by Alexey Samsonov · 12 years ago
  39. 5bcca4e [ASan] Make printf arguments match format strings better. by Alexey Samsonov · 12 years ago
  40. 67a64dd [TSan] run some renaming as a preparation for factoring out Printf implementation. by Alexey Samsonov · 12 years ago
  41. 9929ffd [ASan] fix win build - add missing header by Alexey Samsonov · 12 years ago
  42. 230c3be [Sanitizer] Move more functions/constants to sanitizer_common. by Alexey Samsonov · 12 years ago
  43. 8e820fc [Sanitizer] move internal_filesize and internal_dup2 from TSan to sanitizer_common. by Alexey Samsonov · 12 years ago
  44. 47657ce [ASan] Use __sanitizer::Die() in ASan runtime. by Alexey Samsonov · 12 years ago
  45. 9edf750 [Sanitizer] add sanitizer_common.h for routines shared between TSan and ASan runtimes. Use __sanitizer::Die() in TSan. by Alexey Samsonov · 12 years ago
  46. 4b6eec3 [ASan] fix GetFreeBytesTest interface test on 32-bit Linux - delete some assumptions about the behavior of allocator in test code by Alexey Samsonov · 12 years ago
  47. 94b5036 [Sanitizer] rename sanitizer_defs.h to sanitizer_internal_defs.h by Alexey Samsonov · 12 years ago
  48. 78381e4 [Sanitizer] fix compilation on Mac OS 10.6 - don't use O_CLOEXEC by Alexey Samsonov · 12 years ago
  49. b9a30e0 [Sanitizer] remove using namespace __sanitizer lines by Alexey Samsonov · 12 years ago
  50. 0a4c906 [Sanitizer] Use common defines for ASan and TSan runtime. Split defines between interface defines (can be visible in user code that includes interface ASan/TSan headers) and internal defines. by Alexey Samsonov · 12 years ago
  51. 8c8c8b0 [asan] change the order of tests in the asan_test binary. Makes the test runs 2x faster due to DEATH_TEST overhead (see asan issue 77) by Kostya Serebryany · 12 years ago
  52. 562e19e [TSan] Use internal_munmap from sanitizer_libc in TSan runtime. by Alexey Samsonov · 12 years ago
  53. 1f11d31 [Sanitizer] add sanitizer_posix.cc. Move more various functions into sanitizer_libc: sscanf, munmap, memchr by Alexey Samsonov · 12 years ago
  54. 3f46cf4 [ASan] s/size_t/uptr in asan_mac.cc by Alexey Samsonov · 12 years ago
  55. 89345b0 [TSan] make TSan runtime use internal_{close,read,write} from sanitizer_libc by Alexey Samsonov · 12 years ago
  56. 2221f55 [ASan] use internal_{close,read,write} in ASan runtime. by Alexey Samsonov · 12 years ago
  57. a56aefd [Sanitizer] add internal_{close,read,write} functions to sanitizer_libc by Alexey Samsonov · 12 years ago
  58. 7f9c5a2 [TSan] use __sanitizer::internal_open in TSan run-time by Alexey Samsonov · 12 years ago
  59. 9552db7 [ASan] use internal_open from sanitizer_libc in ASan runtime by Alexey Samsonov · 12 years ago
  60. c5d4651 [Sanitizer] Add sanitizer_win.cc for windows-specific implementations of libc functions. Add internal_open. by Alexey Samsonov · 12 years ago
  61. 48aee68 [TSan] use __sanitizer::internal_mmap in TSan run-time by Alexey Samsonov · 12 years ago
  62. 6316c11 [ASan] Fix a typo in Makefile.old by Alexey Samsonov · 12 years ago
  63. 982cee4 [Sanitizer] Enable lint for sanitizer_common/ by Alexey Samsonov · 12 years ago
  64. ae4d9ca Created files sanitizer_linux.cc and sanitizer_mac.cc for platform-specific implementations of common functions. Turned asan_mmap into __sanitizer::internal_mmap. by Alexey Samsonov · 12 years ago
  65. 603c4be Remove file-type tags in .cc files in tsan/ and sanitizer_common/ by Alexey Samsonov · 12 years ago
  66. e5f5895 Remove file-type tags for .cc files in ASan run-time library by Alexey Samsonov · 12 years ago
  67. c0d78c1 [Sanitizer]: move internal_strcmp to sanitizer_common by Alexey Samsonov · 12 years ago
  68. 5f2fe37 [ASan] Use ASan option symbolize to turn on internal symbolizer (in development) by Alexey Samsonov · 12 years ago
  69. 3836ff2 [Sanitizer] Move internal_strncpy to sanitizer_libc (and make its behavior conforming to manual) by Alexey Samsonov · 12 years ago
  70. 4e6c6c7 [Sanitizer_common] fix filenames in comments by Alexey Samsonov · 12 years ago
  71. ab5dbcc temporary include stdlib.h in symbolizer to fix Mac/Win build by Alexey Samsonov · 12 years ago
  72. cfd605e [asan] fix gcc build by Kostya Serebryany · 12 years ago
  73. 2f7d826 by Alexey Samsonov · 12 years ago
  74. f037f56 tsan: intercept longjmp() but die in it, greatly simplifies problem diagnostic by Dmitry Vyukov · 12 years ago
  75. 45c8d1b [asan] partial fix for windows build by Kostya Serebryany · 12 years ago
  76. b49879c [asan] partial fix for windows build by Kostya Serebryany · 12 years ago
  77. ee39255 [asan] more renaming by Kostya Serebryany · 12 years ago
  78. 3f4c387 [asan] more renaming by Kostya Serebryany · 12 years ago
  79. a13749b tsan: fix a typo by Dmitry Vyukov · 12 years ago
  80. 9aead37 [asan,tsan] introduce sanitizer_common/sanitizer_defs.h and perform some renaming in asan rt. More to come. by Kostya Serebryany · 12 years ago
  81. b99941c Fix the wildcards for two output tests on Darwin. by Alexander Potapenko · 12 years ago
  82. 16e0075 [asan,tsan] rename files in sanitizer_common to have a common prefix (sanitizer_). by Kostya Serebryany · 12 years ago
  83. 20f60c5 tsan: suppress reports against source file names as well by Dmitry Vyukov · 12 years ago
  84. a87bdaa Be more verbose when installing the signals. by Alexander Potapenko · 12 years ago
  85. 6b6dc57 Fix a bug in parsing boolean flags: we used to take the first char of the key=value string by Alexander Potapenko · 12 years ago
  86. e4781f0 Be less verbose when parsing the default options. by Alexander Potapenko · 12 years ago
  87. b4b9fa7 tsan: prevent recursive signal handlers by Dmitry Vyukov · 12 years ago
  88. b3cedf9 [asan,tsan] Add a new directory compiler-rt/lib/sanitizer_common by Kostya Serebryany · 12 years ago
  89. ff20f17 Fixing ASan build on Win: don't use __asan_default_options by Alexey Samsonov · 12 years ago
  90. 4113f64 Do not define ___asan_default_options on Windows. by Alexander Potapenko · 12 years ago
  91. d389dd3 Fix atoi stub for linux introduced in r157573. This fixes compiler-rt build on linux. by Alexey Samsonov · 12 years ago
  92. c6df61b tsan: fix compiler warnings by Dmitry Vyukov · 12 years ago
  93. 411b2c9 tsan: fix race during pthread_join/detach by Dmitry Vyukov · 12 years ago
  94. 62f10e7 Rework the flags machinery a bit. by Alexander Potapenko · 12 years ago
  95. a27d6a7 More verbose check in AppendString. by Alexander Potapenko · 12 years ago
  96. 40565ce tsan: pass CFLAGS to tests by Dmitry Vyukov · 12 years ago
  97. 00a38b2 tsan: be more conservative wrt symbolizer output by Dmitry Vyukov · 12 years ago
  98. ec63f45 Add support for the GCOV_PREFIX_STRIP env variable which tries to strip off the first 'n' directories from the filename. by Bill Wendling · 12 years ago
  99. 84baff0 Add stub for 'atoi'. by Bill Wendling · 12 years ago
  100. 015b7e0 Simplify the logic that tries to open the GCDA file at all costs. Basically, if by Bill Wendling · 12 years ago