Lines Matching refs:getRegister
540 _msContext.Rax = r.getRegister(UNW_X86_64_RAX); in UnwindCursor()
541 _msContext.Rcx = r.getRegister(UNW_X86_64_RCX); in UnwindCursor()
542 _msContext.Rdx = r.getRegister(UNW_X86_64_RDX); in UnwindCursor()
543 _msContext.Rbx = r.getRegister(UNW_X86_64_RBX); in UnwindCursor()
544 _msContext.Rsp = r.getRegister(UNW_X86_64_RSP); in UnwindCursor()
545 _msContext.Rbp = r.getRegister(UNW_X86_64_RBP); in UnwindCursor()
546 _msContext.Rsi = r.getRegister(UNW_X86_64_RSI); in UnwindCursor()
547 _msContext.Rdi = r.getRegister(UNW_X86_64_RDI); in UnwindCursor()
548 _msContext.R8 = r.getRegister(UNW_X86_64_R8); in UnwindCursor()
549 _msContext.R9 = r.getRegister(UNW_X86_64_R9); in UnwindCursor()
550 _msContext.R10 = r.getRegister(UNW_X86_64_R10); in UnwindCursor()
551 _msContext.R11 = r.getRegister(UNW_X86_64_R11); in UnwindCursor()
552 _msContext.R12 = r.getRegister(UNW_X86_64_R12); in UnwindCursor()
553 _msContext.R13 = r.getRegister(UNW_X86_64_R13); in UnwindCursor()
554 _msContext.R14 = r.getRegister(UNW_X86_64_R14); in UnwindCursor()
555 _msContext.R15 = r.getRegister(UNW_X86_64_R15); in UnwindCursor()
556 _msContext.Rip = r.getRegister(UNW_REG_IP); in UnwindCursor()
594 _msContext.R0 = r.getRegister(UNW_ARM_R0); in UnwindCursor()
595 _msContext.R1 = r.getRegister(UNW_ARM_R1); in UnwindCursor()
596 _msContext.R2 = r.getRegister(UNW_ARM_R2); in UnwindCursor()
597 _msContext.R3 = r.getRegister(UNW_ARM_R3); in UnwindCursor()
598 _msContext.R4 = r.getRegister(UNW_ARM_R4); in UnwindCursor()
599 _msContext.R5 = r.getRegister(UNW_ARM_R5); in UnwindCursor()
600 _msContext.R6 = r.getRegister(UNW_ARM_R6); in UnwindCursor()
601 _msContext.R7 = r.getRegister(UNW_ARM_R7); in UnwindCursor()
602 _msContext.R8 = r.getRegister(UNW_ARM_R8); in UnwindCursor()
603 _msContext.R9 = r.getRegister(UNW_ARM_R9); in UnwindCursor()
604 _msContext.R10 = r.getRegister(UNW_ARM_R10); in UnwindCursor()
605 _msContext.R11 = r.getRegister(UNW_ARM_R11); in UnwindCursor()
606 _msContext.R12 = r.getRegister(UNW_ARM_R12); in UnwindCursor()
607 _msContext.Sp = r.getRegister(UNW_ARM_SP); in UnwindCursor()
608 _msContext.Lr = r.getRegister(UNW_ARM_LR); in UnwindCursor()
609 _msContext.Pc = r.getRegister(UNW_ARM_IP); in UnwindCursor()
620 _msContext.X[i - UNW_ARM64_X0] = r.getRegister(i); in UnwindCursor()
621 _msContext.Sp = r.getRegister(UNW_REG_SP); in UnwindCursor()
622 _msContext.Pc = r.getRegister(UNW_REG_IP); in UnwindCursor()
1176 return _registers.getRegister(regNum); in getReg()