[lsan] [aarch64] Fix printing of pointers in make check tests - update

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
This commit is contained in:
Strahinja Petrovic 2016-11-14 11:40:56 +00:00
parent f603672b5c
commit f10d114d43
20 changed files with 43 additions and 37 deletions

View 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;

View 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).

View 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);

View File

@ -6,7 +6,7 @@
#include <stdio.h>
#include <stdlib.h>
#include "../../tsan/test.h"
#include "sanitizer_common/print_address.h"
void **pp;

View 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);

View 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;

View File

@ -7,7 +7,7 @@
#include <stdio.h>
#include <stdlib.h>
#include "../../tsan/test.h"
#include "sanitizer_common/print_address.h"
void *bss_var;

View 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;

View 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) {

View 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);

View 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) {

View 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";

View 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;

View 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;

View 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;

View 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];

View 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

View File

@ -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");
}

View 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':

View 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;