|
#define | UNW_LOG_CACHE_SIZE 7 /* each unw_script is ~256 bytes in size */ |
|
#define | UNW_CACHE_SIZE (1 << UNW_LOG_CACHE_SIZE) |
|
#define | UNW_LOG_HASH_SIZE (UNW_LOG_CACHE_SIZE + 1) |
|
#define | UNW_HASH_SIZE (1 << UNW_LOG_HASH_SIZE) |
|
#define | UNW_STATS 0 /* WARNING: this disabled interrupts for long time-spans!! */ |
|
#define | UNW_DEBUG_ON(n) 0 |
|
#define | UNW_DPRINT(n,...) |
|
#define | STAT(x...) |
|
#define | alloc_reg_state() kmalloc(sizeof(struct unw_reg_state), GFP_ATOMIC) |
|
#define | free_reg_state(usr) kfree(usr) |
|
#define | alloc_labeled_state() kmalloc(sizeof(struct unw_labeled_state), GFP_ATOMIC) |
|
#define | free_labeled_state(usr) kfree(usr) |
|
#define | UNW_DEC_BAD_CODE(code) |
|
#define | UNW_DEC_PROLOGUE_GR(fmt, r, m, gr, arg) desc_prologue(0,r,m,gr,arg) |
|
#define | UNW_DEC_PROLOGUE(fmt, b, r, arg) desc_prologue(b,r,0,32,arg) |
|
#define | UNW_DEC_ABI(fmt, a, c, arg) desc_abi(a,c,arg) |
|
#define | UNW_DEC_BR_GR(fmt, b, g, arg) desc_br_gr(b,g,arg) |
|
#define | UNW_DEC_BR_MEM(fmt, b, arg) desc_br_mem(b,arg) |
|
#define | UNW_DEC_FRGR_MEM(fmt, g, f, arg) desc_frgr_mem(g,f,arg) |
|
#define | UNW_DEC_FR_MEM(fmt, f, arg) desc_fr_mem(f,arg) |
|
#define | UNW_DEC_GR_GR(fmt, m, g, arg) desc_gr_gr(m,g,arg) |
|
#define | UNW_DEC_GR_MEM(fmt, m, arg) desc_gr_mem(m,arg) |
|
#define | UNW_DEC_MEM_STACK_F(fmt, t, s, arg) desc_mem_stack_f(t,s,arg) |
|
#define | UNW_DEC_MEM_STACK_V(fmt, t, arg) desc_mem_stack_v(t,arg) |
|
#define | UNW_DEC_REG_GR(fmt, r, d, arg) desc_reg_gr(r,d,arg) |
|
#define | UNW_DEC_REG_PSPREL(fmt, r, o, arg) desc_reg_psprel(r,o,arg) |
|
#define | UNW_DEC_REG_SPREL(fmt, r, o, arg) desc_reg_sprel(r,o,arg) |
|
#define | UNW_DEC_REG_WHEN(fmt, r, t, arg) desc_reg_when(r,t,arg) |
|
#define | UNW_DEC_PRIUNAT_WHEN_GR(fmt, t, arg) desc_reg_when(UNW_REG_PRI_UNAT_GR,t,arg) |
|
#define | UNW_DEC_PRIUNAT_WHEN_MEM(fmt, t, arg) desc_reg_when(UNW_REG_PRI_UNAT_MEM,t,arg) |
|
#define | UNW_DEC_PRIUNAT_GR(fmt, r, arg) desc_reg_gr(UNW_REG_PRI_UNAT_GR,r,arg) |
|
#define | UNW_DEC_PRIUNAT_PSPREL(fmt, o, arg) desc_reg_psprel(UNW_REG_PRI_UNAT_MEM,o,arg) |
|
#define | UNW_DEC_PRIUNAT_SPREL(fmt, o, arg) desc_reg_sprel(UNW_REG_PRI_UNAT_MEM,o,arg) |
|
#define | UNW_DEC_RP_BR(fmt, d, arg) desc_rp_br(d,arg) |
|
#define | UNW_DEC_SPILL_BASE(fmt, o, arg) desc_spill_base(o,arg) |
|
#define | UNW_DEC_SPILL_MASK(fmt, m, arg) (m = desc_spill_mask(m,arg)) |
|
#define | UNW_DEC_EPILOGUE(fmt, t, c, arg) desc_epilogue(t,c,arg) |
|
#define | UNW_DEC_COPY_STATE(fmt, l, arg) desc_copy_state(l,arg) |
|
#define | UNW_DEC_LABEL_STATE(fmt, l, arg) desc_label_state(l,arg) |
|
#define | UNW_DEC_SPILL_REG_P(f, p, t, a, x, y, arg) desc_spill_reg_p(p,t,a,x,y,arg) |
|
#define | UNW_DEC_SPILL_REG(f, t, a, x, y, arg) desc_spill_reg_p(0,t,a,x,y,arg) |
|
#define | UNW_DEC_SPILL_PSPREL_P(f, p, t, a, o, arg) desc_spill_psprel_p(p,t,a,o,arg) |
|
#define | UNW_DEC_SPILL_PSPREL(f, t, a, o, arg) desc_spill_psprel_p(0,t,a,o,arg) |
|
#define | UNW_DEC_SPILL_SPREL_P(f, p, t, a, o, arg) desc_spill_sprel_p(p,t,a,o,arg) |
|
#define | UNW_DEC_SPILL_SPREL(f, t, a, o, arg) desc_spill_sprel_p(0,t,a,o,arg) |
|
#define | UNW_DEC_RESTORE_P(f, p, t, a, arg) desc_restore_p(p,t,a,arg) |
|
#define | UNW_DEC_RESTORE(f, t, a, arg) desc_restore_p(0,t,a,arg) |
|