Lines Matching refs:mcontext
371 mcontext_t& mcontext = ucontext->uc_mcontext; in HandleProfilerSignal() local
375 state.pc = reinterpret_cast<Address>(mcontext.gregs[REG_EIP]); in HandleProfilerSignal()
376 state.sp = reinterpret_cast<Address>(mcontext.gregs[REG_ESP]); in HandleProfilerSignal()
377 state.fp = reinterpret_cast<Address>(mcontext.gregs[REG_EBP]); in HandleProfilerSignal()
379 state.pc = reinterpret_cast<Address>(mcontext.gregs[REG_RIP]); in HandleProfilerSignal()
380 state.sp = reinterpret_cast<Address>(mcontext.gregs[REG_RSP]); in HandleProfilerSignal()
381 state.fp = reinterpret_cast<Address>(mcontext.gregs[REG_RBP]); in HandleProfilerSignal()
387 state.pc = reinterpret_cast<Address>(mcontext.gregs[R15]); in HandleProfilerSignal()
388 state.sp = reinterpret_cast<Address>(mcontext.gregs[R13]); in HandleProfilerSignal()
389 state.fp = reinterpret_cast<Address>(mcontext.gregs[R11]); in HandleProfilerSignal()
391 state.pc = reinterpret_cast<Address>(mcontext.arm_pc); in HandleProfilerSignal()
392 state.sp = reinterpret_cast<Address>(mcontext.arm_sp); in HandleProfilerSignal()
393 state.fp = reinterpret_cast<Address>(mcontext.arm_fp); in HandleProfilerSignal()
397 state.pc = reinterpret_cast<Address>(mcontext.pc); in HandleProfilerSignal()
398 state.sp = reinterpret_cast<Address>(mcontext.sp); in HandleProfilerSignal()
400 state.fp = reinterpret_cast<Address>(mcontext.regs[29]); in HandleProfilerSignal()
402 state.pc = reinterpret_cast<Address>(mcontext.pc); in HandleProfilerSignal()
403 state.sp = reinterpret_cast<Address>(mcontext.gregs[29]); in HandleProfilerSignal()
404 state.fp = reinterpret_cast<Address>(mcontext.gregs[30]); in HandleProfilerSignal()
406 state.pc = reinterpret_cast<Address>(mcontext.pc); in HandleProfilerSignal()
407 state.sp = reinterpret_cast<Address>(mcontext.gregs[29]); in HandleProfilerSignal()
408 state.fp = reinterpret_cast<Address>(mcontext.gregs[30]); in HandleProfilerSignal()
413 state.pc = reinterpret_cast<Address>(mcontext->__ss.__rip); in HandleProfilerSignal()
414 state.sp = reinterpret_cast<Address>(mcontext->__ss.__rsp); in HandleProfilerSignal()
415 state.fp = reinterpret_cast<Address>(mcontext->__ss.__rbp); in HandleProfilerSignal()
417 state.pc = reinterpret_cast<Address>(mcontext->ss.rip); in HandleProfilerSignal()
418 state.sp = reinterpret_cast<Address>(mcontext->ss.rsp); in HandleProfilerSignal()
419 state.fp = reinterpret_cast<Address>(mcontext->ss.rbp); in HandleProfilerSignal()
423 state.pc = reinterpret_cast<Address>(mcontext->__ss.__eip); in HandleProfilerSignal()
424 state.sp = reinterpret_cast<Address>(mcontext->__ss.__esp); in HandleProfilerSignal()
425 state.fp = reinterpret_cast<Address>(mcontext->__ss.__ebp); in HandleProfilerSignal()
427 state.pc = reinterpret_cast<Address>(mcontext->ss.eip); in HandleProfilerSignal()
428 state.sp = reinterpret_cast<Address>(mcontext->ss.esp); in HandleProfilerSignal()
429 state.fp = reinterpret_cast<Address>(mcontext->ss.ebp); in HandleProfilerSignal()
434 state.pc = reinterpret_cast<Address>(mcontext.mc_eip); in HandleProfilerSignal()
435 state.sp = reinterpret_cast<Address>(mcontext.mc_esp); in HandleProfilerSignal()
436 state.fp = reinterpret_cast<Address>(mcontext.mc_ebp); in HandleProfilerSignal()
438 state.pc = reinterpret_cast<Address>(mcontext.mc_rip); in HandleProfilerSignal()
439 state.sp = reinterpret_cast<Address>(mcontext.mc_rsp); in HandleProfilerSignal()
440 state.fp = reinterpret_cast<Address>(mcontext.mc_rbp); in HandleProfilerSignal()
442 state.pc = reinterpret_cast<Address>(mcontext.mc_r15); in HandleProfilerSignal()
443 state.sp = reinterpret_cast<Address>(mcontext.mc_r13); in HandleProfilerSignal()
444 state.fp = reinterpret_cast<Address>(mcontext.mc_r11); in HandleProfilerSignal()
448 state.pc = reinterpret_cast<Address>(mcontext.__gregs[_REG_EIP]); in HandleProfilerSignal()
449 state.sp = reinterpret_cast<Address>(mcontext.__gregs[_REG_ESP]); in HandleProfilerSignal()
450 state.fp = reinterpret_cast<Address>(mcontext.__gregs[_REG_EBP]); in HandleProfilerSignal()
452 state.pc = reinterpret_cast<Address>(mcontext.__gregs[_REG_RIP]); in HandleProfilerSignal()
453 state.sp = reinterpret_cast<Address>(mcontext.__gregs[_REG_RSP]); in HandleProfilerSignal()
454 state.fp = reinterpret_cast<Address>(mcontext.__gregs[_REG_RBP]); in HandleProfilerSignal()
467 state.pc = reinterpret_cast<Address>(mcontext.gregs[REG_PC]); in HandleProfilerSignal()
468 state.sp = reinterpret_cast<Address>(mcontext.gregs[REG_SP]); in HandleProfilerSignal()
469 state.fp = reinterpret_cast<Address>(mcontext.gregs[REG_FP]); in HandleProfilerSignal()
472 state.pc = reinterpret_cast<Address>(mcontext.cpu.eip); in HandleProfilerSignal()
473 state.sp = reinterpret_cast<Address>(mcontext.cpu.esp); in HandleProfilerSignal()
474 state.fp = reinterpret_cast<Address>(mcontext.cpu.ebp); in HandleProfilerSignal()
476 state.pc = reinterpret_cast<Address>(mcontext.cpu.gpr[ARM_REG_PC]); in HandleProfilerSignal()
477 state.sp = reinterpret_cast<Address>(mcontext.cpu.gpr[ARM_REG_SP]); in HandleProfilerSignal()
478 state.fp = reinterpret_cast<Address>(mcontext.cpu.gpr[ARM_REG_FP]); in HandleProfilerSignal()