Skip to content
  1. May 30, 2013
  2. May 29, 2013
  3. May 27, 2013
  4. May 24, 2013
    • Alexey Samsonov's avatar
      Disable init-order checking before destructors are run. · 646ec67e
      Alexey Samsonov authored
      We don't want to report initialization-order bugs when a destructor of a global
      variable accesses dynamically initialized global from another
      (not necessarily initialized) module. We do this by intercepting __cxa_atexit and
      registrering our own callback that unpoisons shadow for all dynamically initialized
      global variables.
      
      llvm-svn: 182637
      646ec67e
  5. May 23, 2013
  6. May 22, 2013
  7. May 21, 2013
  8. May 20, 2013
  9. May 18, 2013
  10. May 17, 2013
    • Peter Collingbourne's avatar
      [nolibc] Move all platforms to internal_getpid. · ffaf2eac
      Peter Collingbourne authored
      Before, we had an unused internal_getpid function for Linux, and a
      platform-independent GetPid function.  To make the naming conventions
      consistent for syscall-like functions, the GetPid syscall wrapper
      in sanitizer_posix.cc is moved to sanitizer_mac.cc, and GetPid is
      renamed to internal_getpid, bringing the Linux variant into use.
      
      llvm-svn: 182132
      ffaf2eac
    • Peter Collingbourne's avatar
      [nolibc] Begin moving sanitizer_common's libc-dependent code to a separate library · 6d4a7d37
      Peter Collingbourne authored
      Introduce a new object library, RTSanitizerCommonLibc, which will contain
      the subset of sanitizer_common with libc dependencies. RTSanitizerCommon
      contains the remainder of sanitizer_common, and is intended to have no
      libc dependencies. Begin moving code to RTSanitizerCommonLibc, starting
      with sanitizer_common.cc, whose libc-dependent portion is moved to
      sanitizer_common_libcdep.cc, the first member of the new library.
      
      This split affects the CMake build only.  The makefile build continues
      to produce the full sanitizer_common library.
      
      llvm-svn: 182118
      6d4a7d37
    • Alexander Potapenko's avatar
      [ASan] Make the regression test for time(NULL) Linux-specific, as it crashes... · dd3c5832
      Alexander Potapenko authored
      [ASan] Make the regression test for time(NULL) Linux-specific, as it crashes on Darwin (and the problem used to occur on Linux).
      Do not use zero-based shadow for the time() test.
      
      llvm-svn: 182107
      dd3c5832
Loading