Lines Matching refs:regs
58 void show_regs (struct pt_regs *regs) in show_regs() argument
73 flags = condition_codes (regs); in show_regs()
76 pc = instruction_pointer(regs) - gd->reloc_off; in show_regs()
77 lr = regs->ARM_lr - gd->reloc_off; in show_regs()
79 pc = instruction_pointer(regs); in show_regs()
80 lr = regs->ARM_lr; in show_regs()
85 regs->ARM_sp, regs->ARM_ip, regs->ARM_fp); in show_regs()
87 regs->ARM_r10, regs->ARM_r9, regs->ARM_r8); in show_regs()
89 regs->ARM_r7, regs->ARM_r6, regs->ARM_r5, regs->ARM_r4); in show_regs()
91 regs->ARM_r3, regs->ARM_r2, regs->ARM_r1, regs->ARM_r0); in show_regs()
97 interrupts_enabled (regs) ? "on" : "off", in show_regs()
98 fast_interrupts_enabled (regs) ? "on" : "off", in show_regs()
99 processor_modes[processor_mode (regs)], in show_regs()
100 thumb_mode (regs) ? " (T)" : ""); in show_regs()
109 dump_core_stack(regs); in show_regs()
113 static inline void fixup_pc(struct pt_regs *regs, int offset) in fixup_pc() argument
115 uint32_t pc = instruction_pointer(regs) + offset; in fixup_pc()
116 regs->ARM_pc = pc | (regs->ARM_pc & PCMASK); in fixup_pc()