Searched refs:EXPR_VALUE (Results 1 – 14 of 14) sorted by relevance
/third_party/ltp/tools/sparse/sparse-src/ |
D | expand.c | 64 expr->type = EXPR_VALUE; in expand_symbol_expression() 109 expr->type = EXPR_VALUE; in cast_value() 154 expr->type = EXPR_VALUE; in cast_value() 198 if (right->type != EXPR_VALUE) in simplify_int_binop() 205 if (left->type != EXPR_VALUE) in simplify_int_binop() 294 expr->type = EXPR_VALUE; in simplify_int_binop() 313 if (left->type != EXPR_VALUE || right->type != EXPR_VALUE) in simplify_cmp_binop() 334 expr->type = EXPR_VALUE; in simplify_cmp_binop() 406 expr->type = EXPR_VALUE; in simplify_float_cmp() 432 if (left->type == EXPR_VALUE) { in expand_logical() [all …]
|
D | builtin.c | 164 if (arg->type != EXPR_VALUE) in expand_warning() 170 expr->type = EXPR_VALUE; in expand_warning() 179 expr->type = EXPR_VALUE; in expand_constant_p() 188 expr->type = EXPR_VALUE; in expand_safe_p() 238 expr->type = EXPR_VALUE; in expand_bswap() 270 expr->type = EXPR_VALUE; \ 317 expr->type = EXPR_VALUE; in expand_isdigit() 540 if (!arg->right || arg->op != '+' || arg->right->type != EXPR_VALUE) in expand_object_size() 581 expr->type = EXPR_VALUE; in expand_object_size()
|
D | expression.h | 37 EXPR_VALUE = 1, enumerator 311 expr->type = EXPR_VALUE; in alloc_const_expression()
|
D | show-parse.c | 556 if (expr->type == EXPR_VALUE) { in show_switch_statement() 559 if (to->type == EXPR_VALUE) { in show_switch_statement() 633 if (cond->type == EXPR_VALUE) { in show_statement() 675 if (pre_condition->type == EXPR_VALUE) { in show_statement() 686 if (!post_condition || post_condition->type != EXPR_VALUE || post_condition->value) { in show_statement() 696 } else if (post_condition->type == EXPR_VALUE) { in show_statement() 1167 case EXPR_VALUE: in show_expression()
|
D | compile-i386.c | 919 assert(expr->type == EXPR_VALUE); in emit_scalar() 967 if (expr->type == EXPR_VALUE) { in emit_initializer() 1014 if ((entry->type == EXPR_POS) || (entry->type == EXPR_VALUE)) { in sort_array() 1042 if ((entry->type == EXPR_POS) || (entry->type == EXPR_VALUE)) in sort_array() 1068 if (entry->type == EXPR_VALUE) { in emit_array() 1738 assert (expr->type == EXPR_VALUE); in emit_switch_statement() 1927 if (!post_condition || post_condition->type != EXPR_VALUE || post_condition->value) { in emit_loop() 1932 if (pre_condition->type == EXPR_VALUE) { in emit_loop() 1963 } else if (post_condition->type == EXPR_VALUE) { in emit_loop() 2359 case EXPR_VALUE: in x86_expression()
|
D | expression.c | 351 expr->type = EXPR_VALUE; in get_number_value() 383 expr->type = EXPR_VALUE; in get_number_value() 428 expr = alloc_expression(token->pos, EXPR_VALUE); in primary_expression() 436 expr = alloc_expression(token->pos, EXPR_VALUE); in primary_expression() 470 expr = alloc_expression(token->pos, EXPR_VALUE); in primary_expression()
|
D | evaluate.c | 418 if (v->type != EXPR_VALUE) in restricted_value() 600 if (index->type == EXPR_VALUE) { in evaluate_ptr_add() 601 struct expression *val = alloc_expression(expr->pos, EXPR_VALUE); in evaluate_ptr_add() 621 struct expression *val = alloc_expression(expr->pos, EXPR_VALUE); in evaluate_ptr_add() 842 struct expression *val = alloc_expression(expr->pos, EXPR_VALUE); in evaluate_ptr_sub() 1073 expr->type = EXPR_VALUE; in evaluate_compare() 2046 add->right = alloc_expression(expr->pos, EXPR_VALUE); in evaluate_offset() 2251 base = alloc_expression(expr->pos, EXPR_VALUE); in evaluate_sizeof() 2271 expr->type = EXPR_VALUE; in evaluate_sizeof() 2305 expr->type = EXPR_VALUE; in evaluate_ptrsizeof() [all …]
|
D | ast-inspect.c | 152 [EXPR_VALUE] = "EXPR_VALUE", in expression_type_name()
|
D | linearize.c | 131 case EXPR_VALUE: in show_pseudo() 360 case EXPR_VALUE: in show_instruction() 917 if (addr->right->type == EXPR_VALUE) { in linearize_simple_address() 1787 case EXPR_VALUE: in linearize_cond_branch() 1883 case EXPR_VALUE: in linearize_expression() 2259 } else if (case_stmt->case_expression->type != EXPR_VALUE) { in linearize_switch() 2266 if (case_to && case_to->type == EXPR_VALUE) in linearize_switch()
|
D | inline.c | 98 case EXPR_VALUE: in copy_expression()
|
D | dissect.c | 343 case EXPR_VALUE: in do_expression()
|
D | parse.c | 898 if (expr->type != EXPR_VALUE) in cast_enum_list() 944 expr = alloc_expression(token->pos, EXPR_VALUE); in parse_enum_declaration() 1169 if (expr->type != EXPR_VALUE) in attribute_address_space() 2080 if (cond && !const_expression_value(cond) && cond->type == EXPR_VALUE) { in parse_static_assert()
|
D | symbol.c | 302 if (array_size->type != EXPR_VALUE) { in examine_array_type()
|
D | sparse-llvm.c | 1199 case EXPR_VALUE: in output_data()
|