OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:thread_local
(Results
1 - 25
of
185
) sorted by null
1
2
3
4
5
6
7
8
/external/llvm/test/Assembler/
tls-models.ll
3
; CHECK: @a =
thread_local
global i32 0
4
; CHECK: @b =
thread_local
(localdynamic) global i32 0
5
; CHECK: @c =
thread_local
(initialexec) global i32 0
6
; CHECK: @d =
thread_local
(localexec) global i32 0
8
@a =
thread_local
global i32 0
9
@b =
thread_local
(localdynamic) global i32 0
10
@c =
thread_local
(initialexec) global i32 0
11
@d =
thread_local
(localexec) global i32 0
/external/clang/test/SemaCXX/
cxx11-thread-local.cpp
4
static
thread_local
int a;
6
thread_local
int c; // expected-error {{'
thread_local
' is only allowed on variable declarations}}
7
static
thread_local
int d; // expected-note {{here}}
10
thread_local
int S::a;
11
thread_local
int S::b; // expected-error {{thread-local declaration of 'b' follows non-thread-local declaration}}
12
thread_local
int S::c; // expected-error {{non-static data member defined out-of-line}}
15
thread_local
int x[3];
16
thread_local
int y[3];
17
thread_local
int z[3]; // expected-note {{previous}
[
all
...]
cxx11-thread-local-print.cpp
5
// CHECK:
thread_local
int cxx11_tl;
8
thread_local
int cxx11_tl;
11
// CHECK:
thread_local
int cxx11_tl;
14
thread_local
int cxx11_tl;
/external/clang/test/CodeGen/
thread-specifier.c
3
// CHECK: @b = external
thread_local
global
4
// CHECK: @d.e = internal
thread_local
global
5
// CHECK: @d.f = internal
thread_local
global
6
// CHECK: @f.a = internal
thread_local
(initialexec) global
7
// CHECK: @a =
thread_local
global
8
// CHECK: @g =
thread_local
global
9
// CHECK: @h =
thread_local
(localdynamic) global
10
// CHECK: @i =
thread_local
(initialexec) global
11
// CHECK: @j =
thread_local
(localexec) global
tls-model.c
14
// CHECK-GD: @f.y = internal
thread_local
global i32 0
15
// CHECK-GD: @x =
thread_local
global i32 0
16
// CHECK-GD: @z =
thread_local
(initialexec) global i32 0
18
// CHECK-LD: @f.y = internal
thread_local
(localdynamic) global i32 0
19
// CHECK-LD: @x =
thread_local
(localdynamic) global i32 0
20
// CHECK-LD: @z =
thread_local
(initialexec) global i32 0
22
// CHECK-IE: @f.y = internal
thread_local
(initialexec) global i32 0
23
// CHECK-IE: @x =
thread_local
(initialexec) global i32 0
24
// CHECK-IE: @z =
thread_local
(initialexec) global i32 0
26
// CHECK-LE: @f.y = internal
thread_local
(localexec) global i32
[
all
...]
darwin-thread-specifier.c
2
// CHECK: @b =
thread_local
global i32 5, align 4
/external/clang/test/CodeGenCXX/
tls-init-funcs.cpp
3
// CHECK: @a = internal
thread_local
global
10
thread_local
A a;
cxx11-thread-local.cpp
6
// CHECK: @a =
thread_local
global i32 0
7
thread_local
int a = f();
8
extern
thread_local
int b;
11
// CHECK: @_ZL1d = internal
thread_local
global i32 0
12
static
thread_local
int d = g();
14
struct U { static
thread_local
int m; };
15
// CHECK: @_ZN1U1mE =
thread_local
global i32 0
16
thread_local
int U::m = f();
18
template<typename T> struct V { static
thread_local
int m; };
19
template<typename T>
thread_local
int V<T>::m = g()
[
all
...]
cxx11-thread-local-reference.cpp
5
// CHECK: @r =
thread_local
global i32* null
6
thread_local
int &r = f();
/external/chromium_org/tools/gyp/test/mac/clang-cxx-language-standard/
c++98.cc
20
thread_local
,
enumerator in enum:cxx11_keywords
/external/llvm/test/CodeGen/Mips/
tls-alias.ll
3
@foo =
thread_local
global i32 42
tls-models.ll
4
@external_gd = external
thread_local
global i32
5
@internal_gd = internal
thread_local
global i32 42
7
@external_ld = external
thread_local
(localdynamic) global i32
8
@internal_ld = internal
thread_local
(localdynamic) global i32 42
10
@external_ie = external
thread_local
(initialexec) global i32
11
@internal_ie = internal
thread_local
(initialexec) global i32 42
13
@external_le = external
thread_local
(localexec) global i32
14
@internal_le = internal
thread_local
(localexec) global i32 42
rdhwr-directives.ll
3
@a = external
thread_local
global i32
tls16.ll
3
@a =
thread_local
global i32 4, align 4
tls16_2.ll
3
@f.i = internal
thread_local
unnamed_addr global i32 1, align 4
/external/llvm/test/CodeGen/X86/
global-sections-tls.ll
4
@G1 = internal
thread_local
global i32 0 ; <i32*> [#uses=1]
tlv-2.ll
3
@b =
thread_local
global i32 5, align 4
4
@a =
thread_local
global i32 0, align 4
5
@c = internal
thread_local
global i32 0, align 4
6
@d = internal
thread_local
global i32 5, align 4
x86-64-tls-1.ll
2
@tm_nest_level = internal
thread_local
global i32 0
2009-04-24.ll
7
@i =
thread_local
global i32 15
/external/llvm/test/CodeGen/ARM/
tls-models.ll
5
@external_gd = external
thread_local
global i32
6
@internal_gd = internal
thread_local
global i32 42
8
@external_ld = external
thread_local
(localdynamic) global i32
9
@internal_ld = internal
thread_local
(localdynamic) global i32 42
11
@external_ie = external
thread_local
(initialexec) global i32
12
@internal_ie = internal
thread_local
(initialexec) global i32 42
14
@external_le = external
thread_local
(localexec) global i32
15
@internal_le = internal
thread_local
(localexec) global i32 42
tls3.ll
5
@teste = internal
thread_local
global %struct.anon zeroinitializer ; <%struct.anon*> [#uses=1]
tls1.ll
9
@i =
thread_local
global i32 15 ; <i32*> [#uses=2]
/external/clang/test/PCH/
thread-local.cpp
7
extern
thread_local
int a;
15
thread_local
int b; // expected-error {{thread-local declaration of 'b' with dynamic initialization follows declaration with static initialization}}
17
thread_local
int c; // expected-error {{thread-local declaration of 'c' follows non-thread-local declaration}}
/external/llvm/test/MC/Mips/
elf-tls.ll
13
@t1 =
thread_local
global i32 0, align 4
23
@t2 = external
thread_local
global i32
32
@f3.i = internal
thread_local
unnamed_addr global i32 1, align 4
/external/clang/test/Sema/
thread-specifier.c
5
// RUN: %clang_cc1 -triple i686-pc-linux-gnu -fsyntax-only -Wno-private-extern -verify -pedantic -x c++ %s -DCXX11 -D__thread=
thread_local
-std=c++11 -Wno-deprecated
24
// expected-error-re@-2 {{'(__thread|_Thread_local|
thread_local
)' is only allowed on variable declarations}}
36
// expected-error@-6 {{'
thread_local
' is only allowed on variable declarations}}
56
__thread register int t13a; // expected-error-re {{cannot combine with previous '(__thread|_Thread_local|
thread_local
)' declaration specifier}}
60
__thread typedef int t14; // expected-error-re {{cannot combine with previous '(__thread|_Thread_local|
thread_local
)' declaration specifier}}
67
extern
thread_local
int t17; // expected-note {{previous declaration is here}}
70
thread_local
int t18; // expected-error {{thread-local declaration of 't18' with dynamic initialization follows declaration with static initialization}}
93
// expected-note@-6 {{use '
thread_local
' to allow this}}
105
// expected-note@-4 {{use '
thread_local
' to allow this}}
Completed in 421 milliseconds
1
2
3
4
5
6
7
8