Home
last modified time | relevance | path

Searched refs:tls_model (Results 1 – 25 of 35) sorted by relevance

12

/external/clang/test/Sema/
Dattr-tls_model.c3 #if !__has_attribute(tls_model)
7 int f() __attribute((tls_model("global-dynamic"))); // expected-error {{'tls_model' attribute only …
9 int x __attribute((tls_model("global-dynamic"))); // expected-error {{'tls_model' attribute only ap…
10 static __thread int y __attribute((tls_model("global-dynamic"))); // no-warning
12 static __thread int y __attribute((tls_model("local", "dynamic"))); // expected-error {{'tls_model'…
13 static __thread int y __attribute((tls_model(123))); // expected-error {{'tls_model' attribute requ…
14 static __thread int y __attribute((tls_model("foobar"))); // expected-error {{tls_model must be "gl…
/external/clang/test/CodeGen/
Dthread-specifier.c25 __thread int g __attribute__((tls_model("global-dynamic")));
26 __thread int h __attribute__((tls_model("local-dynamic")));
27 __thread int i __attribute__((tls_model("initial-exec")));
28 __thread int j __attribute__((tls_model("local-exec")));
31 __thread static int a __attribute__((tls_model("initial-exec"))); in f()
Dtls-model.c17 int __thread __attribute__((tls_model("initial-exec"))) z;
/external/mesa3d/src/mapi/
Du_current.h33 __attribute__((tls_model("initial-exec")));
36 __attribute__((tls_model("initial-exec")));
Du_current.c103 __attribute__((tls_model("initial-exec")))
107 __attribute__((tls_model("initial-exec")));
/external/clang/test/SemaCXX/
Dcxx11-gnu-attrs.cpp41 __thread int tls_model [[gnu::tls_model("local-exec")]]; variable
/external/linux-kselftest/tools/testing/selftests/rseq/
Drseq.c33 __attribute__((tls_model("initial-exec"))) __thread
38 static __attribute__((tls_model("initial-exec"))) __thread
Dparam_test.c45 static __thread __attribute__((tls_model("initial-exec")))
50 static __thread __attribute__((tls_model("initial-exec"), unused))
/external/mesa3d/src/mapi/glapi/
Dglapi.h92 __attribute__((tls_model("initial-exec")));
95 __attribute__((tls_model("initial-exec")));
/external/llvm/include/llvm/Transforms/
DInstrumentation.h23 extern __thread __attribute__((tls_model("initial-exec"))) in getDFSanArgTLSPtrForJIT()
29 extern __thread __attribute__((tls_model("initial-exec"))) in getDFSanRetValTLSPtrForJIT()
/external/jemalloc/include/jemalloc/internal/
Djemalloc_internal_defs_host.h138 #define JEMALLOC_TLS_MODEL __attribute__((tls_model("initial-exec")))
Djemalloc_internal_defs.h.in123 /* Non-empty if the tls_model attribute is supported. */
/external/jemalloc_new/include/jemalloc/internal/
Djemalloc_internal_defs.h163 #define JEMALLOC_TLS_MODEL __attribute__((tls_model("initial-exec")))
Djemalloc_internal_defs_host.h154 #define JEMALLOC_TLS_MODEL __attribute__((tls_model("initial-exec")))
Djemalloc_internal_defs.h.in144 /* Non-empty if the tls_model attribute is supported. */
/external/compiler-rt/lib/tsan/dd/
Ddd_interceptors.cc18 __attribute__((tls_model("initial-exec")))
20 __attribute__((tls_model("initial-exec")))
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_tls_get_addr.cc37 __attribute__((tls_model("initial-exec")))
/external/mesa3d/src/glx/
Dglxcurrent.c79 __thread void *__glX_tls_Context __attribute__ ((tls_model("initial-exec")))
Dglxclient.h662 __attribute__ ((tls_model("initial-exec")));
/external/mesa3d/src/egl/main/
Deglcurrent.c49 __attribute__ ((tls_model("initial-exec")));
/external/jemalloc/
Dconfigure.ac521 dnl Check for tls_model attribute support (clang 3.0 still lacks support).
525 JE_COMPILABLE([tls_model attribute], [],
527 __attribute__((tls_model("initial-exec"), unused)) foo;
533 [__attribute__((tls_model("initial-exec")))])
/external/compiler-rt/lib/tsan/rtl/
Dtsan_rtl.h451 __attribute__((tls_model("initial-exec")))
/external/jemalloc_new/
Dconfigure.ac742 dnl Check for tls_model attribute support (clang 3.0 still lacks support).
746 JE_COMPILABLE([tls_model attribute], [],
748 __attribute__((tls_model("initial-exec"), unused)) foo;
2027 [__attribute__((tls_model("initial-exec")))])
/external/dynamic_depth/internal/base/
Dport.h453 #define ATTRIBUTE_INITIAL_EXEC __attribute__((tls_model("initial-exec")))
/external/clang/docs/CommandGuide/
Dclang.rst323 model can be overridden with the tls_model attribute. The compiler will try

12