Lines Matching refs:stack_frame
54 STACKFRAME64 stack_frame; in UnwindSlow() local
55 memset(&stack_frame, 0, sizeof(stack_frame)); in UnwindSlow()
63 stack_frame.AddrPC.Offset = ctx.Pc; in UnwindSlow()
64 stack_frame.AddrFrame.Offset = ctx.Fp; in UnwindSlow()
65 stack_frame.AddrStack.Offset = ctx.Sp; in UnwindSlow()
68 stack_frame.AddrPC.Offset = ctx.Rip; in UnwindSlow()
69 stack_frame.AddrFrame.Offset = ctx.Rbp; in UnwindSlow()
70 stack_frame.AddrStack.Offset = ctx.Rsp; in UnwindSlow()
74 stack_frame.AddrPC.Offset = ctx.Eip; in UnwindSlow()
75 stack_frame.AddrFrame.Offset = ctx.Ebp; in UnwindSlow()
76 stack_frame.AddrStack.Offset = ctx.Esp; in UnwindSlow()
78 stack_frame.AddrPC.Mode = AddrModeFlat; in UnwindSlow()
79 stack_frame.AddrFrame.Mode = AddrModeFlat; in UnwindSlow()
80 stack_frame.AddrStack.Mode = AddrModeFlat; in UnwindSlow()
82 &stack_frame, &ctx, NULL, SymFunctionTableAccess64, in UnwindSlow()
85 trace_buffer[size++] = (uptr)stack_frame.AddrPC.Offset; in UnwindSlow()