Searched refs:stk (Results 1 - 24 of 24) sorted by relevance

/freebsd-12-stable/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dstack.h40 typedef struct stk stk_t;
H A Dstack.c42 struct stk { struct
/freebsd-12-stable/tools/test/popss/
H A Dpopss.c50 static u_long *stk; variable
75 dbr.dr[0] = (uintptr_t)stk;
127 printf("child pid %d, stk at %p\n", getpid(), stk);
128 *stk = read_ss();
138 : : "r" (stk), "m" (boundx) : "memory");
141 : : "r" (stk) : "memory");
144 : : "r" (stk) : "memory");
148 : : "r" (stk) : "memory");
151 : : "r" (stk)
[all...]
/freebsd-12-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/
H A Dtst.signature.d35 @stk[ustack()] = count();
46 @stk[ustack()] = count();
/freebsd-12-stable/sys/cddl/compat/opensolaris/sys/
H A Dproc.h67 do_thread_create(caddr_t stk, size_t stksize, void (*proc)(void *), void *arg, argument
77 ASSERT(stk == NULL);
97 #define thread_create(stk, stksize, proc, arg, len, pp, state, pri) \
98 do_thread_create(stk, stksize, proc, arg, len, pp, state, pri)
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_deadlock_detector1.cpp94 m->stk = cb->Unwind();
147 rep->loop[i].stk[0] = stk_to;
148 rep->loop[i].stk[1] = stk_from;
154 u32 stk = 0; local
156 stk = cb->Unwind();
157 // Printf("T%p MutexLock: %zx stk %u\n", lt, m->id, stk);
158 if (dd.onFirstLock(&lt->dd, m->id, stk))
160 if (dd.onLockFast(&lt->dd, m->id, stk))
168 dd.addEdges(&lt->dd, m->id, stk
[all...]
H A Dsanitizer_deadlock_detector.h59 bool addLock(uptr lock_id, uptr current_epoch, u32 stk) { argument
70 LockWithContext l = {lock_id_short, stk};
102 return all_locks_with_contexts_[i].stk;
121 u32 stk; member in struct:__sanitizer::DeadlockDetectorTLS::LockWithContext
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, argument
250 dtls->findLockContext(added_edges[i]), stk,
275 bool onLock(DeadlockDetectorTLS<BV> *dtls, uptr cur_node, u32 stk = 0) {
278 addEdges(dtls, cur_node, stk,
301 dtls->addLock(nodeToIndexUnchecked(node), nodeToEpoch(node), stk); local
336 dtls->addLock(nodeToIndexUnchecked(node), nodeToEpoch(node), stk); local
[all...]
H A Dsanitizer_deadlock_detector_interface.h37 u32 stk; // creation stack member in struct:__sanitizer::DDMutex
59 u32 stk[2]; // stack ids for the edge member in struct:__sanitizer::DDReport::__anon3630
H A Dsanitizer_deadlock_detector2.cpp67 u32 stk; member in struct:__sanitizer::ThreadMutex
211 tm->stk = cb->Unwind();
222 u32 stk1 = lt->locked[i].stk;
298 tm->stk = cb->Unwind();
409 rep->loop[i].stk[0] = flags.second_deadlock_stack ? link->stk0 : 0;
410 rep->loop[i].stk[1] = link->stk1;
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/tsan/dd/
H A Ddd_rtl.cpp31 static void PrintStackTrace(Thread *thr, u32 stk) { argument
32 StackTrace stack = StackDepotGet(stk);
47 PrintStackTrace(thr, rep->loop[i].stk[1]);
48 if (rep->loop[i].stk[0]) {
51 PrintStackTrace(thr, rep->loop[i].stk[0]);
/freebsd-12-stable/contrib/flex/
H A Ddfa.c244 static int did_stk_init = false, *stk; local
266 stk = reallocate_integer_array( stk, current_max_dfa_size ); \
273 stk[stkend] = state; \
295 stk = allocate_integer_array (current_max_dfa_size);
315 ns = stk[stkpos];
337 if (IS_MARKED (stk[stkpos]))
338 UNMARK_STATE (stk[stkpos]);
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DDWARFLocationExpression.cpp79 SimpleTypeKind stk = ti.getSimpleKind(); local
80 return {GetTypeSizeForSimpleKind(stk), IsSimpleTypeSignedInteger(stk)};
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_defs.h178 u32 stk; member in struct:__tsan::MBlock
H A Dtsan_rtl_mutex.cpp526 u32 stk = r->loop[i].stk[j]; local
527 if (stk && stk != 0xffffffff) {
528 rep.AddStack(StackDepotGet(stk), true);
H A Dtsan_rtl_report.cpp342 loc->stack = SymbolizeStackId(b->stk);
379 void RestoreStack(int tid, const u64 epoch, VarSizeStackTrace *stk, argument
438 stk->Init(&stack[0], pos);
439 ExtractTagFromStack(stk, tag);
H A Dtsan_debugging.cpp258 StackTrace stack = StackDepotGet(b->stk);
H A Dtsan_sync.cpp67 b->stk = CurrentStackId(thr, pc);
H A Dtsan_rtl.h628 void RestoreStack(int tid, const u64 epoch, VarSizeStackTrace *stk,
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/tsan/go/
H A Dtsan_go.cpp110 loc->stack = SymbolizeStackId(b->stk);
/freebsd-12-stable/sys/i386/i386/
H A Dexception.s127 IDTVEC(stk)
H A Dmachdep.c1560 IDTVEC(tss), IDTVEC(missing), IDTVEC(stk), IDTVEC(prot),
2268 setidt(IDT_SS, &IDTVEC(stk), SDT_SYS386IGT, SEL_KPL,
/freebsd-12-stable/cddl/contrib/opensolaris/lib/libzpool/common/sys/
H A Dzfs_context.h223 #define thread_create(stk, stksize, func, arg, len, pp, state, pri) \
/freebsd-12-stable/sys/amd64/amd64/
H A Dmachdep.c844 IDTVEC(tss), IDTVEC(missing), IDTVEC(stk), IDTVEC(prot),
1757 setidt(IDT_SS, pti ? &IDTVEC(stk_pti) : &IDTVEC(stk), SDT_SYSIGT,
H A Dexception.S465 PROTF_ENTRY stk, T_STKFLT

Completed in 367 milliseconds