| /* |
| * Debugger stack handling |
| * |
| * Copyright 1995 Alexandre Julliard |
| * Copyright 1996 Eric Youngdale |
| * Copyright 1999 Ove Kåven |
| * |
| * This library is free software; you can redistribute it and/or |
| * modify it under the terms of the GNU Lesser General Public |
| * License as published by the Free Software Foundation; either |
| * version 2.1 of the License, or (at your option) any later version. |
| * |
| * This library is distributed in the hope that it will be useful, |
| * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| * Lesser General Public License for more details. |
| * |
| * You should have received a copy of the GNU Lesser General Public |
| * License along with this library; if not, write to the Free Software |
| * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| */ |
| |
| #include "config.h" |
| |
| #include <stdlib.h> |
| |
| #include "debugger.h" |
| #include "stackframe.h" |
| #include "winbase.h" |
| #include "wine/debug.h" |
| |
| WINE_DEFAULT_DEBUG_CHANNEL(winedbg); |
| |
| static int nframe; |
| static IMAGEHLP_STACK_FRAME* frames = NULL; |
| |
| /*********************************************************************** |
| * stack_info |
| * |
| * Dump the top of the stack |
| */ |
| void stack_info(void) |
| { |
| struct dbg_lvalue lvalue; |
| |
| lvalue.typeid = dbg_itype_none; |
| lvalue.cookie = DLV_TARGET; |
| /* FIXME: we assume stack grows the same way as on i386 */ |
| if (!memory_get_current_stack(&lvalue.addr)) |
| dbg_printf("Bad segment (%d)\n", lvalue.addr.Segment); |
| |
| dbg_printf("Stack dump:\n"); |
| switch (lvalue.addr.Mode) |
| { |
| case AddrModeFlat: /* 32-bit mode */ |
| case AddrMode1632: /* 32-bit mode */ |
| memory_examine(&lvalue, 24, 'x'); |
| break; |
| case AddrModeReal: /* 16-bit mode */ |
| case AddrMode1616: |
| memory_examine(&lvalue, 24, 'w'); |
| break; |
| } |
| dbg_printf("\n"); |
| } |
| |
| int stack_set_frame(int newframe) |
| { |
| ADDRESS addr; |
| |
| dbg_curr_frame = newframe; |
| if (dbg_curr_frame >= nframe) dbg_curr_frame = nframe - 1; |
| if (dbg_curr_frame < 0) dbg_curr_frame = 0; |
| |
| addr.Mode = AddrModeFlat; |
| addr.Offset = frames[dbg_curr_frame].InstructionOffset; |
| source_list_from_addr(&addr, 0); |
| return TRUE; |
| } |
| |
| int stack_get_frame(SYMBOL_INFO* symbol, IMAGEHLP_STACK_FRAME* ihsf) |
| { |
| /* |
| * If we don't have a valid backtrace, then just return. |
| */ |
| if (frames == NULL) return FALSE; |
| |
| /* |
| * If we don't know what the current function is, then we also have |
| * nothing to report here. |
| */ |
| SymFromAddr(dbg_curr_process->handle, frames[dbg_curr_frame].InstructionOffset, |
| NULL, symbol); |
| if (ihsf) *ihsf = frames[dbg_curr_frame]; |
| |
| return TRUE; |
| } |
| |
| void stack_backtrace(DWORD tid, BOOL noisy) |
| { |
| STACKFRAME sf; |
| CONTEXT ctx; |
| struct dbg_thread* thread; |
| unsigned nf; |
| |
| if (tid == dbg_curr_tid) |
| { |
| ctx = dbg_context; /* as StackWalk may modify it... */ |
| thread = dbg_curr_thread; |
| if (frames) HeapFree(GetProcessHeap(), 0, frames); |
| frames = NULL; |
| } |
| else |
| { |
| thread = dbg_get_thread(dbg_curr_process, tid); |
| if (!thread) |
| { |
| dbg_printf("Unknown thread id (0x%08lx) in current process\n", tid); |
| return; |
| } |
| memset(&ctx, 0, sizeof(ctx)); |
| ctx.ContextFlags = CONTEXT_CONTROL | CONTEXT_SEGMENTS; |
| |
| if (SuspendThread(thread->handle) == -1 || |
| !GetThreadContext(thread->handle, &ctx)) |
| { |
| dbg_printf("Can't get context for thread 0x%lx in current process\n", |
| tid); |
| return; |
| } |
| } |
| |
| nf = 0; |
| memset(&sf, 0, sizeof(sf)); |
| memory_get_current_frame(&sf.AddrFrame); |
| memory_get_current_pc(&sf.AddrPC); |
| |
| if (noisy) dbg_printf("Backtrace:\n"); |
| while (StackWalk(IMAGE_FILE_MACHINE_I386, dbg_curr_process->handle, |
| thread->handle, &sf, &ctx, NULL, SymFunctionTableAccess, |
| SymGetModuleBase, NULL)) |
| { |
| if (tid == dbg_curr_tid) |
| { |
| frames = dbg_heap_realloc(frames, |
| (nf + 1) * sizeof(IMAGEHLP_STACK_FRAME)); |
| |
| frames[nf].InstructionOffset = (unsigned long)memory_to_linear_addr(&sf.AddrPC); |
| frames[nf].FrameOffset = (unsigned long)memory_to_linear_addr(&sf.AddrFrame); |
| } |
| if (noisy) |
| { |
| dbg_printf("%s%d ", |
| (tid == dbg_curr_tid && nf == dbg_curr_frame ? "=>" : " "), |
| nf + 1); |
| print_addr_and_args(&sf.AddrPC, &sf.AddrFrame); |
| dbg_printf(" ("); |
| print_bare_address(&sf.AddrFrame); |
| dbg_printf(")\n"); |
| } |
| nf++; |
| } |
| |
| if (tid == dbg_curr_tid) |
| { |
| nframe = nf; |
| } |
| else |
| { |
| ResumeThread(thread->handle); |
| } |
| } |