3 * Parser for command lines in the Wine debugger
5 * Copyright 1993 Eric Youngdale
6 * Copyright 1995 Morten Welinder
26 #include "wine/winbase16.h"
39 unsigned int dbg_mode
= 0;
43 static enum exec_mode dbg_exec_mode
= EXEC_CONT
;
44 static int dbg_exec_count
= 0;
46 void issue_prompt
(void);
47 void mode_command
(int);
48 void flush_symbols
(void);
53 #define malloc(x) DBG_alloc(x)
54 #define realloc(x,y) DBG_realloc(x,y)
55 #define free(x) DBG_free(x)
58 extern
void VIRTUAL_Dump
(void); /* memory/virtual.c */
68 struct list_id listing
;
69 struct expr
* expression
;
70 struct datatype
* type
;
73 %token tCONT tPASS tSTEP tLIST tNEXT tQUIT tHELP tBACKTRACE tINFO tWALK tUP tDOWN
74 %token tENABLE tDISABLE tBREAK tDELETE tSET tMODE tPRINT tEXAM tABORT tDEBUGMSG
75 %token tCLASS tMAPS tMODULE tSTACK tSEGMENTS tREGS tWND tQUEUE tLOCAL
76 %token tPROCESS tMODREF
77 %token tEOL tSTRING tDEBUGSTR
78 %token tFRAME tSHARE tCOND tDISPLAY tUNDISPLAY tDISASSEMBLE
79 %token tSTEPI tNEXTI tFINISH tSHOW tDIR
81 %token
<string> tIDENTIFIER tSTRING tDEBUGSTR
82 %token
<integer
> tNUM tFORMAT
86 %token tCHAR tSHORT tINT tLONG tFLOAT tDOUBLE tUNSIGNED tSIGNED
87 %token tSTRUCT tUNION tENUM
90 /* %left '=' OP_OR_EQUAL OP_XOR_EQUAL OP_AND_EQUAL OP_SHL_EQUAL \
91 OP_SHR_EQUAL OP_PLUS_EQUAL OP_MINUS_EQUAL \
92 OP_TIMES_EQUAL OP_DIVIDE_EQUAL OP_MODULO_EQUAL */
93 /* %left OP_COND */ /* ... ? ... : ... */
100 %left
'<' '>' OP_LE OP_GE
104 %left OP_SIGN
'!' '~' OP_DEREF
/* OP_INC OP_DEC OP_ADDR */
108 %type
<expression
> expr lval lvalue
109 %type
<type
> type_cast type_expr
110 %type
<address
> expr_addr lval_addr
111 %type
<integer
> expr_value
112 %type
<string> pathname
114 %type
<listing
> list_arg
118 input: line
{ issue_prompt
(); }
119 | input line
{ issue_prompt
(); }
123 |
error tEOL
{ yyerrok; }
126 tQUIT tEOL
{ DEBUG_Exit
(0); }
127 | tHELP tEOL
{ DEBUG_Help
(); }
128 | tHELP tINFO tEOL
{ DEBUG_HelpInfo
(); }
129 | tCONT tEOL
{ dbg_exec_count
= 1;
130 dbg_exec_mode
= EXEC_CONT
; return
0; }
131 | tPASS tEOL
{ dbg_exec_count
= 1;
132 dbg_exec_mode
= EXEC_PASS
; return
0; }
133 | tCONT tNUM tEOL
{ dbg_exec_count
= $2;
134 dbg_exec_mode
= EXEC_CONT
; return
0; }
135 | tSTEP tEOL
{ dbg_exec_count
= 1;
136 dbg_exec_mode
= EXEC_STEP_INSTR
; return
0; }
137 | tNEXT tEOL
{ dbg_exec_count
= 1;
138 dbg_exec_mode
= EXEC_STEP_OVER
; return
0; }
139 | tSTEP tNUM tEOL
{ dbg_exec_count
= $2;
140 dbg_exec_mode
= EXEC_STEP_INSTR
; return
0; }
141 | tNEXT tNUM tEOL
{ dbg_exec_count
= $2;
142 dbg_exec_mode
= EXEC_STEP_OVER
; return
0; }
143 | tSTEPI tEOL
{ dbg_exec_count
= 1;
144 dbg_exec_mode
= EXEC_STEPI_INSTR
; return
0; }
145 | tNEXTI tEOL
{ dbg_exec_count
= 1;
146 dbg_exec_mode
= EXEC_STEPI_OVER
; return
0; }
147 | tSTEPI tNUM tEOL
{ dbg_exec_count
= $2;
148 dbg_exec_mode
= EXEC_STEPI_INSTR
; return
0; }
149 | tNEXTI tNUM tEOL
{ dbg_exec_count
= $2;
150 dbg_exec_mode
= EXEC_STEPI_OVER
; return
0; }
151 | tABORT tEOL
{ kill
(getpid
(), SIGABRT
); }
152 | tMODE tNUM tEOL
{ mode_command
($2); }
153 | tENABLE tNUM tEOL
{ DEBUG_EnableBreakpoint
( $2, TRUE
); }
154 | tDISABLE tNUM tEOL
{ DEBUG_EnableBreakpoint
( $2, FALSE
); }
155 | tDELETE tBREAK tNUM tEOL
{ DEBUG_DelBreakpoint
( $3 ); }
156 | tBACKTRACE tEOL
{ DEBUG_BackTrace
(); }
157 | tUP tEOL
{ DEBUG_SetFrame
( curr_frame
+ 1 ); }
158 | tUP tNUM tEOL
{ DEBUG_SetFrame
( curr_frame
+ $2 ); }
159 | tDOWN tEOL
{ DEBUG_SetFrame
( curr_frame
- 1 ); }
160 | tDOWN tNUM tEOL
{ DEBUG_SetFrame
( curr_frame
- $2 ); }
161 | tFRAME tNUM tEOL
{ DEBUG_SetFrame
( $2 ); }
162 | tFINISH tEOL
{ dbg_exec_count
= 0;
163 dbg_exec_mode
= EXEC_FINISH
; return
0; }
164 | tSHOW tDIR tEOL
{ DEBUG_ShowDir
(); }
165 | tDIR pathname tEOL
{ DEBUG_AddPath
( $2 ); }
166 | tDIR tEOL
{ DEBUG_NukePath
(); }
167 | tDISPLAY tEOL
{ DEBUG_InfoDisplay
(); }
168 | tDISPLAY expr tEOL
{ DEBUG_AddDisplay
($2, 1, 0); }
169 | tDISPLAY tFORMAT expr tEOL
{ DEBUG_AddDisplay
($3, $2 >> 8, $2 & 0xff); }
170 | tDELETE tDISPLAY tNUM tEOL
{ DEBUG_DelDisplay
( $3 ); }
171 | tDELETE tDISPLAY tEOL
{ DEBUG_DelDisplay
( -1 ); }
172 | tUNDISPLAY tNUM tEOL
{ DEBUG_DelDisplay
( $2 ); }
173 | tUNDISPLAY tEOL
{ DEBUG_DelDisplay
( -1 ); }
174 | tCOND tNUM tEOL
{ DEBUG_AddBPCondition
($2, NULL
); }
175 | tCOND tNUM expr tEOL
{ DEBUG_AddBPCondition
($2, $3); }
176 | tDEBUGMSG tDEBUGSTR tEOL
{ MAIN_ParseDebugOptions
($2); }
177 | tSYMBOLFILE pathname tEOL
{ DEBUG_ReadSymbolTable
($2); }
179 | disassemble_command
188 tSET tREG
'=' expr_value tEOL
{ DEBUG_SetRegister
( $2, $4 );
189 DEBUG_FreeExprMem
(); }
190 | tSET lval_addr
'=' expr_value tEOL
{ DEBUG_WriteMemory
( &$2, $4 );
191 DEBUG_FreeExprMem
(); }
194 tIDENTIFIER
{ $$
= $1; }
198 tDISASSEMBLE tEOL
{ DEBUG_Disassemble
( NULL
, NULL
, 10 ); }
199 | tDISASSEMBLE expr_addr tEOL
{ DEBUG_Disassemble
( & $2, NULL
, 10 ); }
200 | tDISASSEMBLE expr_addr
',' expr_addr tEOL
{ DEBUG_Disassemble
( & $2, & $4, 0 ); }
203 tLIST tEOL
{ DEBUG_List
( NULL
, NULL
, 10 ); }
204 | tLIST
'-' tEOL
{ DEBUG_List
( NULL
, NULL
, -10 ); }
205 | tLIST list_arg tEOL
{ DEBUG_List
( & $2, NULL
, 10 ); }
206 | tLIST
',' list_arg tEOL
{ DEBUG_List
( NULL
, & $3, -10 ); }
207 | tLIST list_arg
',' list_arg tEOL
{ DEBUG_List
( & $2, & $4, 0 ); }
210 tNUM
{ $$.sourcefile
= NULL
; $$.line
= $1; }
211 | pathname
':' tNUM
{ $$.sourcefile
= $1; $$.line
= $3; }
212 | tIDENTIFIER
{ DEBUG_GetFuncInfo
( & $$
, NULL
, $1); }
213 | pathname
':' tIDENTIFIER
{ DEBUG_GetFuncInfo
( & $$
, $1, $3); }
214 |
'*' expr_addr
{ DEBUG_FindNearestSymbol
( & $2, FALSE
, NULL
,
216 DEBUG_FreeExprMem
(); }
219 tEXAM expr_addr tEOL
{ DEBUG_ExamineMemory
( &$2, 1, 'x');
220 DEBUG_FreeExprMem
(); }
221 | tEXAM tFORMAT expr_addr tEOL
{ DEBUG_ExamineMemory
( &$3, $2>>8, $2&0xff );
222 DEBUG_FreeExprMem
(); }
225 tPRINT expr_addr tEOL
{ DEBUG_Print
( &$2, 1, 0, 0 );
226 DEBUG_FreeExprMem
(); }
227 | tPRINT tFORMAT expr_addr tEOL
{ DEBUG_Print
( &$3, $2 >> 8, $2 & 0xff, 0 );
228 DEBUG_FreeExprMem
(); }
231 tBREAK
'*' expr_addr tEOL
{ DEBUG_AddBreakpoint
( &$3 );
232 DEBUG_FreeExprMem
(); }
233 | tBREAK tIDENTIFIER tEOL
{ DBG_ADDR addr
;
234 if
( DEBUG_GetSymbolValue
($2, -1, &addr
, TRUE
) )
236 DEBUG_AddBreakpoint
( &addr
);
240 fprintf
(stderr
,"Unable to add breakpoint\n");
243 | tBREAK tIDENTIFIER
':' tNUM tEOL
{ DBG_ADDR addr
;
244 if
( DEBUG_GetSymbolValue
($2, $4, &addr
, TRUE
) )
246 DEBUG_AddBreakpoint
( &addr
);
250 fprintf
(stderr
,"Unable to add breakpoint\n");
253 | tBREAK tNUM tEOL
{ struct name_hash
*nh
;
255 DEBUG_GetCurrentAddress
( &addr
);
256 DEBUG_FindNearestSymbol
(&addr
, TRUE
,
260 DEBUG_GetLineNumberAddr
(nh
,
262 DEBUG_AddBreakpoint
( &addr
);
266 fprintf
(stderr
,"Unable to add breakpoint\n");
270 | tBREAK tEOL
{ DBG_ADDR addr
;
271 DEBUG_GetCurrentAddress
( &addr
);
272 DEBUG_AddBreakpoint
( &addr
);
276 tINFO tBREAK tEOL
{ DEBUG_InfoBreakpoints
(); }
277 | tINFO tCLASS expr_value tEOL
{ CLASS_DumpClass
( (struct tagCLASS
*)$3 );
278 DEBUG_FreeExprMem
(); }
279 | tINFO tSHARE tEOL
{ DEBUG_InfoShare
(); }
280 | tINFO tMODULE expr_value tEOL
{ NE_DumpModule
( $3 );
281 DEBUG_FreeExprMem
(); }
282 | tINFO tQUEUE expr_value tEOL
{ QUEUE_DumpQueue
( $3 );
283 DEBUG_FreeExprMem
(); }
284 | tINFO tREGS tEOL
{ DEBUG_InfoRegisters
(); }
285 | tINFO tSEGMENTS expr_value tEOL
{ LDT_Print
( SELECTOR_TO_ENTRY
($3), 1 );
286 DEBUG_FreeExprMem
(); }
287 | tINFO tSEGMENTS tEOL
{ LDT_Print
( 0, -1 ); }
288 | tINFO tSTACK tEOL
{ DEBUG_InfoStack
(); }
289 | tINFO tMAPS tEOL
{ VIRTUAL_Dump
(); }
290 | tINFO tWND expr_value tEOL
{ WIN_DumpWindow
( $3 );
291 DEBUG_FreeExprMem
(); }
292 | tINFO tLOCAL tEOL
{ DEBUG_InfoLocals
(); }
293 | tINFO tDISPLAY tEOL
{ DEBUG_InfoDisplay
(); }
296 tWALK tCLASS tEOL
{ CLASS_WalkClasses
(); }
297 | tWALK tMODULE tEOL
{ NE_WalkModules
(); }
298 | tWALK tQUEUE tEOL
{ QUEUE_WalkQueues
(); }
299 | tWALK tWND tEOL
{ WIN_WalkWindows
( 0, 0 ); }
300 | tWALK tWND tNUM tEOL
{ WIN_WalkWindows
( $3, 0 ); }
301 | tWALK tPROCESS tEOL
{ PROCESS_WalkProcess
(); }
302 | tWALK tMODREF expr_value tEOL
{ MODULE_WalkModref
( $3 ); }
306 '(' type_expr
')' { $$
= $2; }
309 type_expr
'*' { $$
= DEBUG_FindOrMakePointerType
($1); }
310 | tINT
{ $$
= DEBUG_TypeCast
(DT_BASIC
, "int"); }
311 | tCHAR
{ $$
= DEBUG_TypeCast
(DT_BASIC
, "char"); }
312 | tLONG tINT
{ $$
= DEBUG_TypeCast
(DT_BASIC
, "long int"); }
313 | tUNSIGNED tINT
{ $$
= DEBUG_TypeCast
(DT_BASIC
, "unsigned int"); }
314 | tLONG tUNSIGNED tINT
{ $$
= DEBUG_TypeCast
(DT_BASIC
, "long unsigned int"); }
315 | tLONG tLONG tINT
{ $$
= DEBUG_TypeCast
(DT_BASIC
, "long long int"); }
316 | tLONG tLONG tUNSIGNED tINT
{ $$
= DEBUG_TypeCast
(DT_BASIC
, "long long unsigned int"); }
317 | tSHORT tINT
{ $$
= DEBUG_TypeCast
(DT_BASIC
, "short int"); }
318 | tSHORT tUNSIGNED tINT
{ $$
= DEBUG_TypeCast
(DT_BASIC
, "short unsigned int"); }
319 | tSIGNED tCHAR
{ $$
= DEBUG_TypeCast
(DT_BASIC
, "signed char"); }
320 | tUNSIGNED tCHAR
{ $$
= DEBUG_TypeCast
(DT_BASIC
, "unsigned char"); }
321 | tFLOAT
{ $$
= DEBUG_TypeCast
(DT_BASIC
, "float"); }
322 | tDOUBLE
{ $$
= DEBUG_TypeCast
(DT_BASIC
, "double"); }
323 | tLONG tDOUBLE
{ $$
= DEBUG_TypeCast
(DT_BASIC
, "long double"); }
324 | tSTRUCT tIDENTIFIER
{ $$
= DEBUG_TypeCast
(DT_STRUCT
, $2); }
325 | tUNION tIDENTIFIER
{ $$
= DEBUG_TypeCast
(DT_STRUCT
, $2); }
326 | tENUM tIDENTIFIER
{ $$
= DEBUG_TypeCast
(DT_ENUM
, $2); }
329 expr
{ $$
= DEBUG_EvalExpr
($1); }
332 expr
{ DBG_ADDR addr
= DEBUG_EvalExpr
($1);
333 $$
= addr.off ?
*(unsigned int *) addr.off
: 0; }
335 * The expr rule builds an expression tree. When we are done, we call
336 * EvalExpr to evaluate the value of the expression. The advantage of
337 * the two-step approach is that it is possible to save expressions for
338 * use in 'display' commands, and in conditional watchpoints.
341 tNUM
{ $$
= DEBUG_ConstExpr
($1); }
342 | tSTRING
{ $$
= DEBUG_StringExpr
($1); }
343 | tREG
{ $$
= DEBUG_RegisterExpr
($1); }
344 | tIDENTIFIER
{ $$
= DEBUG_SymbolExpr
($1); }
345 | expr OP_DRF tIDENTIFIER
{ $$
= DEBUG_StructPExpr
($1, $3); }
346 | expr
'.' tIDENTIFIER
{ $$
= DEBUG_StructExpr
($1, $3); }
347 | tIDENTIFIER
'(' ')' { $$
= DEBUG_CallExpr
($1, 0); }
348 | tIDENTIFIER
'(' expr
')' { $$
= DEBUG_CallExpr
($1, 1, $3); }
349 | tIDENTIFIER
'(' expr
',' expr
')' { $$
= DEBUG_CallExpr
($1, 2, $3,
351 | tIDENTIFIER
'(' expr
',' expr
',' expr
')' { $$
= DEBUG_CallExpr
($1, 3, $3, $5, $7); }
352 | tIDENTIFIER
'(' expr
',' expr
',' expr
',' expr
')' { $$
= DEBUG_CallExpr
($1, 3, $3, $5, $7, $9); }
353 | tIDENTIFIER
'(' expr
',' expr
',' expr
',' expr
',' expr
')' { $$
= DEBUG_CallExpr
($1, 3, $3, $5, $7, $9, $11); }
354 | expr
'[' expr
']' { $$
= DEBUG_BinopExpr
(EXP_OP_ARR
, $1, $3); }
355 | expr
':' expr
{ $$
= DEBUG_BinopExpr
(EXP_OP_SEG
, $1, $3); }
356 | expr OP_LOR expr
{ $$
= DEBUG_BinopExpr
(EXP_OP_LOR
, $1, $3); }
357 | expr OP_LAND expr
{ $$
= DEBUG_BinopExpr
(EXP_OP_LAND
, $1, $3); }
358 | expr
'|' expr
{ $$
= DEBUG_BinopExpr
(EXP_OP_OR
, $1, $3); }
359 | expr
'&' expr
{ $$
= DEBUG_BinopExpr
(EXP_OP_AND
, $1, $3); }
360 | expr
'^' expr
{ $$
= DEBUG_BinopExpr
(EXP_OP_XOR
, $1, $3); }
361 | expr OP_EQ expr
{ $$
= DEBUG_BinopExpr
(EXP_OP_EQ
, $1, $3); }
362 | expr
'>' expr
{ $$
= DEBUG_BinopExpr
(EXP_OP_GT
, $1, $3); }
363 | expr
'<' expr
{ $$
= DEBUG_BinopExpr
(EXP_OP_LT
, $1, $3); }
364 | expr OP_GE expr
{ $$
= DEBUG_BinopExpr
(EXP_OP_GE
, $1, $3); }
365 | expr OP_LE expr
{ $$
= DEBUG_BinopExpr
(EXP_OP_LE
, $1, $3); }
366 | expr OP_NE expr
{ $$
= DEBUG_BinopExpr
(EXP_OP_NE
, $1, $3); }
367 | expr OP_SHL expr
{ $$
= DEBUG_BinopExpr
(EXP_OP_SHL
, $1, $3); }
368 | expr OP_SHR expr
{ $$
= DEBUG_BinopExpr
(EXP_OP_SHR
, $1, $3); }
369 | expr
'+' expr
{ $$
= DEBUG_BinopExpr
(EXP_OP_ADD
, $1, $3); }
370 | expr
'-' expr
{ $$
= DEBUG_BinopExpr
(EXP_OP_SUB
, $1, $3); }
371 | expr
'*' expr
{ $$
= DEBUG_BinopExpr
(EXP_OP_MUL
, $1, $3); }
372 | expr
'/' expr
{ $$
= DEBUG_BinopExpr
(EXP_OP_DIV
, $1, $3); }
373 | expr
'%' expr
{ $$
= DEBUG_BinopExpr
(EXP_OP_REM
, $1, $3); }
374 |
'-' expr %prec OP_SIGN
{ $$
= DEBUG_UnopExpr
(EXP_OP_NEG
, $2); }
375 |
'+' expr %prec OP_SIGN
{ $$
= $2; }
376 |
'!' expr
{ $$
= DEBUG_UnopExpr
(EXP_OP_NOT
, $2); }
377 |
'~' expr
{ $$
= DEBUG_UnopExpr
(EXP_OP_LNOT
, $2); }
378 |
'(' expr
')' { $$
= $2; }
379 |
'*' expr %prec OP_DEREF
{ $$
= DEBUG_UnopExpr
(EXP_OP_DEREF
, $2); }
380 |
'&' expr %prec OP_DEREF
{ $$
= DEBUG_UnopExpr
(EXP_OP_ADDR
, $2); }
381 | type_cast expr %prec OP_DEREF
{ $$
= DEBUG_TypeCastExpr
($1, $2); }
384 * The lvalue rule builds an expression tree. This is a limited form
385 * of expression that is suitable to be used as an lvalue.
388 lval
{ $$
= DEBUG_EvalExpr
($1); }
392 |
'*' expr
{ $$
= DEBUG_UnopExpr
(EXP_OP_FORCE_DEREF
, $2); }
395 tNUM
{ $$
= DEBUG_ConstExpr
($1); }
396 | tREG
{ $$
= DEBUG_RegisterExpr
($1); }
397 | tIDENTIFIER
{ $$
= DEBUG_SymbolExpr
($1); }
398 | lvalue OP_DRF tIDENTIFIER
{ $$
= DEBUG_StructPExpr
($1, $3); }
399 | lvalue
'.' tIDENTIFIER
{ $$
= DEBUG_StructExpr
($1, $3); }
400 | lvalue
'[' expr
']' { $$
= DEBUG_BinopExpr
(EXP_OP_ARR
, $1, $3); }
406 #ifdef DONT_USE_READLINE
407 fprintf
(stderr
,"Wine-dbg>");
411 void mode_command
(int newmode
)
413 if
((newmode
== 16) ||
(newmode
== 32)) dbg_mode
= newmode
;
414 else fprintf
(stderr
,"Invalid mode (use 16 or 32)\n");
417 /***********************************************************************
420 static void DEBUG_Freeze
( BOOL freeze
)
422 static BOOL frozen
= FALSE
;
424 if
( freeze
&& !frozen
)
426 /* Don't freeze thread currently holding the X crst! */
427 EnterCriticalSection
( &X11DRV_CritSection
);
428 CLIENT_DebuggerRequest
( DEBUGGER_FREEZE_ALL
);
429 LeaveCriticalSection
( &X11DRV_CritSection
);
433 if
( !freeze
&& frozen
)
435 CLIENT_DebuggerRequest
( DEBUGGER_UNFREEZE_ALL
);
440 /***********************************************************************
443 * Kill current process.
445 void DEBUG_Exit
( DWORD exit_code
)
447 DEBUG_Freeze
( FALSE
);
449 TASK_KillTask
( 0 ); /* FIXME: should not be necessary */
450 TerminateProcess
( GetCurrentProcess
(), exit_code
);
453 /***********************************************************************
456 * Debugger main loop.
458 static void DEBUG_Main
( BOOL is_debug
)
460 static int loaded_symbols
= 0;
461 static BOOL in_debugger
= FALSE
;
462 char SymbolTableFile
[256];
471 fprintf
( stderr
, " inside debugger, exiting.\n" );
477 DEBUG_SetBreakpoints
( FALSE
);
482 if
(IS_SELECTOR_SYSTEM
(CS_reg
(&DEBUG_context
)))
483 fprintf
( stderr
, " in 32-bit code (0x%08lx).\n", EIP_reg
(&DEBUG_context
));
485 fprintf
( stderr
, " in 16-bit code (%04x:%04lx).\n",
486 (WORD
)CS_reg
(&DEBUG_context
), EIP_reg
(&DEBUG_context
) );
488 fprintf
( stderr
, " (%p).\n", GET_IP
(&DEBUG_context
) );
496 DEBUG_Freeze
( TRUE
);
500 * Initialize the debugger heap.
502 dbg_heap
= HeapCreate
(HEAP_NO_SERIALIZE
, 0x1000, 0x8000000); /* 128MB */
506 * Initialize the type handling stuff.
509 DEBUG_InitCVDataTypes
();
512 * In some cases we can read the stabs information directly
513 * from the executable. If this is the case, we don't need
514 * to bother with trying to read a symbol file, as the stabs
515 * also have line number and local variable information.
516 * As long as gcc is used for the compiler, stabs will
517 * be the default. On SVr4, DWARF could be used, but we
518 * don't grok that yet, and in this case we fall back to using
521 if
( DEBUG_ReadExecutableDbgInfo
() == FALSE
)
523 char *symfilename
= "wine.sym";
525 if
(-1 == stat
(symfilename
, &statbuf
) )
526 symfilename
= LIBDIR
"wine.sym";
528 PROFILE_GetWineIniString
( "wine", "SymbolTableFile", symfilename
,
529 SymbolTableFile
, sizeof
(SymbolTableFile
));
530 DEBUG_ReadSymbolTable
( SymbolTableFile
);
532 DEBUG_LoadEntryPoints
(NULL
);
533 DEBUG_ProcessDeferredDebug
();
537 if
(DEBUG_LoadEntryPoints
("Loading new modules symbols:\n"))
538 DEBUG_ProcessDeferredDebug
();
542 fprintf
(stderr
, "Entering debugger PC=%x, mode=%d, count=%d\n",
543 EIP_reg
(&DEBUG_context
),
544 dbg_exec_mode
, dbg_exec_count
);
549 if
(!is_debug ||
!DEBUG_ShouldContinue
( dbg_exec_mode
, &dbg_exec_count
))
552 DEBUG_GetCurrentAddress
( &addr
);
554 DEBUG_Freeze
( TRUE
);
556 /* Put the display in a correct state */
557 USER_Driver
->pBeginDebugging
();
560 newmode
= ISV86
(&DEBUG_context
) ?
16 : IS_SELECTOR_32BIT
(addr.seg
) ?
32 : 16;
564 if
(newmode
!= dbg_mode
)
565 fprintf
(stderr
,"In %d bit mode.\n", dbg_mode
= newmode
);
569 if
(!is_debug
) /* This is a real crash, dump some info */
571 DEBUG_InfoRegisters
();
576 LDT_Print
( SELECTOR_TO_ENTRY
(DS_reg
(&DEBUG_context
)), 1 );
577 if
(ES_reg
(&DEBUG_context
) != DS_reg
(&DEBUG_context
))
578 LDT_Print
( SELECTOR_TO_ENTRY
(ES_reg
(&DEBUG_context
)), 1 );
580 LDT_Print
( SELECTOR_TO_ENTRY
(FS_reg
(&DEBUG_context
)), 1 );
587 * Do a quiet backtrace so that we have an idea of what the situation
588 * is WRT the source files.
590 DEBUG_SilentBackTrace
();
594 (dbg_exec_mode
== EXEC_STEPI_OVER
) ||
595 (dbg_exec_mode
== EXEC_STEPI_INSTR
))
597 /* Show where we crashed */
599 DEBUG_PrintAddress
( &addr
, dbg_mode
, TRUE
);
600 fprintf
(stderr
,": ");
601 if
(DBG_CHECK_READ_PTR
( &addr
, 1 ))
603 DEBUG_Disasm
( &addr
, TRUE
);
604 fprintf
(stderr
,"\n");
615 DEBUG_GetCurrentAddress
( &addr
);
616 ret_ok
= DEBUG_ValidateRegisters
();
617 if
(ret_ok
) ret_ok
= DBG_CHECK_READ_PTR
( &addr
, 1 );
621 dbg_exec_mode
= DEBUG_RestartExecution
( dbg_exec_mode
, dbg_exec_count
);
623 * This will have gotten absorbed into the breakpoint info
624 * if it was used. Otherwise it would have been ignored.
625 * In any case, we don't mess with it any more.
627 if
((dbg_exec_mode
== EXEC_CONT
) ||
(dbg_exec_mode
== EXEC_PASS
))
631 DEBUG_Freeze
( FALSE
);
636 USER_Driver
->pEndDebugging
();
640 DWORD wine_debugger
( EXCEPTION_RECORD
*rec
, CONTEXT
*context
, BOOL first_chance
)
642 BOOL is_debug
= FALSE
;
644 if
(first_chance
&& !Options.debug
) return
0; /* pass to app first */
646 switch
(rec
->ExceptionCode
)
648 case EXCEPTION_BREAKPOINT
:
649 case EXCEPTION_SINGLE_STEP
:
653 if
(!Options.debug
) DEBUG_Exit
(0);
659 /* print some infos */
660 fprintf
( stderr
, "%s: ",
661 first_chance ?
"First chance exception" : "Unhandled exception" );
662 switch
(rec
->ExceptionCode
)
664 case EXCEPTION_INT_DIVIDE_BY_ZERO
:
665 fprintf
( stderr
, "divide by zero" );
667 case EXCEPTION_INT_OVERFLOW
:
668 fprintf
( stderr
, "overflow" );
670 case EXCEPTION_ARRAY_BOUNDS_EXCEEDED
:
671 fprintf
( stderr
, "array bounds " );
673 case EXCEPTION_ILLEGAL_INSTRUCTION
:
674 fprintf
( stderr
, "illegal instruction" );
676 case EXCEPTION_STACK_OVERFLOW
:
677 fprintf
( stderr
, "stack overflow" );
679 case EXCEPTION_PRIV_INSTRUCTION
:
680 fprintf
( stderr
, "priviledged instruction" );
682 case EXCEPTION_ACCESS_VIOLATION
:
683 if
(rec
->NumberParameters
== 2)
684 fprintf
( stderr
, "page fault on %s access to 0x%08lx",
685 rec
->ExceptionInformation
[0] ?
"write" : "read",
686 rec
->ExceptionInformation
[1] );
688 fprintf
( stderr
, "page fault" );
690 case EXCEPTION_DATATYPE_MISALIGNMENT
:
691 fprintf
( stderr
, "Alignment" );
694 fprintf
( stderr
, "^C" );
696 case EXCEPTION_CRITICAL_SECTION_WAIT
:
697 fprintf
( stderr
, "critical section %08lx wait failed", rec
->ExceptionInformation
[0] );
700 fprintf
( stderr
, "%08lx", rec
->ExceptionCode
);
705 DEBUG_context
= *context
;
706 DEBUG_Main
( is_debug
);
707 *context
= DEBUG_context
;
708 return
(dbg_exec_mode
== EXEC_PASS
) ?
0 : DBG_CONTINUE
;
711 int yyerror(char * s
)
713 fprintf
(stderr
,"%s\n", s
);