2 * File expr.c - expression handling for Wine internal debugger.
4 * Copyright (C) 1997, Eric Youngdale.
14 #include "wine/winbase16.h"
70 struct datatype * cast;
77 const char * element_name;
89 const char * funcname;
98 #define EXPR_TYPE_CONST 0
99 #define EXPR_TYPE_US_CONST 1
100 #define EXPR_TYPE_SYMBOL 2
101 #define EXPR_TYPE_REGISTER 3
102 #define EXPR_TYPE_BINOP 4
103 #define EXPR_TYPE_UNOP 5
104 #define EXPR_TYPE_STRUCT 6
105 #define EXPR_TYPE_PSTRUCT 7
106 #define EXPR_TYPE_ARRAY 8
107 #define EXPR_TYPE_CALL 9
108 #define EXPR_TYPE_STRING 10
109 #define EXPR_TYPE_CAST 11
111 static char expr_list[4096];
112 static int next_expr_free = 0;
115 * This is how we turn an expression address into the actual value.
116 * This works well in the 32 bit domain - not sure at all about the
119 #define VAL(_exp) DEBUG_GetExprValue(&_exp, NULL)
127 rtn = (struct expr *) &expr_list[next_expr_free];
129 next_expr_free += sizeof(struct expr);
130 assert(next_expr_free < sizeof(expr_list));
142 DEBUG_TypeCastExpr(struct datatype * dt, struct expr * exp)
146 ex = DEBUG_GetFreeExpr();
148 ex->type = EXPR_TYPE_CAST;
149 ex->un.cast.cast = dt;
150 ex->un.cast.expr = exp;
155 DEBUG_RegisterExpr(enum debug_regs regno)
159 ex = DEBUG_GetFreeExpr();
161 ex->type = EXPR_TYPE_REGISTER;
162 ex->un.rgister.reg = regno;
167 DEBUG_SymbolExpr(const char * name)
171 ex = DEBUG_GetFreeExpr();
173 ex->type = EXPR_TYPE_SYMBOL;
174 ex->un.symbol.name = name;
179 DEBUG_ConstExpr(int value)
183 ex = DEBUG_GetFreeExpr();
185 ex->type = EXPR_TYPE_CONST;
186 ex->un.constant.value = value;
191 DEBUG_StringExpr(const char * str)
195 ex = DEBUG_GetFreeExpr();
197 ex->type = EXPR_TYPE_STRING;
198 ex->un.string.str = str+1;
199 pnt = strrchr(ex->un.string.str, '"');
208 DEBUG_USConstExpr(unsigned int value)
212 ex = DEBUG_GetFreeExpr();
214 ex->type = EXPR_TYPE_CONST;
215 ex->un.u_const.value = value;
220 DEBUG_BinopExpr(int operator_type, struct expr * exp1, struct expr * exp2)
224 ex = DEBUG_GetFreeExpr();
226 ex->type = EXPR_TYPE_BINOP;
227 ex->un.binop.binop_type = operator_type;
228 ex->un.binop.exp1 = exp1;
229 ex->un.binop.exp2 = exp2;
234 DEBUG_UnopExpr(int operator_type, struct expr * exp1)
238 ex = DEBUG_GetFreeExpr();
240 ex->type = EXPR_TYPE_UNOP;
241 ex->un.unop.unop_type = operator_type;
242 ex->un.unop.exp1 = exp1;
247 DEBUG_StructExpr(struct expr * exp, const char * element)
251 ex = DEBUG_GetFreeExpr();
253 ex->type = EXPR_TYPE_STRUCT;
254 ex->un.structure.exp1 = exp;
255 ex->un.structure.element_name = element;
260 DEBUG_StructPExpr(struct expr * exp, const char * element)
264 ex = DEBUG_GetFreeExpr();
266 ex->type = EXPR_TYPE_PSTRUCT;
267 ex->un.structure.exp1 = exp;
268 ex->un.structure.element_name = element;
273 DEBUG_CallExpr(const char * funcname, int nargs, ...)
279 ex = DEBUG_GetFreeExpr();
281 ex->type = EXPR_TYPE_CALL;
282 ex->un.call.funcname = funcname;
283 ex->un.call.nargs = nargs;
286 for(i=0; i < nargs; i++)
288 ex->un.call.arg[i] = va_arg(ap, struct expr *);
295 DEBUG_EvalExpr(struct expr * exp)
301 unsigned int cexp[5];
306 struct datatype * type1;
307 struct datatype * type2;
316 rtn = DEBUG_EvalExpr(exp->un.cast.expr);
317 rtn.type = exp->un.cast.cast;
319 case EXPR_TYPE_STRING:
320 rtn.type = DEBUG_TypeString;
321 rtn.off = (unsigned int) &exp->un.string.str;
324 case EXPR_TYPE_CONST:
325 rtn.type = DEBUG_TypeIntConst;
326 rtn.off = (unsigned int) &exp->un.constant.value;
329 case EXPR_TYPE_US_CONST:
330 rtn.type = DEBUG_TypeUSInt;
331 rtn.off = (unsigned int) &exp->un.u_const.value;
334 case EXPR_TYPE_SYMBOL:
335 if( !DEBUG_GetSymbolValue(exp->un.symbol.name, -1, &rtn, FALSE ) )
342 case EXPR_TYPE_PSTRUCT:
343 exp1 = DEBUG_EvalExpr(exp->un.structure.exp1);
344 if( exp1.type == NULL )
348 rtn.off = DEBUG_TypeDerefPointer(&exp1, &type1);
354 DEBUG_FindStructElement(&rtn, exp->un.structure.element_name,
355 &exp->un.structure.result);
357 case EXPR_TYPE_STRUCT:
358 exp1 = DEBUG_EvalExpr(exp->un.structure.exp1);
359 if( exp1.type == NULL )
364 DEBUG_FindStructElement(&rtn, exp->un.structure.element_name,
365 &exp->un.structure.result);
369 * First, evaluate all of the arguments. If any of them are not
370 * evaluable, then bail.
372 for(i=0; i < exp->un.call.nargs; i++)
374 exp1 = DEBUG_EvalExpr(exp->un.call.arg[i]);
375 if( exp1.type == NULL )
379 cexp[i] = DEBUG_GetExprValue(&exp1, NULL);
383 * Now look up the address of the function itself.
385 if( !DEBUG_GetSymbolValue(exp->un.call.funcname, -1, &rtn, FALSE ) )
387 fprintf(stderr, "Failed to find symbol\n");
391 fptr = (int (*)()) rtn.off;
392 switch(exp->un.call.nargs)
395 exp->un.call.result = (*fptr)();
398 exp->un.call.result = (*fptr)(cexp[0]);
401 exp->un.call.result = (*fptr)(cexp[0], cexp[1]);
404 exp->un.call.result = (*fptr)(cexp[0], cexp[1], cexp[2]);
407 exp->un.call.result = (*fptr)(cexp[0], cexp[1], cexp[2], cexp[3]);
410 exp->un.call.result = (*fptr)(cexp[0], cexp[1], cexp[2], cexp[3], cexp[4]);
413 rtn.type = DEBUG_TypeInt;
414 rtn.off = (unsigned int) &exp->un.call.result;
416 case EXPR_TYPE_REGISTER:
417 rtn.type = DEBUG_TypeIntConst;
418 exp->un.rgister.result = DEBUG_GetRegister(exp->un.rgister.reg);
419 rtn.off = (unsigned int) &exp->un.rgister.result;
421 if( exp->un.rgister.reg == REG_EIP )
422 rtn.seg = CS_reg(&DEBUG_context);
424 rtn.seg = DS_reg(&DEBUG_context);
426 DBG_FIX_ADDR_SEG( &rtn, 0 );
428 case EXPR_TYPE_BINOP:
429 exp1 = DEBUG_EvalExpr(exp->un.binop.exp1);
430 exp2 = DEBUG_EvalExpr(exp->un.binop.exp2);
431 if( exp1.type == NULL || exp2.type == NULL )
435 if( exp1.type == DEBUG_TypeIntConst && exp2.type == DEBUG_TypeIntConst )
437 rtn.type = exp1.type;
441 rtn.type = DEBUG_TypeInt;
443 rtn.off = (unsigned int) &exp->un.binop.result;
444 switch(exp->un.binop.binop_type)
447 type1 = DEBUG_GetPointerType(exp1.type);
448 type2 = DEBUG_GetPointerType(exp2.type);
451 if( type1 != NULL && type2 != NULL )
455 else if( type1 != NULL )
457 scale2 = DEBUG_GetObjectSize(type1);
458 rtn.type = exp1.type;
460 else if( type2 != NULL )
462 scale1 = DEBUG_GetObjectSize(type2);
463 rtn.type = exp2.type;
466 exp->un.binop.result = (VAL(exp1) * scale1 + scale2 * VAL(exp2));
469 type1 = DEBUG_GetPointerType(exp1.type);
470 type2 = DEBUG_GetPointerType(exp2.type);
474 if( type1 != NULL && type2 != NULL )
480 scale3 = DEBUG_GetObjectSize(type1);
482 else if( type1 != NULL )
484 scale2 = DEBUG_GetObjectSize(type1);
485 rtn.type = exp1.type;
488 else if( type2 != NULL )
490 scale1 = DEBUG_GetObjectSize(type2);
491 rtn.type = exp2.type;
494 exp->un.binop.result = (VAL(exp1) - VAL(exp2)) / scale3;
498 exp->un.binop.result = VAL(exp2);
500 if (ISV86(&DEBUG_context)) {
501 TDB *pTask = (TDB*)GlobalLock16( GetCurrentTask() );
502 rtn.seg |= (DWORD)(pTask?(pTask->hModule):0)<<16;
503 GlobalUnlock16( GetCurrentTask() );
509 exp->un.binop.result = (VAL(exp1) || VAL(exp2));
513 exp->un.binop.result = (VAL(exp1) && VAL(exp2));
517 exp->un.binop.result = (VAL(exp1) | VAL(exp2));
521 exp->un.binop.result = (VAL(exp1) & VAL(exp2));
525 exp->un.binop.result = (VAL(exp1) ^ VAL(exp2));
529 exp->un.binop.result = (VAL(exp1) == VAL(exp2));
533 exp->un.binop.result = (VAL(exp1) > VAL(exp2));
537 exp->un.binop.result = (VAL(exp1) < VAL(exp2));
541 exp->un.binop.result = (VAL(exp1) >= VAL(exp2));
545 exp->un.binop.result = (VAL(exp1) <= VAL(exp2));
549 exp->un.binop.result = (VAL(exp1) != VAL(exp2));
553 exp->un.binop.result = ((unsigned) VAL(exp1) << VAL(exp2));
557 exp->un.binop.result = ((unsigned) VAL(exp1) >> VAL(exp2));
561 exp->un.binop.result = (VAL(exp1) * VAL(exp2));
567 exp->un.binop.result = (VAL(exp1) / VAL(exp2));
580 exp->un.binop.result = (VAL(exp1) % VAL(exp2));
590 DEBUG_ArrayIndex(&exp1, &rtn, VAL(exp2));
597 exp1 = DEBUG_EvalExpr(exp->un.unop.exp1);
598 if( exp1.type == NULL )
602 rtn.off = (unsigned int) &exp->un.unop.result;
603 if( exp1.type == DEBUG_TypeIntConst )
605 rtn.type = exp1.type;
609 rtn.type = DEBUG_TypeInt;
611 switch(exp->un.unop.unop_type)
615 exp->un.unop.result = -VAL(exp1);
619 exp->un.unop.result = !VAL(exp1);
623 exp->un.unop.result = ~VAL(exp1);
627 rtn.off = (unsigned int) DEBUG_TypeDerefPointer(&exp1, &rtn.type);
629 case EXP_OP_FORCE_DEREF:
631 rtn.off = *(unsigned int *) exp1.off;
635 rtn.type = DEBUG_FindOrMakePointerType(exp1.type);
636 exp->un.unop.result = exp1.off;
641 fprintf(stderr,"Unexpected expression.\n");
651 DEBUG_DisplayExpr(struct expr * exp)
659 fprintf(stderr, "((");
660 DEBUG_PrintTypeCast(exp->un.cast.cast);
661 fprintf(stderr, ")");
662 DEBUG_DisplayExpr(exp->un.cast.expr);
663 fprintf(stderr, ")");
665 case EXPR_TYPE_REGISTER:
666 DEBUG_PrintRegister(exp->un.rgister.reg);
668 case EXPR_TYPE_US_CONST:
669 fprintf(stderr, "%ud", exp->un.u_const.value);
671 case EXPR_TYPE_CONST:
672 fprintf(stderr, "%d", exp->un.u_const.value);
674 case EXPR_TYPE_STRING:
675 fprintf(stderr, "\"%s\"", exp->un.string.str);
677 case EXPR_TYPE_SYMBOL:
678 fprintf(stderr, "%s" , exp->un.symbol.name);
680 case EXPR_TYPE_PSTRUCT:
681 DEBUG_DisplayExpr(exp->un.structure.exp1);
682 fprintf(stderr, "->%s", exp->un.structure.element_name);
684 case EXPR_TYPE_STRUCT:
685 DEBUG_DisplayExpr(exp->un.structure.exp1);
686 fprintf(stderr, ".%s", exp->un.structure.element_name);
690 * First, evaluate all of the arguments. If any of them are not
691 * evaluable, then bail.
693 fprintf(stderr, "%s(",exp->un.call.funcname);
694 for(i=0; i < exp->un.call.nargs; i++)
696 DEBUG_DisplayExpr(exp->un.call.arg[i]);
697 if( i != exp->un.call.nargs - 1 )
699 fprintf(stderr, ", ");
702 fprintf(stderr, ")");
704 case EXPR_TYPE_BINOP:
705 fprintf(stderr, "( ");
706 DEBUG_DisplayExpr(exp->un.binop.exp1);
707 switch(exp->un.binop.binop_type)
710 fprintf(stderr, " + ");
713 fprintf(stderr, " - ");
716 fprintf(stderr, ":");
719 fprintf(stderr, " || ");
722 fprintf(stderr, " && ");
725 fprintf(stderr, " | ");
728 fprintf(stderr, " & ");
731 fprintf(stderr, " ^ ");
734 fprintf(stderr, " == ");
737 fprintf(stderr, " > ");
740 fprintf(stderr, " < ");
743 fprintf(stderr, " >= ");
746 fprintf(stderr, " <= ");
749 fprintf(stderr, " != ");
752 fprintf(stderr, " << ");
755 fprintf(stderr, " >> ");
758 fprintf(stderr, " * ");
761 fprintf(stderr, " / ");
764 fprintf(stderr, " %% ");
767 fprintf(stderr, "[");
772 DEBUG_DisplayExpr(exp->un.binop.exp2);
773 if( exp->un.binop.binop_type == EXP_OP_ARR )
775 fprintf(stderr, "]");
777 fprintf(stderr, " )");
780 switch(exp->un.unop.unop_type)
783 fprintf(stderr, "-");
786 fprintf(stderr, "!");
789 fprintf(stderr, "~");
792 fprintf(stderr, "*");
795 fprintf(stderr, "&");
798 DEBUG_DisplayExpr(exp->un.unop.exp1);
801 fprintf(stderr,"Unexpected expression.\n");
810 DEBUG_CloneExpr(struct expr * exp)
815 rtn = (struct expr *) DBG_alloc(sizeof(struct expr));
818 * First copy the contents of the expression itself.
826 rtn->un.cast.expr = DEBUG_CloneExpr(exp->un.cast.expr);
828 case EXPR_TYPE_REGISTER:
829 case EXPR_TYPE_US_CONST:
830 case EXPR_TYPE_CONST:
832 case EXPR_TYPE_STRING:
833 rtn->un.string.str = DBG_strdup(exp->un.string.str);
835 case EXPR_TYPE_SYMBOL:
836 rtn->un.symbol.name = DBG_strdup(exp->un.symbol.name);
838 case EXPR_TYPE_PSTRUCT:
839 case EXPR_TYPE_STRUCT:
840 rtn->un.structure.exp1 = DEBUG_CloneExpr(exp->un.structure.exp1);
841 rtn->un.structure.element_name = DBG_strdup(exp->un.structure.element_name);
845 * First, evaluate all of the arguments. If any of them are not
846 * evaluable, then bail.
848 for(i=0; i < exp->un.call.nargs; i++)
850 rtn->un.call.arg[i] = DEBUG_CloneExpr(exp->un.call.arg[i]);
852 rtn->un.call.funcname = DBG_strdup(exp->un.call.funcname);
854 case EXPR_TYPE_BINOP:
855 rtn->un.binop.exp1 = DEBUG_CloneExpr(exp->un.binop.exp1);
856 rtn->un.binop.exp2 = DEBUG_CloneExpr(exp->un.binop.exp2);
859 rtn->un.unop.exp1 = DEBUG_CloneExpr(exp->un.unop.exp1);
862 fprintf(stderr,"Unexpected expression.\n");
872 * Recursively go through an expression tree and free all memory associated
876 DEBUG_FreeExpr(struct expr * exp)
883 DEBUG_FreeExpr(exp->un.cast.expr);
885 case EXPR_TYPE_REGISTER:
886 case EXPR_TYPE_US_CONST:
887 case EXPR_TYPE_CONST:
889 case EXPR_TYPE_STRING:
890 DBG_free((char *) exp->un.string.str);
892 case EXPR_TYPE_SYMBOL:
893 DBG_free((char *) exp->un.symbol.name);
895 case EXPR_TYPE_PSTRUCT:
896 case EXPR_TYPE_STRUCT:
897 DEBUG_FreeExpr(exp->un.structure.exp1);
898 DBG_free((char *) exp->un.structure.element_name);
902 * First, evaluate all of the arguments. If any of them are not
903 * evaluable, then bail.
905 for(i=0; i < exp->un.call.nargs; i++)
907 DEBUG_FreeExpr(exp->un.call.arg[i]);
909 DBG_free((char *) exp->un.call.funcname);
911 case EXPR_TYPE_BINOP:
912 DEBUG_FreeExpr(exp->un.binop.exp1);
913 DEBUG_FreeExpr(exp->un.binop.exp2);
916 DEBUG_FreeExpr(exp->un.unop.exp1);
919 fprintf(stderr,"Unexpected expression.\n");