Lines Matching refs:context
153 context(reinterpret_cast<ucontext_t*>(raw_context)->uc_mcontext) { in UContext()
159 DumpRegister32(os, "eax", context->__ss.__eax); in Dump()
160 DumpRegister32(os, "ebx", context->__ss.__ebx); in Dump()
161 DumpRegister32(os, "ecx", context->__ss.__ecx); in Dump()
162 DumpRegister32(os, "edx", context->__ss.__edx); in Dump()
165 DumpRegister32(os, "edi", context->__ss.__edi); in Dump()
166 DumpRegister32(os, "esi", context->__ss.__esi); in Dump()
167 DumpRegister32(os, "ebp", context->__ss.__ebp); in Dump()
168 DumpRegister32(os, "esp", context->__ss.__esp); in Dump()
171 DumpRegister32(os, "eip", context->__ss.__eip); in Dump()
173 DumpRegister32(os, "eflags", context->__ss.__eflags); in Dump()
174 DumpX86Flags(os, context->__ss.__eflags); in Dump()
177 DumpRegister32(os, "cs", context->__ss.__cs); in Dump()
178 DumpRegister32(os, "ds", context->__ss.__ds); in Dump()
179 DumpRegister32(os, "es", context->__ss.__es); in Dump()
180 DumpRegister32(os, "fs", context->__ss.__fs); in Dump()
182 DumpRegister32(os, "gs", context->__ss.__gs); in Dump()
183 DumpRegister32(os, "ss", context->__ss.__ss); in Dump()
185 DumpRegister32(os, "eax", context.gregs[REG_EAX]); in Dump()
186 DumpRegister32(os, "ebx", context.gregs[REG_EBX]); in Dump()
187 DumpRegister32(os, "ecx", context.gregs[REG_ECX]); in Dump()
188 DumpRegister32(os, "edx", context.gregs[REG_EDX]); in Dump()
191 DumpRegister32(os, "edi", context.gregs[REG_EDI]); in Dump()
192 DumpRegister32(os, "esi", context.gregs[REG_ESI]); in Dump()
193 DumpRegister32(os, "ebp", context.gregs[REG_EBP]); in Dump()
194 DumpRegister32(os, "esp", context.gregs[REG_ESP]); in Dump()
197 DumpRegister32(os, "eip", context.gregs[REG_EIP]); in Dump()
199 DumpRegister32(os, "eflags", context.gregs[REG_EFL]); in Dump()
200 DumpX86Flags(os, context.gregs[REG_EFL]); in Dump()
203 DumpRegister32(os, "cs", context.gregs[REG_CS]); in Dump()
204 DumpRegister32(os, "ds", context.gregs[REG_DS]); in Dump()
205 DumpRegister32(os, "es", context.gregs[REG_ES]); in Dump()
206 DumpRegister32(os, "fs", context.gregs[REG_FS]); in Dump()
208 DumpRegister32(os, "gs", context.gregs[REG_GS]); in Dump()
209 DumpRegister32(os, "ss", context.gregs[REG_SS]); in Dump()
211 DumpRegister64(os, "rax", context.gregs[REG_RAX]); in Dump()
212 DumpRegister64(os, "rbx", context.gregs[REG_RBX]); in Dump()
213 DumpRegister64(os, "rcx", context.gregs[REG_RCX]); in Dump()
214 DumpRegister64(os, "rdx", context.gregs[REG_RDX]); in Dump()
217 DumpRegister64(os, "rdi", context.gregs[REG_RDI]); in Dump()
218 DumpRegister64(os, "rsi", context.gregs[REG_RSI]); in Dump()
219 DumpRegister64(os, "rbp", context.gregs[REG_RBP]); in Dump()
220 DumpRegister64(os, "rsp", context.gregs[REG_RSP]); in Dump()
223 DumpRegister64(os, "r8 ", context.gregs[REG_R8]); in Dump()
224 DumpRegister64(os, "r9 ", context.gregs[REG_R9]); in Dump()
225 DumpRegister64(os, "r10", context.gregs[REG_R10]); in Dump()
226 DumpRegister64(os, "r11", context.gregs[REG_R11]); in Dump()
229 DumpRegister64(os, "r12", context.gregs[REG_R12]); in Dump()
230 DumpRegister64(os, "r13", context.gregs[REG_R13]); in Dump()
231 DumpRegister64(os, "r14", context.gregs[REG_R14]); in Dump()
232 DumpRegister64(os, "r15", context.gregs[REG_R15]); in Dump()
235 DumpRegister64(os, "rip", context.gregs[REG_RIP]); in Dump()
237 DumpRegister32(os, "eflags", context.gregs[REG_EFL]); in Dump()
238 DumpX86Flags(os, context.gregs[REG_EFL]); in Dump()
241 DumpRegister32(os, "cs", (context.gregs[REG_CSGSFS]) & 0x0FFFF); in Dump()
242 DumpRegister32(os, "gs", (context.gregs[REG_CSGSFS] >> 16) & 0x0FFFF); in Dump()
243 DumpRegister32(os, "fs", (context.gregs[REG_CSGSFS] >> 32) & 0x0FFFF); in Dump()
290 mcontext_t& context; member