blob: f3d667f19f516436a1a2de102acc21c408e3ca2f [file] [log] [blame]
Jim Cownie5e8470a2013-09-27 10:38:44 +00001/*
Jonathan Peytonde4749b2016-12-14 23:01:24 +00002 * z_Windows_NT_util.cpp -- platform specific routines.
Jim Cownie5e8470a2013-09-27 10:38:44 +00003 */
4
Jim Cownie5e8470a2013-09-27 10:38:44 +00005//===----------------------------------------------------------------------===//
6//
7// The LLVM Compiler Infrastructure
8//
9// This file is dual licensed under the MIT and the University of Illinois Open
10// Source Licenses. See LICENSE.txt for details.
11//
12//===----------------------------------------------------------------------===//
13
Jim Cownie5e8470a2013-09-27 10:38:44 +000014#include "kmp.h"
Jonathan Peyton30419822017-05-12 18:01:32 +000015#include "kmp_affinity.h"
Jim Cownie5e8470a2013-09-27 10:38:44 +000016#include "kmp_i18n.h"
17#include "kmp_io.h"
Jonathan Peyton30419822017-05-12 18:01:32 +000018#include "kmp_itt.h"
Jim Cownie4cc4bb42014-10-07 16:25:50 +000019#include "kmp_wait_release.h"
Jim Cownie5e8470a2013-09-27 10:38:44 +000020
Jim Cownie4cc4bb42014-10-07 16:25:50 +000021/* This code is related to NtQuerySystemInformation() function. This function
22 is used in the Load balance algorithm for OMP_DYNAMIC=true to find the
Jim Cownie5e8470a2013-09-27 10:38:44 +000023 number of running threads in the system. */
24
Jonathan Peyton30419822017-05-12 18:01:32 +000025#include <ntsecapi.h> // UNICODE_STRING
Jim Cownie5e8470a2013-09-27 10:38:44 +000026#include <ntstatus.h>
Jim Cownie5e8470a2013-09-27 10:38:44 +000027
28enum SYSTEM_INFORMATION_CLASS {
Jonathan Peyton30419822017-05-12 18:01:32 +000029 SystemProcessInformation = 5
Jim Cownie5e8470a2013-09-27 10:38:44 +000030}; // SYSTEM_INFORMATION_CLASS
31
32struct CLIENT_ID {
Jonathan Peyton30419822017-05-12 18:01:32 +000033 HANDLE UniqueProcess;
34 HANDLE UniqueThread;
Jim Cownie5e8470a2013-09-27 10:38:44 +000035}; // struct CLIENT_ID
36
37enum THREAD_STATE {
Jonathan Peyton30419822017-05-12 18:01:32 +000038 StateInitialized,
39 StateReady,
40 StateRunning,
41 StateStandby,
42 StateTerminated,
43 StateWait,
44 StateTransition,
45 StateUnknown
Jim Cownie5e8470a2013-09-27 10:38:44 +000046}; // enum THREAD_STATE
47
48struct VM_COUNTERS {
Jonathan Peyton30419822017-05-12 18:01:32 +000049 SIZE_T PeakVirtualSize;
50 SIZE_T VirtualSize;
51 ULONG PageFaultCount;
52 SIZE_T PeakWorkingSetSize;
53 SIZE_T WorkingSetSize;
54 SIZE_T QuotaPeakPagedPoolUsage;
55 SIZE_T QuotaPagedPoolUsage;
56 SIZE_T QuotaPeakNonPagedPoolUsage;
57 SIZE_T QuotaNonPagedPoolUsage;
58 SIZE_T PagefileUsage;
59 SIZE_T PeakPagefileUsage;
60 SIZE_T PrivatePageCount;
Jim Cownie5e8470a2013-09-27 10:38:44 +000061}; // struct VM_COUNTERS
62
63struct SYSTEM_THREAD {
Jonathan Peyton30419822017-05-12 18:01:32 +000064 LARGE_INTEGER KernelTime;
65 LARGE_INTEGER UserTime;
66 LARGE_INTEGER CreateTime;
67 ULONG WaitTime;
68 LPVOID StartAddress;
69 CLIENT_ID ClientId;
70 DWORD Priority;
71 LONG BasePriority;
72 ULONG ContextSwitchCount;
73 THREAD_STATE State;
74 ULONG WaitReason;
Jim Cownie5e8470a2013-09-27 10:38:44 +000075}; // SYSTEM_THREAD
76
Jonathan Peyton30419822017-05-12 18:01:32 +000077KMP_BUILD_ASSERT(offsetof(SYSTEM_THREAD, KernelTime) == 0);
Jim Cownie5e8470a2013-09-27 10:38:44 +000078#if KMP_ARCH_X86
Jonathan Peyton30419822017-05-12 18:01:32 +000079KMP_BUILD_ASSERT(offsetof(SYSTEM_THREAD, StartAddress) == 28);
80KMP_BUILD_ASSERT(offsetof(SYSTEM_THREAD, State) == 52);
Jim Cownie5e8470a2013-09-27 10:38:44 +000081#else
Jonathan Peyton30419822017-05-12 18:01:32 +000082KMP_BUILD_ASSERT(offsetof(SYSTEM_THREAD, StartAddress) == 32);
83KMP_BUILD_ASSERT(offsetof(SYSTEM_THREAD, State) == 68);
Jim Cownie5e8470a2013-09-27 10:38:44 +000084#endif
85
86struct SYSTEM_PROCESS_INFORMATION {
Jonathan Peyton30419822017-05-12 18:01:32 +000087 ULONG NextEntryOffset;
88 ULONG NumberOfThreads;
89 LARGE_INTEGER Reserved[3];
90 LARGE_INTEGER CreateTime;
91 LARGE_INTEGER UserTime;
92 LARGE_INTEGER KernelTime;
93 UNICODE_STRING ImageName;
94 DWORD BasePriority;
95 HANDLE ProcessId;
96 HANDLE ParentProcessId;
97 ULONG HandleCount;
98 ULONG Reserved2[2];
99 VM_COUNTERS VMCounters;
100 IO_COUNTERS IOCounters;
101 SYSTEM_THREAD Threads[1];
Jim Cownie5e8470a2013-09-27 10:38:44 +0000102}; // SYSTEM_PROCESS_INFORMATION
Jonathan Peyton30419822017-05-12 18:01:32 +0000103typedef SYSTEM_PROCESS_INFORMATION *PSYSTEM_PROCESS_INFORMATION;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000104
Jonathan Peyton30419822017-05-12 18:01:32 +0000105KMP_BUILD_ASSERT(offsetof(SYSTEM_PROCESS_INFORMATION, NextEntryOffset) == 0);
106KMP_BUILD_ASSERT(offsetof(SYSTEM_PROCESS_INFORMATION, CreateTime) == 32);
107KMP_BUILD_ASSERT(offsetof(SYSTEM_PROCESS_INFORMATION, ImageName) == 56);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000108#if KMP_ARCH_X86
Jonathan Peyton30419822017-05-12 18:01:32 +0000109KMP_BUILD_ASSERT(offsetof(SYSTEM_PROCESS_INFORMATION, ProcessId) == 68);
110KMP_BUILD_ASSERT(offsetof(SYSTEM_PROCESS_INFORMATION, HandleCount) == 76);
111KMP_BUILD_ASSERT(offsetof(SYSTEM_PROCESS_INFORMATION, VMCounters) == 88);
112KMP_BUILD_ASSERT(offsetof(SYSTEM_PROCESS_INFORMATION, IOCounters) == 136);
113KMP_BUILD_ASSERT(offsetof(SYSTEM_PROCESS_INFORMATION, Threads) == 184);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000114#else
Jonathan Peyton30419822017-05-12 18:01:32 +0000115KMP_BUILD_ASSERT(offsetof(SYSTEM_PROCESS_INFORMATION, ProcessId) == 80);
116KMP_BUILD_ASSERT(offsetof(SYSTEM_PROCESS_INFORMATION, HandleCount) == 96);
117KMP_BUILD_ASSERT(offsetof(SYSTEM_PROCESS_INFORMATION, VMCounters) == 112);
118KMP_BUILD_ASSERT(offsetof(SYSTEM_PROCESS_INFORMATION, IOCounters) == 208);
119KMP_BUILD_ASSERT(offsetof(SYSTEM_PROCESS_INFORMATION, Threads) == 256);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000120#endif
121
Jonathan Peyton30419822017-05-12 18:01:32 +0000122typedef NTSTATUS(NTAPI *NtQuerySystemInformation_t)(SYSTEM_INFORMATION_CLASS,
123 PVOID, ULONG, PULONG);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000124NtQuerySystemInformation_t NtQuerySystemInformation = NULL;
125
126HMODULE ntdll = NULL;
127
128/* End of NtQuerySystemInformation()-related code */
129
Jim Cownie5e8470a2013-09-27 10:38:44 +0000130static HMODULE kernel32 = NULL;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000131
Jim Cownie5e8470a2013-09-27 10:38:44 +0000132#if KMP_HANDLE_SIGNALS
Jonathan Peyton30419822017-05-12 18:01:32 +0000133typedef void (*sig_func_t)(int);
134static sig_func_t __kmp_sighldrs[NSIG];
135static int __kmp_siginstalled[NSIG];
Jim Cownie5e8470a2013-09-27 10:38:44 +0000136#endif
137
Jonathan Peytonb66d1aa2016-09-27 17:11:17 +0000138#if KMP_USE_MONITOR
Jonathan Peyton30419822017-05-12 18:01:32 +0000139static HANDLE __kmp_monitor_ev;
Jonathan Peytonb66d1aa2016-09-27 17:11:17 +0000140#endif
Jim Cownie5e8470a2013-09-27 10:38:44 +0000141static kmp_int64 __kmp_win32_time;
142double __kmp_win32_tick;
143
144int __kmp_init_runtime = FALSE;
145CRITICAL_SECTION __kmp_win32_section;
146
Jonathan Peyton30419822017-05-12 18:01:32 +0000147void __kmp_win32_mutex_init(kmp_win32_mutex_t *mx) {
148 InitializeCriticalSection(&mx->cs);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000149#if USE_ITT_BUILD
Jonathan Peyton30419822017-05-12 18:01:32 +0000150 __kmp_itt_system_object_created(&mx->cs, "Critical Section");
Jim Cownie5e8470a2013-09-27 10:38:44 +0000151#endif /* USE_ITT_BUILD */
152}
153
Jonathan Peyton30419822017-05-12 18:01:32 +0000154void __kmp_win32_mutex_destroy(kmp_win32_mutex_t *mx) {
155 DeleteCriticalSection(&mx->cs);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000156}
157
Jonathan Peyton30419822017-05-12 18:01:32 +0000158void __kmp_win32_mutex_lock(kmp_win32_mutex_t *mx) {
159 EnterCriticalSection(&mx->cs);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000160}
161
Jonathan Peyton30419822017-05-12 18:01:32 +0000162void __kmp_win32_mutex_unlock(kmp_win32_mutex_t *mx) {
163 LeaveCriticalSection(&mx->cs);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000164}
165
Jonathan Peyton30419822017-05-12 18:01:32 +0000166void __kmp_win32_cond_init(kmp_win32_cond_t *cv) {
167 cv->waiters_count_ = 0;
168 cv->wait_generation_count_ = 0;
169 cv->release_count_ = 0;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000170
Jonathan Peyton30419822017-05-12 18:01:32 +0000171 /* Initialize the critical section */
172 __kmp_win32_mutex_init(&cv->waiters_count_lock_);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000173
Jonathan Peyton30419822017-05-12 18:01:32 +0000174 /* Create a manual-reset event. */
175 cv->event_ = CreateEvent(NULL, // no security
176 TRUE, // manual-reset
177 FALSE, // non-signaled initially
178 NULL); // unnamed
Jim Cownie5e8470a2013-09-27 10:38:44 +0000179#if USE_ITT_BUILD
Jonathan Peyton30419822017-05-12 18:01:32 +0000180 __kmp_itt_system_object_created(cv->event_, "Event");
Jim Cownie5e8470a2013-09-27 10:38:44 +0000181#endif /* USE_ITT_BUILD */
182}
183
Jonathan Peyton30419822017-05-12 18:01:32 +0000184void __kmp_win32_cond_destroy(kmp_win32_cond_t *cv) {
185 __kmp_win32_mutex_destroy(&cv->waiters_count_lock_);
186 __kmp_free_handle(cv->event_);
187 memset(cv, '\0', sizeof(*cv));
Jim Cownie5e8470a2013-09-27 10:38:44 +0000188}
189
190/* TODO associate cv with a team instead of a thread so as to optimize
Jonathan Peyton30419822017-05-12 18:01:32 +0000191 the case where we wake up a whole team */
Jim Cownie5e8470a2013-09-27 10:38:44 +0000192
Jonathan Peyton30419822017-05-12 18:01:32 +0000193void __kmp_win32_cond_wait(kmp_win32_cond_t *cv, kmp_win32_mutex_t *mx,
194 kmp_info_t *th, int need_decrease_load) {
195 int my_generation;
196 int last_waiter;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000197
Jonathan Peyton30419822017-05-12 18:01:32 +0000198 /* Avoid race conditions */
199 __kmp_win32_mutex_lock(&cv->waiters_count_lock_);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000200
Jonathan Peyton30419822017-05-12 18:01:32 +0000201 /* Increment count of waiters */
202 cv->waiters_count_++;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000203
Jonathan Peyton30419822017-05-12 18:01:32 +0000204 /* Store current generation in our activation record. */
205 my_generation = cv->wait_generation_count_;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000206
Jonathan Peyton30419822017-05-12 18:01:32 +0000207 __kmp_win32_mutex_unlock(&cv->waiters_count_lock_);
208 __kmp_win32_mutex_unlock(mx);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000209
Jonathan Peyton30419822017-05-12 18:01:32 +0000210 for (;;) {
211 int wait_done;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000212
Jonathan Peyton30419822017-05-12 18:01:32 +0000213 /* Wait until the event is signaled */
214 WaitForSingleObject(cv->event_, INFINITE);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000215
Jonathan Peyton30419822017-05-12 18:01:32 +0000216 __kmp_win32_mutex_lock(&cv->waiters_count_lock_);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000217
Jonathan Peyton30419822017-05-12 18:01:32 +0000218 /* Exit the loop when the <cv->event_> is signaled and there are still
219 waiting threads from this <wait_generation> that haven't been released
220 from this wait yet. */
221 wait_done = (cv->release_count_ > 0) &&
222 (cv->wait_generation_count_ != my_generation);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000223
Jonathan Peyton30419822017-05-12 18:01:32 +0000224 __kmp_win32_mutex_unlock(&cv->waiters_count_lock_);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000225
Jonathan Peyton30419822017-05-12 18:01:32 +0000226 /* there used to be a semicolon after the if statement, it looked like a
227 bug, so i removed it */
228 if (wait_done)
229 break;
230 }
Jim Cownie5e8470a2013-09-27 10:38:44 +0000231
Jonathan Peyton30419822017-05-12 18:01:32 +0000232 __kmp_win32_mutex_lock(mx);
233 __kmp_win32_mutex_lock(&cv->waiters_count_lock_);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000234
Jonathan Peyton30419822017-05-12 18:01:32 +0000235 cv->waiters_count_--;
236 cv->release_count_--;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000237
Jonathan Peyton30419822017-05-12 18:01:32 +0000238 last_waiter = (cv->release_count_ == 0);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000239
Jonathan Peyton30419822017-05-12 18:01:32 +0000240 __kmp_win32_mutex_unlock(&cv->waiters_count_lock_);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000241
Jonathan Peyton30419822017-05-12 18:01:32 +0000242 if (last_waiter) {
243 /* We're the last waiter to be notified, so reset the manual event. */
244 ResetEvent(cv->event_);
245 }
Jim Cownie5e8470a2013-09-27 10:38:44 +0000246}
247
Jonathan Peyton30419822017-05-12 18:01:32 +0000248void __kmp_win32_cond_broadcast(kmp_win32_cond_t *cv) {
249 __kmp_win32_mutex_lock(&cv->waiters_count_lock_);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000250
Jonathan Peyton30419822017-05-12 18:01:32 +0000251 if (cv->waiters_count_ > 0) {
252 SetEvent(cv->event_);
253 /* Release all the threads in this generation. */
Jim Cownie5e8470a2013-09-27 10:38:44 +0000254
Jonathan Peyton30419822017-05-12 18:01:32 +0000255 cv->release_count_ = cv->waiters_count_;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000256
Jonathan Peyton30419822017-05-12 18:01:32 +0000257 /* Start a new generation. */
258 cv->wait_generation_count_++;
259 }
Jim Cownie5e8470a2013-09-27 10:38:44 +0000260
Jonathan Peyton30419822017-05-12 18:01:32 +0000261 __kmp_win32_mutex_unlock(&cv->waiters_count_lock_);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000262}
263
Jonathan Peyton30419822017-05-12 18:01:32 +0000264void __kmp_win32_cond_signal(kmp_win32_cond_t *cv) {
265 __kmp_win32_cond_broadcast(cv);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000266}
267
Jonathan Peyton30419822017-05-12 18:01:32 +0000268void __kmp_enable(int new_state) {
269 if (__kmp_init_runtime)
270 LeaveCriticalSection(&__kmp_win32_section);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000271}
272
Jonathan Peyton30419822017-05-12 18:01:32 +0000273void __kmp_disable(int *old_state) {
274 *old_state = 0;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000275
Jonathan Peyton30419822017-05-12 18:01:32 +0000276 if (__kmp_init_runtime)
277 EnterCriticalSection(&__kmp_win32_section);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000278}
279
Jonathan Peyton30419822017-05-12 18:01:32 +0000280void __kmp_suspend_initialize(void) { /* do nothing */
Jim Cownie5e8470a2013-09-27 10:38:44 +0000281}
282
Jonathan Peyton30419822017-05-12 18:01:32 +0000283static void __kmp_suspend_initialize_thread(kmp_info_t *th) {
284 if (!TCR_4(th->th.th_suspend_init)) {
285 /* this means we haven't initialized the suspension pthread objects for this
286 thread in this instance of the process */
287 __kmp_win32_cond_init(&th->th.th_suspend_cv);
288 __kmp_win32_mutex_init(&th->th.th_suspend_mx);
289 TCW_4(th->th.th_suspend_init, TRUE);
290 }
Jim Cownie5e8470a2013-09-27 10:38:44 +0000291}
292
Jonathan Peyton30419822017-05-12 18:01:32 +0000293void __kmp_suspend_uninitialize_thread(kmp_info_t *th) {
294 if (TCR_4(th->th.th_suspend_init)) {
295 /* this means we have initialize the suspension pthread objects for this
296 thread in this instance of the process */
297 __kmp_win32_cond_destroy(&th->th.th_suspend_cv);
298 __kmp_win32_mutex_destroy(&th->th.th_suspend_mx);
299 TCW_4(th->th.th_suspend_init, FALSE);
300 }
Jim Cownie5e8470a2013-09-27 10:38:44 +0000301}
302
Jim Cownie4cc4bb42014-10-07 16:25:50 +0000303/* This routine puts the calling thread to sleep after setting the
Jonathan Peyton30419822017-05-12 18:01:32 +0000304 sleep bit for the indicated flag variable to true. */
Jim Cownie4cc4bb42014-10-07 16:25:50 +0000305template <class C>
Jonathan Peyton30419822017-05-12 18:01:32 +0000306static inline void __kmp_suspend_template(int th_gtid, C *flag) {
307 kmp_info_t *th = __kmp_threads[th_gtid];
308 int status;
309 typename C::flag_t old_spin;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000310
Jonathan Peyton30419822017-05-12 18:01:32 +0000311 KF_TRACE(30, ("__kmp_suspend_template: T#%d enter for flag's loc(%p)\n",
312 th_gtid, flag->get()));
Jim Cownie5e8470a2013-09-27 10:38:44 +0000313
Jonathan Peyton30419822017-05-12 18:01:32 +0000314 __kmp_suspend_initialize_thread(th);
315 __kmp_win32_mutex_lock(&th->th.th_suspend_mx);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000316
Jonathan Peyton30419822017-05-12 18:01:32 +0000317 KF_TRACE(10, ("__kmp_suspend_template: T#%d setting sleep bit for flag's"
318 " loc(%p)\n",
319 th_gtid, flag->get()));
Jim Cownie5e8470a2013-09-27 10:38:44 +0000320
Jonathan Peyton30419822017-05-12 18:01:32 +0000321 /* TODO: shouldn't this use release semantics to ensure that
322 __kmp_suspend_initialize_thread gets called first? */
323 old_spin = flag->set_sleeping();
Jim Cownie5e8470a2013-09-27 10:38:44 +0000324
Jonathan Peyton30419822017-05-12 18:01:32 +0000325 KF_TRACE(5, ("__kmp_suspend_template: T#%d set sleep bit for flag's"
326 " loc(%p)==%d\n",
327 th_gtid, flag->get(), *(flag->get())));
Jim Cownie5e8470a2013-09-27 10:38:44 +0000328
Jonathan Peyton30419822017-05-12 18:01:32 +0000329 if (flag->done_check_val(old_spin)) {
330 old_spin = flag->unset_sleeping();
331 KF_TRACE(5, ("__kmp_suspend_template: T#%d false alarm, reset sleep bit "
332 "for flag's loc(%p)\n",
333 th_gtid, flag->get()));
334 } else {
Jim Cownie5e8470a2013-09-27 10:38:44 +0000335#ifdef DEBUG_SUSPEND
Jonathan Peyton30419822017-05-12 18:01:32 +0000336 __kmp_suspend_count++;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000337#endif
Jonathan Peyton30419822017-05-12 18:01:32 +0000338 /* Encapsulate in a loop as the documentation states that this may "with
339 low probability" return when the condition variable has not been signaled
340 or broadcast */
341 int deactivated = FALSE;
342 TCW_PTR(th->th.th_sleep_loc, (void *)flag);
343 while (flag->is_sleeping()) {
344 KF_TRACE(15, ("__kmp_suspend_template: T#%d about to perform "
345 "kmp_win32_cond_wait()\n",
346 th_gtid));
347 // Mark the thread as no longer active (only in the first iteration of the
348 // loop).
349 if (!deactivated) {
350 th->th.th_active = FALSE;
351 if (th->th.th_active_in_pool) {
352 th->th.th_active_in_pool = FALSE;
Jonathan Peyton37e2ef52018-07-09 17:36:22 +0000353 KMP_ATOMIC_DEC(&__kmp_thread_pool_active_nth);
Jonathan Peyton30419822017-05-12 18:01:32 +0000354 KMP_DEBUG_ASSERT(TCR_4(__kmp_thread_pool_active_nth) >= 0);
355 }
356 deactivated = TRUE;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000357
Jonathan Peyton30419822017-05-12 18:01:32 +0000358 __kmp_win32_cond_wait(&th->th.th_suspend_cv, &th->th.th_suspend_mx, 0,
359 0);
360 } else {
361 __kmp_win32_cond_wait(&th->th.th_suspend_cv, &th->th.th_suspend_mx, 0,
362 0);
363 }
Jim Cownie5e8470a2013-09-27 10:38:44 +0000364
365#ifdef KMP_DEBUG
Jonathan Peyton30419822017-05-12 18:01:32 +0000366 if (flag->is_sleeping()) {
367 KF_TRACE(100,
368 ("__kmp_suspend_template: T#%d spurious wakeup\n", th_gtid));
369 }
Jim Cownie5e8470a2013-09-27 10:38:44 +0000370#endif /* KMP_DEBUG */
371
Jonathan Peyton30419822017-05-12 18:01:32 +0000372 } // while
Jim Cownie5e8470a2013-09-27 10:38:44 +0000373
Jonathan Peyton30419822017-05-12 18:01:32 +0000374 // Mark the thread as active again (if it was previous marked as inactive)
375 if (deactivated) {
376 th->th.th_active = TRUE;
377 if (TCR_4(th->th.th_in_pool)) {
Jonathan Peyton37e2ef52018-07-09 17:36:22 +0000378 KMP_ATOMIC_INC(&__kmp_thread_pool_active_nth);
Jonathan Peyton30419822017-05-12 18:01:32 +0000379 th->th.th_active_in_pool = TRUE;
380 }
Jim Cownie5e8470a2013-09-27 10:38:44 +0000381 }
Jonathan Peyton30419822017-05-12 18:01:32 +0000382 }
Jim Cownie5e8470a2013-09-27 10:38:44 +0000383
Jonathan Peyton30419822017-05-12 18:01:32 +0000384 __kmp_win32_mutex_unlock(&th->th.th_suspend_mx);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000385
Jonathan Peyton30419822017-05-12 18:01:32 +0000386 KF_TRACE(30, ("__kmp_suspend_template: T#%d exit\n", th_gtid));
Jim Cownie5e8470a2013-09-27 10:38:44 +0000387}
388
Jim Cownie4cc4bb42014-10-07 16:25:50 +0000389void __kmp_suspend_32(int th_gtid, kmp_flag_32 *flag) {
Jonathan Peyton30419822017-05-12 18:01:32 +0000390 __kmp_suspend_template(th_gtid, flag);
Jim Cownie4cc4bb42014-10-07 16:25:50 +0000391}
392void __kmp_suspend_64(int th_gtid, kmp_flag_64 *flag) {
Jonathan Peyton30419822017-05-12 18:01:32 +0000393 __kmp_suspend_template(th_gtid, flag);
Jim Cownie4cc4bb42014-10-07 16:25:50 +0000394}
395void __kmp_suspend_oncore(int th_gtid, kmp_flag_oncore *flag) {
Jonathan Peyton30419822017-05-12 18:01:32 +0000396 __kmp_suspend_template(th_gtid, flag);
Jim Cownie4cc4bb42014-10-07 16:25:50 +0000397}
398
Jim Cownie5e8470a2013-09-27 10:38:44 +0000399/* This routine signals the thread specified by target_gtid to wake up
Jonathan Peyton30419822017-05-12 18:01:32 +0000400 after setting the sleep bit indicated by the flag argument to FALSE */
Jim Cownie4cc4bb42014-10-07 16:25:50 +0000401template <class C>
Jonathan Peyton30419822017-05-12 18:01:32 +0000402static inline void __kmp_resume_template(int target_gtid, C *flag) {
403 kmp_info_t *th = __kmp_threads[target_gtid];
404 int status;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000405
406#ifdef KMP_DEBUG
Jonathan Peyton30419822017-05-12 18:01:32 +0000407 int gtid = TCR_4(__kmp_init_gtid) ? __kmp_get_gtid() : -1;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000408#endif
409
Jonathan Peyton30419822017-05-12 18:01:32 +0000410 KF_TRACE(30, ("__kmp_resume_template: T#%d wants to wakeup T#%d enter\n",
411 gtid, target_gtid));
Jim Cownie5e8470a2013-09-27 10:38:44 +0000412
Jonathan Peyton30419822017-05-12 18:01:32 +0000413 __kmp_suspend_initialize_thread(th);
414 __kmp_win32_mutex_lock(&th->th.th_suspend_mx);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000415
Jonathan Peyton30419822017-05-12 18:01:32 +0000416 if (!flag) { // coming from __kmp_null_resume_wrapper
417 flag = (C *)th->th.th_sleep_loc;
418 }
419
420 // First, check if the flag is null or its type has changed. If so, someone
421 // else woke it up.
422 if (!flag || flag->get_type() != flag->get_ptr_type()) { // get_ptr_type
423 // simply shows what
424 // flag was cast to
425 KF_TRACE(5, ("__kmp_resume_template: T#%d exiting, thread T#%d already "
426 "awake: flag's loc(%p)\n",
427 gtid, target_gtid, NULL));
428 __kmp_win32_mutex_unlock(&th->th.th_suspend_mx);
429 return;
430 } else {
431 typename C::flag_t old_spin = flag->unset_sleeping();
432 if (!flag->is_sleeping_val(old_spin)) {
433 KF_TRACE(5, ("__kmp_resume_template: T#%d exiting, thread T#%d already "
434 "awake: flag's loc(%p): %u => %u\n",
435 gtid, target_gtid, flag->get(), old_spin, *(flag->get())));
436 __kmp_win32_mutex_unlock(&th->th.th_suspend_mx);
437 return;
Jim Cownie4cc4bb42014-10-07 16:25:50 +0000438 }
Jonathan Peyton30419822017-05-12 18:01:32 +0000439 }
440 TCW_PTR(th->th.th_sleep_loc, NULL);
441 KF_TRACE(5, ("__kmp_resume_template: T#%d about to wakeup T#%d, reset sleep "
442 "bit for flag's loc(%p)\n",
443 gtid, target_gtid, flag->get()));
Jim Cownie5e8470a2013-09-27 10:38:44 +0000444
Jonathan Peyton30419822017-05-12 18:01:32 +0000445 __kmp_win32_cond_signal(&th->th.th_suspend_cv);
446 __kmp_win32_mutex_unlock(&th->th.th_suspend_mx);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000447
Jonathan Peyton30419822017-05-12 18:01:32 +0000448 KF_TRACE(30, ("__kmp_resume_template: T#%d exiting after signaling wake up"
449 " for T#%d\n",
450 gtid, target_gtid));
Jim Cownie5e8470a2013-09-27 10:38:44 +0000451}
452
Jim Cownie4cc4bb42014-10-07 16:25:50 +0000453void __kmp_resume_32(int target_gtid, kmp_flag_32 *flag) {
Jonathan Peyton30419822017-05-12 18:01:32 +0000454 __kmp_resume_template(target_gtid, flag);
Jim Cownie4cc4bb42014-10-07 16:25:50 +0000455}
456void __kmp_resume_64(int target_gtid, kmp_flag_64 *flag) {
Jonathan Peyton30419822017-05-12 18:01:32 +0000457 __kmp_resume_template(target_gtid, flag);
Jim Cownie4cc4bb42014-10-07 16:25:50 +0000458}
459void __kmp_resume_oncore(int target_gtid, kmp_flag_oncore *flag) {
Jonathan Peyton30419822017-05-12 18:01:32 +0000460 __kmp_resume_template(target_gtid, flag);
Jim Cownie4cc4bb42014-10-07 16:25:50 +0000461}
462
Jonathan Peyton30419822017-05-12 18:01:32 +0000463void __kmp_yield(int cond) {
464 if (cond)
465 Sleep(0);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000466}
467
Jonathan Peyton30419822017-05-12 18:01:32 +0000468void __kmp_gtid_set_specific(int gtid) {
469 if (__kmp_init_gtid) {
470 KA_TRACE(50, ("__kmp_gtid_set_specific: T#%d key:%d\n", gtid,
471 __kmp_gtid_threadprivate_key));
472 if (!TlsSetValue(__kmp_gtid_threadprivate_key, (LPVOID)(gtid + 1)))
473 KMP_FATAL(TLSSetValueFailed);
474 } else {
475 KA_TRACE(50, ("__kmp_gtid_set_specific: runtime shutdown, returning\n"));
476 }
Jim Cownie5e8470a2013-09-27 10:38:44 +0000477}
478
Jonathan Peyton30419822017-05-12 18:01:32 +0000479int __kmp_gtid_get_specific() {
480 int gtid;
481 if (!__kmp_init_gtid) {
482 KA_TRACE(50, ("__kmp_gtid_get_specific: runtime shutdown, returning "
483 "KMP_GTID_SHUTDOWN\n"));
484 return KMP_GTID_SHUTDOWN;
485 }
486 gtid = (int)(kmp_intptr_t)TlsGetValue(__kmp_gtid_threadprivate_key);
487 if (gtid == 0) {
488 gtid = KMP_GTID_DNE;
489 } else {
490 gtid--;
491 }
492 KA_TRACE(50, ("__kmp_gtid_get_specific: key:%d gtid:%d\n",
493 __kmp_gtid_threadprivate_key, gtid));
494 return gtid;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000495}
496
Jonathan Peyton30419822017-05-12 18:01:32 +0000497void __kmp_affinity_bind_thread(int proc) {
498 if (__kmp_num_proc_groups > 1) {
499 // Form the GROUP_AFFINITY struct directly, rather than filling
500 // out a bit vector and calling __kmp_set_system_affinity().
501 GROUP_AFFINITY ga;
502 KMP_DEBUG_ASSERT((proc >= 0) && (proc < (__kmp_num_proc_groups * CHAR_BIT *
503 sizeof(DWORD_PTR))));
504 ga.Group = proc / (CHAR_BIT * sizeof(DWORD_PTR));
505 ga.Mask = (unsigned long long)1 << (proc % (CHAR_BIT * sizeof(DWORD_PTR)));
506 ga.Reserved[0] = ga.Reserved[1] = ga.Reserved[2] = 0;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000507
Jonathan Peyton30419822017-05-12 18:01:32 +0000508 KMP_DEBUG_ASSERT(__kmp_SetThreadGroupAffinity != NULL);
509 if (__kmp_SetThreadGroupAffinity(GetCurrentThread(), &ga, NULL) == 0) {
510 DWORD error = GetLastError();
511 if (__kmp_affinity_verbose) { // AC: continue silently if not verbose
512 kmp_msg_t err_code = KMP_ERR(error);
513 __kmp_msg(kmp_ms_warning, KMP_MSG(CantSetThreadAffMask), err_code,
514 __kmp_msg_null);
515 if (__kmp_generate_warnings == kmp_warnings_off) {
516 __kmp_str_free(&err_code.str);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000517 }
Jonathan Peyton30419822017-05-12 18:01:32 +0000518 }
Jim Cownie5e8470a2013-09-27 10:38:44 +0000519 }
Jonathan Peyton30419822017-05-12 18:01:32 +0000520 } else {
521 kmp_affin_mask_t *mask;
522 KMP_CPU_ALLOC_ON_STACK(mask);
523 KMP_CPU_ZERO(mask);
524 KMP_CPU_SET(proc, mask);
525 __kmp_set_system_affinity(mask, TRUE);
526 KMP_CPU_FREE_FROM_STACK(mask);
527 }
Jim Cownie5e8470a2013-09-27 10:38:44 +0000528}
529
Jonathan Peyton30419822017-05-12 18:01:32 +0000530void __kmp_affinity_determine_capable(const char *env_var) {
531// All versions of Windows* OS (since Win '95) support SetThreadAffinityMask().
Jim Cownie5e8470a2013-09-27 10:38:44 +0000532
Andrey Churbanov7daf9802015-01-27 16:52:57 +0000533#if KMP_GROUP_AFFINITY
Jonathan Peyton30419822017-05-12 18:01:32 +0000534 KMP_AFFINITY_ENABLE(__kmp_num_proc_groups * sizeof(DWORD_PTR));
Jim Cownie5e8470a2013-09-27 10:38:44 +0000535#else
Jonathan Peyton30419822017-05-12 18:01:32 +0000536 KMP_AFFINITY_ENABLE(sizeof(DWORD_PTR));
Jim Cownie5e8470a2013-09-27 10:38:44 +0000537#endif
538
Jonathan Peyton30419822017-05-12 18:01:32 +0000539 KA_TRACE(10, ("__kmp_affinity_determine_capable: "
540 "Windows* OS affinity interface functional (mask size = "
541 "%" KMP_SIZE_T_SPEC ").\n",
542 __kmp_affin_mask_size));
Jim Cownie5e8470a2013-09-27 10:38:44 +0000543}
544
Jonathan Peyton30419822017-05-12 18:01:32 +0000545double __kmp_read_cpu_time(void) {
546 FILETIME CreationTime, ExitTime, KernelTime, UserTime;
547 int status;
548 double cpu_time;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000549
Jonathan Peyton30419822017-05-12 18:01:32 +0000550 cpu_time = 0;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000551
Jonathan Peyton30419822017-05-12 18:01:32 +0000552 status = GetProcessTimes(GetCurrentProcess(), &CreationTime, &ExitTime,
553 &KernelTime, &UserTime);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000554
Jonathan Peyton30419822017-05-12 18:01:32 +0000555 if (status) {
556 double sec = 0;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000557
Jonathan Peyton30419822017-05-12 18:01:32 +0000558 sec += KernelTime.dwHighDateTime;
559 sec += UserTime.dwHighDateTime;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000560
Jonathan Peyton30419822017-05-12 18:01:32 +0000561 /* Shift left by 32 bits */
562 sec *= (double)(1 << 16) * (double)(1 << 16);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000563
Jonathan Peyton30419822017-05-12 18:01:32 +0000564 sec += KernelTime.dwLowDateTime;
565 sec += UserTime.dwLowDateTime;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000566
Jonathan Peyton30419822017-05-12 18:01:32 +0000567 cpu_time += (sec * 100.0) / KMP_NSEC_PER_SEC;
568 }
Jim Cownie5e8470a2013-09-27 10:38:44 +0000569
Jonathan Peyton30419822017-05-12 18:01:32 +0000570 return cpu_time;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000571}
572
Jonathan Peyton30419822017-05-12 18:01:32 +0000573int __kmp_read_system_info(struct kmp_sys_info *info) {
574 info->maxrss = 0; /* the maximum resident set size utilized (in kilobytes) */
575 info->minflt = 0; /* the number of page faults serviced without any I/O */
576 info->majflt = 0; /* the number of page faults serviced that required I/O */
577 info->nswap = 0; // the number of times a process was "swapped" out of memory
578 info->inblock = 0; // the number of times the file system had to perform input
579 info->oublock = 0; // number of times the file system had to perform output
580 info->nvcsw = 0; /* the number of times a context switch was voluntarily */
581 info->nivcsw = 0; /* the number of times a context switch was forced */
Jim Cownie5e8470a2013-09-27 10:38:44 +0000582
Jonathan Peyton30419822017-05-12 18:01:32 +0000583 return 1;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000584}
585
Jonathan Peyton30419822017-05-12 18:01:32 +0000586void __kmp_runtime_initialize(void) {
587 SYSTEM_INFO info;
588 kmp_str_buf_t path;
589 UINT path_size;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000590
Jonathan Peyton30419822017-05-12 18:01:32 +0000591 if (__kmp_init_runtime) {
592 return;
Jonathan Peytonbd3a7632017-09-27 20:36:27 +0000593 }
Jim Cownie5e8470a2013-09-27 10:38:44 +0000594
Jonathan Peyton99016992015-05-26 17:32:53 +0000595#if KMP_DYNAMIC_LIB
Jonathan Peyton30419822017-05-12 18:01:32 +0000596 /* Pin dynamic library for the lifetime of application */
597 {
598 // First, turn off error message boxes
599 UINT err_mode = SetErrorMode(SEM_FAILCRITICALERRORS);
600 HMODULE h;
601 BOOL ret = GetModuleHandleEx(GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS |
602 GET_MODULE_HANDLE_EX_FLAG_PIN,
603 (LPCTSTR)&__kmp_serial_initialize, &h);
604 KMP_DEBUG_ASSERT2(h && ret, "OpenMP RTL cannot find itself loaded");
605 SetErrorMode(err_mode); // Restore error mode
606 KA_TRACE(10, ("__kmp_runtime_initialize: dynamic library pinned\n"));
607 }
Andrey Churbanov9bf53282015-01-29 17:18:20 +0000608#endif
609
Jonathan Peyton30419822017-05-12 18:01:32 +0000610 InitializeCriticalSection(&__kmp_win32_section);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000611#if USE_ITT_BUILD
Jonathan Peyton30419822017-05-12 18:01:32 +0000612 __kmp_itt_system_object_created(&__kmp_win32_section, "Critical Section");
Jim Cownie5e8470a2013-09-27 10:38:44 +0000613#endif /* USE_ITT_BUILD */
Jonathan Peyton30419822017-05-12 18:01:32 +0000614 __kmp_initialize_system_tick();
Jim Cownie5e8470a2013-09-27 10:38:44 +0000615
Jonathan Peyton30419822017-05-12 18:01:32 +0000616#if (KMP_ARCH_X86 || KMP_ARCH_X86_64)
617 if (!__kmp_cpuinfo.initialized) {
618 __kmp_query_cpuid(&__kmp_cpuinfo);
Jonathan Peytonbd3a7632017-09-27 20:36:27 +0000619 }
Jonathan Peyton30419822017-05-12 18:01:32 +0000620#endif /* KMP_ARCH_X86 || KMP_ARCH_X86_64 */
Jim Cownie5e8470a2013-09-27 10:38:44 +0000621
Jonathan Peyton30419822017-05-12 18:01:32 +0000622/* Set up minimum number of threads to switch to TLS gtid */
Jonathan Peyton8b3842f2018-10-05 17:59:39 +0000623#if KMP_OS_WINDOWS && !KMP_DYNAMIC_LIB
Jonathan Peyton30419822017-05-12 18:01:32 +0000624 // Windows* OS, static library.
625 /* New thread may use stack space previously used by another thread,
626 currently terminated. On Windows* OS, in case of static linking, we do not
627 know the moment of thread termination, and our structures (__kmp_threads
628 and __kmp_root arrays) are still keep info about dead threads. This leads
629 to problem in __kmp_get_global_thread_id() function: it wrongly finds gtid
630 (by searching through stack addresses of all known threads) for
631 unregistered foreign tread.
Jim Cownie5e8470a2013-09-27 10:38:44 +0000632
Jonathan Peyton30419822017-05-12 18:01:32 +0000633 Setting __kmp_tls_gtid_min to 0 workarounds this problem:
634 __kmp_get_global_thread_id() does not search through stacks, but get gtid
635 from TLS immediately.
636 --ln
637 */
638 __kmp_tls_gtid_min = 0;
639#else
640 __kmp_tls_gtid_min = KMP_TLS_GTID_MIN;
641#endif
Jim Cownie5e8470a2013-09-27 10:38:44 +0000642
Jonathan Peyton30419822017-05-12 18:01:32 +0000643 /* for the static library */
644 if (!__kmp_gtid_threadprivate_key) {
645 __kmp_gtid_threadprivate_key = TlsAlloc();
646 if (__kmp_gtid_threadprivate_key == TLS_OUT_OF_INDEXES) {
647 KMP_FATAL(TLSOutOfIndexes);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000648 }
Jonathan Peyton30419822017-05-12 18:01:32 +0000649 }
Jim Cownie5e8470a2013-09-27 10:38:44 +0000650
Jonathan Peyton30419822017-05-12 18:01:32 +0000651 // Load ntdll.dll.
652 /* Simple GetModuleHandle( "ntdll.dl" ) is not suitable due to security issue
653 (see http://www.microsoft.com/technet/security/advisory/2269637.mspx). We
654 have to specify full path to the library. */
655 __kmp_str_buf_init(&path);
656 path_size = GetSystemDirectory(path.str, path.size);
657 KMP_DEBUG_ASSERT(path_size > 0);
658 if (path_size >= path.size) {
659 // Buffer is too short. Expand the buffer and try again.
660 __kmp_str_buf_reserve(&path, path_size);
661 path_size = GetSystemDirectory(path.str, path.size);
662 KMP_DEBUG_ASSERT(path_size > 0);
Jonathan Peytonbd3a7632017-09-27 20:36:27 +0000663 }
Jonathan Peyton30419822017-05-12 18:01:32 +0000664 if (path_size > 0 && path_size < path.size) {
665 // Now we have system directory name in the buffer.
666 // Append backslash and name of dll to form full path,
667 path.used = path_size;
668 __kmp_str_buf_print(&path, "\\%s", "ntdll.dll");
Jim Cownie5e8470a2013-09-27 10:38:44 +0000669
Jonathan Peyton30419822017-05-12 18:01:32 +0000670 // Now load ntdll using full path.
671 ntdll = GetModuleHandle(path.str);
672 }
Jim Cownie5e8470a2013-09-27 10:38:44 +0000673
Jonathan Peyton30419822017-05-12 18:01:32 +0000674 KMP_DEBUG_ASSERT(ntdll != NULL);
675 if (ntdll != NULL) {
676 NtQuerySystemInformation = (NtQuerySystemInformation_t)GetProcAddress(
677 ntdll, "NtQuerySystemInformation");
678 }
679 KMP_DEBUG_ASSERT(NtQuerySystemInformation != NULL);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000680
Andrey Churbanov7daf9802015-01-27 16:52:57 +0000681#if KMP_GROUP_AFFINITY
Jonathan Peyton30419822017-05-12 18:01:32 +0000682 // Load kernel32.dll.
683 // Same caveat - must use full system path name.
684 if (path_size > 0 && path_size < path.size) {
685 // Truncate the buffer back to just the system path length,
686 // discarding "\\ntdll.dll", and replacing it with "kernel32.dll".
687 path.used = path_size;
688 __kmp_str_buf_print(&path, "\\%s", "kernel32.dll");
Jim Cownie5e8470a2013-09-27 10:38:44 +0000689
Jonathan Peyton30419822017-05-12 18:01:32 +0000690 // Load kernel32.dll using full path.
691 kernel32 = GetModuleHandle(path.str);
692 KA_TRACE(10, ("__kmp_runtime_initialize: kernel32.dll = %s\n", path.str));
Jim Cownie5e8470a2013-09-27 10:38:44 +0000693
Jonathan Peyton30419822017-05-12 18:01:32 +0000694 // Load the function pointers to kernel32.dll routines
695 // that may or may not exist on this system.
696 if (kernel32 != NULL) {
697 __kmp_GetActiveProcessorCount =
698 (kmp_GetActiveProcessorCount_t)GetProcAddress(
699 kernel32, "GetActiveProcessorCount");
700 __kmp_GetActiveProcessorGroupCount =
701 (kmp_GetActiveProcessorGroupCount_t)GetProcAddress(
702 kernel32, "GetActiveProcessorGroupCount");
703 __kmp_GetThreadGroupAffinity =
704 (kmp_GetThreadGroupAffinity_t)GetProcAddress(
705 kernel32, "GetThreadGroupAffinity");
706 __kmp_SetThreadGroupAffinity =
707 (kmp_SetThreadGroupAffinity_t)GetProcAddress(
708 kernel32, "SetThreadGroupAffinity");
Jim Cownie5e8470a2013-09-27 10:38:44 +0000709
Jonathan Peyton30419822017-05-12 18:01:32 +0000710 KA_TRACE(10, ("__kmp_runtime_initialize: __kmp_GetActiveProcessorCount"
711 " = %p\n",
712 __kmp_GetActiveProcessorCount));
713 KA_TRACE(10, ("__kmp_runtime_initialize: "
714 "__kmp_GetActiveProcessorGroupCount = %p\n",
715 __kmp_GetActiveProcessorGroupCount));
716 KA_TRACE(10, ("__kmp_runtime_initialize:__kmp_GetThreadGroupAffinity"
717 " = %p\n",
718 __kmp_GetThreadGroupAffinity));
719 KA_TRACE(10, ("__kmp_runtime_initialize: __kmp_SetThreadGroupAffinity"
720 " = %p\n",
721 __kmp_SetThreadGroupAffinity));
722 KA_TRACE(10, ("__kmp_runtime_initialize: sizeof(kmp_affin_mask_t) = %d\n",
723 sizeof(kmp_affin_mask_t)));
Andrey Churbanovdf6555b2015-01-27 17:00:03 +0000724
Jonathan Peyton30419822017-05-12 18:01:32 +0000725 // See if group affinity is supported on this system.
726 // If so, calculate the #groups and #procs.
727 //
728 // Group affinity was introduced with Windows* 7 OS and
729 // Windows* Server 2008 R2 OS.
730 if ((__kmp_GetActiveProcessorCount != NULL) &&
731 (__kmp_GetActiveProcessorGroupCount != NULL) &&
732 (__kmp_GetThreadGroupAffinity != NULL) &&
733 (__kmp_SetThreadGroupAffinity != NULL) &&
734 ((__kmp_num_proc_groups = __kmp_GetActiveProcessorGroupCount()) >
735 1)) {
736 // Calculate the total number of active OS procs.
737 int i;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000738
Jonathan Peyton30419822017-05-12 18:01:32 +0000739 KA_TRACE(10, ("__kmp_runtime_initialize: %d processor groups"
740 " detected\n",
741 __kmp_num_proc_groups));
Jim Cownie5e8470a2013-09-27 10:38:44 +0000742
Jonathan Peyton30419822017-05-12 18:01:32 +0000743 __kmp_xproc = 0;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000744
Jonathan Peyton30419822017-05-12 18:01:32 +0000745 for (i = 0; i < __kmp_num_proc_groups; i++) {
746 DWORD size = __kmp_GetActiveProcessorCount(i);
747 __kmp_xproc += size;
748 KA_TRACE(10, ("__kmp_runtime_initialize: proc group %d size = %d\n",
749 i, size));
Jim Cownie5e8470a2013-09-27 10:38:44 +0000750 }
Jonathan Peyton30419822017-05-12 18:01:32 +0000751 } else {
752 KA_TRACE(10, ("__kmp_runtime_initialize: %d processor groups"
753 " detected\n",
754 __kmp_num_proc_groups));
755 }
Jim Cownie5e8470a2013-09-27 10:38:44 +0000756 }
Jonathan Peyton30419822017-05-12 18:01:32 +0000757 }
758 if (__kmp_num_proc_groups <= 1) {
759 GetSystemInfo(&info);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000760 __kmp_xproc = info.dwNumberOfProcessors;
Jonathan Peyton30419822017-05-12 18:01:32 +0000761 }
762#else
763 GetSystemInfo(&info);
764 __kmp_xproc = info.dwNumberOfProcessors;
Andrey Churbanov7daf9802015-01-27 16:52:57 +0000765#endif /* KMP_GROUP_AFFINITY */
Jim Cownie5e8470a2013-09-27 10:38:44 +0000766
Jonathan Peyton30419822017-05-12 18:01:32 +0000767 // If the OS said there were 0 procs, take a guess and use a value of 2.
768 // This is done for Linux* OS, also. Do we need error / warning?
769 if (__kmp_xproc <= 0) {
770 __kmp_xproc = 2;
771 }
Jim Cownie5e8470a2013-09-27 10:38:44 +0000772
Jonathan Peyton30419822017-05-12 18:01:32 +0000773 KA_TRACE(5,
774 ("__kmp_runtime_initialize: total processors = %d\n", __kmp_xproc));
Jim Cownie5e8470a2013-09-27 10:38:44 +0000775
Jonathan Peyton30419822017-05-12 18:01:32 +0000776 __kmp_str_buf_free(&path);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000777
778#if USE_ITT_BUILD
Jonathan Peyton30419822017-05-12 18:01:32 +0000779 __kmp_itt_initialize();
Jim Cownie5e8470a2013-09-27 10:38:44 +0000780#endif /* USE_ITT_BUILD */
781
Jonathan Peyton30419822017-05-12 18:01:32 +0000782 __kmp_init_runtime = TRUE;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000783} // __kmp_runtime_initialize
784
Jonathan Peyton30419822017-05-12 18:01:32 +0000785void __kmp_runtime_destroy(void) {
786 if (!__kmp_init_runtime) {
787 return;
788 }
Jim Cownie5e8470a2013-09-27 10:38:44 +0000789
790#if USE_ITT_BUILD
Jonathan Peyton30419822017-05-12 18:01:32 +0000791 __kmp_itt_destroy();
Jim Cownie5e8470a2013-09-27 10:38:44 +0000792#endif /* USE_ITT_BUILD */
793
Jonathan Peyton30419822017-05-12 18:01:32 +0000794 /* we can't DeleteCriticalsection( & __kmp_win32_section ); */
795 /* due to the KX_TRACE() commands */
796 KA_TRACE(40, ("__kmp_runtime_destroy\n"));
Jim Cownie5e8470a2013-09-27 10:38:44 +0000797
Jonathan Peyton30419822017-05-12 18:01:32 +0000798 if (__kmp_gtid_threadprivate_key) {
799 TlsFree(__kmp_gtid_threadprivate_key);
800 __kmp_gtid_threadprivate_key = 0;
801 }
Jim Cownie5e8470a2013-09-27 10:38:44 +0000802
Jonathan Peyton30419822017-05-12 18:01:32 +0000803 __kmp_affinity_uninitialize();
804 DeleteCriticalSection(&__kmp_win32_section);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000805
Jonathan Peyton30419822017-05-12 18:01:32 +0000806 ntdll = NULL;
807 NtQuerySystemInformation = NULL;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000808
809#if KMP_ARCH_X86_64
Jonathan Peyton30419822017-05-12 18:01:32 +0000810 kernel32 = NULL;
811 __kmp_GetActiveProcessorCount = NULL;
812 __kmp_GetActiveProcessorGroupCount = NULL;
813 __kmp_GetThreadGroupAffinity = NULL;
814 __kmp_SetThreadGroupAffinity = NULL;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000815#endif // KMP_ARCH_X86_64
816
Jonathan Peyton30419822017-05-12 18:01:32 +0000817 __kmp_init_runtime = FALSE;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000818}
819
Jonathan Peyton30419822017-05-12 18:01:32 +0000820void __kmp_terminate_thread(int gtid) {
821 kmp_info_t *th = __kmp_threads[gtid];
Jim Cownie5e8470a2013-09-27 10:38:44 +0000822
Jonathan Peyton30419822017-05-12 18:01:32 +0000823 if (!th)
824 return;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000825
Jonathan Peyton30419822017-05-12 18:01:32 +0000826 KA_TRACE(10, ("__kmp_terminate_thread: kill (%d)\n", gtid));
Jim Cownie5e8470a2013-09-27 10:38:44 +0000827
Jonathan Peyton30419822017-05-12 18:01:32 +0000828 if (TerminateThread(th->th.th_info.ds.ds_thread, (DWORD)-1) == FALSE) {
829 /* It's OK, the thread may have exited already */
830 }
831 __kmp_free_handle(th->th.th_info.ds.ds_thread);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000832}
833
Jonathan Peyton30419822017-05-12 18:01:32 +0000834void __kmp_clear_system_time(void) {
Jim Cownie5e8470a2013-09-27 10:38:44 +0000835 BOOL status;
Jonathan Peyton30419822017-05-12 18:01:32 +0000836 LARGE_INTEGER time;
837 status = QueryPerformanceCounter(&time);
838 __kmp_win32_time = (kmp_int64)time.QuadPart;
839}
Jim Cownie5e8470a2013-09-27 10:38:44 +0000840
Jonathan Peyton30419822017-05-12 18:01:32 +0000841void __kmp_initialize_system_tick(void) {
842 {
843 BOOL status;
844 LARGE_INTEGER freq;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000845
Jonathan Peyton30419822017-05-12 18:01:32 +0000846 status = QueryPerformanceFrequency(&freq);
847 if (!status) {
848 DWORD error = GetLastError();
Jonathan Peyton6a393f72017-09-05 15:43:58 +0000849 __kmp_fatal(KMP_MSG(FunctionError, "QueryPerformanceFrequency()"),
850 KMP_ERR(error), __kmp_msg_null);
Jonathan Peyton30419822017-05-12 18:01:32 +0000851
852 } else {
853 __kmp_win32_tick = ((double)1.0) / (double)freq.QuadPart;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000854 }
Jonathan Peyton30419822017-05-12 18:01:32 +0000855 }
Jim Cownie5e8470a2013-09-27 10:38:44 +0000856}
857
858/* Calculate the elapsed wall clock time for the user */
859
Jonathan Peyton30419822017-05-12 18:01:32 +0000860void __kmp_elapsed(double *t) {
861 BOOL status;
862 LARGE_INTEGER now;
863 status = QueryPerformanceCounter(&now);
864 *t = ((double)now.QuadPart) * __kmp_win32_tick;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000865}
866
867/* Calculate the elapsed wall clock tick for the user */
868
Jonathan Peyton30419822017-05-12 18:01:32 +0000869void __kmp_elapsed_tick(double *t) { *t = __kmp_win32_tick; }
Jim Cownie5e8470a2013-09-27 10:38:44 +0000870
Jonathan Peyton30419822017-05-12 18:01:32 +0000871void __kmp_read_system_time(double *delta) {
872 if (delta != NULL) {
873 BOOL status;
874 LARGE_INTEGER now;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000875
Jonathan Peyton30419822017-05-12 18:01:32 +0000876 status = QueryPerformanceCounter(&now);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000877
Jonathan Peyton30419822017-05-12 18:01:32 +0000878 *delta = ((double)(((kmp_int64)now.QuadPart) - __kmp_win32_time)) *
879 __kmp_win32_tick;
880 }
Jim Cownie5e8470a2013-09-27 10:38:44 +0000881}
882
Jonathan Peytonb66d1aa2016-09-27 17:11:17 +0000883/* Return the current time stamp in nsec */
Jonathan Peyton30419822017-05-12 18:01:32 +0000884kmp_uint64 __kmp_now_nsec() {
885 LARGE_INTEGER now;
886 QueryPerformanceCounter(&now);
887 return 1e9 * __kmp_win32_tick * now.QuadPart;
Jonathan Peytonb66d1aa2016-09-27 17:11:17 +0000888}
889
Andrey Churbanovf700e9e2018-12-10 13:45:00 +0000890extern "C"
Jonathan Peyton30419822017-05-12 18:01:32 +0000891void *__stdcall __kmp_launch_worker(void *arg) {
892 volatile void *stack_data;
893 void *exit_val;
894 void *padding = 0;
895 kmp_info_t *this_thr = (kmp_info_t *)arg;
896 int gtid;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000897
Jonathan Peyton30419822017-05-12 18:01:32 +0000898 gtid = this_thr->th.th_info.ds.ds_gtid;
899 __kmp_gtid_set_specific(gtid);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000900#ifdef KMP_TDATA_GTID
Jonathan Peyton30419822017-05-12 18:01:32 +0000901#error "This define causes problems with LoadLibrary() + declspec(thread) " \
Jim Cownie5e8470a2013-09-27 10:38:44 +0000902 "on Windows* OS. See CQ50564, tests kmp_load_library*.c and this MSDN " \
903 "reference: http://support.microsoft.com/kb/118816"
Jonathan Peyton30419822017-05-12 18:01:32 +0000904//__kmp_gtid = gtid;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000905#endif
906
907#if USE_ITT_BUILD
Jonathan Peyton30419822017-05-12 18:01:32 +0000908 __kmp_itt_thread_name(gtid);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000909#endif /* USE_ITT_BUILD */
910
Jonathan Peyton30419822017-05-12 18:01:32 +0000911 __kmp_affinity_set_init_mask(gtid, FALSE);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000912
913#if KMP_ARCH_X86 || KMP_ARCH_X86_64
Jonathan Peyton30419822017-05-12 18:01:32 +0000914 // Set FP control regs to be a copy of the parallel initialization thread's.
915 __kmp_clear_x87_fpu_status_word();
916 __kmp_load_x87_fpu_control_word(&__kmp_init_x87_fpu_control_word);
917 __kmp_load_mxcsr(&__kmp_init_mxcsr);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000918#endif /* KMP_ARCH_X86 || KMP_ARCH_X86_64 */
919
Jonathan Peyton30419822017-05-12 18:01:32 +0000920 if (__kmp_stkoffset > 0 && gtid > 0) {
921 padding = KMP_ALLOCA(gtid * __kmp_stkoffset);
922 }
Jim Cownie5e8470a2013-09-27 10:38:44 +0000923
Jonathan Peyton30419822017-05-12 18:01:32 +0000924 KMP_FSYNC_RELEASING(&this_thr->th.th_info.ds.ds_alive);
925 this_thr->th.th_info.ds.ds_thread_id = GetCurrentThreadId();
926 TCW_4(this_thr->th.th_info.ds.ds_alive, TRUE);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000927
Jonathan Peyton30419822017-05-12 18:01:32 +0000928 if (TCR_4(__kmp_gtid_mode) <
929 2) { // check stack only if it is used to get gtid
930 TCW_PTR(this_thr->th.th_info.ds.ds_stackbase, &stack_data);
931 KMP_ASSERT(this_thr->th.th_info.ds.ds_stackgrow == FALSE);
932 __kmp_check_stack_overlap(this_thr);
933 }
934 KMP_MB();
935 exit_val = __kmp_launch_thread(this_thr);
936 KMP_FSYNC_RELEASING(&this_thr->th.th_info.ds.ds_alive);
937 TCW_4(this_thr->th.th_info.ds.ds_alive, FALSE);
938 KMP_MB();
939 return exit_val;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000940}
941
Jonathan Peytonb66d1aa2016-09-27 17:11:17 +0000942#if KMP_USE_MONITOR
Jim Cownie5e8470a2013-09-27 10:38:44 +0000943/* The monitor thread controls all of the threads in the complex */
944
Jonathan Peyton30419822017-05-12 18:01:32 +0000945void *__stdcall __kmp_launch_monitor(void *arg) {
946 DWORD wait_status;
947 kmp_thread_t monitor;
948 int status;
949 int interval;
950 kmp_info_t *this_thr = (kmp_info_t *)arg;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000951
Jonathan Peyton30419822017-05-12 18:01:32 +0000952 KMP_DEBUG_ASSERT(__kmp_init_monitor);
953 TCW_4(__kmp_init_monitor, 2); // AC: Signal library that monitor has started
954 // TODO: hide "2" in enum (like {true,false,started})
955 this_thr->th.th_info.ds.ds_thread_id = GetCurrentThreadId();
956 TCW_4(this_thr->th.th_info.ds.ds_alive, TRUE);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000957
Jonathan Peyton30419822017-05-12 18:01:32 +0000958 KMP_MB(); /* Flush all pending memory write invalidates. */
959 KA_TRACE(10, ("__kmp_launch_monitor: launched\n"));
Jim Cownie5e8470a2013-09-27 10:38:44 +0000960
Jonathan Peyton30419822017-05-12 18:01:32 +0000961 monitor = GetCurrentThread();
Jim Cownie5e8470a2013-09-27 10:38:44 +0000962
Jonathan Peyton30419822017-05-12 18:01:32 +0000963 /* set thread priority */
964 status = SetThreadPriority(monitor, THREAD_PRIORITY_HIGHEST);
965 if (!status) {
966 DWORD error = GetLastError();
Jonathan Peyton6a393f72017-09-05 15:43:58 +0000967 __kmp_fatal(KMP_MSG(CantSetThreadPriority), KMP_ERR(error), __kmp_msg_null);
Jonathan Peyton30419822017-05-12 18:01:32 +0000968 }
Jim Cownie5e8470a2013-09-27 10:38:44 +0000969
Jonathan Peyton30419822017-05-12 18:01:32 +0000970 /* register us as monitor */
971 __kmp_gtid_set_specific(KMP_GTID_MONITOR);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000972#ifdef KMP_TDATA_GTID
Jonathan Peyton30419822017-05-12 18:01:32 +0000973#error "This define causes problems with LoadLibrary() + declspec(thread) " \
Jim Cownie5e8470a2013-09-27 10:38:44 +0000974 "on Windows* OS. See CQ50564, tests kmp_load_library*.c and this MSDN " \
975 "reference: http://support.microsoft.com/kb/118816"
Jonathan Peyton30419822017-05-12 18:01:32 +0000976//__kmp_gtid = KMP_GTID_MONITOR;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000977#endif
978
979#if USE_ITT_BUILD
Jonathan Peyton30419822017-05-12 18:01:32 +0000980 __kmp_itt_thread_ignore(); // Instruct Intel(R) Threading Tools to ignore
981// monitor thread.
Jim Cownie5e8470a2013-09-27 10:38:44 +0000982#endif /* USE_ITT_BUILD */
983
Jonathan Peyton30419822017-05-12 18:01:32 +0000984 KMP_MB(); /* Flush all pending memory write invalidates. */
Jim Cownie5e8470a2013-09-27 10:38:44 +0000985
Jonathan Peyton30419822017-05-12 18:01:32 +0000986 interval = (1000 / __kmp_monitor_wakeups); /* in milliseconds */
Jim Cownie5e8470a2013-09-27 10:38:44 +0000987
Jonathan Peyton30419822017-05-12 18:01:32 +0000988 while (!TCR_4(__kmp_global.g.g_done)) {
989 /* This thread monitors the state of the system */
Jim Cownie5e8470a2013-09-27 10:38:44 +0000990
Jonathan Peyton30419822017-05-12 18:01:32 +0000991 KA_TRACE(15, ("__kmp_launch_monitor: update\n"));
Jim Cownie5e8470a2013-09-27 10:38:44 +0000992
Jonathan Peyton30419822017-05-12 18:01:32 +0000993 wait_status = WaitForSingleObject(__kmp_monitor_ev, interval);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000994
Jonathan Peyton30419822017-05-12 18:01:32 +0000995 if (wait_status == WAIT_TIMEOUT) {
996 TCW_4(__kmp_global.g.g_time.dt.t_value,
997 TCR_4(__kmp_global.g.g_time.dt.t_value) + 1);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000998 }
999
Jonathan Peyton30419822017-05-12 18:01:32 +00001000 KMP_MB(); /* Flush all pending memory write invalidates. */
1001 }
Jim Cownie5e8470a2013-09-27 10:38:44 +00001002
Jonathan Peyton30419822017-05-12 18:01:32 +00001003 KA_TRACE(10, ("__kmp_launch_monitor: finished\n"));
1004
1005 status = SetThreadPriority(monitor, THREAD_PRIORITY_NORMAL);
1006 if (!status) {
1007 DWORD error = GetLastError();
Jonathan Peyton6a393f72017-09-05 15:43:58 +00001008 __kmp_fatal(KMP_MSG(CantSetThreadPriority), KMP_ERR(error), __kmp_msg_null);
Jonathan Peyton30419822017-05-12 18:01:32 +00001009 }
1010
1011 if (__kmp_global.g.g_abort != 0) {
1012 /* now we need to terminate the worker threads */
1013 /* the value of t_abort is the signal we caught */
1014 int gtid;
1015
1016 KA_TRACE(10, ("__kmp_launch_monitor: terminate sig=%d\n",
1017 (__kmp_global.g.g_abort)));
1018
1019 /* terminate the OpenMP worker threads */
1020 /* TODO this is not valid for sibling threads!!
1021 * the uber master might not be 0 anymore.. */
1022 for (gtid = 1; gtid < __kmp_threads_capacity; ++gtid)
1023 __kmp_terminate_thread(gtid);
1024
1025 __kmp_cleanup();
1026
1027 Sleep(0);
1028
1029 KA_TRACE(10,
1030 ("__kmp_launch_monitor: raise sig=%d\n", __kmp_global.g.g_abort));
1031
1032 if (__kmp_global.g.g_abort > 0) {
1033 raise(__kmp_global.g.g_abort);
Jim Cownie5e8470a2013-09-27 10:38:44 +00001034 }
Jonathan Peyton30419822017-05-12 18:01:32 +00001035 }
Jim Cownie5e8470a2013-09-27 10:38:44 +00001036
Jonathan Peyton30419822017-05-12 18:01:32 +00001037 TCW_4(this_thr->th.th_info.ds.ds_alive, FALSE);
Jim Cownie5e8470a2013-09-27 10:38:44 +00001038
Jonathan Peyton30419822017-05-12 18:01:32 +00001039 KMP_MB();
1040 return arg;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001041}
Jonathan Peytonb66d1aa2016-09-27 17:11:17 +00001042#endif
Jim Cownie5e8470a2013-09-27 10:38:44 +00001043
Jonathan Peyton30419822017-05-12 18:01:32 +00001044void __kmp_create_worker(int gtid, kmp_info_t *th, size_t stack_size) {
1045 kmp_thread_t handle;
1046 DWORD idThread;
Jim Cownie4cc4bb42014-10-07 16:25:50 +00001047
Jonathan Peyton30419822017-05-12 18:01:32 +00001048 KA_TRACE(10, ("__kmp_create_worker: try to create thread (%d)\n", gtid));
Jim Cownie4cc4bb42014-10-07 16:25:50 +00001049
Jonathan Peyton30419822017-05-12 18:01:32 +00001050 th->th.th_info.ds.ds_gtid = gtid;
Jim Cownie4cc4bb42014-10-07 16:25:50 +00001051
Jonathan Peyton30419822017-05-12 18:01:32 +00001052 if (KMP_UBER_GTID(gtid)) {
1053 int stack_data;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001054
Jonathan Peyton30419822017-05-12 18:01:32 +00001055 /* TODO: GetCurrentThread() returns a pseudo-handle that is unsuitable for
1056 other threads to use. Is it appropriate to just use GetCurrentThread?
1057 When should we close this handle? When unregistering the root? */
1058 {
1059 BOOL rc;
1060 rc = DuplicateHandle(GetCurrentProcess(), GetCurrentThread(),
1061 GetCurrentProcess(), &th->th.th_info.ds.ds_thread, 0,
1062 FALSE, DUPLICATE_SAME_ACCESS);
1063 KMP_ASSERT(rc);
1064 KA_TRACE(10, (" __kmp_create_worker: ROOT Handle duplicated, th = %p, "
1065 "handle = %" KMP_UINTPTR_SPEC "\n",
1066 (LPVOID)th, th->th.th_info.ds.ds_thread));
1067 th->th.th_info.ds.ds_thread_id = GetCurrentThreadId();
Jim Cownie5e8470a2013-09-27 10:38:44 +00001068 }
Jonathan Peyton30419822017-05-12 18:01:32 +00001069 if (TCR_4(__kmp_gtid_mode) < 2) { // check stack only if used to get gtid
1070 /* we will dynamically update the stack range if gtid_mode == 1 */
1071 TCW_PTR(th->th.th_info.ds.ds_stackbase, &stack_data);
1072 TCW_PTR(th->th.th_info.ds.ds_stacksize, 0);
1073 TCW_4(th->th.th_info.ds.ds_stackgrow, TRUE);
1074 __kmp_check_stack_overlap(th);
1075 }
1076 } else {
1077 KMP_MB(); /* Flush all pending memory write invalidates. */
Jim Cownie5e8470a2013-09-27 10:38:44 +00001078
Jonathan Peyton30419822017-05-12 18:01:32 +00001079 /* Set stack size for this thread now. */
1080 KA_TRACE(10,
1081 ("__kmp_create_worker: stack_size = %" KMP_SIZE_T_SPEC " bytes\n",
1082 stack_size));
Jim Cownie4cc4bb42014-10-07 16:25:50 +00001083
Jonathan Peyton30419822017-05-12 18:01:32 +00001084 stack_size += gtid * __kmp_stkoffset;
Jim Cownie4cc4bb42014-10-07 16:25:50 +00001085
Jonathan Peyton30419822017-05-12 18:01:32 +00001086 TCW_PTR(th->th.th_info.ds.ds_stacksize, stack_size);
1087 TCW_4(th->th.th_info.ds.ds_stackgrow, FALSE);
Jim Cownie4cc4bb42014-10-07 16:25:50 +00001088
Jonathan Peyton30419822017-05-12 18:01:32 +00001089 KA_TRACE(10,
1090 ("__kmp_create_worker: (before) stack_size = %" KMP_SIZE_T_SPEC
1091 " bytes, &__kmp_launch_worker = %p, th = %p, &idThread = %p\n",
1092 (SIZE_T)stack_size, (LPTHREAD_START_ROUTINE)&__kmp_launch_worker,
1093 (LPVOID)th, &idThread));
Jim Cownie4cc4bb42014-10-07 16:25:50 +00001094
Jonathan Peyton30419822017-05-12 18:01:32 +00001095 handle = CreateThread(
1096 NULL, (SIZE_T)stack_size, (LPTHREAD_START_ROUTINE)__kmp_launch_worker,
1097 (LPVOID)th, STACK_SIZE_PARAM_IS_A_RESERVATION, &idThread);
Jim Cownie4cc4bb42014-10-07 16:25:50 +00001098
Jonathan Peyton30419822017-05-12 18:01:32 +00001099 KA_TRACE(10,
1100 ("__kmp_create_worker: (after) stack_size = %" KMP_SIZE_T_SPEC
1101 " bytes, &__kmp_launch_worker = %p, th = %p, "
1102 "idThread = %u, handle = %" KMP_UINTPTR_SPEC "\n",
1103 (SIZE_T)stack_size, (LPTHREAD_START_ROUTINE)&__kmp_launch_worker,
1104 (LPVOID)th, idThread, handle));
Jim Cownie4cc4bb42014-10-07 16:25:50 +00001105
Jonathan Peyton30419822017-05-12 18:01:32 +00001106 if (handle == 0) {
1107 DWORD error = GetLastError();
Jonathan Peyton6a393f72017-09-05 15:43:58 +00001108 __kmp_fatal(KMP_MSG(CantCreateThread), KMP_ERR(error), __kmp_msg_null);
Jonathan Peyton30419822017-05-12 18:01:32 +00001109 } else {
1110 th->th.th_info.ds.ds_thread = handle;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001111 }
Jim Cownie4cc4bb42014-10-07 16:25:50 +00001112
Jonathan Peyton30419822017-05-12 18:01:32 +00001113 KMP_MB(); /* Flush all pending memory write invalidates. */
1114 }
1115
1116 KA_TRACE(10, ("__kmp_create_worker: done creating thread (%d)\n", gtid));
Jim Cownie5e8470a2013-09-27 10:38:44 +00001117}
1118
Jonathan Peyton30419822017-05-12 18:01:32 +00001119int __kmp_still_running(kmp_info_t *th) {
1120 return (WAIT_TIMEOUT == WaitForSingleObject(th->th.th_info.ds.ds_thread, 0));
Jim Cownie5e8470a2013-09-27 10:38:44 +00001121}
1122
Jonathan Peytonb66d1aa2016-09-27 17:11:17 +00001123#if KMP_USE_MONITOR
Jonathan Peyton30419822017-05-12 18:01:32 +00001124void __kmp_create_monitor(kmp_info_t *th) {
1125 kmp_thread_t handle;
1126 DWORD idThread;
1127 int ideal, new_ideal;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001128
Jonathan Peyton30419822017-05-12 18:01:32 +00001129 if (__kmp_dflt_blocktime == KMP_MAX_BLOCKTIME) {
1130 // We don't need monitor thread in case of MAX_BLOCKTIME
1131 KA_TRACE(10, ("__kmp_create_monitor: skipping monitor thread because of "
1132 "MAX blocktime\n"));
1133 th->th.th_info.ds.ds_tid = 0; // this makes reap_monitor no-op
1134 th->th.th_info.ds.ds_gtid = 0;
1135 TCW_4(__kmp_init_monitor, 2); // Signal to stop waiting for monitor creation
1136 return;
1137 }
1138 KA_TRACE(10, ("__kmp_create_monitor: try to create monitor\n"));
Jim Cownie5e8470a2013-09-27 10:38:44 +00001139
Jonathan Peyton30419822017-05-12 18:01:32 +00001140 KMP_MB(); /* Flush all pending memory write invalidates. */
Jim Cownie5e8470a2013-09-27 10:38:44 +00001141
Jonathan Peyton30419822017-05-12 18:01:32 +00001142 __kmp_monitor_ev = CreateEvent(NULL, TRUE, FALSE, NULL);
1143 if (__kmp_monitor_ev == NULL) {
1144 DWORD error = GetLastError();
Jonathan Peyton6a393f72017-09-05 15:43:58 +00001145 __kmp_fatal(KMP_MSG(CantCreateEvent), KMP_ERR(error), __kmp_msg_null);
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001146 }
Jim Cownie5e8470a2013-09-27 10:38:44 +00001147#if USE_ITT_BUILD
Jonathan Peyton30419822017-05-12 18:01:32 +00001148 __kmp_itt_system_object_created(__kmp_monitor_ev, "Event");
Jim Cownie5e8470a2013-09-27 10:38:44 +00001149#endif /* USE_ITT_BUILD */
1150
Jonathan Peyton30419822017-05-12 18:01:32 +00001151 th->th.th_info.ds.ds_tid = KMP_GTID_MONITOR;
1152 th->th.th_info.ds.ds_gtid = KMP_GTID_MONITOR;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001153
Jonathan Peyton30419822017-05-12 18:01:32 +00001154 // FIXME - on Windows* OS, if __kmp_monitor_stksize = 0, figure out how
1155 // to automatically expand stacksize based on CreateThread error code.
1156 if (__kmp_monitor_stksize == 0) {
1157 __kmp_monitor_stksize = KMP_DEFAULT_MONITOR_STKSIZE;
1158 }
1159 if (__kmp_monitor_stksize < __kmp_sys_min_stksize) {
1160 __kmp_monitor_stksize = __kmp_sys_min_stksize;
1161 }
Jim Cownie5e8470a2013-09-27 10:38:44 +00001162
Jonathan Peyton30419822017-05-12 18:01:32 +00001163 KA_TRACE(10, ("__kmp_create_monitor: requested stacksize = %d bytes\n",
1164 (int)__kmp_monitor_stksize));
Jim Cownie5e8470a2013-09-27 10:38:44 +00001165
Jonathan Peyton30419822017-05-12 18:01:32 +00001166 TCW_4(__kmp_global.g.g_time.dt.t_value, 0);
Jim Cownie5e8470a2013-09-27 10:38:44 +00001167
Jonathan Peyton30419822017-05-12 18:01:32 +00001168 handle =
1169 CreateThread(NULL, (SIZE_T)__kmp_monitor_stksize,
1170 (LPTHREAD_START_ROUTINE)__kmp_launch_monitor, (LPVOID)th,
1171 STACK_SIZE_PARAM_IS_A_RESERVATION, &idThread);
1172 if (handle == 0) {
1173 DWORD error = GetLastError();
Jonathan Peyton6a393f72017-09-05 15:43:58 +00001174 __kmp_fatal(KMP_MSG(CantCreateThread), KMP_ERR(error), __kmp_msg_null);
Jonathan Peyton30419822017-05-12 18:01:32 +00001175 } else
1176 th->th.th_info.ds.ds_thread = handle;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001177
Jonathan Peyton30419822017-05-12 18:01:32 +00001178 KMP_MB(); /* Flush all pending memory write invalidates. */
Jim Cownie5e8470a2013-09-27 10:38:44 +00001179
Jonathan Peyton30419822017-05-12 18:01:32 +00001180 KA_TRACE(10, ("__kmp_create_monitor: monitor created %p\n",
1181 (void *)th->th.th_info.ds.ds_thread));
Jim Cownie5e8470a2013-09-27 10:38:44 +00001182}
Jonathan Peytonb66d1aa2016-09-27 17:11:17 +00001183#endif
Jim Cownie5e8470a2013-09-27 10:38:44 +00001184
Jonathan Peyton30419822017-05-12 18:01:32 +00001185/* Check to see if thread is still alive.
1186 NOTE: The ExitProcess(code) system call causes all threads to Terminate
1187 with a exit_val = code. Because of this we can not rely on exit_val having
1188 any particular value. So this routine may return STILL_ALIVE in exit_val
1189 even after the thread is dead. */
Jim Cownie5e8470a2013-09-27 10:38:44 +00001190
Jonathan Peyton30419822017-05-12 18:01:32 +00001191int __kmp_is_thread_alive(kmp_info_t *th, DWORD *exit_val) {
1192 DWORD rc;
1193 rc = GetExitCodeThread(th->th.th_info.ds.ds_thread, exit_val);
1194 if (rc == 0) {
1195 DWORD error = GetLastError();
Jonathan Peyton6a393f72017-09-05 15:43:58 +00001196 __kmp_fatal(KMP_MSG(FunctionError, "GetExitCodeThread()"), KMP_ERR(error),
1197 __kmp_msg_null);
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001198 }
Jonathan Peyton30419822017-05-12 18:01:32 +00001199 return (*exit_val == STILL_ACTIVE);
Jim Cownie5e8470a2013-09-27 10:38:44 +00001200}
1201
Jonathan Peyton30419822017-05-12 18:01:32 +00001202void __kmp_exit_thread(int exit_status) {
1203 ExitThread(exit_status);
Jim Cownie5e8470a2013-09-27 10:38:44 +00001204} // __kmp_exit_thread
1205
Jonathan Peyton30419822017-05-12 18:01:32 +00001206// This is a common part for both __kmp_reap_worker() and __kmp_reap_monitor().
1207static void __kmp_reap_common(kmp_info_t *th) {
1208 DWORD exit_val;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001209
Jonathan Peyton30419822017-05-12 18:01:32 +00001210 KMP_MB(); /* Flush all pending memory write invalidates. */
Jim Cownie5e8470a2013-09-27 10:38:44 +00001211
Jonathan Peyton30419822017-05-12 18:01:32 +00001212 KA_TRACE(
1213 10, ("__kmp_reap_common: try to reap (%d)\n", th->th.th_info.ds.ds_gtid));
Jim Cownie5e8470a2013-09-27 10:38:44 +00001214
Jonathan Peyton30419822017-05-12 18:01:32 +00001215 /* 2006-10-19:
1216 There are two opposite situations:
1217 1. Windows* OS keep thread alive after it resets ds_alive flag and
1218 exits from thread function. (For example, see C70770/Q394281 "unloading of
1219 dll based on OMP is very slow".)
1220 2. Windows* OS may kill thread before it resets ds_alive flag.
Jim Cownie5e8470a2013-09-27 10:38:44 +00001221
Jonathan Peyton30419822017-05-12 18:01:32 +00001222 Right solution seems to be waiting for *either* thread termination *or*
1223 ds_alive resetting. */
1224 {
1225 // TODO: This code is very similar to KMP_WAIT_YIELD. Need to generalize
1226 // KMP_WAIT_YIELD to cover this usage also.
1227 void *obj = NULL;
Ed Maste414544c2017-07-07 21:06:05 +00001228 kmp_uint32 spins;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001229#if USE_ITT_BUILD
Jonathan Peyton30419822017-05-12 18:01:32 +00001230 KMP_FSYNC_SPIN_INIT(obj, (void *)&th->th.th_info.ds.ds_alive);
Jim Cownie5e8470a2013-09-27 10:38:44 +00001231#endif /* USE_ITT_BUILD */
Jonathan Peyton30419822017-05-12 18:01:32 +00001232 KMP_INIT_YIELD(spins);
1233 do {
Jim Cownie5e8470a2013-09-27 10:38:44 +00001234#if USE_ITT_BUILD
Jonathan Peyton30419822017-05-12 18:01:32 +00001235 KMP_FSYNC_SPIN_PREPARE(obj);
Jim Cownie5e8470a2013-09-27 10:38:44 +00001236#endif /* USE_ITT_BUILD */
Jonathan Peyton30419822017-05-12 18:01:32 +00001237 __kmp_is_thread_alive(th, &exit_val);
1238 KMP_YIELD(TCR_4(__kmp_nth) > __kmp_avail_proc);
1239 KMP_YIELD_SPIN(spins);
1240 } while (exit_val == STILL_ACTIVE && TCR_4(th->th.th_info.ds.ds_alive));
Jim Cownie5e8470a2013-09-27 10:38:44 +00001241#if USE_ITT_BUILD
Jonathan Peyton30419822017-05-12 18:01:32 +00001242 if (exit_val == STILL_ACTIVE) {
1243 KMP_FSYNC_CANCEL(obj);
1244 } else {
1245 KMP_FSYNC_SPIN_ACQUIRED(obj);
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001246 }
Jonathan Peyton30419822017-05-12 18:01:32 +00001247#endif /* USE_ITT_BUILD */
1248 }
Jim Cownie5e8470a2013-09-27 10:38:44 +00001249
Jonathan Peyton30419822017-05-12 18:01:32 +00001250 __kmp_free_handle(th->th.th_info.ds.ds_thread);
Jim Cownie5e8470a2013-09-27 10:38:44 +00001251
Jonathan Peyton30419822017-05-12 18:01:32 +00001252 /* NOTE: The ExitProcess(code) system call causes all threads to Terminate
1253 with a exit_val = code. Because of this we can not rely on exit_val having
1254 any particular value. */
1255 if (exit_val == STILL_ACTIVE) {
1256 KA_TRACE(1, ("__kmp_reap_common: thread still active.\n"));
1257 } else if ((void *)exit_val != (void *)th) {
1258 KA_TRACE(1, ("__kmp_reap_common: ExitProcess / TerminateThread used?\n"));
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001259 }
Jim Cownie5e8470a2013-09-27 10:38:44 +00001260
Jonathan Peyton30419822017-05-12 18:01:32 +00001261 KA_TRACE(10,
1262 ("__kmp_reap_common: done reaping (%d), handle = %" KMP_UINTPTR_SPEC
1263 "\n",
1264 th->th.th_info.ds.ds_gtid, th->th.th_info.ds.ds_thread));
1265
1266 th->th.th_info.ds.ds_thread = 0;
1267 th->th.th_info.ds.ds_tid = KMP_GTID_DNE;
1268 th->th.th_info.ds.ds_gtid = KMP_GTID_DNE;
1269 th->th.th_info.ds.ds_thread_id = 0;
1270
1271 KMP_MB(); /* Flush all pending memory write invalidates. */
Jim Cownie5e8470a2013-09-27 10:38:44 +00001272}
1273
Jonathan Peytonb66d1aa2016-09-27 17:11:17 +00001274#if KMP_USE_MONITOR
Jonathan Peyton30419822017-05-12 18:01:32 +00001275void __kmp_reap_monitor(kmp_info_t *th) {
1276 int status;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001277
Jonathan Peyton30419822017-05-12 18:01:32 +00001278 KA_TRACE(10, ("__kmp_reap_monitor: try to reap %p\n",
1279 (void *)th->th.th_info.ds.ds_thread));
Jim Cownie5e8470a2013-09-27 10:38:44 +00001280
Jonathan Peyton30419822017-05-12 18:01:32 +00001281 // If monitor has been created, its tid and gtid should be KMP_GTID_MONITOR.
1282 // If both tid and gtid are 0, it means the monitor did not ever start.
1283 // If both tid and gtid are KMP_GTID_DNE, the monitor has been shut down.
1284 KMP_DEBUG_ASSERT(th->th.th_info.ds.ds_tid == th->th.th_info.ds.ds_gtid);
1285 if (th->th.th_info.ds.ds_gtid != KMP_GTID_MONITOR) {
1286 KA_TRACE(10, ("__kmp_reap_monitor: monitor did not start, returning\n"));
1287 return;
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001288 }
Jim Cownie5e8470a2013-09-27 10:38:44 +00001289
Jonathan Peyton30419822017-05-12 18:01:32 +00001290 KMP_MB(); /* Flush all pending memory write invalidates. */
Jim Cownie5e8470a2013-09-27 10:38:44 +00001291
Jonathan Peyton30419822017-05-12 18:01:32 +00001292 status = SetEvent(__kmp_monitor_ev);
1293 if (status == FALSE) {
1294 DWORD error = GetLastError();
Jonathan Peyton6a393f72017-09-05 15:43:58 +00001295 __kmp_fatal(KMP_MSG(CantSetEvent), KMP_ERR(error), __kmp_msg_null);
Jonathan Peyton30419822017-05-12 18:01:32 +00001296 }
1297 KA_TRACE(10, ("__kmp_reap_monitor: reaping thread (%d)\n",
1298 th->th.th_info.ds.ds_gtid));
1299 __kmp_reap_common(th);
Jim Cownie5e8470a2013-09-27 10:38:44 +00001300
Jonathan Peyton30419822017-05-12 18:01:32 +00001301 __kmp_free_handle(__kmp_monitor_ev);
Jim Cownie5e8470a2013-09-27 10:38:44 +00001302
Jonathan Peyton30419822017-05-12 18:01:32 +00001303 KMP_MB(); /* Flush all pending memory write invalidates. */
Jim Cownie5e8470a2013-09-27 10:38:44 +00001304}
Jonathan Peytonb66d1aa2016-09-27 17:11:17 +00001305#endif
Jim Cownie5e8470a2013-09-27 10:38:44 +00001306
Jonathan Peyton30419822017-05-12 18:01:32 +00001307void __kmp_reap_worker(kmp_info_t *th) {
1308 KA_TRACE(10, ("__kmp_reap_worker: reaping thread (%d)\n",
1309 th->th.th_info.ds.ds_gtid));
1310 __kmp_reap_common(th);
Jim Cownie5e8470a2013-09-27 10:38:44 +00001311}
1312
Jim Cownie5e8470a2013-09-27 10:38:44 +00001313#if KMP_HANDLE_SIGNALS
1314
Jonathan Peyton30419822017-05-12 18:01:32 +00001315static void __kmp_team_handler(int signo) {
1316 if (__kmp_global.g.g_abort == 0) {
1317 // Stage 1 signal handler, let's shut down all of the threads.
1318 if (__kmp_debug_buf) {
1319 __kmp_dump_debug_buffer();
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001320 }
Jonathan Peyton30419822017-05-12 18:01:32 +00001321 KMP_MB(); // Flush all pending memory write invalidates.
1322 TCW_4(__kmp_global.g.g_abort, signo);
1323 KMP_MB(); // Flush all pending memory write invalidates.
1324 TCW_4(__kmp_global.g.g_done, TRUE);
1325 KMP_MB(); // Flush all pending memory write invalidates.
1326 }
Jim Cownie5e8470a2013-09-27 10:38:44 +00001327} // __kmp_team_handler
1328
Jonathan Peyton30419822017-05-12 18:01:32 +00001329static sig_func_t __kmp_signal(int signum, sig_func_t handler) {
1330 sig_func_t old = signal(signum, handler);
1331 if (old == SIG_ERR) {
1332 int error = errno;
Jonathan Peyton6a393f72017-09-05 15:43:58 +00001333 __kmp_fatal(KMP_MSG(FunctionError, "signal"), KMP_ERR(error),
1334 __kmp_msg_null);
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001335 }
Jonathan Peyton30419822017-05-12 18:01:32 +00001336 return old;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001337}
1338
Jonathan Peyton30419822017-05-12 18:01:32 +00001339static void __kmp_install_one_handler(int sig, sig_func_t handler,
1340 int parallel_init) {
1341 sig_func_t old;
1342 KMP_MB(); /* Flush all pending memory write invalidates. */
1343 KB_TRACE(60, ("__kmp_install_one_handler: called: sig=%d\n", sig));
1344 if (parallel_init) {
1345 old = __kmp_signal(sig, handler);
1346 // SIG_DFL on Windows* OS in NULL or 0.
1347 if (old == __kmp_sighldrs[sig]) {
1348 __kmp_siginstalled[sig] = 1;
1349 } else { // Restore/keep user's handler if one previously installed.
1350 old = __kmp_signal(sig, old);
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001351 }
Jonathan Peyton30419822017-05-12 18:01:32 +00001352 } else {
1353 // Save initial/system signal handlers to see if user handlers installed.
1354 // 2009-09-23: It is a dead code. On Windows* OS __kmp_install_signals
1355 // called once with parallel_init == TRUE.
1356 old = __kmp_signal(sig, SIG_DFL);
1357 __kmp_sighldrs[sig] = old;
1358 __kmp_signal(sig, old);
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001359 }
Jonathan Peyton30419822017-05-12 18:01:32 +00001360 KMP_MB(); /* Flush all pending memory write invalidates. */
Jim Cownie5e8470a2013-09-27 10:38:44 +00001361} // __kmp_install_one_handler
1362
Jonathan Peyton30419822017-05-12 18:01:32 +00001363static void __kmp_remove_one_handler(int sig) {
1364 if (__kmp_siginstalled[sig]) {
1365 sig_func_t old;
1366 KMP_MB(); // Flush all pending memory write invalidates.
1367 KB_TRACE(60, ("__kmp_remove_one_handler: called: sig=%d\n", sig));
1368 old = __kmp_signal(sig, __kmp_sighldrs[sig]);
1369 if (old != __kmp_team_handler) {
1370 KB_TRACE(10, ("__kmp_remove_one_handler: oops, not our handler, "
1371 "restoring: sig=%d\n",
1372 sig));
1373 old = __kmp_signal(sig, old);
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001374 }
Jonathan Peyton30419822017-05-12 18:01:32 +00001375 __kmp_sighldrs[sig] = NULL;
1376 __kmp_siginstalled[sig] = 0;
1377 KMP_MB(); // Flush all pending memory write invalidates.
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001378 }
Jim Cownie5e8470a2013-09-27 10:38:44 +00001379} // __kmp_remove_one_handler
1380
Jonathan Peyton30419822017-05-12 18:01:32 +00001381void __kmp_install_signals(int parallel_init) {
1382 KB_TRACE(10, ("__kmp_install_signals: called\n"));
1383 if (!__kmp_handle_signals) {
1384 KB_TRACE(10, ("__kmp_install_signals: KMP_HANDLE_SIGNALS is false - "
1385 "handlers not installed\n"));
1386 return;
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001387 }
Jonathan Peyton30419822017-05-12 18:01:32 +00001388 __kmp_install_one_handler(SIGINT, __kmp_team_handler, parallel_init);
1389 __kmp_install_one_handler(SIGILL, __kmp_team_handler, parallel_init);
1390 __kmp_install_one_handler(SIGABRT, __kmp_team_handler, parallel_init);
1391 __kmp_install_one_handler(SIGFPE, __kmp_team_handler, parallel_init);
1392 __kmp_install_one_handler(SIGSEGV, __kmp_team_handler, parallel_init);
1393 __kmp_install_one_handler(SIGTERM, __kmp_team_handler, parallel_init);
Jim Cownie5e8470a2013-09-27 10:38:44 +00001394} // __kmp_install_signals
1395
Jonathan Peyton30419822017-05-12 18:01:32 +00001396void __kmp_remove_signals(void) {
1397 int sig;
1398 KB_TRACE(10, ("__kmp_remove_signals: called\n"));
1399 for (sig = 1; sig < NSIG; ++sig) {
1400 __kmp_remove_one_handler(sig);
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001401 }
Jim Cownie5e8470a2013-09-27 10:38:44 +00001402} // __kmp_remove_signals
1403
Jim Cownie5e8470a2013-09-27 10:38:44 +00001404#endif // KMP_HANDLE_SIGNALS
1405
1406/* Put the thread to sleep for a time period */
Jonathan Peyton30419822017-05-12 18:01:32 +00001407void __kmp_thread_sleep(int millis) {
1408 DWORD status;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001409
Jonathan Peyton30419822017-05-12 18:01:32 +00001410 status = SleepEx((DWORD)millis, FALSE);
1411 if (status) {
1412 DWORD error = GetLastError();
Jonathan Peyton6a393f72017-09-05 15:43:58 +00001413 __kmp_fatal(KMP_MSG(FunctionError, "SleepEx()"), KMP_ERR(error),
1414 __kmp_msg_null);
Jonathan Peyton30419822017-05-12 18:01:32 +00001415 }
Jim Cownie5e8470a2013-09-27 10:38:44 +00001416}
1417
Jonathan Peyton30419822017-05-12 18:01:32 +00001418// Determine whether the given address is mapped into the current address space.
1419int __kmp_is_address_mapped(void *addr) {
1420 DWORD status;
1421 MEMORY_BASIC_INFORMATION lpBuffer;
1422 SIZE_T dwLength;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001423
Jonathan Peyton30419822017-05-12 18:01:32 +00001424 dwLength = sizeof(MEMORY_BASIC_INFORMATION);
Jim Cownie5e8470a2013-09-27 10:38:44 +00001425
Jonathan Peyton30419822017-05-12 18:01:32 +00001426 status = VirtualQuery(addr, &lpBuffer, dwLength);
Jim Cownie5e8470a2013-09-27 10:38:44 +00001427
Jonathan Peyton30419822017-05-12 18:01:32 +00001428 return !(((lpBuffer.State == MEM_RESERVE) || (lpBuffer.State == MEM_FREE)) ||
1429 ((lpBuffer.Protect == PAGE_NOACCESS) ||
1430 (lpBuffer.Protect == PAGE_EXECUTE)));
Jim Cownie5e8470a2013-09-27 10:38:44 +00001431}
1432
Jonathan Peyton30419822017-05-12 18:01:32 +00001433kmp_uint64 __kmp_hardware_timestamp(void) {
1434 kmp_uint64 r = 0;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001435
Jonathan Peyton30419822017-05-12 18:01:32 +00001436 QueryPerformanceCounter((LARGE_INTEGER *)&r);
1437 return r;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001438}
1439
1440/* Free handle and check the error code */
Jonathan Peyton30419822017-05-12 18:01:32 +00001441void __kmp_free_handle(kmp_thread_t tHandle) {
1442 /* called with parameter type HANDLE also, thus suppose kmp_thread_t defined
1443 * as HANDLE */
1444 BOOL rc;
1445 rc = CloseHandle(tHandle);
1446 if (!rc) {
1447 DWORD error = GetLastError();
Jonathan Peyton6a393f72017-09-05 15:43:58 +00001448 __kmp_fatal(KMP_MSG(CantCloseHandle), KMP_ERR(error), __kmp_msg_null);
Jonathan Peyton30419822017-05-12 18:01:32 +00001449 }
Jim Cownie5e8470a2013-09-27 10:38:44 +00001450}
1451
Jonathan Peyton30419822017-05-12 18:01:32 +00001452int __kmp_get_load_balance(int max) {
1453 static ULONG glb_buff_size = 100 * 1024;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001454
Jonathan Peyton30419822017-05-12 18:01:32 +00001455 // Saved count of the running threads for the thread balance algortihm
1456 static int glb_running_threads = 0;
1457 static double glb_call_time = 0; /* Thread balance algorithm call time */
Jim Cownie5e8470a2013-09-27 10:38:44 +00001458
Jonathan Peyton30419822017-05-12 18:01:32 +00001459 int running_threads = 0; // Number of running threads in the system.
1460 NTSTATUS status = 0;
1461 ULONG buff_size = 0;
1462 ULONG info_size = 0;
1463 void *buffer = NULL;
1464 PSYSTEM_PROCESS_INFORMATION spi = NULL;
1465 int first_time = 1;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001466
Jonathan Peyton30419822017-05-12 18:01:32 +00001467 double call_time = 0.0; // start, finish;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001468
Jonathan Peyton30419822017-05-12 18:01:32 +00001469 __kmp_elapsed(&call_time);
Jim Cownie5e8470a2013-09-27 10:38:44 +00001470
Jonathan Peyton30419822017-05-12 18:01:32 +00001471 if (glb_call_time &&
1472 (call_time - glb_call_time < __kmp_load_balance_interval)) {
1473 running_threads = glb_running_threads;
1474 goto finish;
1475 }
1476 glb_call_time = call_time;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001477
Jonathan Peyton30419822017-05-12 18:01:32 +00001478 // Do not spend time on running algorithm if we have a permanent error.
1479 if (NtQuerySystemInformation == NULL) {
1480 running_threads = -1;
1481 goto finish;
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001482 }
Jonathan Peyton30419822017-05-12 18:01:32 +00001483
1484 if (max <= 0) {
1485 max = INT_MAX;
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001486 }
Jonathan Peyton30419822017-05-12 18:01:32 +00001487
1488 do {
1489
1490 if (first_time) {
1491 buff_size = glb_buff_size;
1492 } else {
1493 buff_size = 2 * buff_size;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001494 }
Jim Cownie5e8470a2013-09-27 10:38:44 +00001495
Jonathan Peyton30419822017-05-12 18:01:32 +00001496 buffer = KMP_INTERNAL_REALLOC(buffer, buff_size);
1497 if (buffer == NULL) {
1498 running_threads = -1;
1499 goto finish;
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001500 }
Jonathan Peyton30419822017-05-12 18:01:32 +00001501 status = NtQuerySystemInformation(SystemProcessInformation, buffer,
1502 buff_size, &info_size);
1503 first_time = 0;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001504
Jonathan Peyton30419822017-05-12 18:01:32 +00001505 } while (status == STATUS_INFO_LENGTH_MISMATCH);
1506 glb_buff_size = buff_size;
1507
1508#define CHECK(cond) \
1509 { \
1510 KMP_DEBUG_ASSERT(cond); \
1511 if (!(cond)) { \
1512 running_threads = -1; \
1513 goto finish; \
1514 } \
1515 }
1516
1517 CHECK(buff_size >= info_size);
1518 spi = PSYSTEM_PROCESS_INFORMATION(buffer);
1519 for (;;) {
1520 ptrdiff_t offset = uintptr_t(spi) - uintptr_t(buffer);
1521 CHECK(0 <= offset &&
1522 offset + sizeof(SYSTEM_PROCESS_INFORMATION) < info_size);
1523 HANDLE pid = spi->ProcessId;
1524 ULONG num = spi->NumberOfThreads;
1525 CHECK(num >= 1);
1526 size_t spi_size =
1527 sizeof(SYSTEM_PROCESS_INFORMATION) + sizeof(SYSTEM_THREAD) * (num - 1);
1528 CHECK(offset + spi_size <
1529 info_size); // Make sure process info record fits the buffer.
1530 if (spi->NextEntryOffset != 0) {
1531 CHECK(spi_size <=
1532 spi->NextEntryOffset); // And do not overlap with the next record.
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001533 }
Jonathan Peyton30419822017-05-12 18:01:32 +00001534 // pid == 0 corresponds to the System Idle Process. It always has running
1535 // threads on all cores. So, we don't consider the running threads of this
1536 // process.
1537 if (pid != 0) {
1538 for (int i = 0; i < num; ++i) {
1539 THREAD_STATE state = spi->Threads[i].State;
1540 // Count threads that have Ready or Running state.
1541 // !!! TODO: Why comment does not match the code???
1542 if (state == StateRunning) {
1543 ++running_threads;
1544 // Stop counting running threads if the number is already greater than
1545 // the number of available cores
1546 if (running_threads >= max) {
Jim Cownie5e8470a2013-09-27 10:38:44 +00001547 goto finish;
Jonathan Peyton30419822017-05-12 18:01:32 +00001548 }
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001549 }
1550 }
1551 }
Jonathan Peyton30419822017-05-12 18:01:32 +00001552 if (spi->NextEntryOffset == 0) {
1553 break;
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001554 }
Jonathan Peyton30419822017-05-12 18:01:32 +00001555 spi = PSYSTEM_PROCESS_INFORMATION(uintptr_t(spi) + spi->NextEntryOffset);
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001556 }
Jim Cownie5e8470a2013-09-27 10:38:44 +00001557
Jonathan Peyton30419822017-05-12 18:01:32 +00001558#undef CHECK
Jim Cownie5e8470a2013-09-27 10:38:44 +00001559
Jonathan Peyton30419822017-05-12 18:01:32 +00001560finish: // Clean up and exit.
Jim Cownie5e8470a2013-09-27 10:38:44 +00001561
Jonathan Peyton30419822017-05-12 18:01:32 +00001562 if (buffer != NULL) {
1563 KMP_INTERNAL_FREE(buffer);
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001564 }
Jim Cownie5e8470a2013-09-27 10:38:44 +00001565
Jonathan Peyton30419822017-05-12 18:01:32 +00001566 glb_running_threads = running_threads;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001567
Jonathan Peyton30419822017-05-12 18:01:32 +00001568 return running_threads;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001569} //__kmp_get_load_balance()