This commit was manufactured by cvs2svn to create branch 'fedora'.
[linux-2.6.git] / include / asm-parisc / unwind.h
1 #ifndef _UNWIND_H_
2 #define _UNWIND_H_
3
4 /* From ABI specifications */
5 struct unwind_table_entry {
6         unsigned int region_start;
7         unsigned int region_end;
8         unsigned int Cannot_unwind:1; /* 0 */
9         unsigned int Millicode:1;       /* 1 */
10         unsigned int Millicode_save_sr0:1;      /* 2 */
11         unsigned int Region_description:2;      /* 3..4 */
12         unsigned int reserved1:1;       /* 5 */
13         unsigned int Entry_SR:1;        /* 6 */
14         unsigned int Entry_FR:4;        /* number saved *//* 7..10 */
15         unsigned int Entry_GR:5;        /* number saved *//* 11..15 */
16         unsigned int Args_stored:1;     /* 16 */
17         unsigned int Variable_Frame:1;  /* 17 */
18         unsigned int Separate_Package_Body:1;   /* 18 */
19         unsigned int Frame_Extension_Millicode:1;       /* 19 */
20         unsigned int Stack_Overflow_Check:1;    /* 20 */
21         unsigned int Two_Instruction_SP_Increment:1;    /* 21 */
22         unsigned int Ada_Region:1;      /* 22 */
23         unsigned int cxx_info:1;        /* 23 */
24         unsigned int cxx_try_catch:1;   /* 24 */
25         unsigned int sched_entry_seq:1; /* 25 */
26         unsigned int reserved2:1;       /* 26 */
27         unsigned int Save_SP:1; /* 27 */
28         unsigned int Save_RP:1; /* 28 */
29         unsigned int Save_MRP_in_frame:1;       /* 29 */
30         unsigned int extn_ptr_defined:1;        /* 30 */
31         unsigned int Cleanup_defined:1; /* 31 */
32         
33         unsigned int MPE_XL_interrupt_marker:1; /* 0 */
34         unsigned int HP_UX_interrupt_marker:1;  /* 1 */
35         unsigned int Large_frame:1;     /* 2 */
36         unsigned int Pseudo_SP_Set:1;   /* 3 */
37         unsigned int reserved4:1;       /* 4 */
38         unsigned int Total_frame_size:27;       /* 5..31 */
39 };
40
41 struct unwind_table {
42         struct unwind_table *next;
43         const char *name;
44         unsigned long gp;
45         unsigned long base_addr;
46         unsigned long start;
47         unsigned long end;
48         const struct unwind_table_entry *table;
49         unsigned long length;
50 };
51
52 struct unwind_frame_info {
53         unsigned long sp;
54         unsigned long ip;
55         struct task_struct *t;
56         /* Eventually we would like to be able to get at any of the registers
57            available; but for now we only try to get the sp and ip for each
58            frame */
59         /* struct pt_regs regs; */
60         unsigned long prev_sp, prev_ip;
61 };
62
63 void * unwind_table_add(const char *name, unsigned long base_addr, 
64                  unsigned long gp,
65                  const void *start, const void *end);
66 void unwind_frame_init(struct unwind_frame_info *info, struct task_struct *t, 
67                        struct pt_regs *regs);
68 void unwind_frame_init_from_blocked_task(struct unwind_frame_info *info, struct task_struct *t);
69 int unwind_once(struct unwind_frame_info *info);
70 int unwind_to_user(struct unwind_frame_info *info);
71
72 #endif