HomeSort by relevance Sort by last modified time
    Searched refs:unw (Results 26 - 33 of 33) sorted by null

12

  /external/libunwind/include/tdep-ia64/
libunwind_i.h 227 #define tdep_init_done unw.init_done
253 unw.initialized flags for the local-only and generic versions of
255 data structure, we couldn't declare "unw" as HIDDEN/PROTECTED. */
256 #define unw UNW_OBJ(data) macro
281 extern struct ia64_global_unwind_state unw;
  /external/libunwind/doc/
_U_dyn_cancel.tex 15 \Type{void} \Func{\_U\_dyn\_cancel}(\Type{unw\_dyn\_info\_t~*}\Var{di});\\
21 is the pointer to the \Type{unw\_dyn\_info\_t} structure that
_U_dyn_register.tex 15 \Type{void} \Func{\_U\_dyn\_register}(\Type{unw\_dyn\_info\_t~*}\Var{di});\\
21 described by a structure of type \Type{unw\_dyn\_info\_t} (see
libunwind-dynamic.tex 87 procedure by setting up a structure of type \Type{unw\_dyn\_info\_t}
90 \Type{unw\_dyn\_info\_t} structure are described below:
96 \item[\Type{unw\_word\_t} \Var{start\_ip}] The start-address of the
99 \item[\Type{unw\_word\_t} \Var{end\_ip}] The end-address of the
103 \item[\Type{unw\_word\_t} \Var{gp}] The global-pointer value in use
108 This member can be one of \Const{UNW\_INFO\_FORMAT\_DYNAMIC},
109 \Const{UNW\_INFO\_FORMAT\_TABLE}, or
110 \Const{UNW\_INFO\_FORMAT\_REMOTE\_TABLE}.
114 \item[\Type{unw\_dyn\_proc\_info\_t} \Var{pi}] This member is used
115 for format \Const{UNW\_INFO\_FORMAT\_DYNAMIC}
    [all...]
libunwind-ia64.tex 20 \Type{unw\_word\_t} is always defined to be 64 bits wide (independent
25 macro \Const{UNW\_TARGET\_IA64} as 1 and the macro \Const{UNW\_TARGET}
35 64-bit wide \Type{unw\_word\_t} values, \Prog{libunwind} treats the
49 access a register (via \Func{unw\_get\_reg}() or
50 \Func{unw\_get\_fpreg}()) and if the register isn't accessible, the
51 call will fail with a return-value of \texttt{-}\Const{UNW\_EBADREG}.
85 \item[\Const{UNW\_IA64\_IP}:] Contains the instruction pointer (IP, or
89 instruction pointed to by \Const{UNW\_IA64\_IP}. Bits 0 and 1 of
94 \item[\Const{UNW\_IA64\_SP}:] Contains the (memory) stack-pointe
    [all...]
  /external/libunwind/src/ia64/
Gregs.c 70 unw.read_only.f0) < 0)
290 ret = ia64_putfp (c, reg_loc, unw.nat_val_be);
292 ret = ia64_putfp (c, reg_loc, unw.nat_val_le);
305 src = (unw_word_t *) &unw.int_val_be;
321 *valp = (memcmp (&tmp, &unw.nat_val_be, sizeof (tmp)) == 0);
323 *valp = (memcmp (&tmp, &unw.nat_val_le, sizeof (tmp)) == 0);
572 *valp = unw.read_only.f0;
580 *valp = unw.read_only.f1_be;
582 *valp = unw.read_only.f1_le;
unwind_i.h 60 case UNW_IA64_GR + 0: addr = &unw.read_only.r0; break;
61 case UNW_IA64_NAT + 0: addr = &unw.read_only.r0; break;
62 case UNW_IA64_FR + 0: addr = &unw.read_only.f0; break;
65 addr = &unw.read_only.f1_be;
67 addr = &unw.read_only.f1_le;
114 /* Return TRUE if ADDR points inside unw.read_only_reg. */
119 return ((unsigned long) ((char *) addr - (char *) &unw.read_only)
120 < sizeof (unw.read_only));
Gparser.c 35 #define alloc_reg_state() (mempool_alloc (&unw.reg_state_pool))
36 #define free_reg_state(rs) (mempool_free (&unw.reg_state_pool, rs))
37 #define alloc_labeled_state() (mempool_alloc (&unw.labeled_state_pool))
38 #define free_labeled_state(s) (mempool_free (&unw.labeled_state_pool, s))
208 for (i = 0; i < (int) ARRAY_SIZE (unw.save_order); ++i)
210 reg = sr->curr.reg + unw.save_order[i];
299 set_reg (sr->curr.reg + unw.save_order[i], IA64_WHERE_GR,
1059 Dprintf (" %s <- ", unw.preg_name[r - sr->curr.reg]);
1079 unw.preg_name[r - sr->curr.reg], (long) r->val);

Completed in 886 milliseconds

12