blob: 57c8012a6b3c2015aaf82bb9153179e4e4e00190 [file] [log] [blame]
Alexandre Julliardf0b23541993-09-29 12:21:49 +00001%{
Alexandre Julliard808cb041995-08-17 17:11:36 +00002/*
3 * Parser for command lines in the Wine debugger
Alexandre Julliardf0b23541993-09-29 12:21:49 +00004 *
Alexandre Julliard808cb041995-08-17 17:11:36 +00005 * Copyright 1993 Eric Youngdale
Alexandre Julliard902da691995-11-05 14:39:02 +00006 * Copyright 1995 Morten Welinder
Eric Pouechd33bcb62000-03-15 19:57:20 +00007 * Copyright 2000 Eric Pouech
Alexandre Julliardf0b23541993-09-29 12:21:49 +00008 */
9
Patrik Stridvall1bb94031999-05-08 15:47:44 +000010#include "config.h"
11
Alexandre Julliardf0b23541993-09-29 12:21:49 +000012#include <stdio.h>
David Luyeree517e81999-02-28 12:27:56 +000013#include <stdlib.h>
14#include <string.h>
Alexandre Julliardd18872d1994-05-11 12:18:19 +000015#include <signal.h>
Alexandre Julliardded30381995-07-06 17:18:27 +000016#include <unistd.h>
Patrik Stridvallb87fe2e1999-04-01 08:16:08 +000017
Patrik Stridvall3b233622000-03-24 21:19:02 +000018#include "wine/exception.h"
Alexandre Julliardded30381995-07-06 17:18:27 +000019#include "debugger.h"
Alexandre Julliardc6c09441997-01-12 18:32:19 +000020#include "expr.h"
21
Alexandre Julliardf0b23541993-09-29 12:21:49 +000022extern FILE * yyin;
Alexandre Julliardf0b23541993-09-29 12:21:49 +000023
Eric Pouechd33bcb62000-03-15 19:57:20 +000024static void issue_prompt(void);
25static void mode_command(int);
Alexandre Julliard808cb041995-08-17 17:11:36 +000026int yylex(void);
27int yyerror(char *);
28
Alexandre Julliardf0b23541993-09-29 12:21:49 +000029%}
30
Alexandre Julliard808cb041995-08-17 17:11:36 +000031%union
32{
Eric Pouechd33bcb62000-03-15 19:57:20 +000033 DBG_VALUE value;
Alexandre Julliard808cb041995-08-17 17:11:36 +000034 char * string;
35 int integer;
Alexandre Julliardc6c09441997-01-12 18:32:19 +000036 struct list_id listing;
37 struct expr * expression;
Eric Pouech911436b2000-06-18 19:30:24 +000038 struct datatype* type;
Alexandre Julliard808cb041995-08-17 17:11:36 +000039}
Alexandre Julliardf0b23541993-09-29 12:21:49 +000040
Alexandre Julliard410ae4f1999-06-18 18:23:11 +000041%token tCONT tPASS tSTEP tLIST tNEXT tQUIT tHELP tBACKTRACE tINFO tWALK tUP tDOWN
Alexandre Julliard954a4132000-09-24 03:15:50 +000042%token tENABLE tDISABLE tBREAK tWATCH tDELETE tSET tMODE tPRINT tEXAM tABORT tVM86
Alexandre Julliard889f7421997-04-15 17:19:52 +000043%token tCLASS tMAPS tMODULE tSTACK tSEGMENTS tREGS tWND tQUEUE tLOCAL
Eric Pouech911436b2000-06-18 19:30:24 +000044%token tPROCESS tTHREAD tMODREF tEOL
Alexandre Julliard21979011997-03-05 08:22:35 +000045%token tFRAME tSHARE tCOND tDISPLAY tUNDISPLAY tDISASSEMBLE
Eric Pouechd33bcb62000-03-15 19:57:20 +000046%token tSTEPI tNEXTI tFINISH tSHOW tDIR tWHATIS
Alexandre Julliardc6c09441997-01-12 18:32:19 +000047%token <string> tPATH
Eric Pouech04c16b82000-04-30 12:21:15 +000048%token <string> tIDENTIFIER tSTRING tDEBUGSTR tINTVAR
Alexandre Julliardb817f4f1996-03-14 18:08:34 +000049%token <integer> tNUM tFORMAT
Eric Pouech911436b2000-06-18 19:30:24 +000050%token tSYMBOLFILE tRUN tATTACH tNOPROCESS
Alexandre Julliard808cb041995-08-17 17:11:36 +000051
Alexandre Julliard01d63461997-01-20 19:43:45 +000052%token tCHAR tSHORT tINT tLONG tFLOAT tDOUBLE tUNSIGNED tSIGNED
53%token tSTRUCT tUNION tENUM
54
Alexandre Julliard902da691995-11-05 14:39:02 +000055/* %left ',' */
56/* %left '=' OP_OR_EQUAL OP_XOR_EQUAL OP_AND_EQUAL OP_SHL_EQUAL \
57 OP_SHR_EQUAL OP_PLUS_EQUAL OP_MINUS_EQUAL \
58 OP_TIMES_EQUAL OP_DIVIDE_EQUAL OP_MODULO_EQUAL */
59/* %left OP_COND */ /* ... ? ... : ... */
60%left OP_LOR
61%left OP_LAND
62%left '|'
63%left '^'
64%left '&'
65%left OP_EQ OP_NE
66%left '<' '>' OP_LE OP_GE
Alexandre Julliard01d63461997-01-20 19:43:45 +000067%left OP_SHL OP_SHR
Alexandre Julliard902da691995-11-05 14:39:02 +000068%left '+' '-'
69%left '*' '/' '%'
70%left OP_SIGN '!' '~' OP_DEREF /* OP_INC OP_DEC OP_ADDR */
Alexandre Julliard01d63461997-01-20 19:43:45 +000071%left '.' '[' OP_DRF
Alexandre Julliard902da691995-11-05 14:39:02 +000072%nonassoc ':'
73
Alexandre Julliard01d63461997-01-20 19:43:45 +000074%type <expression> expr lval lvalue
75%type <type> type_cast type_expr
Eric Pouechd33bcb62000-03-15 19:57:20 +000076%type <value> expr_addr lval_addr
Alexandre Julliardc6c09441997-01-12 18:32:19 +000077%type <integer> expr_value
Eric Pouech38f2be42001-08-15 17:40:31 +000078%type <string> pathname identifier
Alexandre Julliardc6c09441997-01-12 18:32:19 +000079
80%type <listing> list_arg
Alexandre Julliardf0b23541993-09-29 12:21:49 +000081
82%%
83
Eric Pouech911436b2000-06-18 19:30:24 +000084input: line { issue_prompt(); }
85 | input line { issue_prompt(); }
Alexandre Julliardf0b23541993-09-29 12:21:49 +000086
Alexandre Julliardb817f4f1996-03-14 18:08:34 +000087line: command
88 | tEOL
Eric Pouech911436b2000-06-18 19:30:24 +000089 | error tEOL { yyerrok; }
Alexandre Julliard902da691995-11-05 14:39:02 +000090
Alexandre Julliardb817f4f1996-03-14 18:08:34 +000091command:
Eric Pouech911436b2000-06-18 19:30:24 +000092 tQUIT tEOL { return FALSE; }
93 | tHELP tEOL { DEBUG_Help(); }
94 | tHELP tINFO tEOL { DEBUG_HelpInfo(); }
95 | tCONT tEOL { DEBUG_CurrThread->dbg_exec_count = 1;
96 DEBUG_CurrThread->dbg_exec_mode = EXEC_CONT; return TRUE; }
97 | tPASS tEOL { DEBUG_CurrThread->dbg_exec_count = 1;
98 DEBUG_CurrThread->dbg_exec_mode = EXEC_PASS; return TRUE; }
99 | tCONT tNUM tEOL { DEBUG_CurrThread->dbg_exec_count = $2;
100 DEBUG_CurrThread->dbg_exec_mode = EXEC_CONT; return TRUE; }
101 | tSTEP tEOL { DEBUG_CurrThread->dbg_exec_count = 1;
102 DEBUG_CurrThread->dbg_exec_mode = EXEC_STEP_INSTR; return TRUE; }
103 | tNEXT tEOL { DEBUG_CurrThread->dbg_exec_count = 1;
104 DEBUG_CurrThread->dbg_exec_mode = EXEC_STEP_OVER; return TRUE; }
105 | tSTEP tNUM tEOL { DEBUG_CurrThread->dbg_exec_count = $2;
106 DEBUG_CurrThread->dbg_exec_mode = EXEC_STEP_INSTR; return TRUE; }
107 | tNEXT tNUM tEOL { DEBUG_CurrThread->dbg_exec_count = $2;
108 DEBUG_CurrThread->dbg_exec_mode = EXEC_STEP_OVER; return TRUE; }
109 | tSTEPI tEOL { DEBUG_CurrThread->dbg_exec_count = 1;
110 DEBUG_CurrThread->dbg_exec_mode = EXEC_STEPI_INSTR; return TRUE; }
111 | tNEXTI tEOL { DEBUG_CurrThread->dbg_exec_count = 1;
112 DEBUG_CurrThread->dbg_exec_mode = EXEC_STEPI_OVER; return TRUE; }
113 | tSTEPI tNUM tEOL { DEBUG_CurrThread->dbg_exec_count = $2;
114 DEBUG_CurrThread->dbg_exec_mode = EXEC_STEPI_INSTR; return TRUE; }
115 | tNEXTI tNUM tEOL { DEBUG_CurrThread->dbg_exec_count = $2;
116 DEBUG_CurrThread->dbg_exec_mode = EXEC_STEPI_OVER; return TRUE; }
117 | tABORT tEOL { kill(getpid(), SIGABRT); }
118 | tMODE tNUM tEOL { mode_command($2); }
Alexandre Julliard954a4132000-09-24 03:15:50 +0000119 | tMODE tVM86 tEOL { DEBUG_CurrThread->dbg_mode = MODE_VM86; }
Eric Pouech911436b2000-06-18 19:30:24 +0000120 | tENABLE tNUM tEOL { DEBUG_EnableBreakpoint( $2, TRUE ); }
121 | tDISABLE tNUM tEOL { DEBUG_EnableBreakpoint( $2, FALSE ); }
122 | tDELETE tBREAK tNUM tEOL { DEBUG_DelBreakpoint( $3 ); }
Eric Pouech800773f2001-08-06 17:51:52 +0000123 | tBACKTRACE tEOL { DEBUG_BackTrace(DEBUG_CurrTid, TRUE); }
124 | tBACKTRACE tNUM tEOL { DEBUG_BackTrace($2, TRUE); }
Eric Pouech911436b2000-06-18 19:30:24 +0000125 | tUP tEOL { DEBUG_SetFrame( curr_frame + 1 ); }
126 | tUP tNUM tEOL { DEBUG_SetFrame( curr_frame + $2 ); }
127 | tDOWN tEOL { DEBUG_SetFrame( curr_frame - 1 ); }
128 | tDOWN tNUM tEOL { DEBUG_SetFrame( curr_frame - $2 ); }
129 | tFRAME tNUM tEOL { DEBUG_SetFrame( $2 ); }
130 | tFINISH tEOL { DEBUG_CurrThread->dbg_exec_count = 0;
131 DEBUG_CurrThread->dbg_exec_mode = EXEC_FINISH; return TRUE; }
132 | tSHOW tDIR tEOL { DEBUG_ShowDir(); }
133 | tDIR pathname tEOL { DEBUG_AddPath( $2 ); }
134 | tDIR tEOL { DEBUG_NukePath(); }
135 | tDISPLAY tEOL { DEBUG_InfoDisplay(); }
136 | tDISPLAY expr tEOL { DEBUG_AddDisplay($2, 1, 0); }
137 | tDISPLAY tFORMAT expr tEOL{ DEBUG_AddDisplay($3, $2 >> 8, $2 & 0xff); }
138 | tDELETE tDISPLAY tNUM tEOL{ DEBUG_DelDisplay( $3 ); }
139 | tDELETE tDISPLAY tEOL { DEBUG_DelDisplay( -1 ); }
140 | tUNDISPLAY tNUM tEOL { DEBUG_DelDisplay( $2 ); }
141 | tUNDISPLAY tEOL { DEBUG_DelDisplay( -1 ); }
142 | tCOND tNUM tEOL { DEBUG_AddBPCondition($2, NULL); }
143 | tCOND tNUM expr tEOL { DEBUG_AddBPCondition($2, $3); }
144 | tSYMBOLFILE pathname tEOL { DEBUG_ReadSymbolTable($2); }
145 | tWHATIS expr_addr tEOL { DEBUG_PrintType(&$2); DEBUG_FreeExprMem(); }
Alexandre Julliard1ce1bef2001-07-11 17:33:08 +0000146 | tATTACH tNUM tEOL { if (DEBUG_Attach($2, FALSE)) return TRUE; }
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000147 | list_command
Alexandre Julliard21979011997-03-05 08:22:35 +0000148 | disassemble_command
Alexandre Julliardb817f4f1996-03-14 18:08:34 +0000149 | set_command
150 | x_command
151 | print_command
152 | break_command
Eric Pouechd33bcb62000-03-15 19:57:20 +0000153 | watch_command
Alexandre Julliardb817f4f1996-03-14 18:08:34 +0000154 | info_command
155 | walk_command
Eric Pouech911436b2000-06-18 19:30:24 +0000156 | run_command
157 | noprocess_state
Alexandre Julliardf0b23541993-09-29 12:21:49 +0000158
Alexandre Julliardb817f4f1996-03-14 18:08:34 +0000159set_command:
Eric Pouech04c16b82000-04-30 12:21:15 +0000160 tSET lval_addr '=' expr_value tEOL { DEBUG_WriteMemory( &$2, $4 );
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000161 DEBUG_FreeExprMem(); }
162
163pathname:
Eric Poueche5efa0c2000-04-13 19:31:58 +0000164 tIDENTIFIER { $$ = $1; }
165 | tPATH { $$ = $1; }
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000166
Alexandre Julliard21979011997-03-05 08:22:35 +0000167disassemble_command:
168 tDISASSEMBLE tEOL { DEBUG_Disassemble( NULL, NULL, 10 ); }
169 | tDISASSEMBLE expr_addr tEOL { DEBUG_Disassemble( & $2, NULL, 10 ); }
170 | tDISASSEMBLE expr_addr ',' expr_addr tEOL { DEBUG_Disassemble( & $2, & $4, 0 ); }
171
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000172list_command:
173 tLIST tEOL { DEBUG_List( NULL, NULL, 10 ); }
174 | tLIST '-' tEOL { DEBUG_List( NULL, NULL, -10 ); }
175 | tLIST list_arg tEOL { DEBUG_List( & $2, NULL, 10 ); }
176 | tLIST ',' list_arg tEOL { DEBUG_List( NULL, & $3, -10 ); }
177 | tLIST list_arg ',' list_arg tEOL { DEBUG_List( & $2, & $4, 0 ); }
178
179list_arg:
180 tNUM { $$.sourcefile = NULL; $$.line = $1; }
181 | pathname ':' tNUM { $$.sourcefile = $1; $$.line = $3; }
182 | tIDENTIFIER { DEBUG_GetFuncInfo( & $$, NULL, $1); }
183 | pathname ':' tIDENTIFIER { DEBUG_GetFuncInfo( & $$, $1, $3); }
Eric Pouech911436b2000-06-18 19:30:24 +0000184 | '*' expr_addr { DEBUG_FindNearestSymbol( & $2.addr, FALSE, NULL, 0, & $$ );
185 DEBUG_FreeExprMem(); }
Alexandre Julliardf0b23541993-09-29 12:21:49 +0000186
187x_command:
Eric Pouech911436b2000-06-18 19:30:24 +0000188 tEXAM expr_addr tEOL { DEBUG_ExamineMemory( &$2, 1, 'x'); DEBUG_FreeExprMem(); }
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000189 | tEXAM tFORMAT expr_addr tEOL { DEBUG_ExamineMemory( &$3, $2>>8, $2&0xff );
Eric Pouech911436b2000-06-18 19:30:24 +0000190 DEBUG_FreeExprMem(); }
Alexandre Julliardf0b23541993-09-29 12:21:49 +0000191
Alexandre Julliardb817f4f1996-03-14 18:08:34 +0000192print_command:
Eric Pouech911436b2000-06-18 19:30:24 +0000193 tPRINT expr_addr tEOL { DEBUG_Print( &$2, 1, 0, 0 ); DEBUG_FreeExprMem(); }
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000194 | tPRINT tFORMAT expr_addr tEOL { DEBUG_Print( &$3, $2 >> 8, $2 & 0xff, 0 );
Eric Pouech911436b2000-06-18 19:30:24 +0000195 DEBUG_FreeExprMem(); }
Alexandre Julliardf0b23541993-09-29 12:21:49 +0000196
Alexandre Julliardb817f4f1996-03-14 18:08:34 +0000197break_command:
Eric Pouech911436b2000-06-18 19:30:24 +0000198 tBREAK '*' expr_addr tEOL{ DEBUG_AddBreakpoint( &$3, NULL ); DEBUG_FreeExprMem(); }
Eric Pouech38f2be42001-08-15 17:40:31 +0000199 | tBREAK identifier tEOL { DEBUG_AddBreakpointFromId($2, -1); }
200 | tBREAK identifier ':' tNUM tEOL { DEBUG_AddBreakpointFromId($2, $4); }
Eric Pouech911436b2000-06-18 19:30:24 +0000201 | tBREAK tNUM tEOL { DEBUG_AddBreakpointFromLineno($2); }
202 | tBREAK tEOL { DEBUG_AddBreakpointFromLineno(-1); }
Alexandre Julliardb817f4f1996-03-14 18:08:34 +0000203
Eric Pouechd33bcb62000-03-15 19:57:20 +0000204watch_command:
Eric Pouech911436b2000-06-18 19:30:24 +0000205 tWATCH '*' expr_addr tEOL { DEBUG_AddWatchpoint( &$3, 1 ); DEBUG_FreeExprMem(); }
Eric Pouech38f2be42001-08-15 17:40:31 +0000206 | tWATCH identifier tEOL { DEBUG_AddWatchpointFromId($2); }
Eric Pouechd33bcb62000-03-15 19:57:20 +0000207
Alexandre Julliardb817f4f1996-03-14 18:08:34 +0000208info_command:
209 tINFO tBREAK tEOL { DEBUG_InfoBreakpoints(); }
Eric Pouech911436b2000-06-18 19:30:24 +0000210 | tINFO tCLASS tSTRING tEOL { DEBUG_InfoClass( $3 ); }
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000211 | tINFO tSHARE tEOL { DEBUG_InfoShare(); }
Eric Pouechd33bcb62000-03-15 19:57:20 +0000212 | tINFO tMODULE expr_value tEOL { DEBUG_DumpModule( $3 ); DEBUG_FreeExprMem(); }
213 | tINFO tQUEUE expr_value tEOL { DEBUG_DumpQueue( $3 ); DEBUG_FreeExprMem(); }
Alexandre Julliardb817f4f1996-03-14 18:08:34 +0000214 | tINFO tREGS tEOL { DEBUG_InfoRegisters(); }
Eric Pouech527eea92000-03-08 16:44:54 +0000215 | tINFO tSEGMENTS expr_value tEOL { DEBUG_InfoSegments( $3, 1 ); DEBUG_FreeExprMem(); }
216 | tINFO tSEGMENTS tEOL { DEBUG_InfoSegments( 0, -1 ); }
Alexandre Julliardb817f4f1996-03-14 18:08:34 +0000217 | tINFO tSTACK tEOL { DEBUG_InfoStack(); }
Eric Pouech527eea92000-03-08 16:44:54 +0000218 | tINFO tMAPS tEOL { DEBUG_InfoVirtual(); }
Eric Pouech911436b2000-06-18 19:30:24 +0000219 | tINFO tWND expr_value tEOL{ DEBUG_InfoWindow( (HWND)$3 ); DEBUG_FreeExprMem(); }
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000220 | tINFO tLOCAL tEOL { DEBUG_InfoLocals(); }
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000221 | tINFO tDISPLAY tEOL { DEBUG_InfoDisplay(); }
Alexandre Julliardb817f4f1996-03-14 18:08:34 +0000222
223walk_command:
Eric Pouech527eea92000-03-08 16:44:54 +0000224 tWALK tCLASS tEOL { DEBUG_WalkClasses(); }
225 | tWALK tMODULE tEOL { DEBUG_WalkModules(); }
226 | tWALK tQUEUE tEOL { DEBUG_WalkQueues(); }
227 | tWALK tWND tEOL { DEBUG_WalkWindows( 0, 0 ); }
François Gougetd5042c42000-12-29 05:38:00 +0000228 | tWALK tWND tNUM tEOL { DEBUG_WalkWindows( (HWND)$3, 0 ); }
Eric Pouech527eea92000-03-08 16:44:54 +0000229 | tWALK tPROCESS tEOL { DEBUG_WalkProcess(); }
Alexandre Julliarda6795412000-04-16 19:46:35 +0000230 | tWALK tTHREAD tEOL { DEBUG_WalkThreads(); }
Eric Pouech911436b2000-06-18 19:30:24 +0000231 | tWALK tMODREF expr_value tEOL { DEBUG_WalkModref( $3 ); DEBUG_FreeExprMem(); }
Alexandre Julliardb817f4f1996-03-14 18:08:34 +0000232
Eric Pouech911436b2000-06-18 19:30:24 +0000233run_command:
234 tRUN tEOL { DEBUG_Run(NULL); }
235 | tRUN tSTRING tEOL { DEBUG_Run($2); }
236
237noprocess_state:
238 tNOPROCESS tEOL {} /* <CR> shall not barf anything */
239 | tNOPROCESS tSTRING tEOL { DEBUG_Printf(DBG_CHN_MESG, "No process loaded, cannot execute '%s'\n", $2); }
Alexandre Julliard01d63461997-01-20 19:43:45 +0000240
241type_cast:
242 '(' type_expr ')' { $$ = $2; }
243
244type_expr:
245 type_expr '*' { $$ = DEBUG_FindOrMakePointerType($1); }
François Gouget241c7301998-10-28 10:47:09 +0000246 | tINT { $$ = DEBUG_TypeCast(DT_BASIC, "int"); }
247 | tCHAR { $$ = DEBUG_TypeCast(DT_BASIC, "char"); }
248 | tLONG tINT { $$ = DEBUG_TypeCast(DT_BASIC, "long int"); }
249 | tUNSIGNED tINT { $$ = DEBUG_TypeCast(DT_BASIC, "unsigned int"); }
250 | tLONG tUNSIGNED tINT { $$ = DEBUG_TypeCast(DT_BASIC, "long unsigned int"); }
251 | tLONG tLONG tINT { $$ = DEBUG_TypeCast(DT_BASIC, "long long int"); }
Eric Pouech911436b2000-06-18 19:30:24 +0000252 | tLONG tLONG tUNSIGNED tINT{ $$ = DEBUG_TypeCast(DT_BASIC, "long long unsigned int"); }
François Gouget241c7301998-10-28 10:47:09 +0000253 | tSHORT tINT { $$ = DEBUG_TypeCast(DT_BASIC, "short int"); }
254 | tSHORT tUNSIGNED tINT { $$ = DEBUG_TypeCast(DT_BASIC, "short unsigned int"); }
255 | tSIGNED tCHAR { $$ = DEBUG_TypeCast(DT_BASIC, "signed char"); }
256 | tUNSIGNED tCHAR { $$ = DEBUG_TypeCast(DT_BASIC, "unsigned char"); }
257 | tFLOAT { $$ = DEBUG_TypeCast(DT_BASIC, "float"); }
258 | tDOUBLE { $$ = DEBUG_TypeCast(DT_BASIC, "double"); }
259 | tLONG tDOUBLE { $$ = DEBUG_TypeCast(DT_BASIC, "long double"); }
260 | tSTRUCT tIDENTIFIER { $$ = DEBUG_TypeCast(DT_STRUCT, $2); }
261 | tUNION tIDENTIFIER { $$ = DEBUG_TypeCast(DT_STRUCT, $2); }
262 | tENUM tIDENTIFIER { $$ = DEBUG_TypeCast(DT_ENUM, $2); }
Alexandre Julliard01d63461997-01-20 19:43:45 +0000263
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000264expr_addr:
Eric Pouech527eea92000-03-08 16:44:54 +0000265 expr { $$ = DEBUG_EvalExpr($1); }
Alexandre Julliardf0b23541993-09-29 12:21:49 +0000266
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000267expr_value:
Eric Pouech04c16b82000-04-30 12:21:15 +0000268 expr { DBG_VALUE value = DEBUG_EvalExpr($1);
269 /* expr_value is typed as an integer */
270 $$ = DEBUG_ReadMemory(&value); }
271
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000272/*
273 * The expr rule builds an expression tree. When we are done, we call
274 * EvalExpr to evaluate the value of the expression. The advantage of
275 * the two-step approach is that it is possible to save expressions for
276 * use in 'display' commands, and in conditional watchpoints.
277 */
Alexandre Julliardb817f4f1996-03-14 18:08:34 +0000278expr:
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000279 tNUM { $$ = DEBUG_ConstExpr($1); }
280 | tSTRING { $$ = DEBUG_StringExpr($1); }
Eric Pouech04c16b82000-04-30 12:21:15 +0000281 | tINTVAR { $$ = DEBUG_IntVarExpr($1); }
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000282 | tIDENTIFIER { $$ = DEBUG_SymbolExpr($1); }
283 | expr OP_DRF tIDENTIFIER { $$ = DEBUG_StructPExpr($1, $3); }
284 | expr '.' tIDENTIFIER { $$ = DEBUG_StructExpr($1, $3); }
285 | tIDENTIFIER '(' ')' { $$ = DEBUG_CallExpr($1, 0); }
286 | tIDENTIFIER '(' expr ')' { $$ = DEBUG_CallExpr($1, 1, $3); }
Eric Pouechd33bcb62000-03-15 19:57:20 +0000287 | tIDENTIFIER '(' expr ',' expr ')' { $$ = DEBUG_CallExpr($1, 2, $3, $5); }
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000288 | tIDENTIFIER '(' expr ',' expr ',' expr ')' { $$ = DEBUG_CallExpr($1, 3, $3, $5, $7); }
Eric Pouech04c16b82000-04-30 12:21:15 +0000289 | tIDENTIFIER '(' expr ',' expr ',' expr ',' expr ')' { $$ = DEBUG_CallExpr($1, 4, $3, $5, $7, $9); }
290 | tIDENTIFIER '(' expr ',' expr ',' expr ',' expr ',' expr ')' { $$ = DEBUG_CallExpr($1, 5, $3, $5, $7, $9, $11); }
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000291 | expr '[' expr ']' { $$ = DEBUG_BinopExpr(EXP_OP_ARR, $1, $3); }
292 | expr ':' expr { $$ = DEBUG_BinopExpr(EXP_OP_SEG, $1, $3); }
293 | expr OP_LOR expr { $$ = DEBUG_BinopExpr(EXP_OP_LOR, $1, $3); }
294 | expr OP_LAND expr { $$ = DEBUG_BinopExpr(EXP_OP_LAND, $1, $3); }
295 | expr '|' expr { $$ = DEBUG_BinopExpr(EXP_OP_OR, $1, $3); }
296 | expr '&' expr { $$ = DEBUG_BinopExpr(EXP_OP_AND, $1, $3); }
297 | expr '^' expr { $$ = DEBUG_BinopExpr(EXP_OP_XOR, $1, $3); }
298 | expr OP_EQ expr { $$ = DEBUG_BinopExpr(EXP_OP_EQ, $1, $3); }
299 | expr '>' expr { $$ = DEBUG_BinopExpr(EXP_OP_GT, $1, $3); }
300 | expr '<' expr { $$ = DEBUG_BinopExpr(EXP_OP_LT, $1, $3); }
301 | expr OP_GE expr { $$ = DEBUG_BinopExpr(EXP_OP_GE, $1, $3); }
302 | expr OP_LE expr { $$ = DEBUG_BinopExpr(EXP_OP_LE, $1, $3); }
303 | expr OP_NE expr { $$ = DEBUG_BinopExpr(EXP_OP_NE, $1, $3); }
304 | expr OP_SHL expr { $$ = DEBUG_BinopExpr(EXP_OP_SHL, $1, $3); }
305 | expr OP_SHR expr { $$ = DEBUG_BinopExpr(EXP_OP_SHR, $1, $3); }
306 | expr '+' expr { $$ = DEBUG_BinopExpr(EXP_OP_ADD, $1, $3); }
307 | expr '-' expr { $$ = DEBUG_BinopExpr(EXP_OP_SUB, $1, $3); }
308 | expr '*' expr { $$ = DEBUG_BinopExpr(EXP_OP_MUL, $1, $3); }
309 | expr '/' expr { $$ = DEBUG_BinopExpr(EXP_OP_DIV, $1, $3); }
310 | expr '%' expr { $$ = DEBUG_BinopExpr(EXP_OP_REM, $1, $3); }
311 | '-' expr %prec OP_SIGN { $$ = DEBUG_UnopExpr(EXP_OP_NEG, $2); }
Alexandre Julliardb817f4f1996-03-14 18:08:34 +0000312 | '+' expr %prec OP_SIGN { $$ = $2; }
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000313 | '!' expr { $$ = DEBUG_UnopExpr(EXP_OP_NOT, $2); }
314 | '~' expr { $$ = DEBUG_UnopExpr(EXP_OP_LNOT, $2); }
Alexandre Julliardb817f4f1996-03-14 18:08:34 +0000315 | '(' expr ')' { $$ = $2; }
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000316 | '*' expr %prec OP_DEREF { $$ = DEBUG_UnopExpr(EXP_OP_DEREF, $2); }
317 | '&' expr %prec OP_DEREF { $$ = DEBUG_UnopExpr(EXP_OP_ADDR, $2); }
Alexandre Julliard01d63461997-01-20 19:43:45 +0000318 | type_cast expr %prec OP_DEREF { $$ = DEBUG_TypeCastExpr($1, $2); }
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000319
320/*
321 * The lvalue rule builds an expression tree. This is a limited form
322 * of expression that is suitable to be used as an lvalue.
323 */
324lval_addr:
Alexandre Julliard349a9531997-02-02 19:01:52 +0000325 lval { $$ = DEBUG_EvalExpr($1); }
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000326
327lval:
328 lvalue { $$ = $1; }
329 | '*' expr { $$ = DEBUG_UnopExpr(EXP_OP_FORCE_DEREF, $2); }
330
331lvalue:
332 tNUM { $$ = DEBUG_ConstExpr($1); }
Eric Pouech04c16b82000-04-30 12:21:15 +0000333 | tINTVAR { $$ = DEBUG_IntVarExpr($1); }
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000334 | tIDENTIFIER { $$ = DEBUG_SymbolExpr($1); }
335 | lvalue OP_DRF tIDENTIFIER { $$ = DEBUG_StructPExpr($1, $3); }
336 | lvalue '.' tIDENTIFIER { $$ = DEBUG_StructExpr($1, $3); }
337 | lvalue '[' expr ']' { $$ = DEBUG_BinopExpr(EXP_OP_ARR, $1, $3); }
Alexandre Julliardf0b23541993-09-29 12:21:49 +0000338
Eric Pouech38f2be42001-08-15 17:40:31 +0000339identifier:
340 tIDENTIFIER { $$ = $1; }
341 | identifier '.' tIDENTIFIER { char* ptr = DBG_alloc(strlen($1) + 1 + strlen($3)+ 1);
342 sprintf(ptr, "%s.%s", $1, $3); $$ = DEBUG_MakeSymbol(ptr);
343 DBG_free(ptr); }
344
Alexandre Julliardf0b23541993-09-29 12:21:49 +0000345%%
346
Eric Pouechd33bcb62000-03-15 19:57:20 +0000347static void issue_prompt(void)
348{
Alexandre Julliard18f92e71996-07-17 20:02:21 +0000349#ifdef DONT_USE_READLINE
Eric Poueche5efa0c2000-04-13 19:31:58 +0000350 DEBUG_Printf(DBG_CHN_MESG, "Wine-dbg>");
Alexandre Julliardf0b23541993-09-29 12:21:49 +0000351#endif
352}
353
Eric Pouechd33bcb62000-03-15 19:57:20 +0000354static void mode_command(int newmode)
Alexandre Julliardd18872d1994-05-11 12:18:19 +0000355{
Alexandre Julliard954a4132000-09-24 03:15:50 +0000356 switch(newmode)
357 {
358 case 16: DEBUG_CurrThread->dbg_mode = MODE_16; break;
359 case 32: DEBUG_CurrThread->dbg_mode = MODE_32; break;
360 default: DEBUG_Printf(DBG_CHN_MESG,"Invalid mode (use 16, 32 or vm86)\n");
361 }
Eric Poueche5efa0c2000-04-13 19:31:58 +0000362}
363
364void DEBUG_Exit(DWORD ec)
365{
366 ExitProcess(ec);
Alexandre Julliardd18872d1994-05-11 12:18:19 +0000367}
368
Eric Pouechac11a682000-03-26 13:37:39 +0000369static WINE_EXCEPTION_FILTER(wine_dbg_cmd)
Ulrich Weigand3723c2c1999-10-23 16:49:49 +0000370{
Eric Poueche5efa0c2000-04-13 19:31:58 +0000371 DEBUG_Printf(DBG_CHN_MESG, "\nwine_dbg_cmd: ");
Eric Pouechd33bcb62000-03-15 19:57:20 +0000372 switch (GetExceptionCode()) {
373 case DEBUG_STATUS_INTERNAL_ERROR:
Eric Poueche5efa0c2000-04-13 19:31:58 +0000374 DEBUG_Printf(DBG_CHN_MESG, "WineDbg internal error\n");
Eric Pouechd33bcb62000-03-15 19:57:20 +0000375 break;
376 case DEBUG_STATUS_NO_SYMBOL:
Eric Poueche5efa0c2000-04-13 19:31:58 +0000377 DEBUG_Printf(DBG_CHN_MESG, "Undefined symbol\n");
Eric Pouechd33bcb62000-03-15 19:57:20 +0000378 break;
379 case DEBUG_STATUS_DIV_BY_ZERO:
Eric Poueche5efa0c2000-04-13 19:31:58 +0000380 DEBUG_Printf(DBG_CHN_MESG, "Division by zero\n");
Eric Pouechd33bcb62000-03-15 19:57:20 +0000381 break;
382 case DEBUG_STATUS_BAD_TYPE:
Eric Poueche5efa0c2000-04-13 19:31:58 +0000383 DEBUG_Printf(DBG_CHN_MESG, "No type or type mismatch\n");
Eric Pouechd33bcb62000-03-15 19:57:20 +0000384 break;
Eric Pouech38f2be42001-08-15 17:40:31 +0000385 case DEBUG_STATUS_NO_FIELD:
386 DEBUG_Printf(DBG_CHN_MESG, "No such field in structure or union\n");
387 break;
Eric Pouechd33bcb62000-03-15 19:57:20 +0000388 default:
Eric Poueche5efa0c2000-04-13 19:31:58 +0000389 DEBUG_Printf(DBG_CHN_MESG, "Exception %lx\n", GetExceptionCode());
Eric Pouechd33bcb62000-03-15 19:57:20 +0000390 break;
391 }
Ulrich Weigand3723c2c1999-10-23 16:49:49 +0000392
Eric Poueche5efa0c2000-04-13 19:31:58 +0000393 return EXCEPTION_EXECUTE_HANDLER;
Ulrich Weigand3723c2c1999-10-23 16:49:49 +0000394}
Alexandre Julliardf0b23541993-09-29 12:21:49 +0000395
Alexandre Julliard329f0681996-04-14 13:21:20 +0000396/***********************************************************************
Eric Pouech911436b2000-06-18 19:30:24 +0000397 * DEBUG_Parser
Alexandre Julliard329f0681996-04-14 13:21:20 +0000398 *
Eric Pouech911436b2000-06-18 19:30:24 +0000399 * Debugger editline parser
Alexandre Julliard329f0681996-04-14 13:21:20 +0000400 */
Eric Pouech911436b2000-06-18 19:30:24 +0000401BOOL DEBUG_Parser(void)
Alexandre Julliardf0b23541993-09-29 12:21:49 +0000402{
Eric Pouech911436b2000-06-18 19:30:24 +0000403 BOOL ret_ok;
404 BOOL ret = TRUE;
Alexandre Julliardf0b23541993-09-29 12:21:49 +0000405#ifdef YYDEBUG
Alexandre Julliardff8331e1995-09-18 11:19:54 +0000406 yydebug = 0;
Alexandre Julliardf0b23541993-09-29 12:21:49 +0000407#endif
Alexandre Julliardded30381995-07-06 17:18:27 +0000408 yyin = stdin;
Alexandre Julliardf0b23541993-09-29 12:21:49 +0000409
Eric Pouech911436b2000-06-18 19:30:24 +0000410 ret_ok = FALSE;
411 do {
412 __TRY {
413 issue_prompt();
Eric Pouech5b471ba2000-06-25 12:49:13 +0000414 ret_ok = TRUE;
Eric Pouech911436b2000-06-18 19:30:24 +0000415 if ((ret = yyparse())) {
416 DEBUG_FlushSymbols();
Eric Pouech911436b2000-06-18 19:30:24 +0000417 }
418 } __EXCEPT(wine_dbg_cmd) {
419 ret_ok = FALSE;
420 }
421 __ENDTRY;
422
423 } while (!ret_ok);
424 return ret;
Alexandre Julliardf0b23541993-09-29 12:21:49 +0000425}
426
Eric Pouech527eea92000-03-08 16:44:54 +0000427int yyerror(char* s)
Alexandre Julliard18506551995-01-24 16:21:01 +0000428{
Eric Pouech911436b2000-06-18 19:30:24 +0000429 DEBUG_Printf(DBG_CHN_MESG, "%s\n", s);
Eric Pouechd33bcb62000-03-15 19:57:20 +0000430 return 0;
Alexandre Julliardf0b23541993-09-29 12:21:49 +0000431}