Home
last modified time | relevance | path

Searched refs:coretid (Results 1 – 5 of 5) sorted by relevance

/external/valgrind/helgrind/
Dhg_basics.h46 static inline Bool HG_(is_sane_ThreadId) ( ThreadId coretid ) { in HG_()
47 return coretid >= 0 && coretid < VG_N_THREADS; in HG_()
Dhg_errors.c519 tl_assert( HG_(is_sane_ThreadId)(thr->coretid) ); in HG_()
520 tl_assert( thr->coretid != VG_INVALID_THREADID ); in HG_()
526 VG_(maybe_record_error)( thr->coretid, in HG_()
542 tl_assert( HG_(is_sane_ThreadId)(thr->coretid) ); in HG_()
543 tl_assert( thr->coretid != VG_INVALID_THREADID ); in HG_()
544 VG_(maybe_record_error)( thr->coretid, in HG_()
562 tl_assert( HG_(is_sane_ThreadId)(thr->coretid) ); in HG_()
563 tl_assert( thr->coretid != VG_INVALID_THREADID ); in HG_()
564 VG_(maybe_record_error)( thr->coretid, in HG_()
577 tl_assert( HG_(is_sane_ThreadId)(thr->coretid) ); in HG_()
[all …]
Dhg_main.c175 thread->coretid = VG_INVALID_THREADID; in mk_Thread()
508 if (thr->coretid == VG_INVALID_THREADID) in pp_Lock()
511 VG_(printf)("tid %d ", thr->coretid); in pp_Lock()
626 thr->coretid = 1; /* FIXME: hardwires an assumption about the in initialise_data_structures()
632 tl_assert(HG_(is_sane_ThreadId)(thr->coretid)); in initialise_data_structures()
633 tl_assert(thr->coretid != VG_INVALID_THREADID); in initialise_data_structures()
635 map_threads[thr->coretid] = thr; in initialise_data_structures()
648 static Thread* map_threads_maybe_lookup ( ThreadId coretid ) in map_threads_maybe_lookup() argument
651 tl_assert( HG_(is_sane_ThreadId)(coretid) ); in map_threads_maybe_lookup()
652 thr = map_threads[coretid]; in map_threads_maybe_lookup()
[all …]
Dhg_lock_n_thread.h87 ThreadId coretid; /* .. via its hgthread field */ member
Dhg_addrdescr.c93 if (thr->coretid == ai->Addr.Stack.tinfo.tid) { in HG_()