2 #include "thread-utils.h"
3 #include "trace2/tr2_tls.h"
6 * Initialize size of the thread stack for nested regions.
7 * This is used to store nested region start times. Note that
8 * this stack is per-thread and not per-trace-key.
10 #define TR2_REGION_NESTING_INITIAL_SIZE (100)
12 static struct tr2tls_thread_ctx
*tr2tls_thread_main
;
13 static uint64_t tr2tls_us_start_process
;
15 static pthread_mutex_t tr2tls_mutex
;
16 static pthread_key_t tr2tls_key
;
18 static int tr2_next_thread_id
; /* modify under lock */
20 void tr2tls_start_process_clock(void)
22 if (tr2tls_us_start_process
)
26 * Keep the absolute start time of the process (i.e. the main
27 * process) in a fixed variable since other threads need to
28 * access it. This allows them to do that without a lock on
29 * main thread's array data (because of reallocs).
31 tr2tls_us_start_process
= getnanotime() / 1000;
34 struct tr2tls_thread_ctx
*tr2tls_create_self(const char *thread_name
,
35 uint64_t us_thread_start
)
37 struct tr2tls_thread_ctx
*ctx
= xcalloc(1, sizeof(*ctx
));
40 * Implicitly "tr2tls_push_self()" to capture the thread's start
41 * time in array_us_start[0]. For the main thread this gives us the
42 * application run time.
44 ctx
->alloc
= TR2_REGION_NESTING_INITIAL_SIZE
;
45 ctx
->array_us_start
= (uint64_t *)xcalloc(ctx
->alloc
, sizeof(uint64_t));
46 ctx
->array_us_start
[ctx
->nr_open_regions
++] = us_thread_start
;
48 ctx
->thread_id
= tr2tls_locked_increment(&tr2_next_thread_id
);
50 strbuf_init(&ctx
->thread_name
, 0);
52 strbuf_addf(&ctx
->thread_name
, "th%02d:", ctx
->thread_id
);
53 strbuf_addstr(&ctx
->thread_name
, thread_name
);
54 if (ctx
->thread_name
.len
> TR2_MAX_THREAD_NAME
)
55 strbuf_setlen(&ctx
->thread_name
, TR2_MAX_THREAD_NAME
);
57 pthread_setspecific(tr2tls_key
, ctx
);
62 struct tr2tls_thread_ctx
*tr2tls_get_self(void)
64 struct tr2tls_thread_ctx
*ctx
;
67 return tr2tls_thread_main
;
69 ctx
= pthread_getspecific(tr2tls_key
);
72 * If the thread-proc did not call trace2_thread_start(), we won't
73 * have any TLS data associated with the current thread. Fix it
74 * here and silently continue.
77 ctx
= tr2tls_create_self("unknown", getnanotime() / 1000);
82 int tr2tls_is_main_thread(void)
87 return pthread_getspecific(tr2tls_key
) == tr2tls_thread_main
;
90 void tr2tls_unset_self(void)
92 struct tr2tls_thread_ctx
*ctx
;
94 ctx
= tr2tls_get_self();
96 pthread_setspecific(tr2tls_key
, NULL
);
98 free(ctx
->array_us_start
);
102 void tr2tls_push_self(uint64_t us_now
)
104 struct tr2tls_thread_ctx
*ctx
= tr2tls_get_self();
106 ALLOC_GROW(ctx
->array_us_start
, ctx
->nr_open_regions
+ 1, ctx
->alloc
);
107 ctx
->array_us_start
[ctx
->nr_open_regions
++] = us_now
;
110 void tr2tls_pop_self(void)
112 struct tr2tls_thread_ctx
*ctx
= tr2tls_get_self();
114 if (!ctx
->nr_open_regions
)
115 BUG("no open regions in thread '%s'", ctx
->thread_name
.buf
);
117 ctx
->nr_open_regions
--;
120 void tr2tls_pop_unwind_self(void)
122 struct tr2tls_thread_ctx
*ctx
= tr2tls_get_self();
124 while (ctx
->nr_open_regions
> 1)
128 uint64_t tr2tls_region_elasped_self(uint64_t us
)
130 struct tr2tls_thread_ctx
*ctx
;
133 ctx
= tr2tls_get_self();
134 if (!ctx
->nr_open_regions
)
137 us_start
= ctx
->array_us_start
[ctx
->nr_open_regions
- 1];
139 return us
- us_start
;
142 uint64_t tr2tls_absolute_elapsed(uint64_t us
)
144 if (!tr2tls_thread_main
)
147 return us
- tr2tls_us_start_process
;
150 void tr2tls_init(void)
152 tr2tls_start_process_clock();
154 pthread_key_create(&tr2tls_key
, NULL
);
155 init_recursive_mutex(&tr2tls_mutex
);
158 tr2tls_create_self("main", tr2tls_us_start_process
);
161 void tr2tls_release(void)
164 tr2tls_thread_main
= NULL
;
166 pthread_mutex_destroy(&tr2tls_mutex
);
167 pthread_key_delete(tr2tls_key
);
170 int tr2tls_locked_increment(int *p
)
174 pthread_mutex_lock(&tr2tls_mutex
);
176 *p
= current_value
+ 1;
177 pthread_mutex_unlock(&tr2tls_mutex
);
179 return current_value
;