Home
last modified time | relevance | path

Searched refs:enter (Results 1 – 25 of 175) sorted by relevance

1234567

/llvm-project-15.0.7/clang/test/OpenMP/
H A Dtarget_enter_data_ast_print.cpp27 #pragma omp target enter data map(to: i) in tmain()
29 #pragma omp target enter data map(to: i) if (target enter data: j > 0) in tmain()
31 #pragma omp target enter data map(to: i) if (b) in tmain()
33 #pragma omp target enter data map(to: c) in tmain()
45 #pragma omp target enter data nowait map(to: i) if (target enter data: j > 0) in tmain()
61 #pragma omp target enter data nowait map(to: i) if (target enter data: j > 0) depend(in : argc, arg… in tmain()
165 #pragma omp target enter data map(to: a) in main()
169 #pragma omp target enter data map(to: a) if (target enter data: b) in main()
175 #pragma omp target enter data map(to: c) in main()
193 #pragma omp target enter data nowait map(to: a) if (target enter data: b) in main()
[all …]
H A Dtarget_enter_data_depend_messages.cpp31 #pragma omp target enter data map(to: i) depend // expected-error {{expected '(' after 'depend'}} in tmain()
51 #pragma omp target enter data map(to : i) depend(in : argv[1][1] = '2') in tmain()
55 #pragma omp target enter data map(to: i) depend (in : argv[0]) in tmain()
59 #pragma omp target enter data map(to: i) depend (in : tmain) in tmain()
91 #pragma omp target enter data map(to: i) depend(in : argv[ : argc][1 : argc - 1]) in tmain()
93 #pragma omp target enter data map(to : i) depend(in : arr[0]) in tmain()
126 #pragma omp target enter data map(to: i) depend(in : argv[1][1] = '2') in main()
130 #pragma omp target enter data map(to: i) depend (in : argv[0]) in main()
134 #pragma omp target enter data map(to: i) depend (in : main) in main()
166 #pragma omp target enter data map(to: i) depend(in : argv[ : argc][1 : argc - 1]) in main()
[all …]
H A Dtarget_enter_data_if_messages.cpp26 #pragma omp target enter data map(to: i) if // expected-error {{expected '(' after 'if'}} in main()
28 #pragma omp target enter data map(to: i) if () // expected-error {{expected expression}} in main()
31 #pragma omp target enter data map(to: i) if (argc > 0 ? argv[1] : argv[2]) in main()
32 #pragma omp target enter data map(to: i) if (argc + argc) in main()
37 …#pragma omp target enter data map(to: i) if(target enter data : // expected-error {{expected expre… in main()
38 …#pragma omp target enter data map(to: i) if(target enter data : // expected-error {{expected expre… in main()
39 …#pragma omp target enter data map(to: i) if(target enter data : argc // expected-error {{expected … in main()
40 #pragma omp target enter data map(to: i) if(target enter data : argc + z) in main()
41 …#pragma omp target enter data map(to: i) if(target enter data : argc) if (for:argc) // expected-er… in main()
42 …#pragma omp target enter data map(to: i) if(target enter data : argc) if (target enter data:argc) … in main()
[all …]
H A Dtarget_enter_data_device_messages.cpp16 #pragma omp target enter data map(to: i) device // expected-error {{expected '(' after 'device'}} in main()
17 …#pragma omp target enter data map(to: i) device ( // expected-error {{expected expression}} expect… in main()
18 #pragma omp target enter data map(to: i) device () // expected-error {{expected expression}} in main()
19 …#pragma omp target enter data map(to: i) device (argc // expected-error {{expected ')'}} expected-… in main()
20 …#pragma omp target enter data map(to: i) device (argc)) // expected-warning {{extra tokens at the … in main()
21 #pragma omp target enter data map(to: i) device (argc > 0 ? argv[1] : argv[2]) // expected-error {{… in main()
22 #pragma omp target enter data map(to: i) device (argc +z + argc ) in main()
24 …#pragma omp target enter data map(to: i) device (S1) // expected-error {{'S1' does not refer to a … in main()
25 …#pragma omp target enter data map(to: i) device (-2) // expected-error {{argument to 'device' clau… in main()
26 #pragma omp target enter data map(to: i) device (-10u) in main()
[all …]
H A Dtarget_enter_data_map_messages.c15 #pragma omp target enter data map(to: map) // expected-warning {{variable 'map' is uninitialized wh… in xxx()
23 …#pragma omp target enter data // expected-error {{expected at least one 'map' clause for '#pragma … in main()
25 …#pragma omp target enter data map(r) // expected-error {{map type must be specified for '#pragma o… in main()
26 …#pragma omp target enter data map(tofrom: r) // expected-error {{map type 'tofrom' is not allowed … in main()
28 …#pragma omp target enter data map(always, to: r) allocate(r) // expected-error {{unexpected OpenMP… in main()
29 #pragma omp target enter data map(always, alloc: r) in main()
30 …#pragma omp target enter data map(always, from: r) // expected-error {{map type 'from' is not allo… in main()
31 …#pragma omp target enter data map(release: r) // expected-error {{map type 'release' is not allowe… in main()
32 …#pragma omp target enter data map(delete: r) // expected-error {{map type 'delete' is not allowed … in main()
36 #pragma omp target enter data map(ompx_hold, alloc: r) in main()
[all …]
H A Dtarget_enter_data_nowait_messages.cpp8 #pragma omp nowait target enter data map(to: i) // expected-error {{expected an OpenMP directive}} in main()
9 …#pragma omp target nowait enter data map(to: i) // expected-warning {{extra tokens at the end of '… in main()
10 #pragma omp target enter nowait data map(to: i) // expected-error {{expected an OpenMP directive}} in main()
11 …#pragma omp target enter data nowait() map(to: i) // expected-warning {{extra tokens at the end of… in main()
12 …#pragma omp target enter data map(to: i) nowait( // expected-warning {{extra tokens at the end of … in main()
13 …#pragma omp target enter data map(to: i) nowait (argc)) // expected-warning {{extra tokens at the … in main()
14 #pragma omp target enter data map(to: i) nowait device (-10u) in main()
15 …#pragma omp target enter data map(to: i) nowait (3.14) device (-10u) // expected-warning {{extra t… in main()
16 …#pragma omp target enter data map(to: i) nowait nowait // expected-error {{directive '#pragma omp … in main()
17 …#pragma omp target enter data nowait map(to: i) nowait // expected-error {{directive '#pragma omp … in main()
H A Dtarget_enter_data_codegen.cpp89 #pragma omp target enter data if(1+3-5) device(arg) map(alloc: gc) nowait in foo()
94 #pragma omp target enter data map(to: la) if(1+3-4) in foo()
117 #pragma omp target enter data map(to: arg) if(arg) device(4) in foo()
142 #pragma omp target enter data map(always, to: lb) in foo()
176 #pragma omp target enter data map(to: gb.b[:3]) in foo()
201 #pragma omp target enter data map(close, to: lb) in foo()
226 #pragma omp target enter data map(always close, to: lb) in foo()
302 #pragma omp target enter data map(present, to: lb) in foo()
327 #pragma omp target enter data map(always close present, to: lb) in foo()
432 #pragma omp target enter data map(to: arg) if(arg) device(4) in no_target_devices()
[all …]
H A Dtarget_enter_data_depend_codegen.cpp109 #pragma omp target enter data if(1+3-5) device(arg) map(alloc:gc) nowait depend(in: arg) in foo()
114 #pragma omp target enter data map(to:la) if(1+3-4) depend(in: la) depend(out: arg) in foo()
198 #pragma omp target enter data map(to:arg) if(arg) device(4) depend(inout: arg, la, gc) in foo()
280 #pragma omp target enter data map(alloc:lb) depend(out: lb, arg, la, gc) in foo()
378 #pragma omp target enter data map(to:gb.b[:3]) depend(in: gb.b[:3], la, lb, gc, arg) in foo()
/llvm-project-15.0.7/llvm/test/tools/llvm-xray/X86/Inputs/
H A Dgraph-diff-B.yaml9 - { type: 0, func-id: 1, cpu: 1, thread: 111, kind: function-enter, tsc: 10000 }
11 - { type: 0, func-id: 2, cpu: 1, thread: 111, kind: function-enter, tsc: 10100 }
13 - { type: 0, func-id: 3, cpu: 1, thread: 111, kind: function-enter, tsc: 10200 }
15 - { type: 0, func-id: 4, cpu: 1, thread: 111, kind: function-enter, tsc: 10300 }
17 - { type: 0, func-id: 5, cpu: 1, thread: 111, kind: function-enter, tsc: 10400 }
19 - { type: 0, func-id: 6, cpu: 1, thread: 111, kind: function-enter, tsc: 10500 }
21 - { type: 0, func-id: 7, cpu: 1, thread: 111, kind: function-enter, tsc: 10600 }
23 - { type: 0, func-id: 8, cpu: 1, thread: 111, kind: function-enter, tsc: 10700 }
25 - { type: 0, func-id: 9, cpu: 1, thread: 111, kind: function-enter, tsc: 10800 }
27 - { type: 0, func-id: 10, cpu: 1, thread: 111, kind: function-enter, tsc: 10900 }
H A Dgraph-diff-A.yaml9 - { type: 0, func-id: 1, cpu: 1, thread: 111, kind: function-enter, tsc: 10000 }
11 - { type: 0, func-id: 2, cpu: 1, thread: 111, kind: function-enter, tsc: 10100 }
13 - { type: 0, func-id: 3, cpu: 1, thread: 111, kind: function-enter, tsc: 10200 }
15 - { type: 0, func-id: 4, cpu: 1, thread: 111, kind: function-enter, tsc: 10300 }
17 - { type: 0, func-id: 5, cpu: 1, thread: 111, kind: function-enter, tsc: 10400 }
19 - { type: 0, func-id: 6, cpu: 1, thread: 111, kind: function-enter, tsc: 10500 }
21 - { type: 0, func-id: 7, cpu: 1, thread: 111, kind: function-enter, tsc: 10600 }
23 - { type: 0, func-id: 8, cpu: 1, thread: 111, kind: function-enter, tsc: 10700 }
25 - { type: 0, func-id: 9, cpu: 1, thread: 111, kind: function-enter, tsc: 10800 }
27 - { type: 0, func-id: 11, cpu: 1, thread: 111, kind: function-enter, tsc: 10900 }
H A Dsimple-instrmap.yaml4 - { id: 1, address: 0x1, function: 0x1, kind: function-enter, always-instrument: true}
6 - { id: 2, address: 0x2, function: 0x2, kind: function-enter, always-instrument: true}
8 - { id: 3, address: 0x3, function: 0x3, kind: function-enter, always-instrument: true}
10 - { id: 4, address: 0x4, function: 0x4, kind: function-enter, always-instrument: true}
12 - { id: 5, address: 0x5, function: 0x5, kind: function-enter, always-instrument: true}
14 - { id: 6, address: 0x6, function: 0x6, kind: function-enter, always-instrument: true}
16 - { id: 7, address: 0x7, function: 0x7, kind: function-enter, always-instrument: true}
18 - { id: 8, address: 0x8, function: 0x8, kind: function-enter, always-instrument: true}
20 - { id: 9, address: 0x9, function: 0x9, kind: function-enter, always-instrument: true}
22 - { id: 10, address: 0xA, function: 0xA, kind: function-enter, always-instrument: true}
[all …]
H A Dsimple-xray-instrmap.yaml2 - { id: 1, address: 0x000000000041CA40, function: 0x000000000041CA40, kind: function-enter, always-…
4 - { id: 2, address: 0x000000000041CA70, function: 0x000000000041CA70, kind: function-enter, always-…
6 - { id: 3, address: 0x000000000041CAA0, function: 0x000000000041CAA0, kind: function-enter, always-…
/llvm-project-15.0.7/llvm/test/tools/llvm-xray/X86/
H A Dstack-multithread.yaml12 - { type: 0, func-id: 1, cpu: 1, thread: 111, kind: function-enter, tsc: 10001 }
13 - { type: 0, func-id: 1, cpu: 1, thread: 111, kind: function-enter, tsc: 10100 }
16 - { type: 0, func-id: 1, cpu: 1, thread: 111, kind: function-enter, tsc: 10401 }
17 - { type: 0, func-id: 2, cpu: 1, thread: 111, kind: function-enter, tsc: 10501 }
18 - { type: 0, func-id: 3, cpu: 1, thread: 111, kind: function-enter, tsc: 10601 }
22 - { type: 0, func-id: 1, cpu: 1, thread: 123, kind: function-enter, tsc: 10401 }
23 - { type: 0, func-id: 2, cpu: 1, thread: 123, kind: function-enter, tsc: 10501 }
24 - { type: 0, func-id: 3, cpu: 1, thread: 123, kind: function-enter, tsc: 10701 }
28 - { type: 0, func-id: 2, cpu: 1, thread: 200, kind: function-enter, tsc: 0 }
29 - { type: 0, func-id: 3, cpu: 1, thread: 200, kind: function-enter, tsc: 10 }
H A Dconvert-fdr-to-yaml.txt11 ; CHECK-NEXT: - { type: 0, func-id: 1, function: '1', cpu: 5, thread: 5, kind: function-enter, ts…
13 ; CHECK-NEXT: - { type: 0, func-id: 2, function: '2', cpu: 5, thread: 5, kind: function-enter, ts…
14 ; CHECK-NEXT: - { type: 0, func-id: 3, function: '3', cpu: 5, thread: 5, kind: function-enter, ts…
17 ; CHECK-NEXT: - { type: 0, func-id: 4, function: '4', cpu: 5, thread: 5, kind: function-enter, ts…
18 ; CHECK-NEXT: - { type: 0, func-id: 5, function: '5', cpu: 5, thread: 5, kind: function-enter, ts…
20 …c-id: 268435455, function: '268435455', cpu: 5, thread: 5, kind: function-enter, tsc: 723822555640…
22 ; CHECK-NEXT: - { type: 0, func-id: 6, function: '6', cpu: 6, thread: 5, kind: function-enter, ts…
H A Daccount-recursive-calls-only.yaml12 - { type: 0, func-id: 1, cpu: 1, thread: 111, kind: function-enter, tsc: 0 }
14 - { type: 0, func-id: 2, cpu: 1, thread: 111, kind: function-enter, tsc: 200000000 }
16 - { type: 0, func-id: 2, cpu: 1, thread: 111, kind: function-enter, tsc: 400000000 }
17 - { type: 0, func-id: 3, cpu: 1, thread: 111, kind: function-enter, tsc: 500000000 }
18 - { type: 0, func-id: 3, cpu: 1, thread: 111, kind: function-enter, tsc: 600000000 }
22 - { type: 0, func-id: 3, cpu: 1, thread: 111, kind: function-enter, tsc: 1000000000 }
H A Dgraph-color-simple-case.yaml13 - { type: 0, func-id: 1, cpu: 1, thread: 111, kind: function-enter, tsc: 10000 }
15 - { type: 0, func-id: 2, cpu: 1, thread: 111, kind: function-enter, tsc: 10100 }
17 - { type: 0, func-id: 3, cpu: 1, thread: 111, kind: function-enter, tsc: 10200 }
19 - { type: 0, func-id: 4, cpu: 1, thread: 111, kind: function-enter, tsc: 10300 }
21 - { type: 0, func-id: 5, cpu: 1, thread: 111, kind: function-enter, tsc: 10400 }
23 - { type: 0, func-id: 6, cpu: 1, thread: 111, kind: function-enter, tsc: 10500 }
25 - { type: 0, func-id: 7, cpu: 1, thread: 111, kind: function-enter, tsc: 10600 }
27 - { type: 0, func-id: 8, cpu: 1, thread: 111, kind: function-enter, tsc: 10700 }
29 - { type: 0, func-id: 9, cpu: 1, thread: 111, kind: function-enter, tsc: 10800 }
H A Dconvert-with-debug-syms.txt12 …pe: 0, func-id: 3, function: main, cpu: 37, thread: 84697, kind: function-enter, tsc: 331535684145…
13 …func-id: 2, function: {{.*foo.*}}, cpu: 37, thread: 84697, kind: function-enter, tsc: 331535684145…
15 …func-id: 1, function: {{.*bar.*}}, cpu: 37, thread: 84697, kind: function-enter, tsc: 331535684145…
30 …pe: 0, func-id: 3, function: main, cpu: 37, thread: 84697, kind: function-enter, tsc: 331535684145…
31 … 0, func-id: 2, function: _Z3foov, cpu: 37, thread: 84697, kind: function-enter, tsc: 331535684145…
33 … 0, func-id: 1, function: _Z3barv, cpu: 37, thread: 84697, kind: function-enter, tsc: 331535684145…
H A Dconvert-basic-log-version3-to-yaml.txt11 …: 1, function: '1', cpu: 7, thread: 25518, process: 25518, kind: function-enter, tsc: 207076734741…
13 …: 2, function: '2', cpu: 7, thread: 25518, process: 25518, kind: function-enter, tsc: 207076832432…
15 …: 1, function: '1', cpu: 7, thread: 25518, process: 25518, kind: function-enter, tsc: 207076892160…
17 …: 2, function: '2', cpu: 7, thread: 25518, process: 25518, kind: function-enter, tsc: 207076962717…
H A Dstack-keep-going.yaml12 - { type: 0, func-id: 1, cpu: 1, thread: 111, kind: function-enter, tsc: 10001 }
14 - { type: 0, func-id: 1, cpu: 1, thread: 111, kind: function-enter, tsc: 10401 }
15 - { type: 0, func-id: 2, cpu: 1, thread: 111, kind: function-enter, tsc: 10501 }
16 - { type: 0, func-id: 3, cpu: 1, thread: 111, kind: function-enter, tsc: 10601 }
H A Daccount-keep-going.yaml12 - { type: 0, func-id: 1, cpu: 1, thread: 111, kind: function-enter, tsc: 10000 }
13 - { type: 0, func-id: 2, cpu: 1, thread: 111, kind: function-enter, tsc: 10001 }
14 - { type: 0, func-id: 3, cpu: 1, thread: 111, kind: function-enter, tsc: 10002 }
H A Dconvert-to-yaml.txt11 …ype: 0, func-id: 3, function: '3', cpu: 37, thread: 84697, kind: function-enter, tsc: 331535684145…
12 …ype: 0, func-id: 2, function: '2', cpu: 37, thread: 84697, kind: function-enter, tsc: 331535684145…
14 …ype: 0, func-id: 1, function: '1', cpu: 37, thread: 84697, kind: function-enter, tsc: 331535684145…
H A Dconvert-basic-log-arg1-version3-to-yaml.txt11 …id: 3, function: '3', cpu: 0, thread: 2590, process: 2590, kind: function-enter, tsc: 203330363090…
13 …id: 2, function: '2', cpu: 0, thread: 2590, process: 2590, kind: function-enter, tsc: 203349020070…
15 …n: '1', args: [ 67 ], cpu: 0, thread: 2590, process: 2590, kind: function-enter-arg, tsc: 20335053…
H A Dconvert-fdr-log-arg1-version3-to-yaml.txt11 …id: 3, function: '3', cpu: 6, thread: 2631, process: 2631, kind: function-enter, tsc: 203404211710…
13 …id: 2, function: '2', cpu: 6, thread: 2631, process: 2631, kind: function-enter, tsc: 203404314568…
15 …n: '1', args: [ 67 ], cpu: 6, thread: 2631, process: 2631, kind: function-enter-arg, tsc: 20340497…
/llvm-project-15.0.7/llvm/test/tools/llvm-xray/AArch64/
H A Dextract-instrmap.test9 # CHECK-NEXT: - { id: 1, address: 0x420, function: 0x420, kind: function-enter, always-instrument: …
11 # CHECK-NEXT: - { id: 2, address: 0x464, function: 0x464, kind: function-enter, always-instrument: …
13 # CHECK-NEXT: - { id: 3, address: 0x4A8, function: 0x4A8, kind: function-enter, always-instrument: …
21 # MANGLED-NEXT: - { id: 1, address: 0x420, function: 0x420, kind: function-enter, always-instrument…
23 # MANGLED-NEXT: - { id: 2, address: 0x464, function: 0x464, kind: function-enter, always-instrument…
25 # MANGLED-NEXT: - { id: 3, address: 0x4A8, function: 0x4A8, kind: function-enter, always-instrument…
/llvm-project-15.0.7/openmp/libomptarget/test/mapping/present/
H A Dtarget_enter_data.c15 #pragma omp target enter data map(alloc: i) in main()
16 #pragma omp target enter data map(present, alloc: i) in main()
25 #pragma omp target enter data map(present, alloc: i) in main()

1234567