Tue May 6 19:12:20 1997 Alexandre Julliard <julliard@lrc.epfl.ch> * [loader/task.c] [loader/module.c] Fixed command line in LoadModule to already include the length indicator (thanks to Andreas Mohr). * [windows/dialog.c] DlgDirList: fixed behavior with DDL_DRIVES | DDL_EXCLUSIVE (thanks to Bruce Milner for this one); correctly update file spec on exit. * [windows/winproc.c] [if1632/thunk.c] [include/callback.h] Moved emulator-specific code for calling window procedure to thunk.c. Mon Apr 28 10:21:59 1997 Huw D M Davies <h.davies1@physics.oxford.ac.uk> * [memory/local.c] Better implementation of moveable blocks (first word in block is the handle itself) and discarded blocks. Local(Re)Alloc is much more like the real thing. Thu Apr 24 19:50:19 1997 Albrecht Kleine <kleine@ak.sax.de> * [objects/metafile.c] Added handling of meta record META_DIBCREATEPATTERNBRUSH. Mon Apr 21 14:03:32 1997 Alex Korobka <alex@trantor.pharm.sunysb.edu> * [multimedia/mmsystem.c] [multimedia/audio.c] Fixed leftover problems with masked device IDs. * [msdos/int21.c] Removed code duplications, fixed Write. * [windows/event.c] [windows/dce.c] [windows/nonclient.c] [windows/winpos.c] Yet another attempt to make -managed work better. * [controls/combo.c] UI fix. Mon Apr 21 13:10:24 1997 Marcus Meissner <msmeissn@immd4.informatik.uni-erlangen.de> * [debugger/*] All "Loading from ..." lines merged into one so important information before the crash doesn't scroll out. * [if1632/kernel.spec] Added some ordinal stubs used by win95 OLE and friends. * [win32/process.c] [if1632/kernel.spec] [loader/module.c] MsgWaitForMultipleObjects,GetProcessTimes,RtlImageNtHeaders, LoadLibraryEx32W and GetProcAddress32W added. * [objects/bitmap.c] XImages use another memory layout for depth 4 (and poss. other depths) then Windows bitmaps. Replaced speedup hack by generic (and better working) code. * [objects/dib.c] Another ximage!=bitmap memory layout bug. All _XinitImageFuncPtrs except one removed. Sun Apr 20 17:12:30 1997 Andrew Taylor <andrew@riscan.com> * [multimedia/audio.c] Fixed some regression bugs. Sun Apr 20 12:15:09 1997 Andreas Mohr <100.30936@germany.net> * [loader/module.c] Fixed MODULE_LoadExeHeader() to use the correct offset for fast-load area. Sat Apr 19 16:40:00 1997 Chad Fraleigh <chadf@bookcase.com> * [controls/*] [debugger/*] [graphics/win16drv/*] [loader/*] [misc/*] [win32/*] Removed <malloc.h> and added <stdlib.h> where needed. Changed printf formaters to match argument types (%lx instead of %x). Casted some types to make the compiler happy. Mostly pointer<->ulong. * [graphics/win16drv/init.c] Fixed uninitialized variable. * [include/msdos.h] Added <sys/types.h> needed for <dirent.h>. * [include/sigcontext.h] Combined a common NetBSD & FreeBSD #ifdef, and added in OpenBSD. Casted EIP_sig/ESP_sig to be unsigned long (declared as 'int' in *BSD). * [misc/crtdll.c] [misc/lstr.c] Casted last argument in v*printf() to be va_list. This code seems to make BIG assumptions about the implementation of va_list. * [misc/ver.c] Fixed impossible if() expression (unsigned < 0). * [misc/winsock.c] Removed semicolon on the end of an if() statement. * [windows/mdi.c] Changed a counter/index to unsigned since it was complaining about signed/unsigned comparison and didn't need to be negative. Wed Apr 16 17:43:19 1997 Georg Beyerle <gbeyerle@awi-potsdam.de> * [scheduler/thread.c] Minor fix in thread database initialization. Wed Apr 16 17:28:05 1997 Andreas Mohr <100.30936@germany.net> * [files/file.c] Fixed FILE_FillInfo() to omit the archive flag when handling a DOS directory entry.
258 lines
6.2 KiB
C
258 lines
6.2 KiB
C
/*
|
|
* Debugger stack handling
|
|
*
|
|
* Copyright 1995 Alexandre Julliard
|
|
* Copyright 1996 Eric Youngdale
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include "xmalloc.h"
|
|
#include "windows.h"
|
|
#include "debugger.h"
|
|
|
|
|
|
/*
|
|
* We keep this info for each frame, so that we can
|
|
* find local variable information correctly.
|
|
*/
|
|
struct bt_info
|
|
{
|
|
unsigned int eip;
|
|
unsigned int ess;
|
|
unsigned int ebp;
|
|
struct symbol_info frame;
|
|
};
|
|
|
|
static int nframe;
|
|
static struct bt_info * frames = NULL;
|
|
int curr_frame;
|
|
|
|
typedef struct
|
|
{
|
|
WORD bp;
|
|
WORD ip;
|
|
WORD cs;
|
|
} FRAME16;
|
|
|
|
typedef struct
|
|
{
|
|
DWORD bp;
|
|
DWORD ip;
|
|
WORD cs;
|
|
} FRAME32;
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
* DEBUG_InfoStack
|
|
*
|
|
* Dump the top of the stack
|
|
*/
|
|
void DEBUG_InfoStack(void)
|
|
{
|
|
DBG_ADDR addr;
|
|
|
|
fprintf(stderr,"Stack dump:\n");
|
|
if ((SS_reg(&DEBUG_context) == WINE_DATA_SELECTOR) ||
|
|
(GET_SEL_FLAGS(SS_reg(&DEBUG_context)) & LDT_FLAGS_32BIT))
|
|
{ /* 32-bit mode */
|
|
addr.seg = 0;
|
|
addr.off = ESP_reg(&DEBUG_context);
|
|
addr.type = NULL;
|
|
DEBUG_ExamineMemory( &addr, 24, 'x' );
|
|
}
|
|
else /* 16-bit mode */
|
|
{
|
|
addr.seg = SS_reg(&DEBUG_context);
|
|
addr.off = SP_reg(&DEBUG_context);
|
|
addr.type = NULL;
|
|
DEBUG_ExamineMemory( &addr, 24, 'w' );
|
|
}
|
|
fprintf(stderr,"\n");
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* DEBUG_BackTrace
|
|
*
|
|
* Display a stack back-trace.
|
|
*/
|
|
void DEBUG_BackTrace(void)
|
|
{
|
|
DBG_ADDR addr;
|
|
int frameno = 0;
|
|
|
|
fprintf(stderr,"Backtrace:\n");
|
|
if (SS_reg(&DEBUG_context) == WINE_DATA_SELECTOR) /* 32-bit mode */
|
|
{
|
|
nframe = 1;
|
|
if (frames) free( frames );
|
|
frames = (struct bt_info *) xmalloc( sizeof(struct bt_info) );
|
|
fprintf(stderr,"%s%d ",(curr_frame == 0 ? "=>" : " "), frameno++);
|
|
|
|
addr.seg = 0;
|
|
addr.off = EIP_reg(&DEBUG_context);
|
|
frames[0].eip = addr.off;
|
|
frames[0].frame = DEBUG_PrintAddress( &addr, 32, TRUE );
|
|
fprintf( stderr, "\n" );
|
|
frames[0].ebp = addr.off = EBP_reg(&DEBUG_context);
|
|
|
|
while (addr.off)
|
|
{
|
|
FRAME32 *frame = (FRAME32 *)addr.off;
|
|
if (!DBG_CHECK_READ_PTR( &addr, sizeof(FRAME32) )) return;
|
|
if (!frame->ip) break;
|
|
nframe++;
|
|
frames = (struct bt_info *)xrealloc(frames,
|
|
nframe*sizeof(struct bt_info));
|
|
fprintf(stderr,"%s%d ", (frameno == curr_frame ? "=>" : " "),
|
|
frameno);
|
|
addr.off = frame->ip;
|
|
frames[frameno].eip = addr.off;
|
|
frames[frameno].ebp = frame->bp;
|
|
frames[frameno].frame = DEBUG_PrintAddressAndArgs( &addr, 32,
|
|
frame->bp, TRUE );
|
|
frameno++;
|
|
fprintf( stderr, "\n" );
|
|
addr.off = frame->bp;
|
|
}
|
|
}
|
|
else /* 16-bit mode */
|
|
{
|
|
WORD ss = SS_reg(&DEBUG_context), cs = CS_reg(&DEBUG_context);
|
|
if (GET_SEL_FLAGS(ss) & LDT_FLAGS_32BIT)
|
|
{
|
|
fprintf( stderr, "Not implemented: 32-bit backtrace on a different stack segment.\n" );
|
|
return;
|
|
}
|
|
fprintf( stderr,"%d ", frameno++ );
|
|
addr.seg = cs;
|
|
addr.off = IP_reg(&DEBUG_context);
|
|
DEBUG_PrintAddress( &addr, 16, TRUE );
|
|
fprintf( stderr, "\n" );
|
|
addr.seg = ss;
|
|
addr.off = BP_reg(&DEBUG_context) & ~1;
|
|
for (;;)
|
|
{
|
|
FRAME16 *frame = (FRAME16 *)DBG_ADDR_TO_LIN(&addr);
|
|
if (!DBG_CHECK_READ_PTR( &addr, sizeof(FRAME16) )) return;
|
|
if (!frame->bp) break;
|
|
if (frame->bp & 1) cs = frame->cs;
|
|
fprintf( stderr,"%d ", frameno++ );
|
|
addr.seg = cs;
|
|
addr.off = frame->ip;
|
|
DEBUG_PrintAddress( &addr, 16, TRUE );
|
|
fprintf( stderr, "\n" );
|
|
addr.seg = ss;
|
|
addr.off = frame->bp & ~1;
|
|
}
|
|
}
|
|
fprintf( stderr, "\n" );
|
|
}
|
|
|
|
/***********************************************************************
|
|
* DEBUG_SilentBackTrace
|
|
*
|
|
* Display a stack back-trace.
|
|
*/
|
|
void DEBUG_SilentBackTrace(void)
|
|
{
|
|
DBG_ADDR addr;
|
|
int frameno = 0;
|
|
|
|
nframe = 1;
|
|
if (frames) free( frames );
|
|
frames = (struct bt_info *) xmalloc( sizeof(struct bt_info) );
|
|
|
|
if (SS_reg(&DEBUG_context) == WINE_DATA_SELECTOR) /* 32-bit mode */
|
|
{
|
|
addr.seg = 0;
|
|
addr.off = EIP_reg(&DEBUG_context);
|
|
frames[0].eip = addr.off;
|
|
DEBUG_FindNearestSymbol( &addr, TRUE, &frames[0].frame.sym, 0,
|
|
&frames[0].frame.list);
|
|
frames[0].ebp = addr.off = EBP_reg(&DEBUG_context);
|
|
frameno++;
|
|
|
|
while (addr.off)
|
|
{
|
|
FRAME32 *frame = (FRAME32 *)addr.off;
|
|
if (!DBG_CHECK_READ_PTR( &addr, sizeof(FRAME32) )) return;
|
|
if (!frame->ip) break;
|
|
nframe++;
|
|
frames = (struct bt_info *)xrealloc(frames,
|
|
nframe*sizeof(struct bt_info));
|
|
addr.off = frame->ip;
|
|
frames[frameno].eip = addr.off;
|
|
frames[frameno].ebp = frame->bp;
|
|
DEBUG_FindNearestSymbol( &addr, TRUE,
|
|
&frames[frameno].frame.sym, frame->bp,
|
|
&frames[frameno].frame.list);
|
|
frameno++;
|
|
addr.off = frame->bp;
|
|
}
|
|
}
|
|
else /* 16-bit mode */
|
|
{
|
|
/*
|
|
* Not implemented here. I am not entirely sure how best to handle
|
|
* this stuff.
|
|
*/
|
|
}
|
|
}
|
|
|
|
int
|
|
DEBUG_SetFrame(int newframe)
|
|
{
|
|
int rtn = FALSE;
|
|
|
|
curr_frame = newframe;
|
|
|
|
if( curr_frame >= nframe )
|
|
{
|
|
curr_frame = nframe - 1;
|
|
}
|
|
|
|
if( curr_frame < 0 )
|
|
{
|
|
curr_frame = 0;
|
|
}
|
|
|
|
if( frames[curr_frame].frame.list.sourcefile != NULL )
|
|
{
|
|
DEBUG_List(&frames[curr_frame].frame.list, NULL, 0);
|
|
}
|
|
|
|
rtn = TRUE;
|
|
return (rtn);
|
|
}
|
|
|
|
int
|
|
DEBUG_GetCurrentFrame(struct name_hash ** name, unsigned int * eip,
|
|
unsigned int * ebp)
|
|
{
|
|
/*
|
|
* 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.
|
|
*/
|
|
if( frames[curr_frame].frame.sym == NULL )
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
*name = frames[curr_frame].frame.sym;
|
|
*eip = frames[curr_frame].eip;
|
|
*ebp = frames[curr_frame].ebp;
|
|
|
|
return TRUE;
|
|
}
|
|
|