2 * Expression Abstract Syntax Tree Functions
4 * Copyright 2002 Ove Kaaven
5 * Copyright 2006-2008 Robert Shearman
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
38 static int is_integer_type(const type_t
*type
)
40 switch (type_get_type(type
))
45 switch (type_basic_get_type(type
))
48 case TYPE_BASIC_INT16
:
49 case TYPE_BASIC_INT32
:
50 case TYPE_BASIC_INT64
:
52 case TYPE_BASIC_INT3264
:
54 case TYPE_BASIC_HYPER
:
56 case TYPE_BASIC_WCHAR
:
57 case TYPE_BASIC_ERROR_STATUS_T
:
59 case TYPE_BASIC_FLOAT
:
60 case TYPE_BASIC_DOUBLE
:
61 case TYPE_BASIC_HANDLE
:
70 static int is_signed_integer_type(const type_t
*type
)
72 switch (type_get_type(type
))
77 switch (type_basic_get_type(type
))
80 case TYPE_BASIC_INT16
:
81 case TYPE_BASIC_INT32
:
82 case TYPE_BASIC_INT64
:
84 case TYPE_BASIC_INT3264
:
85 return type_basic_get_sign(type
) < 0;
88 case TYPE_BASIC_HYPER
:
90 case TYPE_BASIC_WCHAR
:
91 case TYPE_BASIC_ERROR_STATUS_T
:
92 case TYPE_BASIC_FLOAT
:
93 case TYPE_BASIC_DOUBLE
:
94 case TYPE_BASIC_HANDLE
:
102 static int is_float_type(const type_t
*type
)
104 return (type_get_type(type
) == TYPE_BASIC
&&
105 (type_basic_get_type(type
) == TYPE_BASIC_FLOAT
||
106 type_basic_get_type(type
) == TYPE_BASIC_DOUBLE
));
109 expr_t
*make_expr(enum expr_type type
)
111 expr_t
*e
= xmalloc(sizeof(expr_t
));
120 expr_t
*make_exprl(enum expr_type type
, int val
)
122 expr_t
*e
= xmalloc(sizeof(expr_t
));
127 /* check for numeric constant */
128 if (type
== EXPR_NUM
|| type
== EXPR_HEXNUM
|| type
== EXPR_TRUEFALSE
)
130 /* make sure true/false value is valid */
131 assert(type
!= EXPR_TRUEFALSE
|| val
== 0 || val
== 1);
138 expr_t
*make_exprd(enum expr_type type
, double val
)
140 expr_t
*e
= xmalloc(sizeof(expr_t
));
149 expr_t
*make_exprs(enum expr_type type
, char *val
)
152 e
= xmalloc(sizeof(expr_t
));
157 /* check for predefined constants */
160 case EXPR_IDENTIFIER
:
162 var_t
*c
= find_const(val
, 0);
168 e
->cval
= c
->eval
->cval
;
174 error_loc("empty character constant\n");
176 error_loc("multi-character constants are endian dependent\n");
189 expr_t
*make_exprt(enum expr_type type
, var_t
*var
, expr_t
*expr
)
194 if (var
->stgclass
!= STG_NONE
&& var
->stgclass
!= STG_REGISTER
)
195 error_loc("invalid storage class for type expression\n");
199 e
= xmalloc(sizeof(expr_t
));
204 if (type
== EXPR_SIZEOF
)
206 /* only do this for types that should be the same on all platforms */
207 if (is_integer_type(tref
) || is_float_type(tref
))
209 unsigned int align
= 0;
211 e
->cval
= type_memsize(tref
, &align
);
214 /* check for cast of constant expression */
215 if (type
== EXPR_CAST
&& expr
->is_const
)
217 if (is_integer_type(tref
))
219 unsigned int align
= 0;
220 unsigned int cast_type_bits
= type_memsize(tref
, &align
) * 8;
221 unsigned int cast_mask
;
224 if (is_signed_integer_type(tref
))
226 cast_mask
= (1 << (cast_type_bits
- 1)) - 1;
227 if (expr
->cval
& (1 << (cast_type_bits
- 1)))
228 e
->cval
= -((-expr
->cval
) & cast_mask
);
230 e
->cval
= expr
->cval
& cast_mask
;
234 /* calculate ((1 << cast_type_bits) - 1) avoiding overflow */
235 cast_mask
= ((1 << (cast_type_bits
- 1)) - 1) |
236 1 << (cast_type_bits
- 1);
237 e
->cval
= expr
->cval
& cast_mask
;
243 e
->cval
= expr
->cval
;
250 expr_t
*make_expr1(enum expr_type type
, expr_t
*expr
)
253 e
= xmalloc(sizeof(expr_t
));
258 /* check for compile-time optimization */
265 e
->cval
= !expr
->cval
;
268 e
->cval
= +expr
->cval
;
271 e
->cval
= -expr
->cval
;
274 e
->cval
= ~expr
->cval
;
284 expr_t
*make_expr2(enum expr_type type
, expr_t
*expr1
, expr_t
*expr2
)
287 e
= xmalloc(sizeof(expr_t
));
292 /* check for compile-time optimization */
293 if (expr1
->is_const
&& expr2
->is_const
)
299 e
->cval
= expr1
->cval
+ expr2
->cval
;
302 e
->cval
= expr1
->cval
- expr2
->cval
;
305 if (expr2
->cval
== 0)
307 error_loc("divide by zero in expression\n");
311 e
->cval
= expr1
->cval
% expr2
->cval
;
314 e
->cval
= expr1
->cval
* expr2
->cval
;
317 if (expr2
->cval
== 0)
319 error_loc("divide by zero in expression\n");
323 e
->cval
= expr1
->cval
/ expr2
->cval
;
326 e
->cval
= expr1
->cval
| expr2
->cval
;
329 e
->cval
= expr1
->cval
& expr2
->cval
;
332 e
->cval
= expr1
->cval
<< expr2
->cval
;
335 e
->cval
= expr1
->cval
>> expr2
->cval
;
338 e
->cval
= expr1
->cval
|| expr2
->cval
;
341 e
->cval
= expr1
->cval
&& expr2
->cval
;
344 e
->cval
= expr1
->cval
^ expr2
->cval
;
347 e
->cval
= expr1
->cval
== expr2
->cval
;
349 case EXPR_INEQUALITY
:
350 e
->cval
= expr1
->cval
!= expr2
->cval
;
353 e
->cval
= expr1
->cval
> expr2
->cval
;
356 e
->cval
= expr1
->cval
< expr2
->cval
;
359 e
->cval
= expr1
->cval
>= expr2
->cval
;
362 e
->cval
= expr1
->cval
<= expr2
->cval
;
372 expr_t
*make_expr3(enum expr_type type
, expr_t
*expr1
, expr_t
*expr2
, expr_t
*expr3
)
375 e
= xmalloc(sizeof(expr_t
));
381 /* check for compile-time optimization */
382 if (expr1
->is_const
&& expr2
->is_const
&& expr3
->is_const
)
388 e
->cval
= expr1
->cval
? expr2
->cval
: expr3
->cval
;
398 struct expression_type
400 int is_variable
; /* is the expression resolved to a variable? */
401 int is_temporary
; /* should the type be freed? */
405 static void check_scalar_type(const struct expr_loc
*expr_loc
,
406 const type_t
*cont_type
, const type_t
*type
)
408 if (!cont_type
|| (!is_integer_type(type
) && !is_ptr(type
) &&
409 !is_float_type(type
)))
410 error_loc_info(&expr_loc
->v
->loc_info
, "scalar type required in expression%s%s\n",
411 expr_loc
->attr
? " for attribute " : "",
412 expr_loc
->attr
? expr_loc
->attr
: "");
415 static void check_arithmetic_type(const struct expr_loc
*expr_loc
,
416 const type_t
*cont_type
, const type_t
*type
)
418 if (!cont_type
|| (!is_integer_type(type
) && !is_float_type(type
)))
419 error_loc_info(&expr_loc
->v
->loc_info
, "arithmetic type required in expression%s%s\n",
420 expr_loc
->attr
? " for attribute " : "",
421 expr_loc
->attr
? expr_loc
->attr
: "");
424 static void check_integer_type(const struct expr_loc
*expr_loc
,
425 const type_t
*cont_type
, const type_t
*type
)
427 if (!cont_type
|| !is_integer_type(type
))
428 error_loc_info(&expr_loc
->v
->loc_info
, "integer type required in expression%s%s\n",
429 expr_loc
->attr
? " for attribute " : "",
430 expr_loc
->attr
? expr_loc
->attr
: "");
433 static type_t
*find_identifier(const char *identifier
, const type_t
*cont_type
, int *found_in_cont_type
)
437 const var_list_t
*fields
= NULL
;
439 *found_in_cont_type
= 0;
443 switch (type_get_type(cont_type
))
446 fields
= type_function_get_args(cont_type
);
449 fields
= type_struct_get_fields(cont_type
);
452 case TYPE_ENCAPSULATED_UNION
:
453 fields
= type_union_get_cases(cont_type
);
467 /* shouldn't get here because of using type_get_type above */
473 if (fields
) LIST_FOR_EACH_ENTRY( field
, fields
, const var_t
, entry
)
474 if (field
->name
&& !strcmp(identifier
, field
->name
))
477 *found_in_cont_type
= 1;
483 var_t
*const_var
= find_const(identifier
, 0);
484 if (const_var
) type
= const_var
->type
;
490 static int is_valid_member_operand(const type_t
*type
)
492 switch (type_get_type(type
))
503 static struct expression_type
resolve_expression(const struct expr_loc
*expr_loc
,
504 const type_t
*cont_type
,
507 struct expression_type result
;
508 result
.is_variable
= FALSE
;
509 result
.is_temporary
= FALSE
;
518 result
.is_variable
= FALSE
;
519 result
.is_temporary
= FALSE
;
520 result
.type
= type_new_int(TYPE_BASIC_INT
, 0);
523 result
.is_variable
= FALSE
;
524 result
.is_temporary
= TRUE
;
525 result
.type
= type_new_pointer(RPC_FC_UP
, type_new_int(TYPE_BASIC_CHAR
, 0), NULL
);
528 result
.is_variable
= FALSE
;
529 result
.is_temporary
= TRUE
;
530 result
.type
= type_new_pointer(RPC_FC_UP
, type_new_int(TYPE_BASIC_WCHAR
, 0), NULL
);
533 result
.is_variable
= FALSE
;
534 result
.is_temporary
= TRUE
;
535 result
.type
= type_new_int(TYPE_BASIC_CHAR
, 0);
538 result
.is_variable
= FALSE
;
539 result
.is_temporary
= TRUE
;
540 result
.type
= type_new_basic(TYPE_BASIC_DOUBLE
);
542 case EXPR_IDENTIFIER
:
544 int found_in_cont_type
;
545 result
.is_variable
= TRUE
;
546 result
.is_temporary
= FALSE
;
547 result
.type
= find_identifier(e
->u
.sval
, cont_type
, &found_in_cont_type
);
550 error_loc_info(&expr_loc
->v
->loc_info
, "identifier %s cannot be resolved in expression%s%s\n",
551 e
->u
.sval
, expr_loc
->attr
? " for attribute " : "",
552 expr_loc
->attr
? expr_loc
->attr
: "");
557 result
= resolve_expression(expr_loc
, cont_type
, e
->ref
);
558 check_scalar_type(expr_loc
, cont_type
, result
.type
);
559 result
.is_variable
= FALSE
;
560 result
.is_temporary
= FALSE
;
561 result
.type
= type_new_int(TYPE_BASIC_INT
, 0);
564 result
= resolve_expression(expr_loc
, cont_type
, e
->ref
);
565 check_integer_type(expr_loc
, cont_type
, result
.type
);
566 result
.is_variable
= FALSE
;
570 result
= resolve_expression(expr_loc
, cont_type
, e
->ref
);
571 check_arithmetic_type(expr_loc
, cont_type
, result
.type
);
572 result
.is_variable
= FALSE
;
575 result
= resolve_expression(expr_loc
, cont_type
, e
->ref
);
576 if (!result
.is_variable
)
577 error_loc_info(&expr_loc
->v
->loc_info
, "address-of operator applied to non-variable type in expression%s%s\n",
578 expr_loc
->attr
? " for attribute " : "",
579 expr_loc
->attr
? expr_loc
->attr
: "");
580 result
.is_variable
= FALSE
;
581 result
.is_temporary
= TRUE
;
582 result
.type
= type_new_pointer(RPC_FC_UP
, result
.type
, NULL
);
585 result
= resolve_expression(expr_loc
, cont_type
, e
->ref
);
586 if (result
.type
&& is_ptr(result
.type
))
587 result
.type
= type_pointer_get_ref(result
.type
);
588 else if(result
.type
&& is_array(result
.type
)
589 && type_array_is_decl_as_ptr(result
.type
))
590 result
.type
= type_array_get_element(result
.type
);
592 error_loc_info(&expr_loc
->v
->loc_info
, "dereference operator applied to non-pointer type in expression%s%s\n",
593 expr_loc
->attr
? " for attribute " : "",
594 expr_loc
->attr
? expr_loc
->attr
: "");
597 result
= resolve_expression(expr_loc
, cont_type
, e
->ref
);
598 result
.type
= e
->u
.tref
;
601 result
.is_variable
= FALSE
;
602 result
.is_temporary
= FALSE
;
603 result
.type
= type_new_int(TYPE_BASIC_INT
, 0);
616 struct expression_type result_right
;
617 result
= resolve_expression(expr_loc
, cont_type
, e
->ref
);
618 result
.is_variable
= FALSE
;
619 result_right
= resolve_expression(expr_loc
, cont_type
, e
->u
.ext
);
620 /* FIXME: these checks aren't strict enough for some of the operators */
621 check_scalar_type(expr_loc
, cont_type
, result
.type
);
622 check_scalar_type(expr_loc
, cont_type
, result_right
.type
);
628 case EXPR_INEQUALITY
:
634 struct expression_type result_left
, result_right
;
635 result_left
= resolve_expression(expr_loc
, cont_type
, e
->ref
);
636 result_right
= resolve_expression(expr_loc
, cont_type
, e
->u
.ext
);
637 check_scalar_type(expr_loc
, cont_type
, result_left
.type
);
638 check_scalar_type(expr_loc
, cont_type
, result_right
.type
);
639 result
.is_variable
= FALSE
;
640 result
.is_temporary
= FALSE
;
641 result
.type
= type_new_int(TYPE_BASIC_INT
, 0);
645 result
= resolve_expression(expr_loc
, cont_type
, e
->ref
);
646 if (result
.type
&& is_valid_member_operand(result
.type
))
647 result
= resolve_expression(expr_loc
, result
.type
, e
->u
.ext
);
649 error_loc_info(&expr_loc
->v
->loc_info
, "'.' or '->' operator applied to a type that isn't a structure, union or enumeration in expression%s%s\n",
650 expr_loc
->attr
? " for attribute " : "",
651 expr_loc
->attr
? expr_loc
->attr
: "");
655 struct expression_type result_first
, result_second
, result_third
;
656 result_first
= resolve_expression(expr_loc
, cont_type
, e
->ref
);
657 check_scalar_type(expr_loc
, cont_type
, result_first
.type
);
658 result_second
= resolve_expression(expr_loc
, cont_type
, e
->u
.ext
);
659 result_third
= resolve_expression(expr_loc
, cont_type
, e
->ext2
);
660 /* FIXME: determine the correct return type */
661 result
= result_second
;
662 result
.is_variable
= FALSE
;
666 result
= resolve_expression(expr_loc
, cont_type
, e
->ref
);
667 if (result
.type
&& is_array(result
.type
))
669 struct expression_type index_result
;
670 result
.type
= type_array_get_element(result
.type
);
671 index_result
= resolve_expression(expr_loc
, cont_type
/* FIXME */, e
->u
.ext
);
672 if (!index_result
.type
|| !is_integer_type(index_result
.type
))
673 error_loc_info(&expr_loc
->v
->loc_info
, "array subscript not of integral type in expression%s%s\n",
674 expr_loc
->attr
? " for attribute " : "",
675 expr_loc
->attr
? expr_loc
->attr
: "");
678 error_loc_info(&expr_loc
->v
->loc_info
, "array subscript operator applied to non-array type in expression%s%s\n",
679 expr_loc
->attr
? " for attribute " : "",
680 expr_loc
->attr
? expr_loc
->attr
: "");
686 const type_t
*expr_resolve_type(const struct expr_loc
*expr_loc
, const type_t
*cont_type
, const expr_t
*expr
)
688 struct expression_type expr_type
;
689 expr_type
= resolve_expression(expr_loc
, cont_type
, expr
);
690 return expr_type
.type
;
693 void write_expr(FILE *h
, const expr_t
*e
, int brackets
,
694 int toplevel
, const char *toplevel_prefix
,
695 const type_t
*cont_type
, const char *local_var_prefix
)
702 fprintf(h
, "%u", e
->u
.lval
);
705 fprintf(h
, "0x%x", e
->u
.lval
);
708 fprintf(h
, "%#.15g", e
->u
.dval
);
716 case EXPR_IDENTIFIER
:
717 if (toplevel
&& toplevel_prefix
&& cont_type
)
719 int found_in_cont_type
;
720 find_identifier(e
->u
.sval
, cont_type
, &found_in_cont_type
);
721 if (found_in_cont_type
)
723 fprintf(h
, "%s%s", toplevel_prefix
, e
->u
.sval
);
727 fprintf(h
, "%s%s", local_var_prefix
, e
->u
.sval
);
730 fprintf(h
, "\"%s\"", e
->u
.sval
);
733 fprintf(h
, "L\"%s\"", e
->u
.sval
);
736 fprintf(h
, "'%s'", e
->u
.sval
);
740 write_expr(h
, e
->ref
, 1, toplevel
, toplevel_prefix
, cont_type
, local_var_prefix
);
744 write_expr(h
, e
->ref
, 1, toplevel
, toplevel_prefix
, cont_type
, local_var_prefix
);
748 write_expr(h
, e
->ref
, 1, toplevel
, toplevel_prefix
, cont_type
, local_var_prefix
);
752 write_expr(h
, e
->ref
, 1, toplevel
, toplevel_prefix
, cont_type
, local_var_prefix
);
756 write_expr(h
, e
->ref
, 1, toplevel
, toplevel_prefix
, cont_type
, local_var_prefix
);
760 write_expr(h
, e
->ref
, 1, toplevel
, toplevel_prefix
, cont_type
, local_var_prefix
);
764 write_type_decl(h
, e
->u
.tref
, NULL
);
766 write_expr(h
, e
->ref
, 1, toplevel
, toplevel_prefix
, cont_type
, local_var_prefix
);
769 fprintf(h
, "sizeof(");
770 write_type_decl(h
, e
->u
.tref
, NULL
);
786 case EXPR_INEQUALITY
:
791 if (brackets
) fprintf(h
, "(");
792 write_expr(h
, e
->ref
, 1, toplevel
, toplevel_prefix
, cont_type
, local_var_prefix
);
795 case EXPR_SHL
: fprintf(h
, " << "); break;
796 case EXPR_SHR
: fprintf(h
, " >> "); break;
797 case EXPR_MOD
: fprintf(h
, " %% "); break;
798 case EXPR_MUL
: fprintf(h
, " * "); break;
799 case EXPR_DIV
: fprintf(h
, " / "); break;
800 case EXPR_ADD
: fprintf(h
, " + "); break;
801 case EXPR_SUB
: fprintf(h
, " - "); break;
802 case EXPR_AND
: fprintf(h
, " & "); break;
803 case EXPR_OR
: fprintf(h
, " | "); break;
804 case EXPR_LOGOR
: fprintf(h
, " || "); break;
805 case EXPR_LOGAND
: fprintf(h
, " && "); break;
806 case EXPR_XOR
: fprintf(h
, " ^ "); break;
807 case EXPR_EQUALITY
: fprintf(h
, " == "); break;
808 case EXPR_INEQUALITY
: fprintf(h
, " != "); break;
809 case EXPR_GTR
: fprintf(h
, " > "); break;
810 case EXPR_LESS
: fprintf(h
, " < "); break;
811 case EXPR_GTREQL
: fprintf(h
, " >= "); break;
812 case EXPR_LESSEQL
: fprintf(h
, " <= "); break;
815 write_expr(h
, e
->u
.ext
, 1, toplevel
, toplevel_prefix
, cont_type
, local_var_prefix
);
816 if (brackets
) fprintf(h
, ")");
819 if (brackets
) fprintf(h
, "(");
820 if (e
->ref
->type
== EXPR_PPTR
)
822 write_expr(h
, e
->ref
->ref
, 1, toplevel
, toplevel_prefix
, cont_type
, local_var_prefix
);
827 write_expr(h
, e
->ref
, 1, toplevel
, toplevel_prefix
, cont_type
, local_var_prefix
);
830 write_expr(h
, e
->u
.ext
, 1, 0, toplevel_prefix
, cont_type
, "");
831 if (brackets
) fprintf(h
, ")");
834 if (brackets
) fprintf(h
, "(");
835 write_expr(h
, e
->ref
, 1, toplevel
, toplevel_prefix
, cont_type
, local_var_prefix
);
837 write_expr(h
, e
->u
.ext
, 1, toplevel
, toplevel_prefix
, cont_type
, local_var_prefix
);
839 write_expr(h
, e
->ext2
, 1, toplevel
, toplevel_prefix
, cont_type
, local_var_prefix
);
840 if (brackets
) fprintf(h
, ")");
843 if (brackets
) fprintf(h
, "(");
844 write_expr(h
, e
->ref
, 1, toplevel
, toplevel_prefix
, cont_type
, local_var_prefix
);
846 write_expr(h
, e
->u
.ext
, 1, 1, toplevel_prefix
, cont_type
, local_var_prefix
);
848 if (brackets
) fprintf(h
, ")");
853 /* This is actually fairly involved to implement precisely, due to the
854 effects attributes may have and things like that. Right now this is
855 only used for optimization, so just check for a very small set of
856 criteria that guarantee the types are equivalent; assume every thing
857 else is different. */
858 static int compare_type(const type_t
*a
, const type_t
*b
)
863 && strcmp(a
->name
, b
->name
) == 0))
865 /* Ordering doesn't need to be implemented yet. */
869 int compare_expr(const expr_t
*a
, const expr_t
*b
)
873 if (a
->type
!= b
->type
)
874 return a
->type
- b
->type
;
881 return a
->u
.lval
- b
->u
.lval
;
883 return a
->u
.dval
- b
->u
.dval
;
884 case EXPR_IDENTIFIER
:
888 return strcmp(a
->u
.sval
, b
->u
.sval
);
890 ret
= compare_expr(a
->ref
, b
->ref
);
893 ret
= compare_expr(a
->u
.ext
, b
->u
.ext
);
896 return compare_expr(a
->ext2
, b
->ext2
);
912 case EXPR_INEQUALITY
:
917 ret
= compare_expr(a
->ref
, b
->ref
);
920 return compare_expr(a
->u
.ext
, b
->u
.ext
);
922 ret
= compare_type(a
->u
.tref
, b
->u
.tref
);
932 return compare_expr(a
->ref
, b
->ref
);
934 return compare_type(a
->u
.tref
, b
->u
.tref
);