blob: 28ad36e5ef73b98c1565dda34ffb7c35238b2d2b [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 */
623#if KMP_OS_WINDOWS && !defined KMP_DYNAMIC_LIB
624 // 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
Jonathan Peyton30419822017-05-12 18:01:32 +0000890void *__stdcall __kmp_launch_worker(void *arg) {
891 volatile void *stack_data;
892 void *exit_val;
893 void *padding = 0;
894 kmp_info_t *this_thr = (kmp_info_t *)arg;
895 int gtid;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000896
Jonathan Peyton30419822017-05-12 18:01:32 +0000897 gtid = this_thr->th.th_info.ds.ds_gtid;
898 __kmp_gtid_set_specific(gtid);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000899#ifdef KMP_TDATA_GTID
Jonathan Peyton30419822017-05-12 18:01:32 +0000900#error "This define causes problems with LoadLibrary() + declspec(thread) " \
Jim Cownie5e8470a2013-09-27 10:38:44 +0000901 "on Windows* OS. See CQ50564, tests kmp_load_library*.c and this MSDN " \
902 "reference: http://support.microsoft.com/kb/118816"
Jonathan Peyton30419822017-05-12 18:01:32 +0000903//__kmp_gtid = gtid;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000904#endif
905
906#if USE_ITT_BUILD
Jonathan Peyton30419822017-05-12 18:01:32 +0000907 __kmp_itt_thread_name(gtid);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000908#endif /* USE_ITT_BUILD */
909
Jonathan Peyton30419822017-05-12 18:01:32 +0000910 __kmp_affinity_set_init_mask(gtid, FALSE);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000911
912#if KMP_ARCH_X86 || KMP_ARCH_X86_64
Jonathan Peyton30419822017-05-12 18:01:32 +0000913 // Set FP control regs to be a copy of the parallel initialization thread's.
914 __kmp_clear_x87_fpu_status_word();
915 __kmp_load_x87_fpu_control_word(&__kmp_init_x87_fpu_control_word);
916 __kmp_load_mxcsr(&__kmp_init_mxcsr);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000917#endif /* KMP_ARCH_X86 || KMP_ARCH_X86_64 */
918
Jonathan Peyton30419822017-05-12 18:01:32 +0000919 if (__kmp_stkoffset > 0 && gtid > 0) {
920 padding = KMP_ALLOCA(gtid * __kmp_stkoffset);
921 }
Jim Cownie5e8470a2013-09-27 10:38:44 +0000922
Jonathan Peyton30419822017-05-12 18:01:32 +0000923 KMP_FSYNC_RELEASING(&this_thr->th.th_info.ds.ds_alive);
924 this_thr->th.th_info.ds.ds_thread_id = GetCurrentThreadId();
925 TCW_4(this_thr->th.th_info.ds.ds_alive, TRUE);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000926
Jonathan Peyton30419822017-05-12 18:01:32 +0000927 if (TCR_4(__kmp_gtid_mode) <
928 2) { // check stack only if it is used to get gtid
929 TCW_PTR(this_thr->th.th_info.ds.ds_stackbase, &stack_data);
930 KMP_ASSERT(this_thr->th.th_info.ds.ds_stackgrow == FALSE);
931 __kmp_check_stack_overlap(this_thr);
932 }
933 KMP_MB();
934 exit_val = __kmp_launch_thread(this_thr);
935 KMP_FSYNC_RELEASING(&this_thr->th.th_info.ds.ds_alive);
936 TCW_4(this_thr->th.th_info.ds.ds_alive, FALSE);
937 KMP_MB();
938 return exit_val;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000939}
940
Jonathan Peytonb66d1aa2016-09-27 17:11:17 +0000941#if KMP_USE_MONITOR
Jim Cownie5e8470a2013-09-27 10:38:44 +0000942/* The monitor thread controls all of the threads in the complex */
943
Jonathan Peyton30419822017-05-12 18:01:32 +0000944void *__stdcall __kmp_launch_monitor(void *arg) {
945 DWORD wait_status;
946 kmp_thread_t monitor;
947 int status;
948 int interval;
949 kmp_info_t *this_thr = (kmp_info_t *)arg;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000950
Jonathan Peyton30419822017-05-12 18:01:32 +0000951 KMP_DEBUG_ASSERT(__kmp_init_monitor);
952 TCW_4(__kmp_init_monitor, 2); // AC: Signal library that monitor has started
953 // TODO: hide "2" in enum (like {true,false,started})
954 this_thr->th.th_info.ds.ds_thread_id = GetCurrentThreadId();
955 TCW_4(this_thr->th.th_info.ds.ds_alive, TRUE);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000956
Jonathan Peyton30419822017-05-12 18:01:32 +0000957 KMP_MB(); /* Flush all pending memory write invalidates. */
958 KA_TRACE(10, ("__kmp_launch_monitor: launched\n"));
Jim Cownie5e8470a2013-09-27 10:38:44 +0000959
Jonathan Peyton30419822017-05-12 18:01:32 +0000960 monitor = GetCurrentThread();
Jim Cownie5e8470a2013-09-27 10:38:44 +0000961
Jonathan Peyton30419822017-05-12 18:01:32 +0000962 /* set thread priority */
963 status = SetThreadPriority(monitor, THREAD_PRIORITY_HIGHEST);
964 if (!status) {
965 DWORD error = GetLastError();
Jonathan Peyton6a393f72017-09-05 15:43:58 +0000966 __kmp_fatal(KMP_MSG(CantSetThreadPriority), KMP_ERR(error), __kmp_msg_null);
Jonathan Peyton30419822017-05-12 18:01:32 +0000967 }
Jim Cownie5e8470a2013-09-27 10:38:44 +0000968
Jonathan Peyton30419822017-05-12 18:01:32 +0000969 /* register us as monitor */
970 __kmp_gtid_set_specific(KMP_GTID_MONITOR);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000971#ifdef KMP_TDATA_GTID
Jonathan Peyton30419822017-05-12 18:01:32 +0000972#error "This define causes problems with LoadLibrary() + declspec(thread) " \
Jim Cownie5e8470a2013-09-27 10:38:44 +0000973 "on Windows* OS. See CQ50564, tests kmp_load_library*.c and this MSDN " \
974 "reference: http://support.microsoft.com/kb/118816"
Jonathan Peyton30419822017-05-12 18:01:32 +0000975//__kmp_gtid = KMP_GTID_MONITOR;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000976#endif
977
978#if USE_ITT_BUILD
Jonathan Peyton30419822017-05-12 18:01:32 +0000979 __kmp_itt_thread_ignore(); // Instruct Intel(R) Threading Tools to ignore
980// monitor thread.
Jim Cownie5e8470a2013-09-27 10:38:44 +0000981#endif /* USE_ITT_BUILD */
982
Jonathan Peyton30419822017-05-12 18:01:32 +0000983 KMP_MB(); /* Flush all pending memory write invalidates. */
Jim Cownie5e8470a2013-09-27 10:38:44 +0000984
Jonathan Peyton30419822017-05-12 18:01:32 +0000985 interval = (1000 / __kmp_monitor_wakeups); /* in milliseconds */
Jim Cownie5e8470a2013-09-27 10:38:44 +0000986
Jonathan Peyton30419822017-05-12 18:01:32 +0000987 while (!TCR_4(__kmp_global.g.g_done)) {
988 /* This thread monitors the state of the system */
Jim Cownie5e8470a2013-09-27 10:38:44 +0000989
Jonathan Peyton30419822017-05-12 18:01:32 +0000990 KA_TRACE(15, ("__kmp_launch_monitor: update\n"));
Jim Cownie5e8470a2013-09-27 10:38:44 +0000991
Jonathan Peyton30419822017-05-12 18:01:32 +0000992 wait_status = WaitForSingleObject(__kmp_monitor_ev, interval);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000993
Jonathan Peyton30419822017-05-12 18:01:32 +0000994 if (wait_status == WAIT_TIMEOUT) {
995 TCW_4(__kmp_global.g.g_time.dt.t_value,
996 TCR_4(__kmp_global.g.g_time.dt.t_value) + 1);
Jim Cownie5e8470a2013-09-27 10:38:44 +0000997 }
998
Jonathan Peyton30419822017-05-12 18:01:32 +0000999 KMP_MB(); /* Flush all pending memory write invalidates. */
1000 }
Jim Cownie5e8470a2013-09-27 10:38:44 +00001001
Jonathan Peyton30419822017-05-12 18:01:32 +00001002 KA_TRACE(10, ("__kmp_launch_monitor: finished\n"));
1003
1004 status = SetThreadPriority(monitor, THREAD_PRIORITY_NORMAL);
1005 if (!status) {
1006 DWORD error = GetLastError();
Jonathan Peyton6a393f72017-09-05 15:43:58 +00001007 __kmp_fatal(KMP_MSG(CantSetThreadPriority), KMP_ERR(error), __kmp_msg_null);
Jonathan Peyton30419822017-05-12 18:01:32 +00001008 }
1009
1010 if (__kmp_global.g.g_abort != 0) {
1011 /* now we need to terminate the worker threads */
1012 /* the value of t_abort is the signal we caught */
1013 int gtid;
1014
1015 KA_TRACE(10, ("__kmp_launch_monitor: terminate sig=%d\n",
1016 (__kmp_global.g.g_abort)));
1017
1018 /* terminate the OpenMP worker threads */
1019 /* TODO this is not valid for sibling threads!!
1020 * the uber master might not be 0 anymore.. */
1021 for (gtid = 1; gtid < __kmp_threads_capacity; ++gtid)
1022 __kmp_terminate_thread(gtid);
1023
1024 __kmp_cleanup();
1025
1026 Sleep(0);
1027
1028 KA_TRACE(10,
1029 ("__kmp_launch_monitor: raise sig=%d\n", __kmp_global.g.g_abort));
1030
1031 if (__kmp_global.g.g_abort > 0) {
1032 raise(__kmp_global.g.g_abort);
Jim Cownie5e8470a2013-09-27 10:38:44 +00001033 }
Jonathan Peyton30419822017-05-12 18:01:32 +00001034 }
Jim Cownie5e8470a2013-09-27 10:38:44 +00001035
Jonathan Peyton30419822017-05-12 18:01:32 +00001036 TCW_4(this_thr->th.th_info.ds.ds_alive, FALSE);
Jim Cownie5e8470a2013-09-27 10:38:44 +00001037
Jonathan Peyton30419822017-05-12 18:01:32 +00001038 KMP_MB();
1039 return arg;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001040}
Jonathan Peytonb66d1aa2016-09-27 17:11:17 +00001041#endif
Jim Cownie5e8470a2013-09-27 10:38:44 +00001042
Jonathan Peyton30419822017-05-12 18:01:32 +00001043void __kmp_create_worker(int gtid, kmp_info_t *th, size_t stack_size) {
1044 kmp_thread_t handle;
1045 DWORD idThread;
Jim Cownie4cc4bb42014-10-07 16:25:50 +00001046
Jonathan Peyton30419822017-05-12 18:01:32 +00001047 KA_TRACE(10, ("__kmp_create_worker: try to create thread (%d)\n", gtid));
Jim Cownie4cc4bb42014-10-07 16:25:50 +00001048
Jonathan Peyton30419822017-05-12 18:01:32 +00001049 th->th.th_info.ds.ds_gtid = gtid;
Jim Cownie4cc4bb42014-10-07 16:25:50 +00001050
Jonathan Peyton30419822017-05-12 18:01:32 +00001051 if (KMP_UBER_GTID(gtid)) {
1052 int stack_data;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001053
Jonathan Peyton30419822017-05-12 18:01:32 +00001054 /* TODO: GetCurrentThread() returns a pseudo-handle that is unsuitable for
1055 other threads to use. Is it appropriate to just use GetCurrentThread?
1056 When should we close this handle? When unregistering the root? */
1057 {
1058 BOOL rc;
1059 rc = DuplicateHandle(GetCurrentProcess(), GetCurrentThread(),
1060 GetCurrentProcess(), &th->th.th_info.ds.ds_thread, 0,
1061 FALSE, DUPLICATE_SAME_ACCESS);
1062 KMP_ASSERT(rc);
1063 KA_TRACE(10, (" __kmp_create_worker: ROOT Handle duplicated, th = %p, "
1064 "handle = %" KMP_UINTPTR_SPEC "\n",
1065 (LPVOID)th, th->th.th_info.ds.ds_thread));
1066 th->th.th_info.ds.ds_thread_id = GetCurrentThreadId();
Jim Cownie5e8470a2013-09-27 10:38:44 +00001067 }
Jonathan Peyton30419822017-05-12 18:01:32 +00001068 if (TCR_4(__kmp_gtid_mode) < 2) { // check stack only if used to get gtid
1069 /* we will dynamically update the stack range if gtid_mode == 1 */
1070 TCW_PTR(th->th.th_info.ds.ds_stackbase, &stack_data);
1071 TCW_PTR(th->th.th_info.ds.ds_stacksize, 0);
1072 TCW_4(th->th.th_info.ds.ds_stackgrow, TRUE);
1073 __kmp_check_stack_overlap(th);
1074 }
1075 } else {
1076 KMP_MB(); /* Flush all pending memory write invalidates. */
Jim Cownie5e8470a2013-09-27 10:38:44 +00001077
Jonathan Peyton30419822017-05-12 18:01:32 +00001078 /* Set stack size for this thread now. */
1079 KA_TRACE(10,
1080 ("__kmp_create_worker: stack_size = %" KMP_SIZE_T_SPEC " bytes\n",
1081 stack_size));
Jim Cownie4cc4bb42014-10-07 16:25:50 +00001082
Jonathan Peyton30419822017-05-12 18:01:32 +00001083 stack_size += gtid * __kmp_stkoffset;
Jim Cownie4cc4bb42014-10-07 16:25:50 +00001084
Jonathan Peyton30419822017-05-12 18:01:32 +00001085 TCW_PTR(th->th.th_info.ds.ds_stacksize, stack_size);
1086 TCW_4(th->th.th_info.ds.ds_stackgrow, FALSE);
Jim Cownie4cc4bb42014-10-07 16:25:50 +00001087
Jonathan Peyton30419822017-05-12 18:01:32 +00001088 KA_TRACE(10,
1089 ("__kmp_create_worker: (before) stack_size = %" KMP_SIZE_T_SPEC
1090 " bytes, &__kmp_launch_worker = %p, th = %p, &idThread = %p\n",
1091 (SIZE_T)stack_size, (LPTHREAD_START_ROUTINE)&__kmp_launch_worker,
1092 (LPVOID)th, &idThread));
Jim Cownie4cc4bb42014-10-07 16:25:50 +00001093
Jonathan Peyton30419822017-05-12 18:01:32 +00001094 handle = CreateThread(
1095 NULL, (SIZE_T)stack_size, (LPTHREAD_START_ROUTINE)__kmp_launch_worker,
1096 (LPVOID)th, STACK_SIZE_PARAM_IS_A_RESERVATION, &idThread);
Jim Cownie4cc4bb42014-10-07 16:25:50 +00001097
Jonathan Peyton30419822017-05-12 18:01:32 +00001098 KA_TRACE(10,
1099 ("__kmp_create_worker: (after) stack_size = %" KMP_SIZE_T_SPEC
1100 " bytes, &__kmp_launch_worker = %p, th = %p, "
1101 "idThread = %u, handle = %" KMP_UINTPTR_SPEC "\n",
1102 (SIZE_T)stack_size, (LPTHREAD_START_ROUTINE)&__kmp_launch_worker,
1103 (LPVOID)th, idThread, handle));
Jim Cownie4cc4bb42014-10-07 16:25:50 +00001104
Jonathan Peyton30419822017-05-12 18:01:32 +00001105 if (handle == 0) {
1106 DWORD error = GetLastError();
Jonathan Peyton6a393f72017-09-05 15:43:58 +00001107 __kmp_fatal(KMP_MSG(CantCreateThread), KMP_ERR(error), __kmp_msg_null);
Jonathan Peyton30419822017-05-12 18:01:32 +00001108 } else {
1109 th->th.th_info.ds.ds_thread = handle;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001110 }
Jim Cownie4cc4bb42014-10-07 16:25:50 +00001111
Jonathan Peyton30419822017-05-12 18:01:32 +00001112 KMP_MB(); /* Flush all pending memory write invalidates. */
1113 }
1114
1115 KA_TRACE(10, ("__kmp_create_worker: done creating thread (%d)\n", gtid));
Jim Cownie5e8470a2013-09-27 10:38:44 +00001116}
1117
Jonathan Peyton30419822017-05-12 18:01:32 +00001118int __kmp_still_running(kmp_info_t *th) {
1119 return (WAIT_TIMEOUT == WaitForSingleObject(th->th.th_info.ds.ds_thread, 0));
Jim Cownie5e8470a2013-09-27 10:38:44 +00001120}
1121
Jonathan Peytonb66d1aa2016-09-27 17:11:17 +00001122#if KMP_USE_MONITOR
Jonathan Peyton30419822017-05-12 18:01:32 +00001123void __kmp_create_monitor(kmp_info_t *th) {
1124 kmp_thread_t handle;
1125 DWORD idThread;
1126 int ideal, new_ideal;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001127
Jonathan Peyton30419822017-05-12 18:01:32 +00001128 if (__kmp_dflt_blocktime == KMP_MAX_BLOCKTIME) {
1129 // We don't need monitor thread in case of MAX_BLOCKTIME
1130 KA_TRACE(10, ("__kmp_create_monitor: skipping monitor thread because of "
1131 "MAX blocktime\n"));
1132 th->th.th_info.ds.ds_tid = 0; // this makes reap_monitor no-op
1133 th->th.th_info.ds.ds_gtid = 0;
1134 TCW_4(__kmp_init_monitor, 2); // Signal to stop waiting for monitor creation
1135 return;
1136 }
1137 KA_TRACE(10, ("__kmp_create_monitor: try to create monitor\n"));
Jim Cownie5e8470a2013-09-27 10:38:44 +00001138
Jonathan Peyton30419822017-05-12 18:01:32 +00001139 KMP_MB(); /* Flush all pending memory write invalidates. */
Jim Cownie5e8470a2013-09-27 10:38:44 +00001140
Jonathan Peyton30419822017-05-12 18:01:32 +00001141 __kmp_monitor_ev = CreateEvent(NULL, TRUE, FALSE, NULL);
1142 if (__kmp_monitor_ev == NULL) {
1143 DWORD error = GetLastError();
Jonathan Peyton6a393f72017-09-05 15:43:58 +00001144 __kmp_fatal(KMP_MSG(CantCreateEvent), KMP_ERR(error), __kmp_msg_null);
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001145 }
Jim Cownie5e8470a2013-09-27 10:38:44 +00001146#if USE_ITT_BUILD
Jonathan Peyton30419822017-05-12 18:01:32 +00001147 __kmp_itt_system_object_created(__kmp_monitor_ev, "Event");
Jim Cownie5e8470a2013-09-27 10:38:44 +00001148#endif /* USE_ITT_BUILD */
1149
Jonathan Peyton30419822017-05-12 18:01:32 +00001150 th->th.th_info.ds.ds_tid = KMP_GTID_MONITOR;
1151 th->th.th_info.ds.ds_gtid = KMP_GTID_MONITOR;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001152
Jonathan Peyton30419822017-05-12 18:01:32 +00001153 // FIXME - on Windows* OS, if __kmp_monitor_stksize = 0, figure out how
1154 // to automatically expand stacksize based on CreateThread error code.
1155 if (__kmp_monitor_stksize == 0) {
1156 __kmp_monitor_stksize = KMP_DEFAULT_MONITOR_STKSIZE;
1157 }
1158 if (__kmp_monitor_stksize < __kmp_sys_min_stksize) {
1159 __kmp_monitor_stksize = __kmp_sys_min_stksize;
1160 }
Jim Cownie5e8470a2013-09-27 10:38:44 +00001161
Jonathan Peyton30419822017-05-12 18:01:32 +00001162 KA_TRACE(10, ("__kmp_create_monitor: requested stacksize = %d bytes\n",
1163 (int)__kmp_monitor_stksize));
Jim Cownie5e8470a2013-09-27 10:38:44 +00001164
Jonathan Peyton30419822017-05-12 18:01:32 +00001165 TCW_4(__kmp_global.g.g_time.dt.t_value, 0);
Jim Cownie5e8470a2013-09-27 10:38:44 +00001166
Jonathan Peyton30419822017-05-12 18:01:32 +00001167 handle =
1168 CreateThread(NULL, (SIZE_T)__kmp_monitor_stksize,
1169 (LPTHREAD_START_ROUTINE)__kmp_launch_monitor, (LPVOID)th,
1170 STACK_SIZE_PARAM_IS_A_RESERVATION, &idThread);
1171 if (handle == 0) {
1172 DWORD error = GetLastError();
Jonathan Peyton6a393f72017-09-05 15:43:58 +00001173 __kmp_fatal(KMP_MSG(CantCreateThread), KMP_ERR(error), __kmp_msg_null);
Jonathan Peyton30419822017-05-12 18:01:32 +00001174 } else
1175 th->th.th_info.ds.ds_thread = handle;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001176
Jonathan Peyton30419822017-05-12 18:01:32 +00001177 KMP_MB(); /* Flush all pending memory write invalidates. */
Jim Cownie5e8470a2013-09-27 10:38:44 +00001178
Jonathan Peyton30419822017-05-12 18:01:32 +00001179 KA_TRACE(10, ("__kmp_create_monitor: monitor created %p\n",
1180 (void *)th->th.th_info.ds.ds_thread));
Jim Cownie5e8470a2013-09-27 10:38:44 +00001181}
Jonathan Peytonb66d1aa2016-09-27 17:11:17 +00001182#endif
Jim Cownie5e8470a2013-09-27 10:38:44 +00001183
Jonathan Peyton30419822017-05-12 18:01:32 +00001184/* Check to see if thread is still alive.
1185 NOTE: The ExitProcess(code) system call causes all threads to Terminate
1186 with a exit_val = code. Because of this we can not rely on exit_val having
1187 any particular value. So this routine may return STILL_ALIVE in exit_val
1188 even after the thread is dead. */
Jim Cownie5e8470a2013-09-27 10:38:44 +00001189
Jonathan Peyton30419822017-05-12 18:01:32 +00001190int __kmp_is_thread_alive(kmp_info_t *th, DWORD *exit_val) {
1191 DWORD rc;
1192 rc = GetExitCodeThread(th->th.th_info.ds.ds_thread, exit_val);
1193 if (rc == 0) {
1194 DWORD error = GetLastError();
Jonathan Peyton6a393f72017-09-05 15:43:58 +00001195 __kmp_fatal(KMP_MSG(FunctionError, "GetExitCodeThread()"), KMP_ERR(error),
1196 __kmp_msg_null);
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001197 }
Jonathan Peyton30419822017-05-12 18:01:32 +00001198 return (*exit_val == STILL_ACTIVE);
Jim Cownie5e8470a2013-09-27 10:38:44 +00001199}
1200
Jonathan Peyton30419822017-05-12 18:01:32 +00001201void __kmp_exit_thread(int exit_status) {
1202 ExitThread(exit_status);
Jim Cownie5e8470a2013-09-27 10:38:44 +00001203} // __kmp_exit_thread
1204
Jonathan Peyton30419822017-05-12 18:01:32 +00001205// This is a common part for both __kmp_reap_worker() and __kmp_reap_monitor().
1206static void __kmp_reap_common(kmp_info_t *th) {
1207 DWORD exit_val;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001208
Jonathan Peyton30419822017-05-12 18:01:32 +00001209 KMP_MB(); /* Flush all pending memory write invalidates. */
Jim Cownie5e8470a2013-09-27 10:38:44 +00001210
Jonathan Peyton30419822017-05-12 18:01:32 +00001211 KA_TRACE(
1212 10, ("__kmp_reap_common: try to reap (%d)\n", th->th.th_info.ds.ds_gtid));
Jim Cownie5e8470a2013-09-27 10:38:44 +00001213
Jonathan Peyton30419822017-05-12 18:01:32 +00001214 /* 2006-10-19:
1215 There are two opposite situations:
1216 1. Windows* OS keep thread alive after it resets ds_alive flag and
1217 exits from thread function. (For example, see C70770/Q394281 "unloading of
1218 dll based on OMP is very slow".)
1219 2. Windows* OS may kill thread before it resets ds_alive flag.
Jim Cownie5e8470a2013-09-27 10:38:44 +00001220
Jonathan Peyton30419822017-05-12 18:01:32 +00001221 Right solution seems to be waiting for *either* thread termination *or*
1222 ds_alive resetting. */
1223 {
1224 // TODO: This code is very similar to KMP_WAIT_YIELD. Need to generalize
1225 // KMP_WAIT_YIELD to cover this usage also.
1226 void *obj = NULL;
Ed Maste414544c2017-07-07 21:06:05 +00001227 kmp_uint32 spins;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001228#if USE_ITT_BUILD
Jonathan Peyton30419822017-05-12 18:01:32 +00001229 KMP_FSYNC_SPIN_INIT(obj, (void *)&th->th.th_info.ds.ds_alive);
Jim Cownie5e8470a2013-09-27 10:38:44 +00001230#endif /* USE_ITT_BUILD */
Jonathan Peyton30419822017-05-12 18:01:32 +00001231 KMP_INIT_YIELD(spins);
1232 do {
Jim Cownie5e8470a2013-09-27 10:38:44 +00001233#if USE_ITT_BUILD
Jonathan Peyton30419822017-05-12 18:01:32 +00001234 KMP_FSYNC_SPIN_PREPARE(obj);
Jim Cownie5e8470a2013-09-27 10:38:44 +00001235#endif /* USE_ITT_BUILD */
Jonathan Peyton30419822017-05-12 18:01:32 +00001236 __kmp_is_thread_alive(th, &exit_val);
1237 KMP_YIELD(TCR_4(__kmp_nth) > __kmp_avail_proc);
1238 KMP_YIELD_SPIN(spins);
1239 } while (exit_val == STILL_ACTIVE && TCR_4(th->th.th_info.ds.ds_alive));
Jim Cownie5e8470a2013-09-27 10:38:44 +00001240#if USE_ITT_BUILD
Jonathan Peyton30419822017-05-12 18:01:32 +00001241 if (exit_val == STILL_ACTIVE) {
1242 KMP_FSYNC_CANCEL(obj);
1243 } else {
1244 KMP_FSYNC_SPIN_ACQUIRED(obj);
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001245 }
Jonathan Peyton30419822017-05-12 18:01:32 +00001246#endif /* USE_ITT_BUILD */
1247 }
Jim Cownie5e8470a2013-09-27 10:38:44 +00001248
Jonathan Peyton30419822017-05-12 18:01:32 +00001249 __kmp_free_handle(th->th.th_info.ds.ds_thread);
Jim Cownie5e8470a2013-09-27 10:38:44 +00001250
Jonathan Peyton30419822017-05-12 18:01:32 +00001251 /* NOTE: The ExitProcess(code) system call causes all threads to Terminate
1252 with a exit_val = code. Because of this we can not rely on exit_val having
1253 any particular value. */
1254 if (exit_val == STILL_ACTIVE) {
1255 KA_TRACE(1, ("__kmp_reap_common: thread still active.\n"));
1256 } else if ((void *)exit_val != (void *)th) {
1257 KA_TRACE(1, ("__kmp_reap_common: ExitProcess / TerminateThread used?\n"));
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001258 }
Jim Cownie5e8470a2013-09-27 10:38:44 +00001259
Jonathan Peyton30419822017-05-12 18:01:32 +00001260 KA_TRACE(10,
1261 ("__kmp_reap_common: done reaping (%d), handle = %" KMP_UINTPTR_SPEC
1262 "\n",
1263 th->th.th_info.ds.ds_gtid, th->th.th_info.ds.ds_thread));
1264
1265 th->th.th_info.ds.ds_thread = 0;
1266 th->th.th_info.ds.ds_tid = KMP_GTID_DNE;
1267 th->th.th_info.ds.ds_gtid = KMP_GTID_DNE;
1268 th->th.th_info.ds.ds_thread_id = 0;
1269
1270 KMP_MB(); /* Flush all pending memory write invalidates. */
Jim Cownie5e8470a2013-09-27 10:38:44 +00001271}
1272
Jonathan Peytonb66d1aa2016-09-27 17:11:17 +00001273#if KMP_USE_MONITOR
Jonathan Peyton30419822017-05-12 18:01:32 +00001274void __kmp_reap_monitor(kmp_info_t *th) {
1275 int status;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001276
Jonathan Peyton30419822017-05-12 18:01:32 +00001277 KA_TRACE(10, ("__kmp_reap_monitor: try to reap %p\n",
1278 (void *)th->th.th_info.ds.ds_thread));
Jim Cownie5e8470a2013-09-27 10:38:44 +00001279
Jonathan Peyton30419822017-05-12 18:01:32 +00001280 // If monitor has been created, its tid and gtid should be KMP_GTID_MONITOR.
1281 // If both tid and gtid are 0, it means the monitor did not ever start.
1282 // If both tid and gtid are KMP_GTID_DNE, the monitor has been shut down.
1283 KMP_DEBUG_ASSERT(th->th.th_info.ds.ds_tid == th->th.th_info.ds.ds_gtid);
1284 if (th->th.th_info.ds.ds_gtid != KMP_GTID_MONITOR) {
1285 KA_TRACE(10, ("__kmp_reap_monitor: monitor did not start, returning\n"));
1286 return;
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001287 }
Jim Cownie5e8470a2013-09-27 10:38:44 +00001288
Jonathan Peyton30419822017-05-12 18:01:32 +00001289 KMP_MB(); /* Flush all pending memory write invalidates. */
Jim Cownie5e8470a2013-09-27 10:38:44 +00001290
Jonathan Peyton30419822017-05-12 18:01:32 +00001291 status = SetEvent(__kmp_monitor_ev);
1292 if (status == FALSE) {
1293 DWORD error = GetLastError();
Jonathan Peyton6a393f72017-09-05 15:43:58 +00001294 __kmp_fatal(KMP_MSG(CantSetEvent), KMP_ERR(error), __kmp_msg_null);
Jonathan Peyton30419822017-05-12 18:01:32 +00001295 }
1296 KA_TRACE(10, ("__kmp_reap_monitor: reaping thread (%d)\n",
1297 th->th.th_info.ds.ds_gtid));
1298 __kmp_reap_common(th);
Jim Cownie5e8470a2013-09-27 10:38:44 +00001299
Jonathan Peyton30419822017-05-12 18:01:32 +00001300 __kmp_free_handle(__kmp_monitor_ev);
Jim Cownie5e8470a2013-09-27 10:38:44 +00001301
Jonathan Peyton30419822017-05-12 18:01:32 +00001302 KMP_MB(); /* Flush all pending memory write invalidates. */
Jim Cownie5e8470a2013-09-27 10:38:44 +00001303}
Jonathan Peytonb66d1aa2016-09-27 17:11:17 +00001304#endif
Jim Cownie5e8470a2013-09-27 10:38:44 +00001305
Jonathan Peyton30419822017-05-12 18:01:32 +00001306void __kmp_reap_worker(kmp_info_t *th) {
1307 KA_TRACE(10, ("__kmp_reap_worker: reaping thread (%d)\n",
1308 th->th.th_info.ds.ds_gtid));
1309 __kmp_reap_common(th);
Jim Cownie5e8470a2013-09-27 10:38:44 +00001310}
1311
Jim Cownie5e8470a2013-09-27 10:38:44 +00001312#if KMP_HANDLE_SIGNALS
1313
Jonathan Peyton30419822017-05-12 18:01:32 +00001314static void __kmp_team_handler(int signo) {
1315 if (__kmp_global.g.g_abort == 0) {
1316 // Stage 1 signal handler, let's shut down all of the threads.
1317 if (__kmp_debug_buf) {
1318 __kmp_dump_debug_buffer();
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001319 }
Jonathan Peyton30419822017-05-12 18:01:32 +00001320 KMP_MB(); // Flush all pending memory write invalidates.
1321 TCW_4(__kmp_global.g.g_abort, signo);
1322 KMP_MB(); // Flush all pending memory write invalidates.
1323 TCW_4(__kmp_global.g.g_done, TRUE);
1324 KMP_MB(); // Flush all pending memory write invalidates.
1325 }
Jim Cownie5e8470a2013-09-27 10:38:44 +00001326} // __kmp_team_handler
1327
Jonathan Peyton30419822017-05-12 18:01:32 +00001328static sig_func_t __kmp_signal(int signum, sig_func_t handler) {
1329 sig_func_t old = signal(signum, handler);
1330 if (old == SIG_ERR) {
1331 int error = errno;
Jonathan Peyton6a393f72017-09-05 15:43:58 +00001332 __kmp_fatal(KMP_MSG(FunctionError, "signal"), KMP_ERR(error),
1333 __kmp_msg_null);
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001334 }
Jonathan Peyton30419822017-05-12 18:01:32 +00001335 return old;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001336}
1337
Jonathan Peyton30419822017-05-12 18:01:32 +00001338static void __kmp_install_one_handler(int sig, sig_func_t handler,
1339 int parallel_init) {
1340 sig_func_t old;
1341 KMP_MB(); /* Flush all pending memory write invalidates. */
1342 KB_TRACE(60, ("__kmp_install_one_handler: called: sig=%d\n", sig));
1343 if (parallel_init) {
1344 old = __kmp_signal(sig, handler);
1345 // SIG_DFL on Windows* OS in NULL or 0.
1346 if (old == __kmp_sighldrs[sig]) {
1347 __kmp_siginstalled[sig] = 1;
1348 } else { // Restore/keep user's handler if one previously installed.
1349 old = __kmp_signal(sig, old);
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001350 }
Jonathan Peyton30419822017-05-12 18:01:32 +00001351 } else {
1352 // Save initial/system signal handlers to see if user handlers installed.
1353 // 2009-09-23: It is a dead code. On Windows* OS __kmp_install_signals
1354 // called once with parallel_init == TRUE.
1355 old = __kmp_signal(sig, SIG_DFL);
1356 __kmp_sighldrs[sig] = old;
1357 __kmp_signal(sig, old);
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001358 }
Jonathan Peyton30419822017-05-12 18:01:32 +00001359 KMP_MB(); /* Flush all pending memory write invalidates. */
Jim Cownie5e8470a2013-09-27 10:38:44 +00001360} // __kmp_install_one_handler
1361
Jonathan Peyton30419822017-05-12 18:01:32 +00001362static void __kmp_remove_one_handler(int sig) {
1363 if (__kmp_siginstalled[sig]) {
1364 sig_func_t old;
1365 KMP_MB(); // Flush all pending memory write invalidates.
1366 KB_TRACE(60, ("__kmp_remove_one_handler: called: sig=%d\n", sig));
1367 old = __kmp_signal(sig, __kmp_sighldrs[sig]);
1368 if (old != __kmp_team_handler) {
1369 KB_TRACE(10, ("__kmp_remove_one_handler: oops, not our handler, "
1370 "restoring: sig=%d\n",
1371 sig));
1372 old = __kmp_signal(sig, old);
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001373 }
Jonathan Peyton30419822017-05-12 18:01:32 +00001374 __kmp_sighldrs[sig] = NULL;
1375 __kmp_siginstalled[sig] = 0;
1376 KMP_MB(); // Flush all pending memory write invalidates.
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001377 }
Jim Cownie5e8470a2013-09-27 10:38:44 +00001378} // __kmp_remove_one_handler
1379
Jonathan Peyton30419822017-05-12 18:01:32 +00001380void __kmp_install_signals(int parallel_init) {
1381 KB_TRACE(10, ("__kmp_install_signals: called\n"));
1382 if (!__kmp_handle_signals) {
1383 KB_TRACE(10, ("__kmp_install_signals: KMP_HANDLE_SIGNALS is false - "
1384 "handlers not installed\n"));
1385 return;
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001386 }
Jonathan Peyton30419822017-05-12 18:01:32 +00001387 __kmp_install_one_handler(SIGINT, __kmp_team_handler, parallel_init);
1388 __kmp_install_one_handler(SIGILL, __kmp_team_handler, parallel_init);
1389 __kmp_install_one_handler(SIGABRT, __kmp_team_handler, parallel_init);
1390 __kmp_install_one_handler(SIGFPE, __kmp_team_handler, parallel_init);
1391 __kmp_install_one_handler(SIGSEGV, __kmp_team_handler, parallel_init);
1392 __kmp_install_one_handler(SIGTERM, __kmp_team_handler, parallel_init);
Jim Cownie5e8470a2013-09-27 10:38:44 +00001393} // __kmp_install_signals
1394
Jonathan Peyton30419822017-05-12 18:01:32 +00001395void __kmp_remove_signals(void) {
1396 int sig;
1397 KB_TRACE(10, ("__kmp_remove_signals: called\n"));
1398 for (sig = 1; sig < NSIG; ++sig) {
1399 __kmp_remove_one_handler(sig);
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001400 }
Jim Cownie5e8470a2013-09-27 10:38:44 +00001401} // __kmp_remove_signals
1402
Jim Cownie5e8470a2013-09-27 10:38:44 +00001403#endif // KMP_HANDLE_SIGNALS
1404
1405/* Put the thread to sleep for a time period */
Jonathan Peyton30419822017-05-12 18:01:32 +00001406void __kmp_thread_sleep(int millis) {
1407 DWORD status;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001408
Jonathan Peyton30419822017-05-12 18:01:32 +00001409 status = SleepEx((DWORD)millis, FALSE);
1410 if (status) {
1411 DWORD error = GetLastError();
Jonathan Peyton6a393f72017-09-05 15:43:58 +00001412 __kmp_fatal(KMP_MSG(FunctionError, "SleepEx()"), KMP_ERR(error),
1413 __kmp_msg_null);
Jonathan Peyton30419822017-05-12 18:01:32 +00001414 }
Jim Cownie5e8470a2013-09-27 10:38:44 +00001415}
1416
Jonathan Peyton30419822017-05-12 18:01:32 +00001417// Determine whether the given address is mapped into the current address space.
1418int __kmp_is_address_mapped(void *addr) {
1419 DWORD status;
1420 MEMORY_BASIC_INFORMATION lpBuffer;
1421 SIZE_T dwLength;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001422
Jonathan Peyton30419822017-05-12 18:01:32 +00001423 dwLength = sizeof(MEMORY_BASIC_INFORMATION);
Jim Cownie5e8470a2013-09-27 10:38:44 +00001424
Jonathan Peyton30419822017-05-12 18:01:32 +00001425 status = VirtualQuery(addr, &lpBuffer, dwLength);
Jim Cownie5e8470a2013-09-27 10:38:44 +00001426
Jonathan Peyton30419822017-05-12 18:01:32 +00001427 return !(((lpBuffer.State == MEM_RESERVE) || (lpBuffer.State == MEM_FREE)) ||
1428 ((lpBuffer.Protect == PAGE_NOACCESS) ||
1429 (lpBuffer.Protect == PAGE_EXECUTE)));
Jim Cownie5e8470a2013-09-27 10:38:44 +00001430}
1431
Jonathan Peyton30419822017-05-12 18:01:32 +00001432kmp_uint64 __kmp_hardware_timestamp(void) {
1433 kmp_uint64 r = 0;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001434
Jonathan Peyton30419822017-05-12 18:01:32 +00001435 QueryPerformanceCounter((LARGE_INTEGER *)&r);
1436 return r;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001437}
1438
1439/* Free handle and check the error code */
Jonathan Peyton30419822017-05-12 18:01:32 +00001440void __kmp_free_handle(kmp_thread_t tHandle) {
1441 /* called with parameter type HANDLE also, thus suppose kmp_thread_t defined
1442 * as HANDLE */
1443 BOOL rc;
1444 rc = CloseHandle(tHandle);
1445 if (!rc) {
1446 DWORD error = GetLastError();
Jonathan Peyton6a393f72017-09-05 15:43:58 +00001447 __kmp_fatal(KMP_MSG(CantCloseHandle), KMP_ERR(error), __kmp_msg_null);
Jonathan Peyton30419822017-05-12 18:01:32 +00001448 }
Jim Cownie5e8470a2013-09-27 10:38:44 +00001449}
1450
Jonathan Peyton30419822017-05-12 18:01:32 +00001451int __kmp_get_load_balance(int max) {
1452 static ULONG glb_buff_size = 100 * 1024;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001453
Jonathan Peyton30419822017-05-12 18:01:32 +00001454 // Saved count of the running threads for the thread balance algortihm
1455 static int glb_running_threads = 0;
1456 static double glb_call_time = 0; /* Thread balance algorithm call time */
Jim Cownie5e8470a2013-09-27 10:38:44 +00001457
Jonathan Peyton30419822017-05-12 18:01:32 +00001458 int running_threads = 0; // Number of running threads in the system.
1459 NTSTATUS status = 0;
1460 ULONG buff_size = 0;
1461 ULONG info_size = 0;
1462 void *buffer = NULL;
1463 PSYSTEM_PROCESS_INFORMATION spi = NULL;
1464 int first_time = 1;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001465
Jonathan Peyton30419822017-05-12 18:01:32 +00001466 double call_time = 0.0; // start, finish;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001467
Jonathan Peyton30419822017-05-12 18:01:32 +00001468 __kmp_elapsed(&call_time);
Jim Cownie5e8470a2013-09-27 10:38:44 +00001469
Jonathan Peyton30419822017-05-12 18:01:32 +00001470 if (glb_call_time &&
1471 (call_time - glb_call_time < __kmp_load_balance_interval)) {
1472 running_threads = glb_running_threads;
1473 goto finish;
1474 }
1475 glb_call_time = call_time;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001476
Jonathan Peyton30419822017-05-12 18:01:32 +00001477 // Do not spend time on running algorithm if we have a permanent error.
1478 if (NtQuerySystemInformation == NULL) {
1479 running_threads = -1;
1480 goto finish;
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001481 }
Jonathan Peyton30419822017-05-12 18:01:32 +00001482
1483 if (max <= 0) {
1484 max = INT_MAX;
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001485 }
Jonathan Peyton30419822017-05-12 18:01:32 +00001486
1487 do {
1488
1489 if (first_time) {
1490 buff_size = glb_buff_size;
1491 } else {
1492 buff_size = 2 * buff_size;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001493 }
Jim Cownie5e8470a2013-09-27 10:38:44 +00001494
Jonathan Peyton30419822017-05-12 18:01:32 +00001495 buffer = KMP_INTERNAL_REALLOC(buffer, buff_size);
1496 if (buffer == NULL) {
1497 running_threads = -1;
1498 goto finish;
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001499 }
Jonathan Peyton30419822017-05-12 18:01:32 +00001500 status = NtQuerySystemInformation(SystemProcessInformation, buffer,
1501 buff_size, &info_size);
1502 first_time = 0;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001503
Jonathan Peyton30419822017-05-12 18:01:32 +00001504 } while (status == STATUS_INFO_LENGTH_MISMATCH);
1505 glb_buff_size = buff_size;
1506
1507#define CHECK(cond) \
1508 { \
1509 KMP_DEBUG_ASSERT(cond); \
1510 if (!(cond)) { \
1511 running_threads = -1; \
1512 goto finish; \
1513 } \
1514 }
1515
1516 CHECK(buff_size >= info_size);
1517 spi = PSYSTEM_PROCESS_INFORMATION(buffer);
1518 for (;;) {
1519 ptrdiff_t offset = uintptr_t(spi) - uintptr_t(buffer);
1520 CHECK(0 <= offset &&
1521 offset + sizeof(SYSTEM_PROCESS_INFORMATION) < info_size);
1522 HANDLE pid = spi->ProcessId;
1523 ULONG num = spi->NumberOfThreads;
1524 CHECK(num >= 1);
1525 size_t spi_size =
1526 sizeof(SYSTEM_PROCESS_INFORMATION) + sizeof(SYSTEM_THREAD) * (num - 1);
1527 CHECK(offset + spi_size <
1528 info_size); // Make sure process info record fits the buffer.
1529 if (spi->NextEntryOffset != 0) {
1530 CHECK(spi_size <=
1531 spi->NextEntryOffset); // And do not overlap with the next record.
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001532 }
Jonathan Peyton30419822017-05-12 18:01:32 +00001533 // pid == 0 corresponds to the System Idle Process. It always has running
1534 // threads on all cores. So, we don't consider the running threads of this
1535 // process.
1536 if (pid != 0) {
1537 for (int i = 0; i < num; ++i) {
1538 THREAD_STATE state = spi->Threads[i].State;
1539 // Count threads that have Ready or Running state.
1540 // !!! TODO: Why comment does not match the code???
1541 if (state == StateRunning) {
1542 ++running_threads;
1543 // Stop counting running threads if the number is already greater than
1544 // the number of available cores
1545 if (running_threads >= max) {
Jim Cownie5e8470a2013-09-27 10:38:44 +00001546 goto finish;
Jonathan Peyton30419822017-05-12 18:01:32 +00001547 }
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001548 }
1549 }
1550 }
Jonathan Peyton30419822017-05-12 18:01:32 +00001551 if (spi->NextEntryOffset == 0) {
1552 break;
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001553 }
Jonathan Peyton30419822017-05-12 18:01:32 +00001554 spi = PSYSTEM_PROCESS_INFORMATION(uintptr_t(spi) + spi->NextEntryOffset);
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001555 }
Jim Cownie5e8470a2013-09-27 10:38:44 +00001556
Jonathan Peyton30419822017-05-12 18:01:32 +00001557#undef CHECK
Jim Cownie5e8470a2013-09-27 10:38:44 +00001558
Jonathan Peyton30419822017-05-12 18:01:32 +00001559finish: // Clean up and exit.
Jim Cownie5e8470a2013-09-27 10:38:44 +00001560
Jonathan Peyton30419822017-05-12 18:01:32 +00001561 if (buffer != NULL) {
1562 KMP_INTERNAL_FREE(buffer);
Jonathan Peytonbd3a7632017-09-27 20:36:27 +00001563 }
Jim Cownie5e8470a2013-09-27 10:38:44 +00001564
Jonathan Peyton30419822017-05-12 18:01:32 +00001565 glb_running_threads = running_threads;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001566
Jonathan Peyton30419822017-05-12 18:01:32 +00001567 return running_threads;
Jim Cownie5e8470a2013-09-27 10:38:44 +00001568} //__kmp_get_load_balance()