Stubs for VMM GetDemandPageInfo function and VWin32 "Get VMCPD Version".
[wine/wine-kai.git] / debugger / dbg.y
blob96c6c7bb8e85b60ff2812980f5abaf722cb89847
1 %{
2 /*
3 * Parser for command lines in the Wine debugger
5 * Copyright 1993 Eric Youngdale
6 * Copyright 1995 Morten Welinder
7 */
9 #include "config.h"
11 #include <stdio.h>
12 #include <stdlib.h>
13 #include <string.h>
14 #include <signal.h>
15 #include <sys/stat.h>
16 #include <unistd.h>
17 #ifdef HAVE_ALLOCA_H
18 #include <alloca.h>
19 #endif
21 #include "winbase.h"
22 #include "module.h"
23 #include "task.h"
24 #include "options.h"
25 #include "queue.h"
26 #include "wine/winbase16.h"
27 #include "winnt.h"
28 #include "x11drv.h"
29 #include "win.h"
30 #include "debugger.h"
31 #include "neexe.h"
32 #include "process.h"
33 #include "server.h"
34 #include "main.h"
35 #include "expr.h"
36 #include "user.h"
38 extern FILE * yyin;
39 unsigned int dbg_mode = 0;
40 HANDLE dbg_heap = 0;
41 int curr_frame = 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);
49 int yylex(void);
50 int yyerror(char *);
52 #ifdef DBG_need_heap
53 #define malloc(x) DBG_alloc(x)
54 #define realloc(x,y) DBG_realloc(x,y)
55 #define free(x) DBG_free(x)
56 #endif
58 extern void VIRTUAL_Dump(void); /* memory/virtual.c */
62 %union
64 DBG_ADDR address;
65 enum debug_regs reg;
66 char * string;
67 int integer;
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
80 %token <string> tPATH
81 %token <string> tIDENTIFIER tSTRING tDEBUGSTR
82 %token <integer> tNUM tFORMAT
83 %token <reg> tREG
84 %token tSYMBOLFILE
86 %token tCHAR tSHORT tINT tLONG tFLOAT tDOUBLE tUNSIGNED tSIGNED
87 %token tSTRUCT tUNION tENUM
89 /* %left ',' */
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 */ /* ... ? ... : ... */
94 %left OP_LOR
95 %left OP_LAND
96 %left '|'
97 %left '^'
98 %left '&'
99 %left OP_EQ OP_NE
100 %left '<' '>' OP_LE OP_GE
101 %left OP_SHL OP_SHR
102 %left '+' '-'
103 %left '*' '/' '%'
104 %left OP_SIGN '!' '~' OP_DEREF /* OP_INC OP_DEC OP_ADDR */
105 %left '.' '[' OP_DRF
106 %nonassoc ':'
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(); }
121 line: command
122 | tEOL
123 | error tEOL { yyerrok; }
125 command:
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); }
178 | list_command
179 | disassemble_command
180 | set_command
181 | x_command
182 | print_command
183 | break_command
184 | info_command
185 | walk_command
187 set_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(); }
193 pathname:
194 tIDENTIFIER { $$ = $1; }
195 | tPATH { $$ = $1; }
197 disassemble_command:
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 ); }
202 list_command:
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 ); }
209 list_arg:
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,
215 0, & $$ );
216 DEBUG_FreeExprMem(); }
218 x_command:
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(); }
224 print_command:
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(); }
230 break_command:
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 );
238 else
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 );
248 else
250 fprintf(stderr,"Unable to add breakpoint\n");
253 | tBREAK tNUM tEOL { struct name_hash *nh;
254 DBG_ADDR addr;
255 DEBUG_GetCurrentAddress( &addr );
256 DEBUG_FindNearestSymbol(&addr, TRUE,
257 &nh, 0, NULL);
258 if( nh != NULL )
260 DEBUG_GetLineNumberAddr(nh,
261 $2, &addr, TRUE);
262 DEBUG_AddBreakpoint( &addr );
264 else
266 fprintf(stderr,"Unable to add breakpoint\n");
270 | tBREAK tEOL { DBG_ADDR addr;
271 DEBUG_GetCurrentAddress( &addr );
272 DEBUG_AddBreakpoint( &addr );
275 info_command:
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(); }
295 walk_command:
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 ); }
305 type_cast:
306 '(' type_expr ')' { $$ = $2; }
308 type_expr:
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); }
328 expr_addr:
329 expr { $$ = DEBUG_EvalExpr($1); }
331 expr_value:
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.
340 expr:
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,
350 $5); }
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.
387 lval_addr:
388 lval { $$ = DEBUG_EvalExpr($1); }
390 lval:
391 lvalue { $$ = $1; }
392 | '*' expr { $$ = DEBUG_UnopExpr(EXP_OP_FORCE_DEREF, $2); }
394 lvalue:
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); }
404 void
405 issue_prompt(){
406 #ifdef DONT_USE_READLINE
407 fprintf(stderr,"Wine-dbg>");
408 #endif
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 /***********************************************************************
418 * DEBUG_Freeze
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 );
430 frozen = TRUE;
433 if ( !freeze && frozen )
435 CLIENT_DebuggerRequest( DEBUGGER_UNFREEZE_ALL );
436 frozen = FALSE;
440 /***********************************************************************
441 * DEBUG_Exit
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 /***********************************************************************
454 * DEBUG_Main
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];
463 int newmode;
464 BOOL ret_ok;
465 #ifdef YYDEBUG
466 yydebug = 0;
467 #endif
469 if (in_debugger)
471 fprintf( stderr, " inside debugger, exiting.\n" );
472 DEBUG_Exit(1);
474 in_debugger = TRUE;
475 yyin = stdin;
477 DEBUG_SetBreakpoints( FALSE );
479 if (!is_debug)
481 #ifdef __i386__
482 if (IS_SELECTOR_SYSTEM(CS_reg(&DEBUG_context)))
483 fprintf( stderr, " in 32-bit code (0x%08lx).\n", EIP_reg(&DEBUG_context));
484 else
485 fprintf( stderr, " in 16-bit code (%04x:%04lx).\n",
486 (WORD)CS_reg(&DEBUG_context), EIP_reg(&DEBUG_context) );
487 #else
488 fprintf( stderr, " (%p).\n", GET_IP(&DEBUG_context) );
489 #endif
492 if (!loaded_symbols)
494 loaded_symbols++;
496 DEBUG_Freeze( TRUE );
498 #ifdef DBG_need_heap
500 * Initialize the debugger heap.
502 dbg_heap = HeapCreate(HEAP_NO_SERIALIZE, 0x1000, 0x8000000); /* 128MB */
503 #endif
506 * Initialize the type handling stuff.
508 DEBUG_InitTypes();
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
519 * the wine.sym file.
521 if( DEBUG_ReadExecutableDbgInfo() == FALSE )
523 char *symfilename = "wine.sym";
524 struct stat statbuf;
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();
535 else
537 if (DEBUG_LoadEntryPoints("Loading new modules symbols:\n"))
538 DEBUG_ProcessDeferredDebug();
541 #if 0
542 fprintf(stderr, "Entering debugger PC=%x, mode=%d, count=%d\n",
543 EIP_reg(&DEBUG_context),
544 dbg_exec_mode, dbg_exec_count);
546 sleep(1);
547 #endif
549 if (!is_debug || !DEBUG_ShouldContinue( dbg_exec_mode, &dbg_exec_count ))
551 DBG_ADDR addr;
552 DEBUG_GetCurrentAddress( &addr );
554 DEBUG_Freeze( TRUE );
556 /* Put the display in a correct state */
557 USER_Driver->pBeginDebugging();
559 #ifdef __i386__
560 newmode = ISV86(&DEBUG_context) ? 16 : IS_SELECTOR_32BIT(addr.seg) ? 32 : 16;
561 #else
562 newmode = 32;
563 #endif
564 if (newmode != dbg_mode)
565 fprintf(stderr,"In %d bit mode.\n", dbg_mode = newmode);
567 DEBUG_DoDisplay();
569 if (!is_debug) /* This is a real crash, dump some info */
571 DEBUG_InfoRegisters();
572 DEBUG_InfoStack();
573 #ifdef __i386__
574 if (dbg_mode == 16)
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 );
581 #endif
582 DEBUG_BackTrace();
584 else
587 * Do a quiet backtrace so that we have an idea of what the situation
588 * is WRT the source files.
590 DEBUG_SilentBackTrace();
593 if (!is_debug ||
594 (dbg_exec_mode == EXEC_STEPI_OVER) ||
595 (dbg_exec_mode == EXEC_STEPI_INSTR))
597 /* Show where we crashed */
598 curr_frame = 0;
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");
608 ret_ok = 0;
611 issue_prompt();
612 yyparse();
613 flush_symbols();
615 DEBUG_GetCurrentAddress( &addr );
616 ret_ok = DEBUG_ValidateRegisters();
617 if (ret_ok) ret_ok = DBG_CHECK_READ_PTR( &addr, 1 );
618 } while (!ret_ok);
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))
629 dbg_exec_count = 0;
631 DEBUG_Freeze( FALSE );
634 in_debugger = 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:
650 is_debug = TRUE;
651 break;
652 case CONTROL_C_EXIT:
653 if (!Options.debug) DEBUG_Exit(0);
654 break;
657 if (!is_debug)
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" );
666 break;
667 case EXCEPTION_INT_OVERFLOW:
668 fprintf( stderr, "overflow" );
669 break;
670 case EXCEPTION_ARRAY_BOUNDS_EXCEEDED:
671 fprintf( stderr, "array bounds " );
672 break;
673 case EXCEPTION_ILLEGAL_INSTRUCTION:
674 fprintf( stderr, "illegal instruction" );
675 break;
676 case EXCEPTION_STACK_OVERFLOW:
677 fprintf( stderr, "stack overflow" );
678 break;
679 case EXCEPTION_PRIV_INSTRUCTION:
680 fprintf( stderr, "priviledged instruction" );
681 break;
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] );
687 else
688 fprintf( stderr, "page fault" );
689 break;
690 case EXCEPTION_DATATYPE_MISALIGNMENT:
691 fprintf( stderr, "Alignment" );
692 break;
693 case CONTROL_C_EXIT:
694 fprintf( stderr, "^C" );
695 break;
696 case EXCEPTION_CRITICAL_SECTION_WAIT:
697 fprintf( stderr, "critical section %08lx wait failed", rec->ExceptionInformation[0] );
698 break;
699 default:
700 fprintf( stderr, "%08lx", rec->ExceptionCode );
701 break;
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);
714 return 0;