summaryrefslogtreecommitdiff
path: root/test/tls/tls-macros-thumb.h
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2016-10-28 20:29:21 +0200
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2016-10-28 20:31:55 +0200
commit99ef2719fb3d703fe38c4113cd7f5adec516dd3a (patch)
tree2c1f77cb41b60ccbf8faa77a3640491a3546b546 /test/tls/tls-macros-thumb.h
parent543308f6c46cf2edf8a524bc9c631e472570fe72 (diff)
test: remove test suite
The test suite is now a developed in a separate git repository. See here: http://cgit.uclibc-ng.org/cgi/cgit/uclibc-ng-test.git The test suite should be just like every other software compiled with the cross-toolchain. In the past strange problems where found when the test suite got build in the toolchain creation step.
Diffstat (limited to 'test/tls/tls-macros-thumb.h')
-rw-r--r--test/tls/tls-macros-thumb.h57
1 files changed, 0 insertions, 57 deletions
diff --git a/test/tls/tls-macros-thumb.h b/test/tls/tls-macros-thumb.h
deleted file mode 100644
index dfa6582a5..000000000
--- a/test/tls/tls-macros-thumb.h
+++ /dev/null
@@ -1,57 +0,0 @@
-#define TLS_LE(x) \
- ({ int *__result; \
- void *tp = __builtin_thread_pointer (); \
- __asm__ ("ldr %0, 1f; " \
- "add %0, %1, %0; " \
- "b 2f; " \
- ".align 2; " \
- "1: .word " #x "(tpoff); " \
- "2: " \
- : "=&r" (__result) : "r" (tp)); \
- __result; })
-
-#define TLS_IE(x) \
- ({ int *__result; \
- int tmp; \
- void *tp = __builtin_thread_pointer (); \
- __asm__ ("ldr %0, 1f; " \
- "adr %1, 1f; " \
- "ldr %0, [%1, %0]; " \
- "add %0, %2, %0; " \
- "b 2f; " \
- ".align 2; " \
- "1: .word " #x "(gottpoff); " \
- "2: " \
- : "=&r" (__result), "=&r"(tmp) : "r" (tp)); \
- __result; })
-
-#define TLS_LD(x) \
- ({ char *__result; \
- int __offset; \
- extern void *__tls_get_addr (void *); \
- __asm__ ("ldr %0, 2f; " \
- ".align 2; " \
- "1: add %0, pc, %0; " \
- "b 3f; " \
- "2: .word " #x "(tlsldm) + (. - 1b - 4); " \
- "3: " \
- : "=r" (__result)); \
- __result = (char *)__tls_get_addr (__result); \
- __asm__ ("ldr %0, 1f; " \
- "b 2f; " \
- "1: .word " #x "(tlsldo); " \
- "2: " \
- : "=r" (__offset)); \
- (int *) (__result + __offset); })
-
-#define TLS_GD(x) \
- ({ int *__result; \
- extern void *__tls_get_addr (void *); \
- __asm__ ("ldr %0, 2f; " \
- ".align 2; " \
- "1: add %0, pc, %0; " \
- "b 3f; " \
- "2: .word " #x "(tlsgd) + (. - 1b - 4); " \
- "3: " \
- : "=r" (__result)); \
- (int *)__tls_get_addr (__result); })