winedbg: Add missing break (Coverity).
[wine] / programs / winedbg / dbg.y
1 %{
2 /*
3  * Parser for command lines in the Wine debugger
4  *
5  * Copyright 1993 Eric Youngdale
6  * Copyright 1995 Morten Welinder
7  * Copyright 2000 Eric Pouech
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2.1 of the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with this library; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22  */
23
24 #include "config.h"
25 #include "wine/port.h"
26
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <string.h>
30 #ifdef HAVE_UNISTD_H
31 # include <unistd.h>
32 #endif
33
34 #include "debugger.h"
35 #include "wine/exception.h"
36 #include "expr.h"
37
38 int dbg_lex(void);
39 static int dbg_error(const char*);
40 static void parser(const char*);
41
42 %}
43
44 %union
45 {
46     struct dbg_lvalue   lvalue;
47     char*               string;
48     INT_PTR             integer;
49     IMAGEHLP_LINE64     listing;
50     struct expr*        expression;
51     struct type_expr_t  type;
52 }
53
54 %token tCONT tPASS tSTEP tLIST tNEXT tQUIT tHELP tBACKTRACE tALL tINFO tUP tDOWN
55 %token tENABLE tDISABLE tBREAK tHBREAK tWATCH tRWATCH tDELETE tSET tPRINT tEXAM
56 %token tABORT tECHO
57 %token tCLASS tMAPS tSTACK tSEGMENTS tSYMBOL tREGS tALLREGS tWND tLOCAL tEXCEPTION
58 %token tPROCESS tTHREAD tEOL tEOF
59 %token tFRAME tSHARE tMODULE tCOND tDISPLAY tUNDISPLAY tDISASSEMBLE
60 %token tSTEPI tNEXTI tFINISH tSHOW tDIR tWHATIS tSOURCE
61 %token <string> tPATH tIDENTIFIER tSTRING tINTVAR
62 %token <integer> tNUM tFORMAT
63 %token tSYMBOLFILE tRUN tATTACH tDETACH tKILL tMAINTENANCE tTYPE tMINIDUMP
64 %token tNOPROCESS
65
66 %token tCHAR tSHORT tINT tLONG tFLOAT tDOUBLE tUNSIGNED tSIGNED
67 %token tSTRUCT tUNION tENUM
68
69 /* %left ',' */
70 /* %left '=' OP_OR_EQUAL OP_XOR_EQUAL OP_AND_EQUAL OP_SHL_EQUAL \
71          OP_SHR_EQUAL OP_PLUS_EQUAL OP_MINUS_EQUAL \
72          OP_TIMES_EQUAL OP_DIVIDE_EQUAL OP_MODULO_EQUAL */
73 /* %left OP_COND */ /* ... ? ... : ... */
74 %left OP_LOR
75 %left OP_LAND
76 %left '|'
77 %left '^'
78 %left '&'
79 %left OP_EQ OP_NE
80 %left '<' '>' OP_LE OP_GE
81 %left OP_SHL OP_SHR
82 %left '+' '-'
83 %left '*' '/' '%'
84 %left OP_SIGN '!' '~' OP_DEREF /* OP_INC OP_DEC OP_ADDR */
85 %left '.' '[' OP_DRF OP_SCOPE
86 %nonassoc ':'
87
88 %type <expression> expr lvalue
89 %type <lvalue> expr_lvalue lvalue_addr
90 %type <integer> expr_rvalue
91 %type <string> pathname identifier cpp_identifier
92 %type <listing> list_arg
93 %type <type> type_expr
94
95 %%
96
97 input:
98       line
99     | input line
100     ;
101
102 line:
103       command tEOL              { expr_free_all(); }
104     | tEOL
105     | tEOF                      { return 1; }
106     | error tEOL                { yyerrok; expr_free_all(); }
107     ;
108
109 command:
110       tQUIT                     { return 1; }
111     | tHELP                     { print_help(); }
112     | tHELP tINFO               { info_help(); }
113     | tPASS                     { dbg_wait_next_exception(DBG_EXCEPTION_NOT_HANDLED, 0, 0); }
114     | tCONT                     { dbg_wait_next_exception(DBG_CONTINUE, 1,  dbg_exec_cont); }
115     | tCONT tNUM                { dbg_wait_next_exception(DBG_CONTINUE, $2, dbg_exec_cont); }
116     | tSTEP                     { dbg_wait_next_exception(DBG_CONTINUE, 1,  dbg_exec_step_into_line); }
117     | tSTEP tNUM                { dbg_wait_next_exception(DBG_CONTINUE, $2, dbg_exec_step_into_line); }
118     | tNEXT                     { dbg_wait_next_exception(DBG_CONTINUE, 1,  dbg_exec_step_over_line); }
119     | tNEXT tNUM                { dbg_wait_next_exception(DBG_CONTINUE, $2, dbg_exec_step_over_line); }
120     | tSTEPI                    { dbg_wait_next_exception(DBG_CONTINUE, 1,  dbg_exec_step_into_insn); }
121     | tSTEPI tNUM               { dbg_wait_next_exception(DBG_CONTINUE, $2, dbg_exec_step_into_insn); }
122     | tNEXTI                    { dbg_wait_next_exception(DBG_CONTINUE, 1,  dbg_exec_step_over_insn); }
123     | tNEXTI tNUM               { dbg_wait_next_exception(DBG_CONTINUE, $2, dbg_exec_step_over_insn); }
124     | tFINISH                   { dbg_wait_next_exception(DBG_CONTINUE, 0,  dbg_exec_finish); }
125     | tABORT                    { abort(); }
126     | tBACKTRACE                { stack_backtrace(dbg_curr_tid); }
127     | tBACKTRACE tNUM           { stack_backtrace($2); }
128     | tBACKTRACE tALL           { stack_backtrace(-1); }
129     | tUP                       { stack_set_frame(dbg_curr_thread->curr_frame + 1);  }
130     | tUP tNUM                  { stack_set_frame(dbg_curr_thread->curr_frame + $2); }
131     | tDOWN                     { stack_set_frame(dbg_curr_thread->curr_frame - 1);  }
132     | tDOWN tNUM                { stack_set_frame(dbg_curr_thread->curr_frame - $2); }
133     | tFRAME tNUM               { stack_set_frame($2); }
134     | tSHOW tDIR                { source_show_path(); }
135     | tDIR pathname             { source_add_path($2); }
136     | tDIR                      { source_nuke_path(dbg_curr_process); }
137     | tCOND tNUM                { break_add_condition($2, NULL); }
138     | tCOND tNUM expr           { break_add_condition($2, $3); }
139     | tSOURCE pathname          { parser($2); }
140     | tSYMBOLFILE pathname      { symbol_read_symtable($2, 0); }
141     | tSYMBOLFILE pathname expr_rvalue { symbol_read_symtable($2, $3); }
142     | tWHATIS expr_lvalue       { dbg_printf("type = "); types_print_type(&$2.type, FALSE); dbg_printf("\n"); }
143     | tATTACH tNUM              { dbg_attach_debuggee($2, FALSE); dbg_active_wait_for_first_exception(); }
144     | tDETACH                   { dbg_curr_process->process_io->close_process(dbg_curr_process, FALSE); }
145     | tKILL                     { dbg_curr_process->process_io->close_process(dbg_curr_process, TRUE); }
146     | tMINIDUMP pathname        { minidump_write($2, (dbg_curr_thread && dbg_curr_thread->in_exception) ? &dbg_curr_thread->excpt_record : NULL);}
147     | tECHO tSTRING             { dbg_printf("%s\n", $2); }
148     | run_command
149     | list_command
150     | disassemble_command
151     | set_command
152     | x_command
153     | print_command     
154     | break_command
155     | watch_command
156     | display_command
157     | info_command
158     | maintenance_command
159     | noprocess_state
160     ;
161
162 pathname:
163       identifier                { $$ = $1; }
164     | tSTRING                   { $$ = $1; }
165     | tPATH                     { $$ = $1; }
166     ;
167
168 cpp_identifier:
169       tIDENTIFIER               { $$ = $1; }
170     | identifier OP_SCOPE tIDENTIFIER { $$ = lexeme_alloc_size(strlen($1) + 2 + strlen($3) + 1);
171                                        sprintf($$, "%s::%s", $1, $3); }
172     ;
173
174 identifier:
175       cpp_identifier            { $$ = $1; }
176     | tIDENTIFIER '!' cpp_identifier { $$ = lexeme_alloc_size(strlen($1) + 1 + strlen($3) + 1);
177                                        sprintf($$, "%s!%s", $1, $3); }
178     ;
179
180 list_arg:
181       tNUM                      { $$.FileName = NULL; $$.LineNumber = $1; }
182     | pathname ':' tNUM         { $$.FileName = $1; $$.LineNumber = $3; }
183     | identifier                { symbol_get_line(NULL, $1, &$$); }
184     | pathname ':' identifier   { symbol_get_line($1, $3, &$$); }
185     | '*' expr_lvalue           { DWORD disp; ADDRESS64 addr; $$.SizeOfStruct = sizeof($$);
186                                   types_extract_as_address(&$2, &addr);
187                                   SymGetLineFromAddr64(dbg_curr_process->handle, (unsigned long)memory_to_linear_addr(& addr), &disp, & $$); }
188     ;
189
190 run_command:
191       tRUN                      { dbg_run_debuggee(NULL); }
192     | tRUN tSTRING              { dbg_run_debuggee($2); }
193     ;
194
195 list_command:
196       tLIST                     { source_list(NULL, NULL, 10); }
197     | tLIST '-'                 { source_list(NULL,  NULL, -10); }
198     | tLIST list_arg            { source_list(& $2, NULL, 10); }
199     | tLIST ',' list_arg        { source_list(NULL, & $3, -10); }
200     | tLIST list_arg ',' list_arg      { source_list(& $2, & $4, 0); }
201     ;
202
203 disassemble_command:
204       tDISASSEMBLE              { memory_disassemble(NULL, NULL, 10); }
205     | tDISASSEMBLE expr_lvalue  { memory_disassemble(&$2, NULL, 10); }
206     | tDISASSEMBLE expr_lvalue ',' expr_lvalue { memory_disassemble(&$2, &$4, 0); }
207     ;
208
209 set_command:
210       tSET lvalue_addr '=' expr_rvalue { memory_write_value(&$2, sizeof(int), &$4); }
211     | tSET '+' tIDENTIFIER      { info_wine_dbg_channel(TRUE, NULL, $3); }
212     | tSET '+' tALL             { info_wine_dbg_channel(TRUE, NULL, "all"); }
213     | tSET '-' tIDENTIFIER      { info_wine_dbg_channel(FALSE, NULL, $3); }
214     | tSET '-' tALL             { info_wine_dbg_channel(FALSE, NULL, "all"); }
215     | tSET tIDENTIFIER '+' tIDENTIFIER { info_wine_dbg_channel(TRUE, $2, $4); }
216     | tSET tIDENTIFIER '+' tALL        { info_wine_dbg_channel(TRUE, $2, "all"); }
217     | tSET tIDENTIFIER '-' tIDENTIFIER { info_wine_dbg_channel(FALSE, $2, $4); }
218     | tSET tIDENTIFIER '-' tALL        { info_wine_dbg_channel(FALSE, $2, "all"); }
219     | tSET '!' tIDENTIFIER tIDENTIFIER  { dbg_set_option($3, $4); }
220     | tSET '!' tIDENTIFIER      { dbg_set_option($3, NULL); }
221     ;
222
223 x_command:
224       tEXAM expr_lvalue         { memory_examine(&$2, 1, 'x'); }
225     | tEXAM tFORMAT expr_lvalue { memory_examine(&$3, $2 >> 8, $2 & 0xff); }
226     ;
227
228 print_command:
229       tPRINT expr_lvalue         { print_value(&$2, 0, 0); }
230     | tPRINT tFORMAT expr_lvalue { if (($2 >> 8) == 1) print_value(&$3, $2 & 0xff, 0); else dbg_printf("Count is meaningless in print command\n"); }
231     ;
232
233 break_command:
234       tBREAK '*' expr_lvalue    { break_add_break_from_lvalue(&$3, TRUE); }
235     | tBREAK identifier         { break_add_break_from_id($2, -1, TRUE); }
236     | tBREAK pathname ':' tNUM  { break_add_break_from_lineno($2, $4, TRUE); }
237     | tBREAK tNUM               { break_add_break_from_lineno(NULL, $2, TRUE); }
238     | tBREAK                    { break_add_break_from_lineno(NULL, -1, TRUE); }
239     | tHBREAK '*' expr_lvalue   { break_add_break_from_lvalue(&$3, FALSE); }
240     | tHBREAK identifier        { break_add_break_from_id($2, -1, FALSE); }
241     | tHBREAK pathname ':' tNUM { break_add_break_from_lineno($2, $4, FALSE); }
242     | tHBREAK tNUM              { break_add_break_from_lineno(NULL, $2, FALSE); }
243     | tHBREAK                   { break_add_break_from_lineno(NULL, -1, FALSE); }
244     | tENABLE tNUM              { break_enable_xpoint($2, TRUE); }
245     | tENABLE tBREAK tNUM       { break_enable_xpoint($3, TRUE); }
246     | tDISABLE tNUM             { break_enable_xpoint($2, FALSE); }
247     | tDISABLE tBREAK tNUM      { break_enable_xpoint($3, FALSE); }
248     | tDELETE tNUM              { break_delete_xpoint($2); }
249     | tDELETE tBREAK tNUM       { break_delete_xpoint($3); }
250     ;
251
252 watch_command:
253       tWATCH '*' expr_lvalue    { break_add_watch_from_lvalue(&$3, TRUE); }
254     | tWATCH identifier         { break_add_watch_from_id($2, TRUE); }
255     | tRWATCH '*' expr_lvalue   { break_add_watch_from_lvalue(&$3, FALSE); }
256     | tRWATCH identifier        { break_add_watch_from_id($2, FALSE); }
257     ;
258
259
260 display_command:
261       tDISPLAY                  { display_print(); }
262     | tDISPLAY expr             { display_add($2, 1, 0); }
263     | tDISPLAY tFORMAT expr     { display_add($3, $2 >> 8, $2 & 0xff); }
264     | tENABLE tDISPLAY tNUM     { display_enable($3, TRUE); }
265     | tDISABLE tDISPLAY tNUM    { display_enable($3, FALSE); }
266     | tDELETE tDISPLAY tNUM     { display_delete($3); }
267     | tDELETE tDISPLAY          { display_delete(-1); }
268     | tUNDISPLAY tNUM           { display_delete($2); }
269     | tUNDISPLAY                { display_delete(-1); }
270     ;
271
272 info_command:
273       tINFO tBREAK              { break_info(); }
274     | tINFO tSHARE              { info_win32_module(0); }
275     | tINFO tSHARE expr_rvalue  { info_win32_module($3); }
276     | tINFO tREGS               { be_cpu->print_context(dbg_curr_thread->handle, &dbg_context, 0); }
277     | tINFO tALLREGS            { be_cpu->print_context(dbg_curr_thread->handle, &dbg_context, 1); }
278     | tINFO tSEGMENTS expr_rvalue { info_win32_segments($3 >> 3, 1); }
279     | tINFO tSEGMENTS           { info_win32_segments(0, -1); }
280     | tINFO tSTACK tNUM         { stack_info($3); }
281     | tINFO tSTACK              { stack_info(-1); }
282     | tINFO tSYMBOL tSTRING     { symbol_info($3); }
283     | tINFO tLOCAL              { symbol_info_locals(); }
284     | tINFO tDISPLAY            { display_info(); }
285     | tINFO tCLASS              { info_win32_class(NULL, NULL); }
286     | tINFO tCLASS tSTRING      { info_win32_class(NULL, $3); }
287     | tINFO tWND                { info_win32_window(NULL, FALSE); }
288     | tINFO tWND expr_rvalue    { info_win32_window((HWND)$3, FALSE); }
289     | tINFO '*' tWND            { info_win32_window(NULL, TRUE); }
290     | tINFO '*' tWND expr_rvalue { info_win32_window((HWND)$4, TRUE); }
291     | tINFO tPROCESS            { info_win32_processes(); }
292     | tINFO tTHREAD             { info_win32_threads(); }
293     | tINFO tFRAME              { info_win32_frame_exceptions(dbg_curr_tid); }
294     | tINFO tFRAME expr_rvalue  { info_win32_frame_exceptions($3); }
295     | tINFO tMAPS               { info_win32_virtual(dbg_curr_pid); }
296     | tINFO tMAPS expr_rvalue   { info_win32_virtual($3); }
297     | tINFO tEXCEPTION          { info_win32_exception(); }
298     ;
299
300 maintenance_command:
301       tMAINTENANCE tTYPE        { print_types(); }
302     | tMAINTENANCE tMODULE tSTRING { tgt_module_load($3, FALSE); }
303     | tMAINTENANCE '*' tMODULE tSTRING { tgt_module_load($4, TRUE); }
304     ;
305
306 noprocess_state:
307       tNOPROCESS                 {} /* <CR> shall not barf anything */
308     | tNOPROCESS tBACKTRACE tALL { stack_backtrace(-1); } /* can backtrace all threads with no attached process */
309     | tNOPROCESS tSTRING         { dbg_printf("No process loaded, cannot execute '%s'\n", $2); }
310     ;
311
312 type_expr:
313       tCHAR                     { $$.type = type_expr_type_id; $$.deref_count = 0; $$.u.type.module = 0; $$.u.type.id = dbg_itype_char; }
314     | tINT                      { $$.type = type_expr_type_id; $$.deref_count = 0; $$.u.type.module = 0; $$.u.type.id = dbg_itype_signed_int; }
315     | tLONG tINT                { $$.type = type_expr_type_id; $$.deref_count = 0; $$.u.type.module = 0; $$.u.type.id = dbg_itype_signed_long_int; }
316     | tLONG                     { $$.type = type_expr_type_id; $$.deref_count = 0; $$.u.type.module = 0; $$.u.type.id = dbg_itype_signed_long_int; }
317     | tUNSIGNED tINT            { $$.type = type_expr_type_id; $$.deref_count = 0; $$.u.type.module = 0; $$.u.type.id = dbg_itype_unsigned_int; }
318     | tUNSIGNED                 { $$.type = type_expr_type_id; $$.deref_count = 0; $$.u.type.module = 0; $$.u.type.id = dbg_itype_unsigned_int; }
319     | tLONG tUNSIGNED tINT      { $$.type = type_expr_type_id; $$.deref_count = 0; $$.u.type.module = 0; $$.u.type.id = dbg_itype_unsigned_long_int; }
320     | tLONG tUNSIGNED           { $$.type = type_expr_type_id; $$.deref_count = 0; $$.u.type.module = 0; $$.u.type.id = dbg_itype_unsigned_long_int; }
321     | tSHORT tINT               { $$.type = type_expr_type_id; $$.deref_count = 0; $$.u.type.module = 0; $$.u.type.id = dbg_itype_signed_short_int; }
322     | tSHORT                    { $$.type = type_expr_type_id; $$.deref_count = 0; $$.u.type.module = 0; $$.u.type.id = dbg_itype_signed_short_int; }
323     | tSHORT tUNSIGNED tINT     { $$.type = type_expr_type_id; $$.deref_count = 0; $$.u.type.module = 0; $$.u.type.id = dbg_itype_unsigned_short_int; }
324     | tSHORT tUNSIGNED          { $$.type = type_expr_type_id; $$.deref_count = 0; $$.u.type.module = 0; $$.u.type.id = dbg_itype_unsigned_short_int; }
325     | tSIGNED tCHAR             { $$.type = type_expr_type_id; $$.deref_count = 0; $$.u.type.module = 0; $$.u.type.id = dbg_itype_signed_char_int; }
326     | tUNSIGNED tCHAR           { $$.type = type_expr_type_id; $$.deref_count = 0; $$.u.type.module = 0; $$.u.type.id = dbg_itype_unsigned_char_int; }
327     | tLONG tLONG tUNSIGNED tINT{ $$.type = type_expr_type_id; $$.deref_count = 0; $$.u.type.module = 0; $$.u.type.id = dbg_itype_unsigned_longlong_int; }
328     | tLONG tLONG tUNSIGNED     { $$.type = type_expr_type_id; $$.deref_count = 0; $$.u.type.module = 0; $$.u.type.id = dbg_itype_unsigned_longlong_int; }
329     | tLONG tLONG tINT          { $$.type = type_expr_type_id; $$.deref_count = 0; $$.u.type.module = 0; $$.u.type.id = dbg_itype_signed_longlong_int; }
330     | tLONG tLONG               { $$.type = type_expr_type_id; $$.deref_count = 0; $$.u.type.module = 0; $$.u.type.id = dbg_itype_signed_longlong_int; }
331     | tFLOAT                    { $$.type = type_expr_type_id; $$.deref_count = 0; $$.u.type.module = 0; $$.u.type.id = dbg_itype_short_real; }
332     | tDOUBLE                   { $$.type = type_expr_type_id; $$.deref_count = 0; $$.u.type.module = 0; $$.u.type.id = dbg_itype_real; }
333     | tLONG tDOUBLE             { $$.type = type_expr_type_id; $$.deref_count = 0; $$.u.type.module = 0; $$.u.type.id = dbg_itype_long_real; }
334     | type_expr '*'             { $$ = $1; $$.deref_count++; }
335     | tCLASS identifier         { $$.type = type_expr_udt_class; $$.deref_count = 0; $$.u.name = $2; }
336     | tSTRUCT identifier        { $$.type = type_expr_udt_struct; $$.deref_count = 0; $$.u.name = $2; }
337     | tUNION identifier         { $$.type = type_expr_udt_union; $$.deref_count = 0; $$.u.name = $2; }
338     | tENUM identifier          { $$.type = type_expr_enumeration; $$.deref_count = 0; $$.u.name = $2; }
339     ;
340
341 expr_lvalue:
342       expr                      { $$ = expr_eval($1); }
343     ;
344
345 expr_rvalue:
346       expr_lvalue               { $$ = types_extract_as_integer(&$1); }
347     ;
348
349 /*
350  * The expr rule builds an expression tree.  When we are done, we call
351  * EvalExpr to evaluate the value of the expression.  The advantage of
352  * the two-step approach is that it is possible to save expressions for
353  * use in 'display' commands, and in conditional watchpoints.
354  */
355 expr:
356       tNUM                      { $$ = expr_alloc_sconstant($1); }
357     | tSTRING                   { $$ = expr_alloc_string($1); }
358     | tINTVAR                   { $$ = expr_alloc_internal_var($1); }
359     | identifier                { $$ = expr_alloc_symbol($1); }
360     | expr OP_DRF tIDENTIFIER   { $$ = expr_alloc_pstruct($1, $3); }
361     | expr '.' tIDENTIFIER      { $$ = expr_alloc_struct($1, $3); }
362     | identifier '(' ')'        { $$ = expr_alloc_func_call($1, 0); }
363     | identifier '(' expr ')'   { $$ = expr_alloc_func_call($1, 1, $3); }
364     | identifier '(' expr ',' expr ')' { $$ = expr_alloc_func_call($1, 2, $3, $5); }
365     | identifier '(' expr ',' expr ',' expr ')' { $$ = expr_alloc_func_call($1, 3, $3, $5, $7); }
366     | identifier '(' expr ',' expr ',' expr ',' expr ')' { $$ = expr_alloc_func_call($1, 4, $3, $5, $7, $9); }
367     | identifier '(' expr ',' expr ',' expr ',' expr ',' expr ')' { $$ = expr_alloc_func_call($1, 5, $3, $5, $7, $9, $11); }
368     | expr '[' expr ']'          { $$ = expr_alloc_binary_op(EXP_OP_ARR, $1, $3); }
369     | expr ':' expr              { $$ = expr_alloc_binary_op(EXP_OP_SEG, $1, $3); }
370     | expr OP_LOR expr           { $$ = expr_alloc_binary_op(EXP_OP_LOR, $1, $3); }
371     | expr OP_LAND expr          { $$ = expr_alloc_binary_op(EXP_OP_LAND, $1, $3); }
372     | expr '|' expr              { $$ = expr_alloc_binary_op(EXP_OP_OR, $1, $3); }
373     | expr '&' expr              { $$ = expr_alloc_binary_op(EXP_OP_AND, $1, $3); }
374     | expr '^' expr              { $$ = expr_alloc_binary_op(EXP_OP_XOR, $1, $3); }
375     | expr OP_EQ expr            { $$ = expr_alloc_binary_op(EXP_OP_EQ, $1, $3); }
376     | expr '>' expr              { $$ = expr_alloc_binary_op(EXP_OP_GT, $1, $3); }
377     | expr '<' expr              { $$ = expr_alloc_binary_op(EXP_OP_LT, $1, $3); }
378     | expr OP_GE expr            { $$ = expr_alloc_binary_op(EXP_OP_GE, $1, $3); }
379     | expr OP_LE expr            { $$ = expr_alloc_binary_op(EXP_OP_LE, $1, $3); }
380     | expr OP_NE expr            { $$ = expr_alloc_binary_op(EXP_OP_NE, $1, $3); }
381     | expr OP_SHL expr           { $$ = expr_alloc_binary_op(EXP_OP_SHL, $1, $3); }
382     | expr OP_SHR expr           { $$ = expr_alloc_binary_op(EXP_OP_SHR, $1, $3); }
383     | expr '+' expr              { $$ = expr_alloc_binary_op(EXP_OP_ADD, $1, $3); }
384     | expr '-' expr              { $$ = expr_alloc_binary_op(EXP_OP_SUB, $1, $3); }
385     | expr '*' expr              { $$ = expr_alloc_binary_op(EXP_OP_MUL, $1, $3); }
386     | expr '/' expr              { $$ = expr_alloc_binary_op(EXP_OP_DIV, $1, $3); }
387     | expr '%' expr              { $$ = expr_alloc_binary_op(EXP_OP_REM, $1, $3); }
388     | '-' expr %prec OP_SIGN     { $$ = expr_alloc_unary_op(EXP_OP_NEG, $2); }
389     | '+' expr %prec OP_SIGN     { $$ = $2; }
390     | '!' expr                   { $$ = expr_alloc_unary_op(EXP_OP_NOT, $2); }
391     | '~' expr                   { $$ = expr_alloc_unary_op(EXP_OP_LNOT, $2); }
392     | '(' expr ')'               { $$ = $2; }
393     | '*' expr %prec OP_DEREF    { $$ = expr_alloc_unary_op(EXP_OP_DEREF, $2); }
394     | '&' expr %prec OP_DEREF    { $$ = expr_alloc_unary_op(EXP_OP_ADDR, $2); }
395     | '(' type_expr ')' expr %prec OP_DEREF { $$ = expr_alloc_typecast(&$2, $4); }
396     ;
397
398 /*
399  * The lvalue rule builds an expression tree.  This is a limited form
400  * of expression that is suitable to be used as an lvalue.
401  */
402 lvalue_addr: 
403       lvalue                     { $$ = expr_eval($1); }
404     ;
405
406 lvalue: 
407       tNUM                       { $$ = expr_alloc_sconstant($1); }
408     | tINTVAR                    { $$ = expr_alloc_internal_var($1); }
409     | identifier                 { $$ = expr_alloc_symbol($1); }
410     | lvalue OP_DRF tIDENTIFIER  { $$ = expr_alloc_pstruct($1, $3); }
411     | lvalue '.' tIDENTIFIER     { $$ = expr_alloc_struct($1, $3); }
412     | lvalue '[' expr ']'        { $$ = expr_alloc_binary_op(EXP_OP_ARR, $1, $3); }
413     | '*' expr                   { $$ = expr_alloc_unary_op(EXP_OP_FORCE_DEREF, $2); }
414     ;
415
416 %%
417
418 static LONG WINAPI wine_dbg_cmd(EXCEPTION_POINTERS *eptr)
419 {
420     switch (eptr->ExceptionRecord->ExceptionCode)
421     {
422     case DEBUG_STATUS_INTERNAL_ERROR:
423         dbg_printf("\nWineDbg internal error\n");
424         break;
425     case DEBUG_STATUS_NO_SYMBOL:
426         dbg_printf("\nUndefined symbol\n");
427         break;
428     case DEBUG_STATUS_DIV_BY_ZERO:
429         dbg_printf("\nDivision by zero\n");
430         break;
431     case DEBUG_STATUS_BAD_TYPE:
432         dbg_printf("\nNo type or type mismatch\n");
433         break;
434     case DEBUG_STATUS_NO_FIELD:
435         dbg_printf("\nNo such field in structure or union\n");
436         break;
437     case DEBUG_STATUS_CANT_DEREF:
438         dbg_printf("\nDereference failed (not a pointer, or out of array bounds)\n");
439         break;
440     case DEBUG_STATUS_ABORT:
441         break;
442     case DEBUG_STATUS_NOT_AN_INTEGER:
443         dbg_printf("\nNeeding an integral value\n");
444         break;
445     case CONTROL_C_EXIT:
446         /* this is generally sent by a ctrl-c when we run winedbg outside of wineconsole */
447         /* stop the debuggee, and continue debugger execution, we will be reentered by the
448          * debug events generated by stopping
449          */
450         dbg_interrupt_debuggee();
451         return EXCEPTION_CONTINUE_EXECUTION;
452     default:
453         dbg_printf("\nException %x\n", eptr->ExceptionRecord->ExceptionCode);
454         break;
455     }
456
457     return EXCEPTION_EXECUTE_HANDLER;
458 }
459
460 static HANDLE dbg_parser_input;
461 static HANDLE dbg_parser_output;
462
463 int      input_fetch_entire_line(const char* pfx, char** line)
464 {
465     char        ch;
466     DWORD       nread;
467     size_t      len, alloc;
468     
469     /* as of today, console handles can be file handles... so better use file APIs rather than
470      * console's
471      */
472     WriteFile(dbg_parser_output, pfx, strlen(pfx), &nread, NULL);
473
474     if (*line)
475     {
476         alloc = HeapSize(GetProcessHeap(), 0, *line);
477         assert(alloc);
478     }
479     else
480     {
481         *line = HeapAlloc(GetProcessHeap(), 0, alloc = 16);
482         assert(*line);
483     }
484
485     len = 0;
486     do
487     {
488         if (!ReadFile(dbg_parser_input, &ch, 1, &nread, NULL) || nread == 0)
489             return -1;
490
491         if (len + 2 > alloc)
492         {
493             while (len + 2 > alloc) alloc *= 2;
494             *line = dbg_heap_realloc(*line, alloc);
495         }
496         (*line)[len++] = ch;
497     }
498     while (ch != '\n');
499     (*line)[len] = '\0';
500
501     return len;
502 }
503
504 int input_read_line(const char* pfx, char* buf, int size)
505 {
506     char*       line = NULL;
507
508     int len = input_fetch_entire_line(pfx, &line);
509     if (len < 0) return 0;
510     /* remove trailing \n and \r */
511     while (len > 0 && (line[len - 1] == '\n' || line[len - 1] == '\r')) len--;
512     len = min(size - 1, len);
513     memcpy(buf, line, len);
514     buf[len] = '\0';
515     HeapFree(GetProcessHeap(), 0, line);
516     return 1;
517 }
518
519 /***********************************************************************
520  *           parser_handle
521  *
522  * Debugger command line parser
523  */
524 void    parser_handle(HANDLE input)
525 {
526     BOOL                ret_ok;
527     HANDLE              in_copy  = dbg_parser_input;
528     HANDLE              out_copy = dbg_parser_output;
529
530     ret_ok = FALSE;
531
532     if (input != INVALID_HANDLE_VALUE)
533     {
534         dbg_parser_output = INVALID_HANDLE_VALUE;
535         dbg_parser_input  = input;
536     }
537     else
538     {
539         dbg_parser_output = GetStdHandle(STD_OUTPUT_HANDLE);
540         dbg_parser_input  = GetStdHandle(STD_INPUT_HANDLE);
541     }
542
543     do
544     {
545        __TRY
546        {
547           ret_ok = TRUE;
548           dbg_parse();
549        }
550        __EXCEPT(wine_dbg_cmd)
551        {
552           ret_ok = FALSE;
553        }
554        __ENDTRY;
555        lexeme_flush();
556     } while (!ret_ok);
557
558     dbg_parser_input  = in_copy;
559     dbg_parser_output = out_copy;
560 }
561
562 static void parser(const char* filename)
563 {
564     HANDLE h = CreateFileA(filename, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, 0L, 0);
565     if (h != INVALID_HANDLE_VALUE)
566     {
567         parser_handle(h);
568         CloseHandle(h);
569     }
570 }
571
572 static int dbg_error(const char* s)
573 {
574     dbg_printf("%s\n", s);
575     return 0;
576 }
577
578 HANDLE parser_generate_command_file(const char* pmt, ...)
579 {
580     HANDLE      hFile;
581     char        path[MAX_PATH], file[MAX_PATH];
582     DWORD       w;
583     const char* p;
584
585     GetTempPathA(sizeof(path), path);
586     GetTempFileNameA(path, "WD", 0, file);
587     hFile = CreateFileA(file, GENERIC_READ|GENERIC_WRITE|DELETE, FILE_SHARE_DELETE, 
588                         NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL | FILE_FLAG_DELETE_ON_CLOSE, 0);
589     if (hFile != INVALID_HANDLE_VALUE)
590     {
591         va_list ap;
592
593         WriteFile(hFile, pmt, strlen(pmt), &w, 0);
594         va_start(ap, pmt);
595         while ((p = va_arg(ap, const char*)) != NULL)
596         {
597             WriteFile(hFile, "\n", 1, &w, 0);
598             WriteFile(hFile, p, strlen(p), &w, 0);
599         }
600         va_end(ap);
601         WriteFile(hFile, "\nquit\n", 6, &w, 0);
602         SetFilePointer(hFile, 0, NULL, FILE_BEGIN);
603     }
604     return hFile;
605 }