Lines Matching refs:stuff
76 struct stuff struct
91 struct stuff *stuff = arg; in print_register() argument
98 int result = dwarf_frame_register (stuff->frame, regno, ops_mem, &ops, &nops); in print_register()
99 print_detail (result, ops, nops, stuff->bias); in print_register()
106 GElf_Addr pc, struct stuff *stuff) in handle_cfi() argument
114 int result = dwarf_cfi_addrframe (cfi, pc - stuff->bias, &stuff->frame); in handle_cfi()
124 int ra_regno = dwarf_frame_info (stuff->frame, &start, &end, &signalp); in handle_cfi()
127 start += stuff->bias; in handle_cfi()
128 end += stuff->bias; in handle_cfi()
146 result = dwarf_frame_cfa (stuff->frame, &cfa_ops, &cfa_nops); in handle_cfi()
149 print_detail (result, cfa_ops, cfa_nops, stuff->bias); in handle_cfi()
152 &print_register, stuff); in handle_cfi()
162 struct stuff stuff; in handle_address() local
163 stuff.frame = NULL; in handle_address()
164 stuff.bias = 0; in handle_address()
166 dwfl_module_eh_cfi (mod, &stuff.bias), pc, &stuff); in handle_address()
167 free (stuff.frame); in handle_address()
169 stuff.frame = NULL; in handle_address()
170 stuff.bias = 0; in handle_address()
172 dwfl_module_dwarf_cfi (mod, &stuff.bias), pc, &stuff); in handle_address()
173 free (stuff.frame); in handle_address()