* gcc-interface/trans.c (Subprogram_Body_to_gnu): Initialize locus.
[official-gcc.git] / libsanitizer / lsan / lsan_mac.cc
blobca38c1c6f8a6fd187f2e3e2569205ce548a7805b
1 //===-- lsan_mac.cc -------------------------------------------------------===//
2 //
3 // This file is distributed under the University of Illinois Open Source
4 // License. See LICENSE.TXT for details.
5 //
6 //===----------------------------------------------------------------------===//
7 //
8 // This file is a part of LeakSanitizer, a memory leak checker.
9 //
10 // Mac-specific details.
11 //===----------------------------------------------------------------------===//
13 #include "sanitizer_common/sanitizer_platform.h"
14 #if SANITIZER_MAC
16 #include "interception/interception.h"
17 #include "lsan.h"
18 #include "lsan_allocator.h"
19 #include "lsan_thread.h"
21 #include <pthread.h>
23 namespace __lsan {
24 // Support for the following functions from libdispatch on Mac OS:
25 // dispatch_async_f()
26 // dispatch_async()
27 // dispatch_sync_f()
28 // dispatch_sync()
29 // dispatch_after_f()
30 // dispatch_after()
31 // dispatch_group_async_f()
32 // dispatch_group_async()
33 // TODO(glider): libdispatch API contains other functions that we don't support
34 // yet.
36 // dispatch_sync() and dispatch_sync_f() are synchronous, although chances are
37 // they can cause jobs to run on a thread different from the current one.
38 // TODO(glider): if so, we need a test for this (otherwise we should remove
39 // them).
41 // The following functions use dispatch_barrier_async_f() (which isn't a library
42 // function but is exported) and are thus supported:
43 // dispatch_source_set_cancel_handler_f()
44 // dispatch_source_set_cancel_handler()
45 // dispatch_source_set_event_handler_f()
46 // dispatch_source_set_event_handler()
48 // The reference manual for Grand Central Dispatch is available at
49 // http://developer.apple.com/library/mac/#documentation/Performance/Reference/GCD_libdispatch_Ref/Reference/reference.html
50 // The implementation details are at
51 // http://libdispatch.macosforge.org/trac/browser/trunk/src/queue.c
53 typedef void *dispatch_group_t;
54 typedef void *dispatch_queue_t;
55 typedef void *dispatch_source_t;
56 typedef u64 dispatch_time_t;
57 typedef void (*dispatch_function_t)(void *block);
58 typedef void *(*worker_t)(void *block);
60 // A wrapper for the ObjC blocks used to support libdispatch.
61 typedef struct {
62 void *block;
63 dispatch_function_t func;
64 u32 parent_tid;
65 } lsan_block_context_t;
67 ALWAYS_INLINE
68 void lsan_register_worker_thread(int parent_tid) {
69 if (GetCurrentThread() == kInvalidTid) {
70 u32 tid = ThreadCreate(parent_tid, 0, true);
71 ThreadStart(tid, GetTid());
72 SetCurrentThread(tid);
76 // For use by only those functions that allocated the context via
77 // alloc_lsan_context().
78 extern "C" void lsan_dispatch_call_block_and_release(void *block) {
79 lsan_block_context_t *context = (lsan_block_context_t *)block;
80 VReport(2,
81 "lsan_dispatch_call_block_and_release(): "
82 "context: %p, pthread_self: %p\n",
83 block, pthread_self());
84 lsan_register_worker_thread(context->parent_tid);
85 // Call the original dispatcher for the block.
86 context->func(context->block);
87 lsan_free(context);
90 } // namespace __lsan
92 using namespace __lsan; // NOLINT
94 // Wrap |ctxt| and |func| into an lsan_block_context_t.
95 // The caller retains control of the allocated context.
96 extern "C" lsan_block_context_t *alloc_lsan_context(void *ctxt,
97 dispatch_function_t func) {
98 GET_STACK_TRACE_THREAD;
99 lsan_block_context_t *lsan_ctxt =
100 (lsan_block_context_t *)lsan_malloc(sizeof(lsan_block_context_t), stack);
101 lsan_ctxt->block = ctxt;
102 lsan_ctxt->func = func;
103 lsan_ctxt->parent_tid = GetCurrentThread();
104 return lsan_ctxt;
107 // Define interceptor for dispatch_*_f function with the three most common
108 // parameters: dispatch_queue_t, context, dispatch_function_t.
109 #define INTERCEPT_DISPATCH_X_F_3(dispatch_x_f) \
110 INTERCEPTOR(void, dispatch_x_f, dispatch_queue_t dq, void *ctxt, \
111 dispatch_function_t func) { \
112 lsan_block_context_t *lsan_ctxt = alloc_lsan_context(ctxt, func); \
113 return REAL(dispatch_x_f)(dq, (void *)lsan_ctxt, \
114 lsan_dispatch_call_block_and_release); \
117 INTERCEPT_DISPATCH_X_F_3(dispatch_async_f)
118 INTERCEPT_DISPATCH_X_F_3(dispatch_sync_f)
119 INTERCEPT_DISPATCH_X_F_3(dispatch_barrier_async_f)
121 INTERCEPTOR(void, dispatch_after_f, dispatch_time_t when, dispatch_queue_t dq,
122 void *ctxt, dispatch_function_t func) {
123 lsan_block_context_t *lsan_ctxt = alloc_lsan_context(ctxt, func);
124 return REAL(dispatch_after_f)(when, dq, (void *)lsan_ctxt,
125 lsan_dispatch_call_block_and_release);
128 INTERCEPTOR(void, dispatch_group_async_f, dispatch_group_t group,
129 dispatch_queue_t dq, void *ctxt, dispatch_function_t func) {
130 lsan_block_context_t *lsan_ctxt = alloc_lsan_context(ctxt, func);
131 REAL(dispatch_group_async_f)
132 (group, dq, (void *)lsan_ctxt, lsan_dispatch_call_block_and_release);
135 #if !defined(MISSING_BLOCKS_SUPPORT)
136 extern "C" {
137 void dispatch_async(dispatch_queue_t dq, void (^work)(void));
138 void dispatch_group_async(dispatch_group_t dg, dispatch_queue_t dq,
139 void (^work)(void));
140 void dispatch_after(dispatch_time_t when, dispatch_queue_t queue,
141 void (^work)(void));
142 void dispatch_source_set_cancel_handler(dispatch_source_t ds,
143 void (^work)(void));
144 void dispatch_source_set_event_handler(dispatch_source_t ds,
145 void (^work)(void));
148 #define GET_LSAN_BLOCK(work) \
149 void (^lsan_block)(void); \
150 int parent_tid = GetCurrentThread(); \
151 lsan_block = ^(void) { \
152 lsan_register_worker_thread(parent_tid); \
153 work(); \
156 INTERCEPTOR(void, dispatch_async, dispatch_queue_t dq, void (^work)(void)) {
157 GET_LSAN_BLOCK(work);
158 REAL(dispatch_async)(dq, lsan_block);
161 INTERCEPTOR(void, dispatch_group_async, dispatch_group_t dg,
162 dispatch_queue_t dq, void (^work)(void)) {
163 GET_LSAN_BLOCK(work);
164 REAL(dispatch_group_async)(dg, dq, lsan_block);
167 INTERCEPTOR(void, dispatch_after, dispatch_time_t when, dispatch_queue_t queue,
168 void (^work)(void)) {
169 GET_LSAN_BLOCK(work);
170 REAL(dispatch_after)(when, queue, lsan_block);
173 INTERCEPTOR(void, dispatch_source_set_cancel_handler, dispatch_source_t ds,
174 void (^work)(void)) {
175 if (!work) {
176 REAL(dispatch_source_set_cancel_handler)(ds, work);
177 return;
179 GET_LSAN_BLOCK(work);
180 REAL(dispatch_source_set_cancel_handler)(ds, lsan_block);
183 INTERCEPTOR(void, dispatch_source_set_event_handler, dispatch_source_t ds,
184 void (^work)(void)) {
185 GET_LSAN_BLOCK(work);
186 REAL(dispatch_source_set_event_handler)(ds, lsan_block);
188 #endif
190 #endif // SANITIZER_MAC