[PATCH] D47861: [builtins] emutls cleanup: determine header size using sizeof
Ryan Prichard via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Jun 11 18:36:55 PDT 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rL334462: [builtins] emutls cleanup: determine header size using sizeof (authored by rprichard, committed by ).
Repository:
rL LLVM
https://reviews.llvm.org/D47861
Files:
compiler-rt/trunk/lib/builtins/emutls.c
Index: compiler-rt/trunk/lib/builtins/emutls.c
===================================================================
--- compiler-rt/trunk/lib/builtins/emutls.c
+++ compiler-rt/trunk/lib/builtins/emutls.c
@@ -96,7 +96,7 @@
return (emutls_address_array*) pthread_getspecific(emutls_pthread_key);
}
-#else
+#else /* _WIN32 */
#include <windows.h>
#include <malloc.h>
@@ -222,11 +222,11 @@
InterlockedExchangePointer((void *volatile *)ptr, (void *)val);
}
-#endif
+#endif /* __ATOMIC_RELEASE */
#pragma warning (pop)
-#endif
+#endif /* _WIN32 */
static size_t emutls_num_object = 0; /* number of allocated TLS objects */
@@ -314,11 +314,12 @@
* which must be no smaller than the given index.
*/
static __inline uintptr_t emutls_new_data_array_size(uintptr_t index) {
- /* Need to allocate emutls_address_array with one extra slot
- * to store the data array size.
+ /* Need to allocate emutls_address_array with extra slots
+ * to store the header.
* Round up the emutls_address_array size to multiple of 16.
*/
- return ((index + 1 + 15) & ~((uintptr_t)15)) - 1;
+ uintptr_t header_words = sizeof(emutls_address_array) / sizeof(void *);
+ return ((index + header_words + 15) & ~((uintptr_t)15)) - header_words;
}
/* Returns the size in bytes required for an emutls_address_array with
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D47861.150876.patch
Type: text/x-patch
Size: 1349 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180612/b9f26708/attachment.bin>
More information about the llvm-commits
mailing list