HomeSort by relevance Sort by last modified time
    Searched refs:mcontext (Results 1 - 6 of 6) sorted by null

  /external/v8/src/
platform-linux.cc 1050 mcontext_t& mcontext = ucontext->uc_mcontext; local
1053 sample->pc = reinterpret_cast<Address>(mcontext.gregs[REG_EIP]);
1054 sample->sp = reinterpret_cast<Address>(mcontext.gregs[REG_ESP]);
1055 sample->fp = reinterpret_cast<Address>(mcontext.gregs[REG_EBP]);
1057 sample->pc = reinterpret_cast<Address>(mcontext.gregs[REG_RIP]);
1058 sample->sp = reinterpret_cast<Address>(mcontext.gregs[REG_RSP]);
1059 sample->fp = reinterpret_cast<Address>(mcontext.gregs[REG_RBP]);
1063 sample->pc = reinterpret_cast<Address>(mcontext.gregs[R15]);
1064 sample->sp = reinterpret_cast<Address>(mcontext.gregs[R13]);
1065 sample->fp = reinterpret_cast<Address>(mcontext.gregs[R11])
    [all...]
platform-freebsd.cc 700 mcontext_t& mcontext = ucontext->uc_mcontext; local
703 sample->pc = reinterpret_cast<Address>(mcontext.mc_eip);
704 sample->sp = reinterpret_cast<Address>(mcontext.mc_esp);
705 sample->fp = reinterpret_cast<Address>(mcontext.mc_ebp);
707 sample->pc = reinterpret_cast<Address>(mcontext.mc_rip);
708 sample->sp = reinterpret_cast<Address>(mcontext.mc_rsp);
709 sample->fp = reinterpret_cast<Address>(mcontext.mc_rbp);
711 sample->pc = reinterpret_cast<Address>(mcontext.mc_r15);
712 sample->sp = reinterpret_cast<Address>(mcontext.mc_r13);
713 sample->fp = reinterpret_cast<Address>(mcontext.mc_r11)
    [all...]
platform-openbsd.cc 755 mcontext_t& mcontext = ucontext->uc_mcontext; local
757 sample->pc = reinterpret_cast<Address>(mcontext.__gregs[_REG_EIP]);
758 sample->sp = reinterpret_cast<Address>(mcontext.__gregs[_REG_ESP]);
759 sample->fp = reinterpret_cast<Address>(mcontext.__gregs[_REG_EBP]);
761 sample->pc = reinterpret_cast<Address>(mcontext.__gregs[_REG_RIP]);
762 sample->sp = reinterpret_cast<Address>(mcontext.__gregs[_REG_RSP]);
763 sample->fp = reinterpret_cast<Address>(mcontext.__gregs[_REG_RBP]);
platform-solaris.cc 692 mcontext_t& mcontext = ucontext->uc_mcontext; local
695 sample->pc = reinterpret_cast<Address>(mcontext.gregs[REG_PC]);
696 sample->sp = reinterpret_cast<Address>(mcontext.gregs[REG_SP]);
697 sample->fp = reinterpret_cast<Address>(mcontext.gregs[REG_FP]);
  /external/libsepol/src/
context_record.c 235 goto mcontext;
244 goto mcontext;
269 mcontext:
  /external/valgrind/main/coregrind/m_sigframe/
sigframe-ppc32-linux.c 108 struct vki_mcontext mcontext; member in struct:nonrt_sigframe
143 VG_TRACK( pre_mem_write, Vg_CoreSignal, tst->tid, "signal frame mcontext",
179 VG_TRACK(pre_mem_write, Vg_CoreSignal, tst->tid, "signal frame mcontext",
760 stack_mcontext(&frame->mcontext, tst, False/*!use_rt_sigreturn*/, faultaddr);
911 mc = &frame->mcontext;
    [all...]

Completed in 141 milliseconds