/freebsd/tools/test/popss/ |
H A D | popss.c | 48 static u_long *stk; 73 dbr.dr[0] = (uintptr_t)stk; in setup() 125 printf("child pid %d, stk at %p\n", getpid(), stk); in act() 126 *stk = read_ss(); in act() 136 : : "r" (stk), "m" (boundx) : "memory"); in act() 139 : : "r" (stk) : "memory"); in act() 142 : : "r" (stk) : "memory"); in act() 146 : : "r" (stk) : "memory"); in act() 149 : : "r" (stk) in act() 49 static u_long *stk; global() variable [all...] |
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_deadlock_detector.h | 59 bool addLock(uptr lock_id, uptr current_epoch, u32 stk) { in addLock() argument 70 LockWithContext l = {lock_id_short, stk}; in addLock() 102 return all_locks_with_contexts_[i].stk; in findLockContext() 121 u32 stk; member 213 void onLockAfter(DeadlockDetectorTLS<BV> *dtls, uptr cur_node, u32 stk = 0) { 216 dtls->addLock(cur_idx, current_epoch_, stk); 240 uptr addEdges(DeadlockDetectorTLS<BV> *dtls, uptr cur_node, u32 stk, in addEdges() argument 250 dtls->findLockContext(added_edges[i]), stk, in addEdges() 275 bool onLock(DeadlockDetectorTLS<BV> *dtls, uptr cur_node, u32 stk = 0) { 278 addEdges(dtls, cur_node, stk, 0); [all …]
|
H A D | sanitizer_deadlock_detector1.cpp | 94 m->stk = cb->Unwind(); in MutexInit() 147 rep->loop[i].stk[0] = stk_to; in ReportDeadlock() 148 rep->loop[i].stk[1] = stk_from; in ReportDeadlock() 154 u32 stk = 0; in MutexAfterLock() local 156 stk = cb->Unwind(); in MutexAfterLock() 158 if (dd.onFirstLock(<->dd, m->id, stk)) in MutexAfterLock() 160 if (dd.onLockFast(<->dd, m->id, stk)) in MutexAfterLock() 168 dd.addEdges(<->dd, m->id, stk ? stk : cb->Unwind(), cb->UniqueTid()); in MutexAfterLock() 169 dd.onLockAfter(<->dd, m->id, stk); in MutexAfterLock()
|
H A D | sanitizer_deadlock_detector_interface.h | 37 u32 stk; // creation stack member 59 u32 stk[2]; // stack ids for the edge member
|
H A D | sanitizer_deadlock_detector2.cpp | 67 u32 stk; member 209 tm->stk = cb->Unwind(); in MutexBeforeLock() 220 u32 stk1 = lt->locked[i].stk; in MutexBeforeLock() 296 tm->stk = cb->Unwind(); in MutexAfterLock() 407 rep->loop[i].stk[0] = flags.second_deadlock_stack ? link->stk0 : 0; in Report() 408 rep->loop[i].stk[1] = link->stk1; in Report()
|
/freebsd/sys/contrib/openzfs/include/os/freebsd/spl/sys/ |
H A D | proc.h | 67 do_thread_create(caddr_t stk, size_t stksize, void (*proc)(void *), void *arg, in do_thread_create() argument 77 ASSERT(stk == NULL); in do_thread_create() 95 #define thread_create_named(name, stk, stksize, proc, arg, len, \ argument 97 do_thread_create(stk, stksize, proc, arg, len, pp, state, pri, name) 98 #define thread_create(stk, stksize, proc, arg, len, pp, state, pri) \ argument 99 do_thread_create(stk, stksize, proc, arg, len, pp, state, pri, #proc)
|
/freebsd/sys/contrib/openzfs/include/os/linux/spl/sys/ |
H A D | thread.h | 47 #define thread_create_named(name, stk, stksize, func, arg, len, \ argument 49 __thread_create(stk, stksize, (thread_func_t)func, \ 52 #define thread_create(stk, stksize, func, arg, len, pp, state, pri) \ argument 53 __thread_create(stk, stksize, (thread_func_t)func, #func, \ 62 extern kthread_t *__thread_create(caddr_t stk, size_t stksize,
|
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/dd/ |
H A D | dd_rtl.cpp | 31 static void PrintStackTrace(Thread *thr, u32 stk) { in PrintStackTrace() argument 32 StackTrace stack = StackDepotGet(stk); in PrintStackTrace() 47 PrintStackTrace(thr, rep->loop[i].stk[1]); in ReportDeadlock() 48 if (rep->loop[i].stk[0]) { in ReportDeadlock() 51 PrintStackTrace(thr, rep->loop[i].stk[0]); in ReportDeadlock()
|
/freebsd/crypto/openssl/crypto/ |
H A D | param_build_set.c | 98 STACK_OF(BIGNUM_const) *stk) in ossl_param_build_set_multi_key_bn() 100 int i, sz = sk_BIGNUM_const_num(stk); in ossl_param_build_set_multi_key_bn() 106 bn = sk_BIGNUM_const_value(stk, i); in ossl_param_build_set_multi_key_bn() 114 bn = sk_BIGNUM_const_value(stk, i); in ossl_param_build_set_multi_key_bn()
|
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/ |
H A D | tst.signature.d | 35 @stk[ustack()] = count(); 46 @stk[ustack()] = count();
|
/freebsd/contrib/flex/src/ |
H A D | dfa.c | 234 static int did_stk_init = false, *stk; in epsclosure() local 256 stk = reallocate_integer_array( stk, current_max_dfa_size ); \ in epsclosure() 263 stk[stkend] = state; \ in epsclosure() 285 stk = allocate_integer_array (current_max_dfa_size); in epsclosure() 305 ns = stk[stkpos]; in epsclosure() 327 if (IS_MARKED (stk[stkpos])) in epsclosure() 328 UNMARK_STATE (stk[stkpos]); in epsclosure()
|
/freebsd/sys/i386/i386/ |
H A D | trap.c | 197 vm_offset_t stk; in trap_check_kstack() local 200 stk = read_esp(); in trap_check_kstack() 201 if (stk >= PMAP_TRM_MIN_ADDRESS) in trap_check_kstack() 202 panic("td %p stack %#x in trampoline", td, stk); in trap_check_kstack() 203 if (!kstack_contains(td, stk, 0)) in trap_check_kstack() 205 td, stk, td->td_kstack, td->td_kstack_pages); in trap_check_kstack()
|
/freebsd/sys/contrib/openzfs/module/os/linux/spl/ |
H A D | spl-thread.c | 72 __thread_create(caddr_t stk, size_t stksize, thread_func_t func, in __thread_create() argument 81 ASSERT(stk == NULL); in __thread_create()
|
/freebsd/cddl/contrib/opensolaris/tools/ctf/cvt/ |
H A D | stack.h | 40 typedef struct stk stk_t;
|
H A D | stack.c | 42 struct stk { struct
|
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
H A D | tsan_rtl_mutex.cpp | 534 rep.AddMutex(r->loop[i].mtx_ctx0, r->loop[i].stk[0]); in ReportDeadlock() 541 u32 stk = r->loop[i].stk[j]; in ReportDeadlock() local 542 if (stk && stk != kInvalidStackID) { in ReportDeadlock() 543 rep.AddStack(StackDepotGet(stk), true); in ReportDeadlock()
|
H A D | tsan_defs.h | 186 StackID stk; member
|
H A D | tsan_rtl_access.cpp | 106 StackID stk) { in TraceMutexLock() argument 115 ev.stack_lo = stk; in TraceMutexLock() 116 ev.stack_hi = stk >> EventLock::kStackIDLoBits; in TraceMutexLock()
|
H A D | tsan_debugging.cpp | 260 StackTrace stack = StackDepotGet(b->stk); in __tsan_get_alloc_stack()
|
H A D | tsan_sync.cpp | 53 b->stk = CurrentStackId(thr, pc); in AllocBlock()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/ |
H A D | DWARFLocationExpression.cpp | 80 SimpleTypeKind stk = ti.getSimpleKind(); in GetIntegralTypeInfo() local 81 return {GetTypeSizeForSimpleKind(stk), IsSimpleTypeSignedInteger(stk)}; in GetIntegralTypeInfo()
|
/freebsd/sys/contrib/device-tree/src/arm/ti/omap/ |
H A D | omap4-var-stk-om44.dts | 13 compatible = "variscite,var-stk-om44", "variscite,var-som-om44", "ti,omap4460", "ti,omap4";
|
/freebsd/crypto/openssl/include/internal/ |
H A D | param_build_set.h | 44 STACK_OF(BIGNUM_const) *stk);
|
/freebsd/sys/contrib/openzfs/include/sys/ |
H A D | zfs_context.h | 229 #define thread_create_named(name, stk, stksize, func, arg, len, \ 232 #define thread_create(stk, stksize, func, arg, len, pp, state, pri) \
|
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/go/ |
H A D | tsan_go.cpp | 107 loc->stack = SymbolizeStackId(b->stk); in SymbolizeData()
|