3 * Parser for command lines in the Wine debugger
5 * Copyright 1993 Eric Youngdale
6 * Copyright 1995 Morten Welinder
23 unsigned int dbg_mode
= 0;
26 static enum exec_mode dbg_exec_mode
= EXEC_CONT
;
27 static int dbg_exec_count
= 0;
29 void issue_prompt
(void);
30 void mode_command
(int);
31 void flush_symbols
(void);
35 extern
void VIRTUAL_Dump
(void); /* memory/virtual.c */
45 struct list_id listing
;
46 struct expr
* expression
;
47 struct datatype
* type
;
50 %token tCONT tSTEP tLIST tNEXT tQUIT tHELP tBACKTRACE tINFO tWALK tUP tDOWN
51 %token tENABLE tDISABLE tBREAK tDELETE tSET tMODE tPRINT tEXAM tABORT
52 %token tCLASS tMAPS tMODULE tSTACK tSEGMENTS tREGS tWND tQUEUE tLOCAL
54 %token tFRAME tSHARE tCOND tDISPLAY tUNDISPLAY tDISASSEMBLE
55 %token tSTEPI tNEXTI tFINISH tSHOW tDIR
57 %token
<string> tIDENTIFIER tSTRING
58 %token
<integer
> tNUM tFORMAT
61 %token tCHAR tSHORT tINT tLONG tFLOAT tDOUBLE tUNSIGNED tSIGNED
62 %token tSTRUCT tUNION tENUM
65 /* %left '=' OP_OR_EQUAL OP_XOR_EQUAL OP_AND_EQUAL OP_SHL_EQUAL \
66 OP_SHR_EQUAL OP_PLUS_EQUAL OP_MINUS_EQUAL \
67 OP_TIMES_EQUAL OP_DIVIDE_EQUAL OP_MODULO_EQUAL */
68 /* %left OP_COND */ /* ... ? ... : ... */
75 %left
'<' '>' OP_LE OP_GE
79 %left OP_SIGN
'!' '~' OP_DEREF
/* OP_INC OP_DEC OP_ADDR */
83 %type
<expression
> expr lval lvalue
84 %type
<type
> type_cast type_expr
85 %type
<address
> expr_addr lval_addr
86 %type
<integer
> expr_value
87 %type
<string> pathname
89 %type
<listing
> list_arg
93 input: line
{ issue_prompt
(); }
94 | input line
{ issue_prompt
(); }
98 |
error tEOL
{ yyerrok; }
101 tQUIT tEOL
{ exit
(0); }
102 | tHELP tEOL
{ DEBUG_Help
(); }
103 | tHELP tINFO tEOL
{ DEBUG_HelpInfo
(); }
104 | tCONT tEOL
{ dbg_exec_count
= 1;
105 dbg_exec_mode
= EXEC_CONT
; return
0; }
106 | tCONT tNUM tEOL
{ dbg_exec_count
= $2;
107 dbg_exec_mode
= EXEC_CONT
; return
0; }
108 | tSTEP tEOL
{ dbg_exec_count
= 1;
109 dbg_exec_mode
= EXEC_STEP_INSTR
; return
0; }
110 | tNEXT tEOL
{ dbg_exec_count
= 1;
111 dbg_exec_mode
= EXEC_STEP_OVER
; return
0; }
112 | tSTEP tNUM tEOL
{ dbg_exec_count
= $2;
113 dbg_exec_mode
= EXEC_STEP_INSTR
; return
0; }
114 | tNEXT tNUM tEOL
{ dbg_exec_count
= $2;
115 dbg_exec_mode
= EXEC_STEP_OVER
; return
0; }
116 | tSTEPI tEOL
{ dbg_exec_count
= 1;
117 dbg_exec_mode
= EXEC_STEPI_INSTR
; return
0; }
118 | tNEXTI tEOL
{ dbg_exec_count
= 1;
119 dbg_exec_mode
= EXEC_STEPI_OVER
; return
0; }
120 | tSTEPI tNUM tEOL
{ dbg_exec_count
= $2;
121 dbg_exec_mode
= EXEC_STEPI_INSTR
; return
0; }
122 | tNEXTI tNUM tEOL
{ dbg_exec_count
= $2;
123 dbg_exec_mode
= EXEC_STEPI_OVER
; return
0; }
124 | tABORT tEOL
{ kill
(getpid
(), SIGABRT
); }
125 | tMODE tNUM tEOL
{ mode_command
($2); }
126 | tENABLE tNUM tEOL
{ DEBUG_EnableBreakpoint
( $2, TRUE
); }
127 | tDISABLE tNUM tEOL
{ DEBUG_EnableBreakpoint
( $2, FALSE
); }
128 | tDELETE tBREAK tNUM tEOL
{ DEBUG_DelBreakpoint
( $3 ); }
129 | tBACKTRACE tEOL
{ DEBUG_BackTrace
(); }
130 | tUP tEOL
{ DEBUG_SetFrame
( curr_frame
+ 1 ); }
131 | tUP tNUM tEOL
{ DEBUG_SetFrame
( curr_frame
+ $2 ); }
132 | tDOWN tEOL
{ DEBUG_SetFrame
( curr_frame
- 1 ); }
133 | tDOWN tNUM tEOL
{ DEBUG_SetFrame
( curr_frame
- $2 ); }
134 | tFRAME tNUM tEOL
{ DEBUG_SetFrame
( $2 ); }
135 | tFINISH tEOL
{ dbg_exec_count
= 0;
136 dbg_exec_mode
= EXEC_FINISH
; return
0; }
137 | tSHOW tDIR tEOL
{ DEBUG_ShowDir
(); }
138 | tDIR pathname tEOL
{ DEBUG_AddPath
( $2 ); }
139 | tDIR tEOL
{ DEBUG_NukePath
(); }
140 | tDISPLAY tEOL
{ DEBUG_InfoDisplay
(); }
141 | tDISPLAY expr tEOL
{ DEBUG_AddDisplay
($2, 1, 0); }
142 | tDISPLAY tFORMAT expr tEOL
{ DEBUG_AddDisplay
($3, $2 >> 8, $2 & 0xff); }
143 | tDELETE tDISPLAY tNUM tEOL
{ DEBUG_DelDisplay
( $3 ); }
144 | tDELETE tDISPLAY tEOL
{ DEBUG_DelDisplay
( -1 ); }
145 | tUNDISPLAY tNUM tEOL
{ DEBUG_DelDisplay
( $2 ); }
146 | tUNDISPLAY tEOL
{ DEBUG_DelDisplay
( -1 ); }
147 | tCOND tNUM tEOL
{ DEBUG_AddBPCondition
($2, NULL
); }
148 | tCOND tNUM expr tEOL
{ DEBUG_AddBPCondition
($2, $3); }
150 | disassemble_command
159 tSET tREG
'=' expr_value tEOL
{ DEBUG_SetRegister
( $2, $4 );
160 DEBUG_FreeExprMem
(); }
161 | tSET lval_addr
'=' expr_value tEOL
{ DEBUG_WriteMemory
( &$2, $4 );
162 DEBUG_FreeExprMem
(); }
165 tIDENTIFIER
{ $$
= $1; }
169 tDISASSEMBLE tEOL
{ DEBUG_Disassemble
( NULL
, NULL
, 10 ); }
170 | tDISASSEMBLE expr_addr tEOL
{ DEBUG_Disassemble
( & $2, NULL
, 10 ); }
171 | tDISASSEMBLE expr_addr
',' expr_addr tEOL
{ DEBUG_Disassemble
( & $2, & $4, 0 ); }
174 tLIST tEOL
{ DEBUG_List
( NULL
, NULL
, 10 ); }
175 | tLIST
'-' tEOL
{ DEBUG_List
( NULL
, NULL
, -10 ); }
176 | tLIST list_arg tEOL
{ DEBUG_List
( & $2, NULL
, 10 ); }
177 | tLIST
',' list_arg tEOL
{ DEBUG_List
( NULL
, & $3, -10 ); }
178 | tLIST list_arg
',' list_arg tEOL
{ DEBUG_List
( & $2, & $4, 0 ); }
181 tNUM
{ $$.sourcefile
= NULL
; $$.line
= $1; }
182 | pathname
':' tNUM
{ $$.sourcefile
= $1; $$.line
= $3; }
183 | tIDENTIFIER
{ DEBUG_GetFuncInfo
( & $$
, NULL
, $1); }
184 | pathname
':' tIDENTIFIER
{ DEBUG_GetFuncInfo
( & $$
, $1, $3); }
185 |
'*' expr_addr
{ DEBUG_FindNearestSymbol
( & $2, FALSE
, NULL
,
187 DEBUG_FreeExprMem
(); }
190 tEXAM expr_addr tEOL
{ DEBUG_ExamineMemory
( &$2, 1, 'x');
191 DEBUG_FreeExprMem
(); }
192 | tEXAM tFORMAT expr_addr tEOL
{ DEBUG_ExamineMemory
( &$3, $2>>8, $2&0xff );
193 DEBUG_FreeExprMem
(); }
196 tPRINT expr_addr tEOL
{ DEBUG_Print
( &$2, 1, 0, 0 );
197 DEBUG_FreeExprMem
(); }
198 | tPRINT tFORMAT expr_addr tEOL
{ DEBUG_Print
( &$3, $2 >> 8, $2 & 0xff, 0 );
199 DEBUG_FreeExprMem
(); }
202 tBREAK
'*' expr_addr tEOL
{ DEBUG_AddBreakpoint
( &$3 );
203 DEBUG_FreeExprMem
(); }
204 | tBREAK tIDENTIFIER tEOL
{ DBG_ADDR addr
;
205 if
( DEBUG_GetSymbolValue
($2, -1, &addr
, TRUE
) )
207 DEBUG_AddBreakpoint
( &addr
);
211 fprintf
(stderr
,"Unable to add breakpoint\n");
214 | tBREAK tIDENTIFIER
':' tNUM tEOL
{ DBG_ADDR addr
;
215 if
( DEBUG_GetSymbolValue
($2, $4, &addr
, TRUE
) )
217 DEBUG_AddBreakpoint
( &addr
);
221 fprintf
(stderr
,"Unable to add breakpoint\n");
224 | tBREAK tNUM tEOL
{ struct name_hash
*nh
;
225 DBG_ADDR addr
= { NULL
,
226 CS_reg
(&DEBUG_context
),
227 EIP_reg
(&DEBUG_context
) };
229 DBG_FIX_ADDR_SEG
( &addr
, CS_reg
(&DEBUG_context
) );
230 DEBUG_FindNearestSymbol
(&addr
, TRUE
,
234 DEBUG_GetLineNumberAddr
(nh
,
236 DEBUG_AddBreakpoint
( &addr
);
240 fprintf
(stderr
,"Unable to add breakpoint\n");
244 | tBREAK tEOL
{ DBG_ADDR addr
= { NULL
,
245 CS_reg
(&DEBUG_context
),
246 EIP_reg
(&DEBUG_context
) };
247 DEBUG_AddBreakpoint
( &addr
);
251 tINFO tBREAK tEOL
{ DEBUG_InfoBreakpoints
(); }
252 | tINFO tCLASS expr_value tEOL
{ CLASS_DumpClass
( (CLASS
*)$3 );
253 DEBUG_FreeExprMem
(); }
254 | tINFO tSHARE tEOL
{ DEBUG_InfoShare
(); }
255 | tINFO tMODULE expr_value tEOL
{ MODULE_DumpModule
( $3 );
256 DEBUG_FreeExprMem
(); }
257 | tINFO tQUEUE expr_value tEOL
{ QUEUE_DumpQueue
( $3 );
258 DEBUG_FreeExprMem
(); }
259 | tINFO tREGS tEOL
{ DEBUG_InfoRegisters
(); }
260 | tINFO tSEGMENTS expr_value tEOL
{ LDT_Print
( SELECTOR_TO_ENTRY
($3), 1 );
261 DEBUG_FreeExprMem
(); }
262 | tINFO tSEGMENTS tEOL
{ LDT_Print
( 0, -1 ); }
263 | tINFO tSTACK tEOL
{ DEBUG_InfoStack
(); }
264 | tINFO tMAPS tEOL
{ VIRTUAL_Dump
(); }
265 | tINFO tWND expr_value tEOL
{ WIN_DumpWindow
( $3 );
266 DEBUG_FreeExprMem
(); }
267 | tINFO tLOCAL tEOL
{ DEBUG_InfoLocals
(); }
268 | tINFO tDISPLAY tEOL
{ DEBUG_InfoDisplay
(); }
271 tWALK tCLASS tEOL
{ CLASS_WalkClasses
(); }
272 | tWALK tMODULE tEOL
{ MODULE_WalkModules
(); }
273 | tWALK tQUEUE tEOL
{ QUEUE_WalkQueues
(); }
274 | tWALK tWND tEOL
{ WIN_WalkWindows
( 0, 0 ); }
275 | tWALK tWND tNUM tEOL
{ WIN_WalkWindows
( $3, 0 ); }
279 '(' type_expr
')' { $$
= $2; }
282 type_expr
'*' { $$
= DEBUG_FindOrMakePointerType
($1); }
283 | tINT
{ $$
= DEBUG_TypeCast
(BASIC
, "int"); }
284 | tCHAR
{ $$
= DEBUG_TypeCast
(BASIC
, "char"); }
285 | tLONG tINT
{ $$
= DEBUG_TypeCast
(BASIC
, "long int"); }
286 | tUNSIGNED tINT
{ $$
= DEBUG_TypeCast
(BASIC
, "unsigned int"); }
287 | tLONG tUNSIGNED tINT
{ $$
= DEBUG_TypeCast
(BASIC
, "long unsigned int"); }
288 | tLONG tLONG tINT
{ $$
= DEBUG_TypeCast
(BASIC
, "long long int"); }
289 | tLONG tLONG tUNSIGNED tINT
{ $$
= DEBUG_TypeCast
(BASIC
, "long long unsigned int"); }
290 | tSHORT tINT
{ $$
= DEBUG_TypeCast
(BASIC
, "short int"); }
291 | tSHORT tUNSIGNED tINT
{ $$
= DEBUG_TypeCast
(BASIC
, "short unsigned int"); }
292 | tSIGNED tCHAR
{ $$
= DEBUG_TypeCast
(BASIC
, "signed char"); }
293 | tUNSIGNED tCHAR
{ $$
= DEBUG_TypeCast
(BASIC
, "unsigned char"); }
294 | tFLOAT
{ $$
= DEBUG_TypeCast
(BASIC
, "float"); }
295 | tDOUBLE
{ $$
= DEBUG_TypeCast
(BASIC
, "double"); }
296 | tLONG tDOUBLE
{ $$
= DEBUG_TypeCast
(BASIC
, "long double"); }
297 | tSTRUCT tIDENTIFIER
{ $$
= DEBUG_TypeCast
(STRUCT
, $2); }
298 | tUNION tIDENTIFIER
{ $$
= DEBUG_TypeCast
(STRUCT
, $2); }
299 | tENUM tIDENTIFIER
{ $$
= DEBUG_TypeCast
(ENUM
, $2); }
302 expr
{ $$
= DEBUG_EvalExpr
($1); }
305 expr
{ DBG_ADDR addr
= DEBUG_EvalExpr
($1);
306 $$
= addr.off ?
*(unsigned int *) addr.off
: 0; }
308 * The expr rule builds an expression tree. When we are done, we call
309 * EvalExpr to evaluate the value of the expression. The advantage of
310 * the two-step approach is that it is possible to save expressions for
311 * use in 'display' commands, and in conditional watchpoints.
314 tNUM
{ $$
= DEBUG_ConstExpr
($1); }
315 | tSTRING
{ $$
= DEBUG_StringExpr
($1); }
316 | tREG
{ $$
= DEBUG_RegisterExpr
($1); }
317 | tIDENTIFIER
{ $$
= DEBUG_SymbolExpr
($1); }
318 | expr OP_DRF tIDENTIFIER
{ $$
= DEBUG_StructPExpr
($1, $3); }
319 | expr
'.' tIDENTIFIER
{ $$
= DEBUG_StructExpr
($1, $3); }
320 | tIDENTIFIER
'(' ')' { $$
= DEBUG_CallExpr
($1, 0); }
321 | tIDENTIFIER
'(' expr
')' { $$
= DEBUG_CallExpr
($1, 1, $3); }
322 | tIDENTIFIER
'(' expr
',' expr
')' { $$
= DEBUG_CallExpr
($1, 2, $3,
324 | tIDENTIFIER
'(' expr
',' expr
',' expr
')' { $$
= DEBUG_CallExpr
($1, 3, $3, $5, $7); }
325 | tIDENTIFIER
'(' expr
',' expr
',' expr
',' expr
')' { $$
= DEBUG_CallExpr
($1, 3, $3, $5, $7, $9); }
326 | tIDENTIFIER
'(' expr
',' expr
',' expr
',' expr
',' expr
')' { $$
= DEBUG_CallExpr
($1, 3, $3, $5, $7, $9, $11); }
327 | expr
'[' expr
']' { $$
= DEBUG_BinopExpr
(EXP_OP_ARR
, $1, $3); }
328 | expr
':' expr
{ $$
= DEBUG_BinopExpr
(EXP_OP_SEG
, $1, $3); }
329 | expr OP_LOR expr
{ $$
= DEBUG_BinopExpr
(EXP_OP_LOR
, $1, $3); }
330 | expr OP_LAND expr
{ $$
= DEBUG_BinopExpr
(EXP_OP_LAND
, $1, $3); }
331 | expr
'|' expr
{ $$
= DEBUG_BinopExpr
(EXP_OP_OR
, $1, $3); }
332 | expr
'&' expr
{ $$
= DEBUG_BinopExpr
(EXP_OP_AND
, $1, $3); }
333 | expr
'^' expr
{ $$
= DEBUG_BinopExpr
(EXP_OP_XOR
, $1, $3); }
334 | expr OP_EQ expr
{ $$
= DEBUG_BinopExpr
(EXP_OP_EQ
, $1, $3); }
335 | expr
'>' expr
{ $$
= DEBUG_BinopExpr
(EXP_OP_GT
, $1, $3); }
336 | expr
'<' expr
{ $$
= DEBUG_BinopExpr
(EXP_OP_LT
, $1, $3); }
337 | expr OP_GE expr
{ $$
= DEBUG_BinopExpr
(EXP_OP_GE
, $1, $3); }
338 | expr OP_LE expr
{ $$
= DEBUG_BinopExpr
(EXP_OP_LE
, $1, $3); }
339 | expr OP_NE expr
{ $$
= DEBUG_BinopExpr
(EXP_OP_NE
, $1, $3); }
340 | expr OP_SHL expr
{ $$
= DEBUG_BinopExpr
(EXP_OP_SHL
, $1, $3); }
341 | expr OP_SHR expr
{ $$
= DEBUG_BinopExpr
(EXP_OP_SHR
, $1, $3); }
342 | expr
'+' expr
{ $$
= DEBUG_BinopExpr
(EXP_OP_ADD
, $1, $3); }
343 | expr
'-' expr
{ $$
= DEBUG_BinopExpr
(EXP_OP_SUB
, $1, $3); }
344 | expr
'*' expr
{ $$
= DEBUG_BinopExpr
(EXP_OP_MUL
, $1, $3); }
345 | expr
'/' expr
{ $$
= DEBUG_BinopExpr
(EXP_OP_DIV
, $1, $3); }
346 | expr
'%' expr
{ $$
= DEBUG_BinopExpr
(EXP_OP_REM
, $1, $3); }
347 |
'-' expr %prec OP_SIGN
{ $$
= DEBUG_UnopExpr
(EXP_OP_NEG
, $2); }
348 |
'+' expr %prec OP_SIGN
{ $$
= $2; }
349 |
'!' expr
{ $$
= DEBUG_UnopExpr
(EXP_OP_NOT
, $2); }
350 |
'~' expr
{ $$
= DEBUG_UnopExpr
(EXP_OP_LNOT
, $2); }
351 |
'(' expr
')' { $$
= $2; }
352 |
'*' expr %prec OP_DEREF
{ $$
= DEBUG_UnopExpr
(EXP_OP_DEREF
, $2); }
353 |
'&' expr %prec OP_DEREF
{ $$
= DEBUG_UnopExpr
(EXP_OP_ADDR
, $2); }
354 | type_cast expr %prec OP_DEREF
{ $$
= DEBUG_TypeCastExpr
($1, $2); }
357 * The lvalue rule builds an expression tree. This is a limited form
358 * of expression that is suitable to be used as an lvalue.
361 lval
{ $$
= DEBUG_EvalExpr
($1); }
365 |
'*' expr
{ $$
= DEBUG_UnopExpr
(EXP_OP_FORCE_DEREF
, $2); }
368 tNUM
{ $$
= DEBUG_ConstExpr
($1); }
369 | tREG
{ $$
= DEBUG_RegisterExpr
($1); }
370 | tIDENTIFIER
{ $$
= DEBUG_SymbolExpr
($1); }
371 | lvalue OP_DRF tIDENTIFIER
{ $$
= DEBUG_StructPExpr
($1, $3); }
372 | lvalue
'.' tIDENTIFIER
{ $$
= DEBUG_StructExpr
($1, $3); }
373 | lvalue
'[' expr
']' { $$
= DEBUG_BinopExpr
(EXP_OP_ARR
, $1, $3); }
379 #ifdef DONT_USE_READLINE
380 fprintf
(stderr
,"Wine-dbg>");
384 void mode_command
(int newmode
)
386 if
((newmode
== 16) ||
(newmode
== 32)) dbg_mode
= newmode
;
387 else fprintf
(stderr
,"Invalid mode (use 16 or 32)\n");
391 /***********************************************************************
394 * Debugger main loop.
396 static void DEBUG_Main
( int signal
)
398 static int loaded_symbols
= 0;
399 static BOOL32 in_debugger
= FALSE
;
400 char SymbolTableFile
[256];
409 fprintf
( stderr
, "Segmentation fault inside debugger, exiting.\n" );
415 DEBUG_SetBreakpoints
( FALSE
);
422 * Initialize the type handling stuff.
427 * In some cases we can read the stabs information directly
428 * from the executable. If this is the case, we don't need
429 * to bother with trying to read a symbol file, as the stabs
430 * also have line number and local variable information.
431 * As long as gcc is used for the compiler, stabs will
432 * be the default. On SVr4, DWARF could be used, but we
433 * don't grok that yet, and in this case we fall back to using
436 if
( DEBUG_ReadExecutableDbgInfo
() == FALSE
)
438 PROFILE_GetWineIniString
( "wine", "SymbolTableFile", "wine.sym",
439 SymbolTableFile
, sizeof
(SymbolTableFile
));
440 DEBUG_ReadSymbolTable
( SymbolTableFile
);
444 * Read COFF, MSC, etc debug information that we noted when we
445 * started up the executable.
447 DEBUG_ProcessDeferredDebug
();
449 DEBUG_LoadEntryPoints
();
453 fprintf
(stderr
, "Entering debugger PC=%x, mode=%d, count=%d\n",
454 EIP_reg
(&DEBUG_context
),
455 dbg_exec_mode
, dbg_exec_count
);
460 if
((signal
!= SIGTRAP
) ||
!DEBUG_ShouldContinue
( dbg_exec_mode
,
465 addr.seg
= CS_reg
(&DEBUG_context
);
466 addr.off
= EIP_reg
(&DEBUG_context
);
468 DBG_FIX_ADDR_SEG
( &addr
, 0 );
470 /* Put the display in a correct state */
472 XUngrabPointer
( display
, CurrentTime
);
473 XUngrabServer
( display
);
476 if
(!addr.seg
) newmode
= 32;
477 else newmode
= (GET_SEL_FLAGS
(addr.seg
) & LDT_FLAGS_32BIT
) ?
32 : 16;
479 if
(newmode
!= dbg_mode
)
480 fprintf
(stderr
,"In %d bit mode.\n", dbg_mode
= newmode
);
484 if
(signal
!= SIGTRAP
) /* This is a real crash, dump some info */
486 DEBUG_InfoRegisters
();
490 LDT_Print
( SELECTOR_TO_ENTRY
(DS_reg
(&DEBUG_context
)), 1 );
491 if
(ES_reg
(&DEBUG_context
) != DS_reg
(&DEBUG_context
))
492 LDT_Print
( SELECTOR_TO_ENTRY
(ES_reg
(&DEBUG_context
)), 1 );
499 * Do a quiet backtrace so that we have an idea of what the situation
500 * is WRT the source files.
502 DEBUG_SilentBackTrace
();
505 if
( signal
!= SIGTRAP
)
507 /* Show where we crashed */
509 DEBUG_PrintAddress
( &addr
, dbg_mode
, TRUE
);
510 fprintf
(stderr
,": ");
511 if
(DBG_CHECK_READ_PTR
( &addr
, 1 ))
513 DEBUG_Disasm
( &addr
, TRUE
);
514 fprintf
(stderr
,"\n");
524 addr.seg
= CS_reg
(&DEBUG_context
);
525 addr.off
= EIP_reg
(&DEBUG_context
);
526 DBG_FIX_ADDR_SEG
( &addr
, 0 );
527 ret_ok
= DEBUG_ValidateRegisters
();
528 if
(ret_ok
) ret_ok
= DBG_CHECK_READ_PTR
( &addr
, 1 );
532 dbg_exec_mode
= DEBUG_RestartExecution
( dbg_exec_mode
, dbg_exec_count
);
534 * This will have gotten absorbed into the breakpoint info
535 * if it was used. Otherwise it would have been ignored.
536 * In any case, we don't mess with it any more.
538 if
( dbg_exec_mode
== EXEC_CONT
)
547 /***********************************************************************
548 * DebugBreak16 (KERNEL.203)
550 void DebugBreak16
( CONTEXT
*regs
)
552 const char *module
= MODULE_GetModuleName
( GetExePtr
(GetCurrentTask
()) );
553 fprintf
( stderr
, "%s called DebugBreak\n", module ? module
: "???" );
554 DEBUG_context
= *regs
;
555 DEBUG_Main
( SIGTRAP
);
559 void wine_debug
( int signal
, SIGCONTEXT
*regs
)
561 DEBUG_SetSigContext
( regs
);
563 DWORD
*stack
= (DWORD
*)ESP_reg
(&DEBUG_context
);
566 *(--stack
) = EH_NONCONTINUABLE
;
567 *(--stack
) = EXCEPTION_ACCESS_VIOLATION
;
568 *(--stack
) = EIP_reg
(&DEBUG_context
);
569 ESP_reg
(&DEBUG_context
) = (DWORD
)stack
;
570 EIP_reg
(&DEBUG_context
) = GetProcAddress32
( GetModuleHandle
("KERNEL32"),
573 DEBUG_Main
( signal
);
574 DEBUG_GetSigContext
( regs
);
577 int yyerror(char * s
)
579 fprintf
(stderr
,"%s\n", s
);