[lsan] [aarch64] Fix printing of pointers in make check tests - update
authorStrahinja Petrovic <strahinja.petrovic@rt-rk.com>
Mon, 14 Nov 2016 11:40:56 +0000 (11:40 +0000)
committerStrahinja Petrovic <strahinja.petrovic@rt-rk.com>
Mon, 14 Nov 2016 11:40:56 +0000 (11:40 +0000)
This patch replaces fprintf with print_address function in LSAN
tests. This is necessary because of different printing of pointers
in fprintf and sanitizer's print function.
Differential Revision: https://reviews.llvm.org/D26084.

llvm-svn: 286816

20 files changed:
compiler-rt/test/lsan/TestCases/cleanup_in_tsd_destructor.c
compiler-rt/test/lsan/TestCases/large_allocation_leak.cc
compiler-rt/test/lsan/TestCases/pointer_to_self.cc
compiler-rt/test/lsan/TestCases/stale_stack_leak.cc
compiler-rt/test/lsan/TestCases/use_after_return.cc
compiler-rt/test/lsan/TestCases/use_globals_initialized.cc
compiler-rt/test/lsan/TestCases/use_globals_uninitialized.cc
compiler-rt/test/lsan/TestCases/use_poisoned_asan.cc
compiler-rt/test/lsan/TestCases/use_registers.cc
compiler-rt/test/lsan/TestCases/use_stacks.cc
compiler-rt/test/lsan/TestCases/use_stacks_threaded.cc
compiler-rt/test/lsan/TestCases/use_tls_dynamic.cc
compiler-rt/test/lsan/TestCases/use_tls_pthread_specific_dynamic.cc
compiler-rt/test/lsan/TestCases/use_tls_pthread_specific_static.cc
compiler-rt/test/lsan/TestCases/use_tls_static.cc
compiler-rt/test/lsan/TestCases/use_unaligned.cc
compiler-rt/test/lsan/lit.common.cfg
compiler-rt/test/sanitizer_common/print_address.h [new file with mode: 0644]
compiler-rt/test/tsan/lit.cfg
compiler-rt/test/tsan/test.h

index c43f696..6da7595 100644 (file)
@@ -14,7 +14,7 @@
 #include <stdlib.h>
 
 #include "sanitizer/lsan_interface.h"
-#include "../../tsan/test.h"
+#include "sanitizer_common/print_address.h"
 
 pthread_key_t key;
 __thread void *p;
