Go to the documentation of this file. 1 #ifndef _H8300_PTRACE_H
2 #define _H8300_PTRACE_H
34 #if defined(CONFIG_CPU_H8S)
40 #define PTRACE_GETREGS 12
41 #define PTRACE_SETREGS 13
48 #if defined(__H8300H__)
49 #define H8300_REGS_NO 11
51 #if defined(__H8300S__)
52 #define H8300_REGS_NO 12
56 #define PT_REG(reg) ((long)&((struct pt_regs *)0)->reg)
58 #define arch_has_single_step() (1)
60 #define user_mode(regs) (!((regs)->ccr & PS_S))
61 #define instruction_pointer(regs) ((regs)->pc)
62 #define profile_pc(regs) instruction_pointer(regs)