[Openmp-commits] [openmp] r244030 - D11159: Fixing the stack offset functionality
Andrey Churbanov
Andrey.Churbanov at intel.com
Wed Aug 5 04:12:45 PDT 2015
Author: achurbanov
Date: Wed Aug 5 06:12:45 2015
New Revision: 244030
URL: http://llvm.org/viewvc/llvm-project?rev=244030&view=rev
Log:
D11159: Fixing the stack offset functionality
Modified:
openmp/trunk/runtime/src/z_Linux_util.c
Modified: openmp/trunk/runtime/src/z_Linux_util.c
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/z_Linux_util.c?rev=244030&r1=244029&r2=244030&view=diff
==============================================================================
--- openmp/trunk/runtime/src/z_Linux_util.c (original)
+++ openmp/trunk/runtime/src/z_Linux_util.c Wed Aug 5 06:12:45 2015
@@ -684,7 +684,7 @@ __kmp_launch_worker( void *thr )
#endif /* KMP_BLOCK_SIGNALS */
void *exit_val;
#if KMP_OS_LINUX || KMP_OS_FREEBSD
- void *padding = 0;
+ void * volatile padding = 0;
#endif
int gtid;
@@ -1012,8 +1012,13 @@ __kmp_create_worker( int gtid, kmp_info_
);
}; // if
- /* Set stack size for this thread now. */
- stack_size += gtid * __kmp_stkoffset;
+ /* Set stack size for this thread now.
+ * The multiple of 2 is there because on some machines, requesting an unusual stacksize
+ * causes the thread to have an offset before the dummy alloca() takes place to create the
+ * offset. Since we want the user to have a sufficient stacksize AND support a stack offset, we
+ * alloca() twice the offset so that the upcoming alloca() does not eliminate any premade
+ * offset, and also gives the user the stack space they requested for all threads */
+ stack_size += gtid * __kmp_stkoffset * 2;
KA_TRACE( 10, ( "__kmp_create_worker: T#%d, default stacksize = %lu bytes, "
"__kmp_stksize = %lu bytes, final stacksize = %lu bytes\n",
More information about the Openmp-commits
mailing list