Lines Matching defs:context
135 : context(reinterpret_cast<ucontext_t*>(raw_context)->uc_mcontext) {}
147 mcontext_t& context;
152 DumpRegister32(os, "eax", context->__ss.__eax);
153 DumpRegister32(os, "ebx", context->__ss.__ebx);
154 DumpRegister32(os, "ecx", context->__ss.__ecx);
155 DumpRegister32(os, "edx", context->__ss.__edx);
158 DumpRegister32(os, "edi", context->__ss.__edi);
159 DumpRegister32(os, "esi", context->__ss.__esi);
160 DumpRegister32(os, "ebp", context->__ss.__ebp);
161 DumpRegister32(os, "esp", context->__ss.__esp);
164 DumpRegister32(os, "eip", context->__ss.__eip);
166 DumpRegister32(os, "eflags", context->__ss.__eflags);
167 DumpX86Flags(os, context->__ss.__eflags);
170 DumpRegister32(os, "cs", context->__ss.__cs);
171 DumpRegister32(os, "ds", context->__ss.__ds);
172 DumpRegister32(os, "es", context->__ss.__es);
173 DumpRegister32(os, "fs", context->__ss.__fs);
175 DumpRegister32(os, "gs", context->__ss.__gs);
176 DumpRegister32(os, "ss", context->__ss.__ss);
178 DumpRegister32(os, "eax", context.gregs[REG_EAX]);
179 DumpRegister32(os, "ebx", context.gregs[REG_EBX]);
180 DumpRegister32(os, "ecx", context.gregs[REG_ECX]);
181 DumpRegister32(os, "edx", context.gregs[REG_EDX]);
184 DumpRegister32(os, "edi", context.gregs[REG_EDI]);
185 DumpRegister32(os, "esi", context.gregs[REG_ESI]);
186 DumpRegister32(os, "ebp", context.gregs[REG_EBP]);
187 DumpRegister32(os, "esp", context.gregs[REG_ESP]);
190 DumpRegister32(os, "eip", context.gregs[REG_EIP]);
192 DumpRegister32(os, "eflags", context.gregs[REG_EFL]);
193 DumpX86Flags(os, context.gregs[REG_EFL]);
196 DumpRegister32(os, "cs", context.gregs[REG_CS]);
197 DumpRegister32(os, "ds", context.gregs[REG_DS]);
198 DumpRegister32(os, "es", context.gregs[REG_ES]);
199 DumpRegister32(os, "fs", context.gregs[REG_FS]);
201 DumpRegister32(os, "gs", context.gregs[REG_GS]);
202 DumpRegister32(os, "ss", context.gregs[REG_SS]);
204 DumpRegister64(os, "rax", context.gregs[REG_RAX]);
205 DumpRegister64(os, "rbx", context.gregs[REG_RBX]);
206 DumpRegister64(os, "rcx", context.gregs[REG_RCX]);
207 DumpRegister64(os, "rdx", context.gregs[REG_RDX]);
210 DumpRegister64(os, "rdi", context.gregs[REG_RDI]);
211 DumpRegister64(os, "rsi", context.gregs[REG_RSI]);
212 DumpRegister64(os, "rbp", context.gregs[REG_RBP]);
213 DumpRegister64(os, "rsp", context.gregs[REG_RSP]);
216 DumpRegister64(os, "r8 ", context.gregs[REG_R8]);
217 DumpRegister64(os, "r9 ", context.gregs[REG_R9]);
218 DumpRegister64(os, "r10", context.gregs[REG_R10]);
219 DumpRegister64(os, "r11", context.gregs[REG_R11]);
222 DumpRegister64(os, "r12", context.gregs[REG_R12]);
223 DumpRegister64(os, "r13", context.gregs[REG_R13]);
224 DumpRegister64(os, "r14", context.gregs[REG_R14]);
225 DumpRegister64(os, "r15", context.gregs[REG_R15]);
228 DumpRegister64(os, "rip", context.gregs[REG_RIP]);
230 DumpRegister32(os, "eflags", context.gregs[REG_EFL]);
231 DumpX86Flags(os, context.gregs[REG_EFL]);
234 DumpRegister32(os, "cs", (context.gregs[REG_CSGSFS]) & 0x0FFFF);
235 DumpRegister32(os, "gs", (context.gregs[REG_CSGSFS] >> 16) & 0x0FFFF);
236 DumpRegister32(os, "fs", (context.gregs[REG_CSGSFS] >> 32) & 0x0FFFF);
239 DumpRegister32(os, "r0", context.arm_r0);
240 DumpRegister32(os, "r1", context.arm_r1);
241 DumpRegister32(os, "r2", context.arm_r2);
242 DumpRegister32(os, "r3", context.arm_r3);
245 DumpRegister32(os, "r4", context.arm_r4);
246 DumpRegister32(os, "r5", context.arm_r5);
247 DumpRegister32(os, "r6", context.arm_r6);
248 DumpRegister32(os, "r7", context.arm_r7);
251 DumpRegister32(os, "r8", context.arm_r8);
252 DumpRegister32(os, "r9", context.arm_r9);
253 DumpRegister32(os, "r10", context.arm_r10);
254 DumpRegister32(os, "fp", context.arm_fp);
257 DumpRegister32(os, "ip", context.arm_ip);
258 DumpRegister32(os, "sp", context.arm_sp);
259 DumpRegister32(os, "lr", context.arm_lr);
260 DumpRegister32(os, "pc", context.arm_pc);
263 DumpRegister32(os, "cpsr", context.arm_cpsr);
264 DumpArmStatusRegister(os, context.arm_cpsr);
269 DumpRegister64(os, reg_name.c_str(), context.regs[i]);
276 DumpRegister64(os, "sp", context.sp);
277 DumpRegister64(os, "pc", context.pc);
280 DumpRegister64(os, "pstate", context.pstate);
281 DumpArmStatusRegister(os, context.pstate);