HomeSort by relevance Sort by last modified time
    Searched refs:os_state (Results 1 - 25 of 32) sorted by null

1 2

  /external/valgrind/coregrind/m_sigframe/
sigframe-solaris.c 148 tst->os_state.oldcontext = &frame->ucontext;
205 if (on_altstack && tst->os_state.ustack
206 && VG_(am_is_valid_for_client)((Addr)tst->os_state.ustack,
207 sizeof(*tst->os_state.ustack),
217 *tst->os_state.ustack = altstack;
218 VG_TRACK(post_mem_write, Vg_CoreSignal, tid, (Addr)tst->os_state.ustack,
219 sizeof(*tst->os_state.ustack));
  /external/valgrind/coregrind/m_syswrap/
syswrap-x86-darwin.c 189 // GrP fixme signals, sig_mask, tmp_sig_mask, os_state.parent
287 semaphore_wait(tst->os_state.child_go);
303 vex->guest_EDX = tst->os_state.func_arg;
309 tst->os_state.pthread = self;
310 tst->os_state.lwpid = kport;
343 semaphore_signal(tst->os_state.child_done);
347 call_on_new_stack_0_1(tst->os_state.valgrind_stack_init_SP, 0,
423 /* For whatever reason, tst->os_state.pthread appear to have a
436 // magic_delta = tst->os_state.pthread - self
450 "tst->os_state.pthread %#lx, self %#lx\n"
    [all...]
syswrap-amd64-darwin.c 252 // GrP fixme signals, sig_mask, tmp_sig_mask, os_state.parent
347 semaphore_wait(tst->os_state.child_go);
362 vex->guest_RCX = tst->os_state.func_arg;
368 tst->os_state.pthread = self;
369 tst->os_state.lwpid = kport;
402 semaphore_signal(tst->os_state.child_done);
406 call_on_new_stack_0_1(tst->os_state.valgrind_stack_init_SP, 0,
475 /* For whatever reason, tst->os_state.pthread appear to have a
488 // magic_delta = tst->os_state.pthread - self
502 "tst->os_state.pthread %#lx, self %#lx\n"
    [all...]
syswrap-solaris.c 85 VG_(threads)[tid].os_state.daemon_thread == count_daemon)
128 tst->os_state.lwpid = VG_(gettid)();
129 tst->os_state.threadgroup = VG_(getpid)();
178 = VALGRIND_STACK_REGISTER(tst->os_state.valgrind_stack_base,
179 tst->os_state.valgrind_stack_init_SP));
192 Addr a = tst->os_state.schedctl_data;
197 if (tst->os_state.stk_id != (UWord)-1)
198 VG_(deregister_stack)(tst->os_state.stk_id);
319 if (tst->os_state.valgrind_stack_base == 0)
320 vg_assert(tst->os_state.valgrind_stack_init_SP == 0)
    [all...]
syswrap-arm64-linux.c 256 ctst->os_state.parent = ptid;
265 os_state.threadgroup field for real (in thread_wrapper in
271 ctst->os_state.threadgroup = ptst->os_state.threadgroup;
    [all...]
syswrap-ppc64-linux.c 443 ctst->os_state.parent = ptid;
452 os_state.threadgroup field for real (in thread_wrapper in
458 ctst->os_state.threadgroup = ptst->os_state.threadgroup;
    [all...]
syswrap-darwin.c 111 tst->os_state.lwpid = VG_(gettid)();
112 tst->os_state.threadgroup = VG_(getpid)();
148 if (tst->os_state.valgrind_stack_base == 0)
149 vg_assert(tst->os_state.valgrind_stack_init_SP == 0);
151 if (tst->os_state.valgrind_stack_base != 0)
152 vg_assert(tst->os_state.valgrind_stack_init_SP != 0);
156 if (tst->os_state.valgrind_stack_base == 0) {
159 tst->os_state.valgrind_stack_base = (Addr)stack;
160 tst->os_state.valgrind_stack_init_SP = initial_SP;
166 (void*)tst->os_state.valgrind_stack_base,
    [all...]
syswrap-amd64-linux.c 247 ctst->os_state.parent = ptid;
256 os_state.threadgroup field for real (in thread_wrapper in
262 ctst->os_state.threadgroup = ptst->os_state.threadgroup;
    [all...]
syswrap-arm-linux.c 197 ctst->os_state.parent = ptid;
205 os_state.threadgroup field for real (in thread_wrapper in
211 ctst->os_state.threadgroup = ptst->os_state.threadgroup;
    [all...]
syswrap-mips32-linux.c 268 ctst->os_state.parent = ptid;
275 os_state.threadgroup field for real (in thread_wrapper in
282 ctst->os_state.threadgroup = ptst->os_state.threadgroup;
    [all...]
syswrap-mips64-linux.c 225 ctst->os_state.parent = ptid;
229 ctst->os_state.threadgroup = ptst->os_state.threadgroup;
    [all...]
syswrap-ppc32-linux.c 293 ctst->os_state.parent = ptid;
302 os_state.threadgroup field for real (in thread_wrapper in
308 ctst->os_state.threadgroup = ptst->os_state.threadgroup;
    [all...]
syswrap-s390x-linux.c 253 ctst->os_state.parent = ptid;
260 ctst->os_state.threadgroup = ptst->os_state.threadgroup;
    [all...]
syswrap-linux.c 93 tst->os_state.lwpid = VG_(gettid)();
97 tst->os_state.threadgroup = VG_(getpid)();
151 = VALGRIND_STACK_REGISTER (tst->os_state.valgrind_stack_base,
152 tst->os_state.valgrind_stack_init_SP));
212 vg_assert(sizeof(tst->os_state.exitcode) == sizeof(Word));
229 "movl %3, %%ebx\n" /* set %ebx = tst->os_state.exitcode */
230 "int $0x80\n" /* exit(tst->os_state.exitcode) */
233 : "n" (VgTs_Empty), "n" (__NR_exit), "m" (tst->os_state.exitcode)
240 "movq %3, %%rdi\n" /* set %rdi = tst->os_state.exitcode */
241 "syscall\n" /* exit(tst->os_state.exitcode) *
    [all...]
syswrap-tilegx-linux.c 359 ctst->os_state.parent = ptid;
366 os_state.threadgroup field for real (in thread_wrapper in
373 ctst->os_state.threadgroup = ptst->os_state.threadgroup;
    [all...]
syswrap-x86-solaris.c 95 UWord *stack = (UWord*)tst->os_state.valgrind_stack_init_SP;
389 tst->os_state.thrptr = uc->uc_mcontext.gregs[VKI_ESP];
588 Addr base = tst->os_state.thrptr;
    [all...]
syswrap-main.c 376 if (tst->os_state.in_door_return)
    [all...]
syswrap-x86-linux.c 258 ctst->os_state.parent = ptid;
267 os_state.threadgroup field for real (in thread_wrapper in
273 ctst->os_state.threadgroup = ptst->os_state.threadgroup;
    [all...]
  /external/valgrind/coregrind/
m_threadstate.c 67 ANNOTATE_BENIGN_RACE_SIZED(&VG_(threads)[tid].os_state.exitcode,
68 sizeof(VG_(threads)[tid].os_state.exitcode),
124 // tst->os_state.lwpid == VG_(gettid)() && // check we're this tid
171 && VG_(threads)[tid].os_state.lwpid == lwp)
m_libcassert.c 348 stacktop = tst->os_state.valgrind_stack_init_SP;
368 = (VgStack*)VG_(threads)[i].os_state.valgrind_stack_base;
376 VG_(threads)[i].os_state.lwpid);
pub_core_threadstate.h 388 ThreadOSstate os_state; member in struct:__anon25353
  /external/valgrind/coregrind/m_scheduler/
scheduler.c 368 == VG_(threads)[tid].os_state.lwpid);
405 tid, VG_(threads)[tid].os_state.lwpid);
413 thread_abort(VG_(threads)[tid].os_state.lwpid);
418 Int r = VG_(tkill)(VG_(threads)[tid].os_state.lwpid, VG_SIGVGKILL);
446 vg_assert(VG_(threads)[tid].os_state.lwpid == VG_(gettid)());
489 tst->os_state.lwpid = 0;
490 tst->os_state.threadgroup = 0;
494 tst->os_state.post_mach_trap_fn = NULL;
495 tst->os_state.pthread = 0;
496 tst->os_state.func_arg = 0
    [all...]
  /external/valgrind/coregrind/m_gdbserver/
target.c 79 image_ptid (ptid), ts->os_state.lwpid
83 ptid = ts->os_state.lwpid;
314 wptid = tst->os_state.lwpid;
318 if (tst->os_state.lwpid)
770 use_general, found, tid, tst->os_state.lwpid);
m_gdbserver.c     [all...]
  /external/valgrind/coregrind/m_coredump/
coredump-solaris.c 493 prs->pr_who = tst->os_state.lwpid;
524 psinfo->pr_lwp.pr_lwpid = tst->os_state.lwpid;
551 pstatus->pr_lwp.pr_lwpid = tst->os_state.lwpid;
720 lwp->pr_lwpid = tst->os_state.lwpid;
732 lwp->pr_lwpid = tst->os_state.lwpid;
    [all...]

Completed in 491 milliseconds

1 2