unwind.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:6k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _ASM_IA64_UNWIND_H
  2. #define _ASM_IA64_UNWIND_H
  3. /*
  4.  * Copyright (C) 1999-2000 Hewlett-Packard Co
  5.  * Copyright (C) 1999-2000 David Mosberger-Tang <davidm@hpl.hp.com>
  6.  *
  7.  * A simple API for unwinding kernel stacks.  This is used for
  8.  * debugging and error reporting purposes.  The kernel doesn't need
  9.  * full-blown stack unwinding with all the bells and whitles, so there
  10.  * is not much point in implementing the full IA-64 unwind API (though
  11.  * it would of course be possible to implement the kernel API on top
  12.  * of it).
  13.  */
  14. struct task_struct; /* forward declaration */
  15. struct switch_stack; /* forward declaration */
  16. enum unw_application_register {
  17. UNW_AR_BSP,
  18. UNW_AR_BSPSTORE,
  19. UNW_AR_PFS,
  20. UNW_AR_RNAT,
  21. UNW_AR_UNAT,
  22. UNW_AR_LC,
  23. UNW_AR_EC,
  24. UNW_AR_FPSR,
  25. UNW_AR_RSC,
  26. UNW_AR_CCV
  27. };
  28. /*
  29.  * The following declarations are private to the unwind
  30.  * implementation:
  31.  */
  32. struct unw_stack {
  33. unsigned long limit;
  34. unsigned long top;
  35. };
  36. #define UNW_FLAG_INTERRUPT_FRAME (1UL << 0)
  37. /*
  38.  * No user of this module should every access this structure directly
  39.  * as it is subject to change.  It is declared here solely so we can
  40.  * use automatic variables.
  41.  */
  42. struct unw_frame_info {
  43. struct unw_stack regstk;
  44. struct unw_stack memstk;
  45. unsigned int flags;
  46. short hint;
  47. short prev_script;
  48. /* current frame info: */
  49. unsigned long bsp; /* backing store pointer value */
  50. unsigned long sp; /* stack pointer value */
  51. unsigned long psp; /* previous sp value */
  52. unsigned long ip; /* instruction pointer value */
  53. unsigned long pr; /* current predicate values */
  54. unsigned long *cfm_loc; /* cfm save location (or NULL) */
  55. struct task_struct *task;
  56. struct switch_stack *sw;
  57. /* preserved state: */
  58. unsigned long *bsp_loc; /* previous bsp save location */
  59. unsigned long *bspstore_loc;
  60. unsigned long *pfs_loc;
  61. unsigned long *rnat_loc;
  62. unsigned long *rp_loc;
  63. unsigned long *pri_unat_loc;
  64. unsigned long *unat_loc;
  65. unsigned long *pr_loc;
  66. unsigned long *lc_loc;
  67. unsigned long *fpsr_loc;
  68. struct unw_ireg {
  69. unsigned long *loc;
  70. struct unw_ireg_nat {
  71. long type : 3; /* enum unw_nat_type */
  72. signed long off : 61; /* NaT word is at loc+nat.off */
  73. } nat;
  74. } r4, r5, r6, r7;
  75. unsigned long *b1_loc, *b2_loc, *b3_loc, *b4_loc, *b5_loc;
  76. struct ia64_fpreg *f2_loc, *f3_loc, *f4_loc, *f5_loc, *fr_loc[16];
  77. };
  78. /*
  79.  * The official API follows below:
  80.  */
  81. /*
  82.  * Initialize unwind support.
  83.  */
  84. extern void unw_init (void);
  85. extern void unw_create_gate_table (void);
  86. extern void *unw_add_unwind_table (const char *name, unsigned long segment_base, unsigned long gp,
  87.    const void *table_start, const void *table_end);
  88. extern void unw_remove_unwind_table (void *handle);
  89. /*
  90.  * Prepare to unwind blocked task t.
  91.  */
  92. extern void unw_init_from_blocked_task (struct unw_frame_info *info, struct task_struct *t);
  93. extern void unw_init_frame_info (struct unw_frame_info *info, struct task_struct *t,
  94.  struct switch_stack *sw);
  95. /*
  96.  * Prepare to unwind the currently running thread.
  97.  */
  98. extern void unw_init_running (void (*callback)(struct unw_frame_info *info, void *arg), void *arg);
  99. /*
  100.  * Unwind to previous to frame.  Returns 0 if successful, negative
  101.  * number in case of an error.
  102.  */
  103. extern int unw_unwind (struct unw_frame_info *info);
  104. /*
  105.  * Unwind until the return pointer is in user-land (or until an error
  106.  * occurs).  Returns 0 if successful, negative number in case of
  107.  * error.
  108.  */
  109. extern int unw_unwind_to_user (struct unw_frame_info *info);
  110. #define unw_is_intr_frame(info) (((info)->flags & UNW_FLAG_INTERRUPT_FRAME) != 0)
  111. static inline int
  112. unw_get_ip (struct unw_frame_info *info, unsigned long *valp)
  113. {
  114. *valp = (info)->ip;
  115. return 0;
  116. }
  117. static inline int
  118. unw_get_sp (struct unw_frame_info *info, unsigned long *valp)
  119. {
  120. *valp = (info)->sp;
  121. return 0;
  122. }
  123. static inline int
  124. unw_get_psp (struct unw_frame_info *info, unsigned long *valp)
  125. {
  126. *valp = (info)->psp;
  127. return 0;
  128. }
  129. static inline int
  130. unw_get_bsp (struct unw_frame_info *info, unsigned long *valp)
  131. {
  132. *valp = (info)->bsp;
  133. return 0;
  134. }
  135. static inline int
  136. unw_get_cfm (struct unw_frame_info *info, unsigned long *valp)
  137. {
  138. *valp = *(info)->cfm_loc;
  139. return 0;
  140. }
  141. static inline int
  142. unw_set_cfm (struct unw_frame_info *info, unsigned long val)
  143. {
  144. *(info)->cfm_loc = val;
  145. return 0;
  146. }
  147. static inline int
  148. unw_get_rp (struct unw_frame_info *info, unsigned long *val)
  149. {
  150. if (!info->rp_loc)
  151. return -1;
  152. *val = *info->rp_loc;
  153. return 0;
  154. }
  155. extern int unw_access_gr (struct unw_frame_info *, int, unsigned long *, char *, int);
  156. extern int unw_access_br (struct unw_frame_info *, int, unsigned long *, int);
  157. extern int unw_access_fr (struct unw_frame_info *, int, struct ia64_fpreg *, int);
  158. extern int unw_access_ar (struct unw_frame_info *, int, unsigned long *, int);
  159. extern int unw_access_pr (struct unw_frame_info *, unsigned long *, int);
  160. static inline int
  161. unw_set_gr (struct unw_frame_info *i, int n, unsigned long v, char nat)
  162. {
  163. return unw_access_gr(i, n, &v, &nat, 1);
  164. }
  165. static inline int
  166. unw_set_br (struct unw_frame_info *i, int n, unsigned long v)
  167. {
  168. return unw_access_br(i, n, &v, 1);
  169. }
  170. static inline int
  171. unw_set_fr (struct unw_frame_info *i, int n, struct ia64_fpreg v)
  172. {
  173. return unw_access_fr(i, n, &v, 1);
  174. }
  175. static inline int
  176. unw_set_ar (struct unw_frame_info *i, int n, unsigned long v)
  177. {
  178. return unw_access_ar(i, n, &v, 1);
  179. }
  180. static inline int
  181. unw_set_pr (struct unw_frame_info *i, unsigned long v)
  182. {
  183. return unw_access_pr(i, &v, 1);
  184. }
  185. #define unw_get_gr(i,n,v,nat) unw_access_gr(i,n,v,nat,0)
  186. #define unw_get_br(i,n,v) unw_access_br(i,n,v,0)
  187. #define unw_get_fr(i,n,v) unw_access_fr(i,n,v,0)
  188. #define unw_get_ar(i,n,v) unw_access_ar(i,n,v,0)
  189. #define unw_get_pr(i,v) unw_access_pr(i,v,0)
  190. #endif /* _ASM_UNWIND_H */