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