| /llvm-project-15.0.7/lldb/source/Plugins/Process/elf-core/ |
| H A D | ProcessElfCore.cpp | 235 if (thread_data.signo != 0) in DoLoadCore() 245 thread_data.signo = thread_data.prstatus_sig; in DoLoadCore() 601 ThreadData thread_data; in parseFreeBSDNotes() local 611 thread_data = ThreadData(); in parseFreeBSDNotes() 671 ThreadData thread_data; in parseNetBSDNotes() local 714 thread_data.tid = tid; in parseNetBSDNotes() 740 thread_data.tid = tid; in parseNetBSDNotes() 766 thread_data.tid = tid; in parseNetBSDNotes() 831 ThreadData thread_data = {}; in parseOpenBSDNotes() local 878 ThreadData thread_data; in parseLinuxNotes() local [all …]
|
| /llvm-project-15.0.7/openmp/runtime/src/ |
| H A D | kmp_tasking.cpp | 382 return thread_data; in __kmp_get_priority_deque_data() 443 thread_data->td.td_deque[thread_data->td.td_deque_tail] = taskdata; in __kmp_push_priority_task() 446 (thread_data->td.td_deque_tail + 1) & TASK_DEQUE_MASK(thread_data->td); in __kmp_push_priority_task() 454 thread_data->td.td_deque_head, thread_data->td.td_deque_tail)); in __kmp_push_priority_task() 573 thread_data->td.td_deque[thread_data->td.td_deque_tail] = in __kmp_push_task() 577 (thread_data->td.td_deque_tail + 1) & TASK_DEQUE_MASK(thread_data->td); in __kmp_push_task() 585 thread_data->td.td_deque_head, thread_data->td.td_deque_tail)); in __kmp_push_task() 2930 thread_data->td.td_deque[prev] = thread_data->td.td_deque[target]; in __kmp_get_priority_task() 2968 thread_data->td.td_deque_head, thread_data->td.td_deque_tail)); in __kmp_remove_my_task() 2980 thread_data->td.td_deque_head, thread_data->td.td_deque_tail)); in __kmp_remove_my_task() [all …]
|
| H A D | ompt-internal.h | 76 ompt_data_t thread_data; member
|
| H A D | ompd-specific.h | 100 OMPD_ACCESS(ompt_thread_info_t, thread_data) \
|
| H A D | ompt-specific.cpp | 201 return &(thread->th.ompt_thread_info.thread_data); in __ompt_get_thread_data_internal()
|
| H A D | kmp_runtime.cpp | 3838 root_thread->th.ompt_thread_info.thread_data = ompt_data_none; in __kmp_register_root() 4062 &(root->r.r_uber_thread->th.ompt_thread_info.thread_data)); in __kmp_reset_root() 5976 ompt_data_t *thread_data = nullptr; in __kmp_launch_thread() local 5978 thread_data = &(this_thr->th.ompt_thread_info.thread_data); in __kmp_launch_thread() 5979 *thread_data = ompt_data_none; in __kmp_launch_thread() 5987 ompt_thread_worker, thread_data); in __kmp_launch_thread() 6059 ompt_callbacks.ompt_callback(ompt_callback_thread_end)(thread_data); in __kmp_launch_thread()
|
| /llvm-project-15.0.7/openmp/tools/multiplex/tests/custom_data_storage/ |
| H A D | first-tool.h | 79 static void on_cds_ompt_callback_flush(ompt_data_t *thread_data, in on_cds_ompt_callback_flush() argument 81 thread_data = get_own_ompt_data(thread_data); in on_cds_ompt_callback_flush() 82 on_cds_ompt_callback_flush(thread_data, codeptr_ra); in on_cds_ompt_callback_flush() 193 ompt_data_t *thread_data) { in on_cds_ompt_callback_thread_begin() argument 194 if (thread_data->ptr) in on_cds_ompt_callback_thread_begin() 196 allocate_data_pair(thread_data); in on_cds_ompt_callback_thread_begin() 197 thread_data = get_own_ompt_data(thread_data); in on_cds_ompt_callback_thread_begin() 198 on_ompt_callback_thread_begin(thread_type, thread_data); in on_cds_ompt_callback_thread_begin() 201 static void on_cds_ompt_callback_thread_end(ompt_data_t *thread_data) { in on_cds_ompt_callback_thread_end() argument 202 thread_data = get_own_ompt_data(thread_data); in on_cds_ompt_callback_thread_end() [all …]
|
| /llvm-project-15.0.7/openmp/runtime/test/ompt/synchronization/ |
| H A D | master.c | 49 ompt_data_t *thread_data) { in on_ompt_callback_thread_begin() argument 50 if (thread_data->ptr) in on_ompt_callback_thread_begin() 52 thread_data->value = ompt_get_unique_id(); in on_ompt_callback_thread_begin() 56 thread_type, thread_data->value); in on_ompt_callback_thread_begin()
|
| /llvm-project-15.0.7/openmp/runtime/test/ompt/parallel/ |
| H A D | repeated_calls.c | 52 ompt_data_t *thread_data) { in on_ompt_callback_thread_begin() argument 53 if (thread_data->ptr) in on_ompt_callback_thread_begin() 55 thread_data->value = ompt_get_unique_id(); in on_ompt_callback_thread_begin() 59 thread_type, thread_data->value); in on_ompt_callback_thread_begin()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/postmortem/FreeBSDKernel/ |
| H A D | TestFreeBSDKernelVMCore.py | 50 for thread_index, thread_data in threads.items(): 51 bt_expected = thread_data["bt"] 52 regs_expected = thread_data["regs"] 54 self.assertEqual(thread.GetName(), thread_data["name"])
|
| /llvm-project-15.0.7/openmp/runtime/test/ompt/synchronization/barrier/ |
| H A D | implicit_task_data.c | 63 ompt_data_t *thread_data) in on_ompt_callback_thread_begin() argument 65 if(thread_data->ptr) in on_ompt_callback_thread_begin() 67 thread_data->value = ompt_get_unique_id(); in on_ompt_callback_thread_begin() 68 …ompt_get_thread_data()->value, ompt_thread_t_values[thread_type], thread_type, thread_data->value); in on_ompt_callback_thread_begin()
|
| /llvm-project-15.0.7/openmp/tools/multiplex/ |
| H A D | ompt-multiplex.h | 296 static void ompt_multiplex_callback_flush(ompt_data_t *thread_data, in ompt_multiplex_callback_flush() argument 300 ompt_multiplex_get_own_thread_data(thread_data), codeptr_ra); in ompt_multiplex_callback_flush() 304 ompt_multiplex_get_client_thread_data(thread_data), codeptr_ra); in ompt_multiplex_callback_flush() 626 ompt_multiplex_allocate_data_pair(thread_data); in ompt_multiplex_callback_thread_begin() 630 thread_type, ompt_multiplex_get_own_thread_data(thread_data)); in ompt_multiplex_callback_thread_begin() 634 thread_type, ompt_multiplex_get_client_thread_data(thread_data)); in ompt_multiplex_callback_thread_begin() 645 ompt_multiplex_get_own_thread_data(thread_data)); in ompt_multiplex_callback_thread_end() 651 ompt_multiplex_get_client_thread_data(thread_data)); in ompt_multiplex_callback_thread_end() 658 ompt_multiplex_get_own_thread_data(thread_data)); in ompt_multiplex_callback_thread_end() 663 ompt_multiplex_free_data_pair(thread_data); in ompt_multiplex_callback_thread_end() [all …]
|
| /llvm-project-15.0.7/openmp/runtime/test/ompt/ |
| H A D | callback.h | 622 ompt_data_t *thread_data, in on_ompt_callback_flush() argument 626 thread_data->value, codeptr_ra); in on_ompt_callback_flush() 1117 ompt_data_t *thread_data) in on_ompt_callback_thread_begin() argument 1119 if(thread_data->ptr) in on_ompt_callback_thread_begin() 1121 thread_data->value = ompt_get_unique_id(); in on_ompt_callback_thread_begin() 1125 thread_type, thread_data->value); in on_ompt_callback_thread_begin() 1130 ompt_data_t *thread_data) in on_ompt_callback_thread_end() argument 1134 ompt_get_thread_data()->value, thread_data->value); in on_ompt_callback_thread_end()
|
| /llvm-project-15.0.7/lld/test/ELF/ |
| H A D | tls.s | 50 .section .thread_data,"awT",@progbits
|
| /llvm-project-15.0.7/openmp/runtime/test/ompt/loadtool/tool_available_search/ |
| H A D | tool_available_search.c | 99 ompt_data_t *thread_data) in on_ompt_callback_thread_begin() argument
|
| /llvm-project-15.0.7/llvm/test/CodeGen/X86/ |
| H A D | code-model-elf.ll | 40 @thread_data = external thread_local global i32, align 4 387 ; leaq thread_data@TLSGD(%rip), %rdi 395 ; leaq thread_data@TLSGD(%rip), %rdi 405 ; CHECK-NEXT: movq thread_data@GOTTPOFF(%rip), %rax 408 %1 = load i32, ptr @thread_data, align 4
|
| /llvm-project-15.0.7/openmp/tools/archer/ |
| H A D | ompt-tsan.cpp | 611 ompt_data_t *thread_data) { in ompt_tsan_thread_begin() argument 624 thread_data->value = my_next_id(); in ompt_tsan_thread_begin() 627 static void ompt_tsan_thread_end(ompt_data_t *thread_data) { in ompt_tsan_thread_end() argument
|
| /llvm-project-15.0.7/openmp/runtime/src/include/ |
| H A D | omp-tools.h.var | 717 ompt_data_t *thread_data 725 ompt_data_t *thread_data 933 ompt_data_t *thread_data,
|