Lines Matching defs:regs
16 #define GET_IP(regs) ((regs)->pc) argument
19 #define SET_IP(regs, val) (GET_IP(regs) = (val)) argument
22 static inline unsigned long instruction_pointer(struct pt_regs *regs) in instruction_pointer()
26 static inline void instruction_pointer_set(struct pt_regs *regs, in instruction_pointer_set()
33 #define profile_pc(regs) instruction_pointer(regs) argument
38 #define GET_USP(regs) ((regs)->usp) argument
41 #define SET_USP(regs, val) (GET_USP(regs) = (val)) argument
44 static inline unsigned long user_stack_pointer(struct pt_regs *regs) in user_stack_pointer()
48 static inline void user_stack_pointer_set(struct pt_regs *regs, in user_stack_pointer_set()
56 #define GET_FP(regs) ((regs)->fp) argument
59 #define SET_FP(regs, val) (GET_FP(regs) = (val)) argument
62 static inline unsigned long frame_pointer(struct pt_regs *regs) in frame_pointer()
66 static inline void frame_pointer_set(struct pt_regs *regs, in frame_pointer_set()