Skip to content

Commit 537b609

Browse files
committedNov 5, 2015
[tsan] Fix build warnings on OS X
Fixing `tsan_interceptors.cc`, which on OS X produces a bunch of warnings about unused constants and functions. Differential Revision: http://reviews.llvm.org/D14381 llvm-svn: 252165
1 parent 3c44b42 commit 537b609

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed
 

‎compiler-rt/lib/sanitizer_common/sanitizer_platform_interceptors.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@
220220
// FIXME: getline seems to be available on OSX 10.7
221221
#define SANITIZER_INTERCEPT_GETLINE SI_FREEBSD || SI_LINUX_NOT_ANDROID
222222

223-
#define SANITIZER_INTERCEPT__EXIT SI_LINUX || SI_FREEBSD
223+
#define SANITIZER_INTERCEPT__EXIT SI_LINUX || SI_FREEBSD || SI_MAC
224224

225225
#define SANITIZER_INTERCEPT_PHTREAD_MUTEX SI_NOT_WINDOWS
226226
#define SANITIZER_INTERCEPT_PTHREAD_SETNAME_NP \

‎compiler-rt/lib/tsan/rtl/tsan_interceptors.cc

+11-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,9 @@ const int PTHREAD_MUTEX_RECURSIVE_NP = 1;
115115
const int EINVAL = 22;
116116
const int EBUSY = 16;
117117
const int EOWNERDEAD = 130;
118+
#if !SANITIZER_MAC
118119
const int EPOLL_CTL_ADD = 1;
120+
#endif
119121
const int SIGILL = 4;
120122
const int SIGABRT = 6;
121123
const int SIGFPE = 8;
@@ -130,7 +132,9 @@ const int SIGBUS = 7;
130132
const int SIGSYS = 31;
131133
#endif
132134
void *const MAP_FAILED = (void*)-1;
135+
#if !SANITIZER_MAC
133136
const int PTHREAD_BARRIER_SERIAL_THREAD = -1;
137+
#endif
134138
const int MAP_FIXED = 0x10;
135139
typedef long long_t; // NOLINT
136140

@@ -385,6 +389,7 @@ static int setup_at_exit_wrapper(ThreadState *thr, uptr pc, void(*f)(),
385389
return res;
386390
}
387391

392+
#if !SANITIZER_MAC
388393
static void on_exit_wrapper(int status, void *arg) {
389394
ThreadState *thr = cur_thread();
390395
uptr pc = 0;
@@ -394,7 +399,6 @@ static void on_exit_wrapper(int status, void *arg) {
394399
__libc_free(ctx);
395400
}
396401

397-
#if !SANITIZER_MAC
398402
TSAN_INTERCEPTOR(int, on_exit, void(*f)(int, void*), void *arg) {
399403
if (cur_thread()->in_symbolizer)
400404
return 0;
@@ -2198,13 +2202,15 @@ struct TsanInterceptorContext {
21982202
const uptr pc;
21992203
};
22002204

2205+
#if !SANITIZER_MAC
22012206
static void HandleRecvmsg(ThreadState *thr, uptr pc,
22022207
__sanitizer_msghdr *msg) {
22032208
int fds[64];
22042209
int cnt = ExtractRecvmsgFDs(msg, fds, ARRAY_SIZE(fds));
22052210
for (int i = 0; i < cnt; i++)
22062211
FdEventCreate(thr, pc, fds[i]);
22072212
}
2213+
#endif
22082214

22092215
#include "sanitizer_common/sanitizer_platform_interceptors.h"
22102216
// Causes interceptor recursion (getaddrinfo() and fopen())
@@ -2355,6 +2361,7 @@ struct ScopedSyscall {
23552361
}
23562362
};
23572363

2364+
#if !SANITIZER_MAC
23582365
static void syscall_access_range(uptr pc, uptr p, uptr s, bool write) {
23592366
TSAN_SYSCALL();
23602367
MemoryAccessRange(thr, pc, p, s, write);
@@ -2408,6 +2415,7 @@ static void syscall_post_fork(uptr pc, int pid) {
24082415
ForkParentAfter(thr, pc);
24092416
}
24102417
}
2418+
#endif
24112419

24122420
#define COMMON_SYSCALL_PRE_READ_RANGE(p, s) \
24132421
syscall_access_range(GET_CALLER_PC(), (uptr)(p), (uptr)(s), false)
@@ -2458,10 +2466,12 @@ static void finalize(void *arg) {
24582466
Die();
24592467
}
24602468

2469+
#if !SANITIZER_MAC
24612470
static void unreachable() {
24622471
Report("FATAL: ThreadSanitizer: unreachable called\n");
24632472
Die();
24642473
}
2474+
#endif
24652475

24662476
void InitializeInterceptors() {
24672477
#if !SANITIZER_MAC

0 commit comments

Comments
 (0)
Please sign in to comment.