1. 3125de9 CMake: don't build sanitizer runtimes on 64-bit Windows (it's unsupported for now) by Alexey Samsonov · 11 years ago
  2. 8c6e485 [ASan] Introduce a top-level target to collect all ASan runtimes and deps by Alexey Samsonov · 11 years ago
  3. d2e32e3 [ASan] Remove the stale dependency on the Foundation framework from the dynamic ASan runtime. by Alexander Potapenko · 11 years ago
  4. 4949674 [ASan] Add CMake configs for libclang_rt.asan_iossim_dynamic.dylib by Alexander Potapenko · 11 years ago
  5. c1a1ed6 Overhaul the symbolizer interface. by Peter Collingbourne · 11 years ago
  6. 9b5f95f Runtime support for the indirect function call checker. by Peter Collingbourne · 11 years ago
  7. 05fa380 [ASan] Split ASan unit tests into two different binaries: by Alexey Samsonov · 11 years ago
  8. 544bdfb Generate list of symbols exported from sanitizer runtimes only on 64-bit Unix by Alexey Samsonov · 11 years ago
  9. e5fa243 Properly generate lists of exported symbols for sanitizer runtimes by Alexey Samsonov · 11 years ago
  10. c1f1af7 cmake: fix the compiler-rt build with MSVC by Hans Wennborg · 11 years ago
  11. c3b30b3 Add cmake rules for building LSan common on Mac OS by Alexey Samsonov · 11 years ago
  12. b957d9f Drop support for 32-bit PowerPC in sanitizer tools. by Alexey Samsonov · 11 years ago
  13. 975a329 Revert r182465 and add lsan-common library to makefile-based build by Alexey Samsonov · 11 years ago
  14. b5433dd [ASan] Temporary remove leak checking from ASan, while we don't have makefile-based build for LSan by Alexey Samsonov · 11 years ago
  15. 9bdf780 [lsan] Change CMakeLists to build the common LSan module for ASan. by Sergey Matveev · 11 years ago
  16. c1caace [ASan] create default (empty) ASan blacklist file in resource directory by Alexey Samsonov · 11 years ago
  17. 0c547de [nolibc] Begin moving sanitizer_common's libc-dependent code to a separate library by Peter Collingbourne · 11 years ago
  18. b1971ca [asan] nuke the old unused allocator code by Kostya Serebryany · 11 years ago
  19. a06fe91 Build and install .syms files alongside sanitizer runtimes. These are used to by Richard Smith · 11 years ago
  20. def1be9 [ASan] Switch ASan to generic ThreadRegistry from sanitizer_common. Delete ASan-specific AsanThreadRegistry. by Alexey Samsonov · 11 years ago
  21. a7e5db9 [Sanitizer] Build ASan, TSan and MSan runtimes with -fno-rtti. by Alexey Samsonov · 11 years ago
  22. 33934ff [asan] move the .preinit_array hack into a separate file (added used attribute) by Kostya Serebryany · 12 years ago
  23. 7c2a3bb [ASan] Delete asan/dynamic dir and temporarily move the interposers declarations to asan_intercepted_functions.h by Alexander Potapenko · 12 years ago
  24. 6956398 [ASan] Delete the code related to static runtime on OS X. by Alexander Potapenko · 12 years ago
  25. eba4803 [ASan] Use dylib interposition to hook memory allocation in the dynamic runtime. by Alexander Potapenko · 12 years ago
  26. 5e5be21 ASan: disable flexible mapping and offset on Android. It doesn't work for dynamic ASan runtime there by Alexey Samsonov · 12 years ago
  27. d0b1d46 CMake: generalize checking for target availability and add initial support for PowerPC native arch. With this patch, building LLVM on PowerPC native arch produces a working ASan runtime. by Alexey Samsonov · 12 years ago
  28. a0a69a4 ASan: use dynamic lookup when building dynamic ASan runtime on Mac, because shadow mapping and offset are defined in the instrumented modules instead of runtime by Alexey Samsonov · 12 years ago
  29. 2aed040 ASan: build runtime library with ASAN_FLEXIBLE_MAPPING_AND_OFFSET=1 as shadow mapping/offset are always emitted by the LLVM backend now by Alexey Samsonov · 12 years ago
  30. 2aad7c1 CMake: add functions creating universal runtime libraries for several architectures on OS X and use them in ASan and UBSan build rules by Alexey Samsonov · 12 years ago
  31. 43b4b9c CMake: Generalize build rules for different arches for sanitizer_common, asan, ubsan by Alexey Samsonov · 12 years ago
  32. 2f3aef0 CMake variables renaming: X86_64->x86_64 I386->i386 by Alexey Samsonov · 12 years ago
  33. d7d7b5f Define COMPILER_RT_CAN_EXECUTE_TESTS variable on platforms where we can produce working binaries and use it in build rules for sanitizers tests by Alexey Samsonov · 12 years ago
  34. 2679f19 [asan] move FakeStack into a separate file by Kostya Serebryany · 12 years ago
  35. 8b0a7ce [asan] introduce asan_allocator2.cc, which will have the replacement for asan allocator (now, just a bit of boilerplate) by Kostya Serebryany · 12 years ago
  36. 34fc56c CMake build rules for ASan Android runtime and tests. by Evgeniy Stepanov · 12 years ago
  37. 70a7095 [compiler-rt] Install support for CMake build of compiler-rt by Alexey Samsonov · 12 years ago
  38. 4a78b1e [ASan] Hack ASan lit config to allow running lit on tests manually by Alexey Samsonov · 12 years ago
  39. 0f7d4a4 [ASan] hoist more compile flags to SANITIZER_COMMON_CFLAGS var and add the rest of flags/defs from old Makefile to CMake by Alexey Samsonov · 12 years ago
  40. 60ab090 Some flag cleanup for the sanitizer runtimes. by Chandler Carruth · 12 years ago
  41. 283c296 [asan] get rid of AsanPrintf in favor of Printf from sanitizer_common by Kostya Serebryany · 12 years ago
  42. b100277 CMake build rules for ASan/Android runtime. by Evgeniy Stepanov · 12 years ago
  43. 1e2525d Add add_clang_runtime_shared_library() CMake function and use it to put the shared ASan runtime in the appropriate place. by Alexander Potapenko · 12 years ago
  44. 0ef5310 Commit the source and CMake changes that will allow to build ASan runtime by Alexander Potapenko · 12 years ago
  45. fe51abb [ASan] CMake support for building ASan runtime as a universal binary on Mac by Alexey Samsonov · 12 years ago
  46. f7c1d18 [ASan] Move error reports away from ASan allocator. Add new source file to CMakeLists as well by Alexey Samsonov · 12 years ago
  47. 7274ff8 First tiny move towards integrating AddressSanitizer regressions test into LLVM lit-based testing infrastructure. by Alexey Samsonov · 12 years ago
  48. 4d57f44 cmake for compiler-rt: add a function to set output dirs for compiler runtimes equal to directory used by Clang driver. Use it for ASan runtime. Also, make sure that ASan unit tests depend on the ASan runtime. by Alexey Samsonov · 12 years ago
  49. b0af639 Revert r160669 (except for compile flag updates) by Alexey Samsonov · 12 years ago
  50. a43a62a [ASan] hacking cmake build: after generating asan runtime, copy it to the Clang lib directory where Clang driver expects to find it. by Alexey Samsonov · 12 years ago
  51. 62f2940 [ASan] cmake cleanup: make tab/space padding in CMakeLists consistent, silence/fix some pedantic warnings by Alexey Samsonov · 12 years ago
  52. 984f6cf Add support for building the ASan instrumentation unit tests with the by Chandler Carruth · 12 years ago
  53. 821f21b Cleanup the handling of CFLAGS even more in the cmake build for ASan. by Chandler Carruth · 12 years ago
  54. a765ffc Another big step toward a viable CMake build system for CompilerRT, by Chandler Carruth · 12 years ago
  55. 479d47f Resuming work on the compiler-rt CMake build at long long last. In order by Chandler Carruth · 12 years ago
  56. d51e0a0 Initial, very rough cut at a new CMake build system for compiler-rt. by Chandler Carruth · 12 years ago