Lines Matching refs:uc
32 unw_init_local (unw_cursor_t *cursor, unw_context_t *uc) in unw_init_local() argument
40 set_as_arg (struct cursor *c, unw_context_t *uc) in set_as_arg() argument
44 c->as_arg = &uc->sw; in set_as_arg()
46 c->as_arg = uc; in set_as_arg()
51 get_initial_stack_pointers (struct cursor *c, unw_context_t *uc, in get_initial_stack_pointers() argument
58 sol = (uc->sw.ar_pfs >> 7) & 0x7f; in get_initial_stack_pointers()
59 bspstore = uc->sw.ar_bspstore; in get_initial_stack_pointers()
60 *sp = uc->ksp; in get_initial_stack_pointers()
62 sol = (uc->uc_mcontext.sc_ar_pfs >> 7) & 0x7f; in get_initial_stack_pointers()
63 bspstore = uc->uc_mcontext.sc_ar_bsp; in get_initial_stack_pointers()
64 *sp = uc->uc_mcontext.sc_gr[12]; in get_initial_stack_pointers()
80 unw_init_local (unw_cursor_t *cursor, unw_context_t *uc) in unw_init_local() argument
92 set_as_arg (c, uc); in unw_init_local()
94 if ((ret = get_initial_stack_pointers (c, uc, &sp, &bsp)) < 0) in unw_init_local()