]> granicus.if.org Git - python/commitdiff
bpo-35214: Add _Py_ prefix to MEMORY_SANITIZER def. (GH-10503)
authorGregory P. Smith <greg@krypto.org>
Tue, 13 Nov 2018 06:01:22 +0000 (22:01 -0800)
committerGitHub <noreply@github.com>
Tue, 13 Nov 2018 06:01:22 +0000 (22:01 -0800)
Rename our new MEMORY_SANITIZER define to _Py_MEMORY_SANITIZER.
Project based C Preprocessor namespacing at its finest. :P

Include/Python.h
Modules/_ctypes/callproc.c
Modules/_posixsubprocess.c
Objects/fileobject.c
Python/bootstrap_hash.c
Python/pymath.c

index bece20808c077d77aa4e917dbac0ba5ba4540ca4..cb24c8d33ee6f2ca09827f62af05a6830b9694a0 100644 (file)
@@ -56,8 +56,8 @@
 /* A convenient way for code to know if clang's memory sanitizer is enabled. */
 #if defined(__has_feature)
 #  if __has_feature(memory_sanitizer)
-#    if !defined(MEMORY_SANITIZER)
-#      define MEMORY_SANITIZER
+#    if !defined(_Py_MEMORY_SANITIZER)
+#      define _Py_MEMORY_SANITIZER
 #    endif
 #  endif
 #endif
index 33b7055f014f17cdd2c8dcb28b5ed72b9867429a..d485c58e8c01d1ca03533dafde5265566acf5196 100644 (file)
@@ -75,7 +75,7 @@
 #include <alloca.h>
 #endif
 
-#ifdef MEMORY_SANITIZER
+#ifdef _Py_MEMORY_SANITIZER
 #include <sanitizer/msan_interface.h>
 #endif
 
@@ -1129,7 +1129,7 @@ PyObject *_ctypes_callproc(PPROC pProc,
     rtype = _ctypes_get_ffi_type(restype);
     resbuf = alloca(max(rtype->size, sizeof(ffi_arg)));
 
-#ifdef MEMORY_SANITIZER
+#ifdef _Py_MEMORY_SANITIZER
     /* ffi_call actually initializes resbuf, but from asm, which
      * MemorySanitizer can't detect. Avoid false positives from MSan. */
     if (resbuf != NULL) {
index 7ee3f719f7d5131b74caf7309ec32b0ebf696885..2b2c57d0418545d47c8d7a9baa4afde9e9b6c534 100644 (file)
@@ -21,7 +21,7 @@
 #include <dirent.h>
 #endif
 
-#ifdef MEMORY_SANITIZER
+#ifdef _Py_MEMORY_SANITIZER
 # include <sanitizer/msan_interface.h>
 #endif
 
@@ -291,7 +291,7 @@ _close_open_fds_safe(int start_fd, PyObject* py_fds_to_keep)
                                 sizeof(buffer))) > 0) {
             struct linux_dirent64 *entry;
             int offset;
-#ifdef MEMORY_SANITIZER
+#ifdef _Py_MEMORY_SANITIZER
             __msan_unpoison(buffer, bytes);
 #endif
             for (offset = 0; offset < bytes; offset += entry->d_reclen) {
index 10e8391fb479057d2e34a0bbcefc78b2000e30ac..313f1d0ac55c34cc549e2c64576503b1b8a3f985 100644 (file)
@@ -3,7 +3,7 @@
 #define PY_SSIZE_T_CLEAN
 #include "Python.h"
 
-#if defined(HAVE_GETC_UNLOCKED) && !defined(MEMORY_SANITIZER)
+#if defined(HAVE_GETC_UNLOCKED) && !defined(_Py_MEMORY_SANITIZER)
 /* clang MemorySanitizer doesn't yet understand getc_unlocked. */
 #define GETC(f) getc_unlocked(f)
 #define FLOCKFILE(f) flockfile(f)
index 1b8f9d904adf69b3ddca1a05745df3925557e1ac..793c646f12ba6cb0d39556df778b6d8d16416854 100644 (file)
@@ -20,7 +20,7 @@
 #  endif
 #endif
 
-#ifdef MEMORY_SANITIZER
+#ifdef _Py_MEMORY_SANITIZER
 #  include <sanitizer/msan_interface.h>
 #endif
 
@@ -147,7 +147,7 @@ py_getrandom(void *buffer, Py_ssize_t size, int blocking, int raise)
         else {
             n = syscall(SYS_getrandom, dest, n, flags);
         }
-#  ifdef MEMORY_SANITIZER
+#  ifdef _Py_MEMORY_SANITIZER
         if (n > 0) {
              __msan_unpoison(dest, n);
         }
index c1606bd6d1da4003f5a14ec1fcfce12404d5e9a3..24b804223eef19a9e551d6916ea1230f7bfd7644 100644 (file)
@@ -17,7 +17,7 @@ double _Py_force_double(double x)
 
 /* inline assembly for getting and setting the 387 FPU control word on
    gcc/x86 */
-#ifdef MEMORY_SANITIZER
+#ifdef _Py_MEMORY_SANITIZER
 __attribute__((no_sanitize_memory))
 #endif
 unsigned short _Py_get_387controlword(void) {