Lines Matching refs:scopeFlags
45 static void dump_memory(log_t* log, pid_t tid, uintptr_t addr, int scopeFlags) { in dump_memory() argument
105 _LOG(log, scopeFlags, " %s %s\n", code_buffer, ascii_buffer); in dump_memory()
120 int scopeFlags = at_fault ? SCOPE_AT_FAULT : 0; in dump_memory_and_code() local
137 _LOG(log, scopeFlags | SCOPE_SENSITIVE, "\nmemory near %.2s:\n", ®_NAMES[reg * 2]); in dump_memory_and_code()
138 dump_memory(log, tid, addr, scopeFlags | SCOPE_SENSITIVE); in dump_memory_and_code()
143 _LOG(log, scopeFlags, "\ncode around pc:\n"); in dump_memory_and_code()
144 dump_memory(log, tid, (uintptr_t)regs.ARM_pc, scopeFlags); in dump_memory_and_code()
147 _LOG(log, scopeFlags, "\ncode around lr:\n"); in dump_memory_and_code()
148 dump_memory(log, tid, (uintptr_t)regs.ARM_lr, scopeFlags); in dump_memory_and_code()
156 int scopeFlags = at_fault ? SCOPE_AT_FAULT : 0; in dump_registers() local
159 _LOG(log, scopeFlags, "cannot get registers: %s\n", strerror(errno)); in dump_registers()
163 _LOG(log, scopeFlags, " r0 %08x r1 %08x r2 %08x r3 %08x\n", in dump_registers()
165 _LOG(log, scopeFlags, " r4 %08x r5 %08x r6 %08x r7 %08x\n", in dump_registers()
167 _LOG(log, scopeFlags, " r8 %08x r9 %08x sl %08x fp %08x\n", in dump_registers()
169 _LOG(log, scopeFlags, " ip %08x sp %08x lr %08x pc %08x cpsr %08x\n", in dump_registers()
178 _LOG(log, scopeFlags, "cannot get registers: %s\n", strerror(errno)); in dump_registers()
183 _LOG(log, scopeFlags, " d%-2d %016llx d%-2d %016llx\n", in dump_registers()
186 _LOG(log, scopeFlags, " scr %08lx\n", vfp_regs.fpscr); in dump_registers()