index 70b36c9..9d5698c 100644 (file)
@@ -5,7 +5,7 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include "../../tsan/test.h"
+#include "sanitizer_common/print_address.h"
 
 int main() {
   // maxsize in primary allocator is always less than this (1 << 25).
index 5696a65..40c1228 100644 (file)
@@ -6,7 +6,7 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include "../../tsan/test.h"
+#include "sanitizer_common/print_address.h"
 
 int main() {
   void *p = malloc(1337);
index 4bba1f7..770096b 100644 (file)
@@ -6,7 +6,7 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include "../../tsan/test.h"
+#include "sanitizer_common/print_address.h"
 
 void **pp;
 
index 903e3e3..ed9cc78 100644 (file)
@@ -8,7 +8,7 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include "../../tsan/test.h"
+#include "sanitizer_common/print_address.h"
 
 int main() {
   void *stack_var = malloc(1337);
index bb2b3f6..45c12dc 100644 (file)
@@ -7,7 +7,7 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include "../../tsan/test.h"
+#include "sanitizer_common/print_address.h"
 
 void *data_var = (void *)1;
 
index 46d9f65..c198fcc 100644 (file)
@@ -7,7 +7,7 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include "../../tsan/test.h"
+#include "sanitizer_common/print_address.h"
 
 void *bss_var;
 
index c2b7bbc..5acceeb 100644 (file)
@@ -9,7 +9,7 @@
 #include <stdlib.h>
 #include <sanitizer/asan_interface.h>
 #include <assert.h>
-#include "../../tsan/test.h"
+#include "sanitizer_common/print_address.h"
 
 void **p;
 
index 49c3702..7647679 100644 (file)
@@ -10,7 +10,7 @@
 #include <sched.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include "../../tsan/test.h"
+#include "sanitizer_common/print_address.h"
 
 extern "C"
 void *registers_thread_func(void *arg) {
index 708f352..c32af68 100644 (file)
@@ -7,7 +7,7 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include "../../tsan/test.h"
+#include "sanitizer_common/print_address.h"
 
 int main() {
   void *stack_var = malloc(1337);
index 9effa32..ac1fb46 100644 (file)
@@ -10,7 +10,7 @@
 #include <sched.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include "../../tsan/test.h"
+#include "sanitizer_common/print_address.h"
 
 extern "C"
 void *stacks_thread_func(void *arg) {
index 208df11..927c5c4 100644 (file)
@@ -12,7 +12,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <string>
-#include "../../tsan/test.h"
+#include "sanitizer_common/print_address.h"
 
 int main(int argc, char *argv[]) {
   std::string path = std::string(argv[0]) + "-so.so";
index b80c460..9ab4e1c 100644 (file)
@@ -9,7 +9,7 @@
 #include <pthread.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include "../../tsan/test.h"
+#include "sanitizer_common/print_address.h"
 
 // From glibc: this many keys are stored in the thread descriptor directly.
 const unsigned PTHREAD_KEY_2NDLEVEL_SIZE = 32;
index 2225bf1..be0bcf6 100644 (file)
@@ -9,7 +9,7 @@
 #include <pthread.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include "../../tsan/test.h"
+#include "sanitizer_common/print_address.h"
 
 // From glibc: this many keys are stored in the thread descriptor directly.
 const unsigned PTHREAD_KEY_2NDLEVEL_SIZE = 32;
index 6f04ba2..5ffaf16 100644 (file)
@@ -7,7 +7,7 @@
 
 #include <stdio.h>
 #include <stdlib.h>
-#include "../../tsan/test.h"
+#include "sanitizer_common/print_address.h"
 
 __thread void *tls_var;
 
index 8ecfa9b..86c3ed5 100644 (file)
@@ -7,7 +7,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
-#include "../../tsan/test.h"
+#include "sanitizer_common/print_address.h"
 
 void *arr[2];
 
index a04c113..6002e2d 100644 (file)
@@ -31,8 +31,9 @@ config.name += config.name_suffix
 
 clang_cflags = ["-O0", config.target_cflags] + config.debug_info_flags
 clang_cxxflags = config.cxx_mode_flags + clang_cflags
-clang_lsan_cflags = clang_cflags + lsan_cflags
-clang_lsan_cxxflags = clang_cxxflags + lsan_cflags
+lsan_incdir = config.test_source_root + "/../"
+clang_lsan_cflags = clang_cflags + lsan_cflags + ["-I%s" % lsan_incdir]
+clang_lsan_cxxflags = clang_cxxflags + lsan_cflags + ["-I%s" % lsan_incdir]
 
 config.clang_cflags = clang_cflags
 config.clang_cxxflags = clang_cxxflags
diff --git a/compiler-rt/test/sanitizer_common/print_address.h b/compiler-rt/test/sanitizer_common/print_address.h
new file mode 100644 (file)
index 0000000..018db61
--- /dev/null
@@ -0,0 +1,19 @@
+#include <stdio.h>
+#include <stdarg.h>
+
+void print_address(const char *str, int n, ...) {
+  fprintf(stderr, "%s", str);
+  va_list ap;
+  va_start(ap, n);
+  while (n--) {
+    void *p = va_arg(ap, void *);
+#if defined(__x86_64__) || defined(__aarch64__) || defined(__powerpc64__)
+    // On FreeBSD, the %p conversion specifier works as 0x%x and thus does not
+    // match to the format used in the diagnotic message.
+    fprintf(stderr, "0x%012lx ", (unsigned long) p);
+#elif defined(__mips64)
+    fprintf(stderr, "0x%010lx ", (unsigned long) p);
+#endif
+  }
+  fprintf(stderr, "\n");
+}
index e0f93c7..9dd890a 100644 (file)
@@ -38,13 +38,15 @@ if config.compiler_id == 'GNU':
 else:
   extra_cflags = []
 
+tsan_incdir = config.test_source_root + "/../"
 # Setup default compiler flags used with -fsanitize=thread option.
 clang_tsan_cflags = (["-fsanitize=thread",
                       "-Wall"] +
                       [config.target_cflags] +
                       config.debug_info_flags +
-                      extra_cflags)
-clang_tsan_cxxflags = config.cxx_mode_flags + clang_tsan_cflags + ["-std=c++11"]
+                      extra_cflags +
+                      ["-I%s" % tsan_incdir])
+clang_tsan_cxxflags = config.cxx_mode_flags + clang_tsan_cflags + ["-std=c++11"] + ["-I%s" % tsan_incdir]
 # Add additional flags if we're using instrumented libc++.
 # Instrumented libcxx currently not supported on Darwin.
 if config.has_libcxx and config.host_os != 'Darwin':
index e3affdc..ed300db 100644 (file)
@@ -6,6 +6,7 @@
 #include <stddef.h>
 #include <sched.h>
 #include <stdarg.h>
+#include "sanitizer_common/print_address.h"
 
 #ifdef __APPLE__
 #include <mach/mach_time.h>
@@ -37,23 +38,6 @@ static inline void barrier_wait(invisible_barrier_t *barrier) {
 // Default instance of the barrier, but a test can declare more manually.
 invisible_barrier_t barrier;
 
-void print_address(const char *str, int n, ...) {
-  fprintf(stderr, "%s", str);
-  va_list ap;
-  va_start(ap, n);
-  while (n--) {
-    void *p = va_arg(ap, void *);
-#if defined(__x86_64__) || defined(__aarch64__) || defined(__powerpc64__)
-    // On FreeBSD, the %p conversion specifier works as 0x%x and thus does not
-    // match to the format used in the diagnotic message.
-    fprintf(stderr, "0x%012lx ", (unsigned long) p);
-#elif defined(__mips64)
-    fprintf(stderr, "0x%010lx ", (unsigned long) p);
-#endif
-  }
-  fprintf(stderr, "\n");
-}
-
 #ifdef __APPLE__
 unsigned long long monotonic_clock_ns() {
   static mach_timebase_info_data_t timebase_info;