Lines Matching refs:frame_x86
127 const StackFrameX86 *frame_x86 = static_cast<const StackFrameX86*>(frame); in PrintStackContents() local
130 if ((frame_x86->context_validity & StackFrameX86::CONTEXT_VALID_ESP) && in PrintStackContents()
132 stack_begin = frame_x86->context.esp; in PrintStackContents()
292 const StackFrameX86 *frame_x86 = in PrintStack() local
295 if (frame_x86->context_validity & StackFrameX86::CONTEXT_VALID_EIP) in PrintStack()
296 sequence = PrintRegister("eip", frame_x86->context.eip, sequence); in PrintStack()
297 if (frame_x86->context_validity & StackFrameX86::CONTEXT_VALID_ESP) in PrintStack()
298 sequence = PrintRegister("esp", frame_x86->context.esp, sequence); in PrintStack()
299 if (frame_x86->context_validity & StackFrameX86::CONTEXT_VALID_EBP) in PrintStack()
300 sequence = PrintRegister("ebp", frame_x86->context.ebp, sequence); in PrintStack()
301 if (frame_x86->context_validity & StackFrameX86::CONTEXT_VALID_EBX) in PrintStack()
302 sequence = PrintRegister("ebx", frame_x86->context.ebx, sequence); in PrintStack()
303 if (frame_x86->context_validity & StackFrameX86::CONTEXT_VALID_ESI) in PrintStack()
304 sequence = PrintRegister("esi", frame_x86->context.esi, sequence); in PrintStack()
305 if (frame_x86->context_validity & StackFrameX86::CONTEXT_VALID_EDI) in PrintStack()
306 sequence = PrintRegister("edi", frame_x86->context.edi, sequence); in PrintStack()
307 if (frame_x86->context_validity == StackFrameX86::CONTEXT_VALID_ALL) { in PrintStack()
308 sequence = PrintRegister("eax", frame_x86->context.eax, sequence); in PrintStack()
309 sequence = PrintRegister("ecx", frame_x86->context.ecx, sequence); in PrintStack()
310 sequence = PrintRegister("edx", frame_x86->context.edx, sequence); in PrintStack()
311 sequence = PrintRegister("efl", frame_x86->context.eflags, sequence); in PrintStack()