1 /* Utility routines for data type conversion for GCC.
2 Copyright (C) 1987-2023 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
21 /* These routines are somewhat language-independent utility function
22 intended to be called by the language-specific convert () functions. */
26 #include "coretypes.h"
29 #include "diagnostic-core.h"
30 #include "fold-const.h"
31 #include "stor-layout.h"
33 #include "langhooks.h"
36 #include "stringpool.h"
41 #define maybe_fold_build1_loc(FOLD_P, LOC, CODE, TYPE, EXPR) \
42 ((FOLD_P) ? fold_build1_loc (LOC, CODE, TYPE, EXPR) \
43 : build1_loc (LOC, CODE, TYPE, EXPR))
44 #define maybe_fold_build2_loc(FOLD_P, LOC, CODE, TYPE, EXPR1, EXPR2) \
45 ((FOLD_P) ? fold_build2_loc (LOC, CODE, TYPE, EXPR1, EXPR2) \
46 : build2_loc (LOC, CODE, TYPE, EXPR1, EXPR2))
48 /* Convert EXPR to some pointer or reference type TYPE.
49 EXPR must be pointer, reference, integer, enumeral, or literal zero;
50 in other cases error is called. If FOLD_P is true, try to fold the
54 convert_to_pointer_1 (tree type
, tree expr
, bool fold_p
)
56 location_t loc
= EXPR_LOCATION (expr
);
57 if (TREE_TYPE (expr
) == type
)
60 switch (TREE_CODE (TREE_TYPE (expr
)))
65 /* If the pointers point to different address spaces, conversion needs
66 to be done via a ADDR_SPACE_CONVERT_EXPR instead of a NOP_EXPR. */
67 addr_space_t to_as
= TYPE_ADDR_SPACE (TREE_TYPE (type
));
68 addr_space_t from_as
= TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (expr
)));
71 return maybe_fold_build1_loc (fold_p
, loc
, NOP_EXPR
, type
, expr
);
73 return maybe_fold_build1_loc (fold_p
, loc
, ADDR_SPACE_CONVERT_EXPR
,
81 /* If the input precision differs from the target pointer type
82 precision, first convert the input expression to an integer type of
83 the target precision. Some targets, e.g. VMS, need several pointer
84 sizes to coexist so the latter isn't necessarily POINTER_SIZE. */
85 unsigned int pprec
= TYPE_PRECISION (type
);
86 unsigned int eprec
= TYPE_PRECISION (TREE_TYPE (expr
));
90 = maybe_fold_build1_loc (fold_p
, loc
, NOP_EXPR
,
91 lang_hooks
.types
.type_for_size (pprec
, 0),
94 return maybe_fold_build1_loc (fold_p
, loc
, CONVERT_EXPR
, type
, expr
);
97 error ("cannot convert to a pointer type");
98 return convert_to_pointer_1 (type
, integer_zero_node
, fold_p
);
102 /* Subroutine of the various convert_to_*_maybe_fold routines.
104 If a location wrapper has been folded to a constant (presumably of
105 a different type), re-wrap the new constant with a location wrapper. */
108 preserve_any_location_wrapper (tree result
, tree orig_expr
)
110 if (CONSTANT_CLASS_P (result
) && location_wrapper_p (orig_expr
))
112 if (result
== TREE_OPERAND (orig_expr
, 0))
115 return maybe_wrap_with_location (result
, EXPR_LOCATION (orig_expr
));
121 /* A wrapper around convert_to_pointer_1 that always folds the
125 convert_to_pointer (tree type
, tree expr
)
127 return convert_to_pointer_1 (type
, expr
, true);
130 /* A wrapper around convert_to_pointer_1 that only folds the
131 expression if DOFOLD, or if it is CONSTANT_CLASS_OR_WRAPPER_P. */
134 convert_to_pointer_maybe_fold (tree type
, tree expr
, bool dofold
)
137 = convert_to_pointer_1 (type
, expr
,
138 dofold
|| CONSTANT_CLASS_OR_WRAPPER_P (expr
));
139 return preserve_any_location_wrapper (result
, expr
);
142 /* Convert EXPR to some floating-point type TYPE.
144 EXPR must be float, fixed-point, integer, or enumeral;
145 in other cases error is called. If FOLD_P is true, try to fold
149 convert_to_real_1 (tree type
, tree expr
, bool fold_p
)
151 enum built_in_function fcode
= builtin_mathfn_code (expr
);
152 tree itype
= TREE_TYPE (expr
);
153 location_t loc
= EXPR_LOCATION (expr
);
155 if (TREE_CODE (expr
) == COMPOUND_EXPR
)
157 tree t
= convert_to_real_1 (type
, TREE_OPERAND (expr
, 1), fold_p
);
158 if (t
== TREE_OPERAND (expr
, 1))
160 return build2_loc (EXPR_LOCATION (expr
), COMPOUND_EXPR
, TREE_TYPE (t
),
161 TREE_OPERAND (expr
, 0), t
);
164 /* Disable until we figure out how to decide whether the functions are
165 present in runtime. */
166 /* Convert (float)sqrt((double)x) where x is float into sqrtf(x) */
168 && (TYPE_MODE (type
) == TYPE_MODE (double_type_node
)
169 || TYPE_MODE (type
) == TYPE_MODE (float_type_node
)))
173 #define CASE_MATHFN(FN) case BUILT_IN_##FN: case BUILT_IN_##FN##L:
188 /* The above functions may set errno differently with float
189 input or output so this transformation is not safe with
211 /* The above functions are not safe to do this conversion. */
212 if (!flag_unsafe_math_optimizations
)
219 if (call_expr_nargs (expr
) != 1
220 || !SCALAR_FLOAT_TYPE_P (TREE_TYPE (CALL_EXPR_ARG (expr
, 0))))
223 tree arg0
= strip_float_extensions (CALL_EXPR_ARG (expr
, 0));
226 /* We have (outertype)sqrt((innertype)x). Choose the wider mode
227 from the both as the safe type for operation. */
228 if (TYPE_PRECISION (TREE_TYPE (arg0
)) > TYPE_PRECISION (type
))
229 newtype
= TREE_TYPE (arg0
);
231 /* We consider to convert
233 (T1) sqrtT2 ((T2) exprT3)
235 (T1) sqrtT4 ((T4) exprT3)
237 , where T1 is TYPE, T2 is ITYPE, T3 is TREE_TYPE (ARG0),
238 and T4 is NEWTYPE. All those types are of floating-point types.
239 T4 (NEWTYPE) should be narrower than T2 (ITYPE). This conversion
240 is safe only if P1 >= P2*2+2, where P1 and P2 are precisions of
241 T2 and T4. See the following URL for a reference:
242 http://stackoverflow.com/questions/9235456/determining-
243 floating-point-square-root
245 if ((fcode
== BUILT_IN_SQRT
|| fcode
== BUILT_IN_SQRTL
)
246 && !flag_unsafe_math_optimizations
)
248 /* The following conversion is unsafe even the precision condition
251 (float) sqrtl ((long double) double_val) -> (float) sqrt (double_val)
253 if (TYPE_MODE (type
) != TYPE_MODE (newtype
))
256 int p1
= REAL_MODE_FORMAT (TYPE_MODE (itype
))->p
;
257 int p2
= REAL_MODE_FORMAT (TYPE_MODE (newtype
))->p
;
262 /* Be careful about integer to fp conversions.
263 These may overflow still. */
264 if (FLOAT_TYPE_P (TREE_TYPE (arg0
))
265 && TYPE_PRECISION (newtype
) < TYPE_PRECISION (itype
)
266 && (TYPE_MODE (newtype
) == TYPE_MODE (double_type_node
)
267 || TYPE_MODE (newtype
) == TYPE_MODE (float_type_node
)))
269 tree fn
= mathfn_built_in (newtype
, fcode
);
272 tree arg
= convert_to_real_1 (newtype
, arg0
, fold_p
);
273 expr
= build_call_expr (fn
, 1, arg
);
284 /* Propagate the cast into the operation. */
285 if (itype
!= type
&& FLOAT_TYPE_P (type
))
286 switch (TREE_CODE (expr
))
288 /* Convert (float)-x into -(float)x. This is safe for
289 round-to-nearest rounding mode when the inner type is float. */
292 if (!flag_rounding_math
293 && FLOAT_TYPE_P (itype
)
294 && TYPE_PRECISION (type
) < TYPE_PRECISION (itype
))
296 tree arg
= convert_to_real_1 (type
, TREE_OPERAND (expr
, 0),
298 return build1 (TREE_CODE (expr
), type
, arg
);
305 switch (TREE_CODE (TREE_TYPE (expr
)))
308 /* Ignore the conversion if we don't need to store intermediate
309 results and neither type is a decimal float. */
310 return build1_loc (loc
,
312 || DECIMAL_FLOAT_TYPE_P (type
)
313 || DECIMAL_FLOAT_TYPE_P (itype
))
314 ? CONVERT_EXPR
: NOP_EXPR
, type
, expr
);
319 return build1 (FLOAT_EXPR
, type
, expr
);
321 case FIXED_POINT_TYPE
:
322 return build1 (FIXED_CONVERT_EXPR
, type
, expr
);
325 return convert (type
,
326 maybe_fold_build1_loc (fold_p
, loc
, REALPART_EXPR
,
327 TREE_TYPE (TREE_TYPE (expr
)),
332 error ("pointer value used where a floating-point was expected");
333 return convert_to_real_1 (type
, integer_zero_node
, fold_p
);
336 error ("aggregate value used where a floating-point was expected");
337 return convert_to_real_1 (type
, integer_zero_node
, fold_p
);
341 /* A wrapper around convert_to_real_1 that always folds the
345 convert_to_real (tree type
, tree expr
)
347 return convert_to_real_1 (type
, expr
, true);
350 /* A wrapper around convert_to_real_1 that only folds the
351 expression if DOFOLD, or if it is CONSTANT_CLASS_OR_WRAPPER_P. */
354 convert_to_real_maybe_fold (tree type
, tree expr
, bool dofold
)
357 = convert_to_real_1 (type
, expr
,
358 dofold
|| CONSTANT_CLASS_OR_WRAPPER_P (expr
));
359 return preserve_any_location_wrapper (result
, expr
);
362 /* Try to narrow EX_FORM ARG0 ARG1 in narrowed arg types producing a
366 do_narrow (location_t loc
,
367 enum tree_code ex_form
, tree type
, tree arg0
, tree arg1
,
368 tree expr
, unsigned inprec
, unsigned outprec
, bool dofold
)
370 /* Do the arithmetic in type TYPEX,
371 then convert result to TYPE. */
374 /* Can't do arithmetic in enumeral types
375 so use an integer type that will hold the values. */
376 if (TREE_CODE (typex
) == ENUMERAL_TYPE
)
377 typex
= lang_hooks
.types
.type_for_size (TYPE_PRECISION (typex
),
378 TYPE_UNSIGNED (typex
));
380 /* The type demotion below might cause doing unsigned arithmetic
381 instead of signed, and thus hide overflow bugs. */
382 if ((ex_form
== PLUS_EXPR
|| ex_form
== MINUS_EXPR
)
383 && !TYPE_UNSIGNED (typex
)
384 && sanitize_flags_p (SANITIZE_SI_OVERFLOW
))
387 /* But now perhaps TYPEX is as wide as INPREC.
388 In that case, do nothing special here.
389 (Otherwise would recurse infinitely in convert. */
390 if (TYPE_PRECISION (typex
) != inprec
)
392 /* Don't do unsigned arithmetic where signed was wanted,
394 Exception: if both of the original operands were
395 unsigned then we can safely do the work as unsigned.
396 Exception: shift operations take their type solely
397 from the first argument.
398 Exception: the LSHIFT_EXPR case above requires that
399 we perform this operation unsigned lest we produce
400 signed-overflow undefinedness.
401 And we may need to do it as unsigned
402 if we truncate to the original size. */
403 if (TYPE_UNSIGNED (TREE_TYPE (expr
))
404 || (TYPE_UNSIGNED (TREE_TYPE (arg0
))
405 && (TYPE_UNSIGNED (TREE_TYPE (arg1
))
406 || ex_form
== LSHIFT_EXPR
407 || ex_form
== RSHIFT_EXPR
408 || ex_form
== LROTATE_EXPR
409 || ex_form
== RROTATE_EXPR
))
410 || ex_form
== LSHIFT_EXPR
411 /* If we have !flag_wrapv, and either ARG0 or
412 ARG1 is of a signed type, we have to do
413 PLUS_EXPR, MINUS_EXPR or MULT_EXPR in an unsigned
414 type in case the operation in outprec precision
415 could overflow. Otherwise, we would introduce
416 signed-overflow undefinedness. */
417 || ((!(INTEGRAL_TYPE_P (TREE_TYPE (arg0
))
418 && TYPE_OVERFLOW_WRAPS (TREE_TYPE (arg0
)))
419 || !(INTEGRAL_TYPE_P (TREE_TYPE (arg1
))
420 && TYPE_OVERFLOW_WRAPS (TREE_TYPE (arg1
))))
421 && ((TYPE_PRECISION (TREE_TYPE (arg0
)) * 2u
423 || (TYPE_PRECISION (TREE_TYPE (arg1
)) * 2u
425 && (ex_form
== PLUS_EXPR
426 || ex_form
== MINUS_EXPR
427 || ex_form
== MULT_EXPR
)))
429 if (!TYPE_UNSIGNED (typex
))
430 typex
= unsigned_type_for (typex
);
434 if (TYPE_UNSIGNED (typex
))
435 typex
= signed_type_for (typex
);
437 /* We should do away with all this once we have a proper
438 type promotion/demotion pass, see PR45397. */
439 expr
= maybe_fold_build2_loc (dofold
, loc
, ex_form
, typex
,
440 convert (typex
, arg0
),
441 convert (typex
, arg1
));
442 return convert (type
, expr
);
448 /* Convert EXPR to some integer (or enum) type TYPE.
450 EXPR must be pointer, integer, discrete (enum, char, or bool), float,
451 fixed-point or vector; in other cases error is called.
453 If DOFOLD is TRUE, we try to simplify newly-created patterns by folding.
455 The result of this is always supposed to be a newly created tree node
456 not in use in any existing structure. */
459 convert_to_integer_1 (tree type
, tree expr
, bool dofold
)
461 enum tree_code ex_form
= TREE_CODE (expr
);
462 tree intype
= TREE_TYPE (expr
);
463 unsigned int inprec
= element_precision (intype
);
464 unsigned int outprec
= element_precision (type
);
465 location_t loc
= EXPR_LOCATION (expr
);
467 /* An INTEGER_TYPE cannot be incomplete, but an ENUMERAL_TYPE can
468 be. Consider `enum E = { a, b = (enum E) 3 };'. */
469 if (!COMPLETE_TYPE_P (type
))
471 error ("conversion to incomplete type");
472 return error_mark_node
;
475 if (ex_form
== COMPOUND_EXPR
)
477 tree t
= convert_to_integer_1 (type
, TREE_OPERAND (expr
, 1), dofold
);
478 if (t
== TREE_OPERAND (expr
, 1))
480 return build2_loc (EXPR_LOCATION (expr
), COMPOUND_EXPR
, TREE_TYPE (t
),
481 TREE_OPERAND (expr
, 0), t
);
484 /* Convert e.g. (long)round(d) -> lround(d). */
485 /* If we're converting to char, we may encounter differing behavior
486 between converting from double->char vs double->long->char.
487 We're in "undefined" territory but we prefer to be conservative,
488 so only proceed in "unsafe" math mode. */
490 && (flag_unsafe_math_optimizations
491 || (long_integer_type_node
492 && outprec
>= TYPE_PRECISION (long_integer_type_node
))))
494 tree s_expr
= strip_float_extensions (expr
);
495 tree s_intype
= TREE_TYPE (s_expr
);
496 const enum built_in_function fcode
= builtin_mathfn_code (s_expr
);
501 CASE_FLT_FN (BUILT_IN_CEIL
):
502 CASE_FLT_FN_FLOATN_NX (BUILT_IN_CEIL
):
503 /* Only convert in ISO C99 mode. */
504 if (!targetm
.libc_has_function (function_c99_misc
, intype
))
506 if (outprec
< TYPE_PRECISION (integer_type_node
)
507 || (outprec
== TYPE_PRECISION (integer_type_node
)
508 && !TYPE_UNSIGNED (type
)))
509 fn
= mathfn_built_in (s_intype
, BUILT_IN_ICEIL
);
510 else if (outprec
== TYPE_PRECISION (long_integer_type_node
)
511 && !TYPE_UNSIGNED (type
))
512 fn
= mathfn_built_in (s_intype
, BUILT_IN_LCEIL
);
513 else if (outprec
== TYPE_PRECISION (long_long_integer_type_node
)
514 && !TYPE_UNSIGNED (type
))
515 fn
= mathfn_built_in (s_intype
, BUILT_IN_LLCEIL
);
518 CASE_FLT_FN (BUILT_IN_FLOOR
):
519 CASE_FLT_FN_FLOATN_NX (BUILT_IN_FLOOR
):
520 /* Only convert in ISO C99 mode. */
521 if (!targetm
.libc_has_function (function_c99_misc
, intype
))
523 if (outprec
< TYPE_PRECISION (integer_type_node
)
524 || (outprec
== TYPE_PRECISION (integer_type_node
)
525 && !TYPE_UNSIGNED (type
)))
526 fn
= mathfn_built_in (s_intype
, BUILT_IN_IFLOOR
);
527 else if (outprec
== TYPE_PRECISION (long_integer_type_node
)
528 && !TYPE_UNSIGNED (type
))
529 fn
= mathfn_built_in (s_intype
, BUILT_IN_LFLOOR
);
530 else if (outprec
== TYPE_PRECISION (long_long_integer_type_node
)
531 && !TYPE_UNSIGNED (type
))
532 fn
= mathfn_built_in (s_intype
, BUILT_IN_LLFLOOR
);
535 CASE_FLT_FN (BUILT_IN_ROUND
):
536 CASE_FLT_FN_FLOATN_NX (BUILT_IN_ROUND
):
537 /* Only convert in ISO C99 mode and with -fno-math-errno. */
538 if (!targetm
.libc_has_function (function_c99_misc
, intype
)
541 if (outprec
< TYPE_PRECISION (integer_type_node
)
542 || (outprec
== TYPE_PRECISION (integer_type_node
)
543 && !TYPE_UNSIGNED (type
)))
544 fn
= mathfn_built_in (s_intype
, BUILT_IN_IROUND
);
545 else if (outprec
== TYPE_PRECISION (long_integer_type_node
)
546 && !TYPE_UNSIGNED (type
))
547 fn
= mathfn_built_in (s_intype
, BUILT_IN_LROUND
);
548 else if (outprec
== TYPE_PRECISION (long_long_integer_type_node
)
549 && !TYPE_UNSIGNED (type
))
550 fn
= mathfn_built_in (s_intype
, BUILT_IN_LLROUND
);
553 CASE_FLT_FN (BUILT_IN_NEARBYINT
):
554 CASE_FLT_FN_FLOATN_NX (BUILT_IN_NEARBYINT
):
555 /* Only convert nearbyint* if we can ignore math exceptions. */
556 if (flag_trapping_math
)
559 CASE_FLT_FN (BUILT_IN_RINT
):
560 CASE_FLT_FN_FLOATN_NX (BUILT_IN_RINT
):
561 /* Only convert in ISO C99 mode and with -fno-math-errno. */
562 if (!targetm
.libc_has_function (function_c99_misc
, intype
)
565 if (outprec
< TYPE_PRECISION (integer_type_node
)
566 || (outprec
== TYPE_PRECISION (integer_type_node
)
567 && !TYPE_UNSIGNED (type
)))
568 fn
= mathfn_built_in (s_intype
, BUILT_IN_IRINT
);
569 else if (outprec
== TYPE_PRECISION (long_integer_type_node
)
570 && !TYPE_UNSIGNED (type
))
571 fn
= mathfn_built_in (s_intype
, BUILT_IN_LRINT
);
572 else if (outprec
== TYPE_PRECISION (long_long_integer_type_node
)
573 && !TYPE_UNSIGNED (type
))
574 fn
= mathfn_built_in (s_intype
, BUILT_IN_LLRINT
);
577 CASE_FLT_FN (BUILT_IN_TRUNC
):
578 CASE_FLT_FN_FLOATN_NX (BUILT_IN_TRUNC
):
579 if (call_expr_nargs (s_expr
) != 1
580 || !SCALAR_FLOAT_TYPE_P (TREE_TYPE (CALL_EXPR_ARG (s_expr
, 0))))
582 return convert_to_integer_1 (type
, CALL_EXPR_ARG (s_expr
, 0),
590 && call_expr_nargs (s_expr
) == 1
591 && SCALAR_FLOAT_TYPE_P (TREE_TYPE (CALL_EXPR_ARG (s_expr
, 0))))
593 tree newexpr
= build_call_expr (fn
, 1, CALL_EXPR_ARG (s_expr
, 0));
594 return convert_to_integer_1 (type
, newexpr
, dofold
);
598 /* Convert (int)logb(d) -> ilogb(d). */
600 && flag_unsafe_math_optimizations
601 && !flag_trapping_math
&& !flag_errno_math
&& flag_finite_math_only
603 && (outprec
> TYPE_PRECISION (integer_type_node
)
604 || (outprec
== TYPE_PRECISION (integer_type_node
)
605 && !TYPE_UNSIGNED (type
))))
607 tree s_expr
= strip_float_extensions (expr
);
608 tree s_intype
= TREE_TYPE (s_expr
);
609 const enum built_in_function fcode
= builtin_mathfn_code (s_expr
);
614 CASE_FLT_FN (BUILT_IN_LOGB
):
615 fn
= mathfn_built_in (s_intype
, BUILT_IN_ILOGB
);
623 && call_expr_nargs (s_expr
) == 1
624 && SCALAR_FLOAT_TYPE_P (TREE_TYPE (CALL_EXPR_ARG (s_expr
, 0))))
626 tree newexpr
= build_call_expr (fn
, 1, CALL_EXPR_ARG (s_expr
, 0));
627 return convert_to_integer_1 (type
, newexpr
, dofold
);
631 switch (TREE_CODE (intype
))
635 if (integer_zerop (expr
)
636 && !TREE_OVERFLOW (tree_strip_any_location_wrapper (expr
)))
637 return build_int_cst (type
, 0);
639 /* Convert to an unsigned integer of the correct width first, and from
640 there widen/truncate to the required type. Some targets support the
641 coexistence of multiple valid pointer sizes, so fetch the one we need
644 return build1 (CONVERT_EXPR
, type
, expr
);
645 expr
= fold_build1 (CONVERT_EXPR
,
646 lang_hooks
.types
.type_for_size
647 (TYPE_PRECISION (intype
), 0),
649 return fold_convert (type
, expr
);
655 /* If this is a logical operation, which just returns 0 or 1, we can
656 change the type of the expression. */
658 if (TREE_CODE_CLASS (ex_form
) == tcc_comparison
)
660 expr
= copy_node (expr
);
661 TREE_TYPE (expr
) = type
;
665 /* If we are widening the type, put in an explicit conversion.
666 Similarly if we are not changing the width. After this, we know
667 we are truncating EXPR. */
669 else if (outprec
>= inprec
)
673 /* If the precision of the EXPR's type is K bits and the
674 destination mode has more bits, and the sign is changing,
675 it is not safe to use a NOP_EXPR. For example, suppose
676 that EXPR's type is a 3-bit unsigned integer type, the
677 TYPE is a 3-bit signed integer type, and the machine mode
678 for the types is 8-bit QImode. In that case, the
679 conversion necessitates an explicit sign-extension. In
680 the signed-to-unsigned case the high-order bits have to
682 if (TYPE_UNSIGNED (type
) != TYPE_UNSIGNED (TREE_TYPE (expr
))
683 && !type_has_mode_precision_p (TREE_TYPE (expr
)))
688 return maybe_fold_build1_loc (dofold
, loc
, code
, type
, expr
);
691 /* If TYPE is an enumeral type or a type with a precision less
692 than the number of bits in its mode, do the conversion to the
693 type corresponding to its mode, then do a nop conversion
695 else if (TREE_CODE (type
) == ENUMERAL_TYPE
696 || maybe_ne (outprec
, GET_MODE_PRECISION (TYPE_MODE (type
))))
699 = convert_to_integer_1 (lang_hooks
.types
.type_for_mode
700 (TYPE_MODE (type
), TYPE_UNSIGNED (type
)),
702 return maybe_fold_build1_loc (dofold
, loc
, NOP_EXPR
, type
, expr
);
705 /* Here detect when we can distribute the truncation down past some
706 arithmetic. For example, if adding two longs and converting to an
707 int, we can equally well convert both to ints and then add.
708 For the operations handled here, such truncation distribution
710 It is desirable in these cases:
711 1) when truncating down to full-word from a larger size
712 2) when truncating takes no work.
713 3) when at least one operand of the arithmetic has been extended
714 (as by C's default conversions). In this case we need two conversions
715 if we do the arithmetic as already requested, so we might as well
716 truncate both and then combine. Perhaps that way we need only one.
718 Note that in general we cannot do the arithmetic in a type
719 shorter than the desired result of conversion, even if the operands
720 are both extended from a shorter type, because they might overflow
721 if combined in that type. The exceptions to this--the times when
722 two narrow values can be combined in their narrow type even to
723 make a wider result--are handled by "shorten" in build_binary_op. */
729 /* We can pass truncation down through right shifting
730 when the shift count is a nonpositive constant. */
731 if (TREE_CODE (TREE_OPERAND (expr
, 1)) == INTEGER_CST
732 && tree_int_cst_sgn (TREE_OPERAND (expr
, 1)) <= 0)
737 /* We can pass truncation down through left shifting
738 when the shift count is a nonnegative constant and
739 the target type is unsigned. */
740 if (TREE_CODE (TREE_OPERAND (expr
, 1)) == INTEGER_CST
741 && tree_int_cst_sgn (TREE_OPERAND (expr
, 1)) >= 0
742 && TYPE_UNSIGNED (type
)
743 && TREE_CODE (TYPE_SIZE (type
)) == INTEGER_CST
)
745 /* If shift count is less than the width of the truncated type,
747 if (tree_int_cst_lt (TREE_OPERAND (expr
, 1), TYPE_SIZE (type
)))
748 /* In this case, shifting is like multiplication. */
752 /* If it is >= that width, result is zero.
753 Handling this with trunc1 would give the wrong result:
754 (int) ((long long) a << 32) is well defined (as 0)
755 but (int) a << 32 is undefined and would get a
758 tree t
= build_int_cst (type
, 0);
760 /* If the original expression had side-effects, we must
762 if (TREE_SIDE_EFFECTS (expr
))
763 return build2 (COMPOUND_EXPR
, type
, expr
, t
);
772 tree arg0
= get_unwidened (TREE_OPERAND (expr
, 0), NULL_TREE
);
773 tree arg1
= get_unwidened (TREE_OPERAND (expr
, 1), NULL_TREE
);
775 /* Don't distribute unless the output precision is at least as
776 big as the actual inputs and it has the same signedness. */
777 if (outprec
>= TYPE_PRECISION (TREE_TYPE (arg0
))
778 && outprec
>= TYPE_PRECISION (TREE_TYPE (arg1
))
779 /* If signedness of arg0 and arg1 don't match,
780 we can't necessarily find a type to compare them in. */
781 && (TYPE_UNSIGNED (TREE_TYPE (arg0
))
782 == TYPE_UNSIGNED (TREE_TYPE (arg1
)))
783 /* Do not change the sign of the division. */
784 && (TYPE_UNSIGNED (TREE_TYPE (expr
))
785 == TYPE_UNSIGNED (TREE_TYPE (arg0
)))
786 /* Either require unsigned division or a division by
787 a constant that is not -1. */
788 && (TYPE_UNSIGNED (TREE_TYPE (arg0
))
789 || (TREE_CODE (arg1
) == INTEGER_CST
790 && !integer_all_onesp (arg1
))))
792 tree tem
= do_narrow (loc
, ex_form
, type
, arg0
, arg1
,
793 expr
, inprec
, outprec
, dofold
);
804 tree arg0
= get_unwidened (TREE_OPERAND (expr
, 0), type
);
805 tree arg1
= get_unwidened (TREE_OPERAND (expr
, 1), type
);
807 /* Don't distribute unless the output precision is at least as
808 big as the actual inputs. Otherwise, the comparison of the
809 truncated values will be wrong. */
810 if (outprec
>= TYPE_PRECISION (TREE_TYPE (arg0
))
811 && outprec
>= TYPE_PRECISION (TREE_TYPE (arg1
))
812 /* If signedness of arg0 and arg1 don't match,
813 we can't necessarily find a type to compare them in. */
814 && (TYPE_UNSIGNED (TREE_TYPE (arg0
))
815 == TYPE_UNSIGNED (TREE_TYPE (arg1
))))
827 tree arg0
= get_unwidened (TREE_OPERAND (expr
, 0), type
);
828 tree arg1
= get_unwidened (TREE_OPERAND (expr
, 1), type
);
830 /* Do not try to narrow operands of pointer subtraction;
831 that will interfere with other folding. */
832 if (ex_form
== MINUS_EXPR
833 && CONVERT_EXPR_P (arg0
)
834 && CONVERT_EXPR_P (arg1
)
835 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (arg0
, 0)))
836 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (arg1
, 0))))
839 tree tem
= do_narrow (loc
, ex_form
, type
, arg0
, arg1
,
840 expr
, inprec
, outprec
, dofold
);
847 /* Using unsigned arithmetic for signed types may hide overflow
849 if (!TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (expr
, 0)))
850 && sanitize_flags_p (SANITIZE_SI_OVERFLOW
))
854 /* This is not correct for ABS_EXPR,
855 since we must test the sign before truncation. */
857 /* Do the arithmetic in type TYPEX,
858 then convert result to TYPE. */
861 /* Can't do arithmetic in enumeral types
862 so use an integer type that will hold the values. */
863 if (TREE_CODE (typex
) == ENUMERAL_TYPE
)
865 = lang_hooks
.types
.type_for_size (TYPE_PRECISION (typex
),
866 TYPE_UNSIGNED (typex
));
868 if (!TYPE_UNSIGNED (typex
))
869 typex
= unsigned_type_for (typex
);
870 return convert (type
,
871 fold_build1 (ex_form
, typex
,
873 TREE_OPERAND (expr
, 0))));
878 tree argtype
= TREE_TYPE (TREE_OPERAND (expr
, 0));
879 /* Don't introduce a "can't convert between vector values
880 of different size" error. */
881 if (TREE_CODE (argtype
) == VECTOR_TYPE
882 && maybe_ne (GET_MODE_SIZE (TYPE_MODE (argtype
)),
883 GET_MODE_SIZE (TYPE_MODE (type
))))
886 /* If truncating after truncating, might as well do all at once.
887 If truncating after extending, we may get rid of wasted work. */
888 return convert (type
, get_unwidened (TREE_OPERAND (expr
, 0), type
));
891 /* It is sometimes worthwhile to push the narrowing down through
892 the conditional and never loses. A COND_EXPR may have a throw
893 as one operand, which then has void type. Just leave void
894 operands as they are. */
896 fold_build3 (COND_EXPR
, type
, TREE_OPERAND (expr
, 0),
897 VOID_TYPE_P (TREE_TYPE (TREE_OPERAND (expr
, 1)))
898 ? TREE_OPERAND (expr
, 1)
899 : convert (type
, TREE_OPERAND (expr
, 1)),
900 VOID_TYPE_P (TREE_TYPE (TREE_OPERAND (expr
, 2)))
901 ? TREE_OPERAND (expr
, 2)
902 : convert (type
, TREE_OPERAND (expr
, 2)));
908 /* When parsing long initializers, we might end up with a lot of casts.
910 if (TREE_CODE (tree_strip_any_location_wrapper (expr
)) == INTEGER_CST
)
911 return fold_convert (type
, expr
);
912 return build1 (CONVERT_EXPR
, type
, expr
);
915 if (sanitize_flags_p (SANITIZE_FLOAT_CAST
)
916 && current_function_decl
!= NULL_TREE
)
918 expr
= save_expr (expr
);
919 tree check
= ubsan_instrument_float_cast (loc
, type
, expr
);
920 expr
= build1 (FIX_TRUNC_EXPR
, type
, expr
);
921 if (check
== NULL_TREE
)
923 return maybe_fold_build2_loc (dofold
, loc
, COMPOUND_EXPR
,
924 TREE_TYPE (expr
), check
, expr
);
927 return build1 (FIX_TRUNC_EXPR
, type
, expr
);
929 case FIXED_POINT_TYPE
:
930 return build1 (FIXED_CONVERT_EXPR
, type
, expr
);
933 expr
= maybe_fold_build1_loc (dofold
, loc
, REALPART_EXPR
,
934 TREE_TYPE (TREE_TYPE (expr
)), expr
);
935 return convert (type
, expr
);
938 if (!tree_int_cst_equal (TYPE_SIZE (type
), TYPE_SIZE (TREE_TYPE (expr
))))
940 error ("cannot convert a vector of type %qT"
941 " to type %qT which has different size",
942 TREE_TYPE (expr
), type
);
943 return error_mark_node
;
945 return build1 (VIEW_CONVERT_EXPR
, type
, expr
);
948 error ("aggregate value used where an integer was expected");
949 return convert (type
, integer_zero_node
);
953 /* Convert EXPR to some integer (or enum) type TYPE.
955 EXPR must be pointer, integer, discrete (enum, char, or bool), float,
956 fixed-point or vector; in other cases error is called.
958 The result of this is always supposed to be a newly created tree node
959 not in use in any existing structure. */
962 convert_to_integer (tree type
, tree expr
)
964 return convert_to_integer_1 (type
, expr
, true);
967 /* A wrapper around convert_to_complex_1 that only folds the
968 expression if DOFOLD, or if it is CONSTANT_CLASS_OR_WRAPPER_P. */
971 convert_to_integer_maybe_fold (tree type
, tree expr
, bool dofold
)
974 = convert_to_integer_1 (type
, expr
,
975 dofold
|| CONSTANT_CLASS_OR_WRAPPER_P (expr
));
976 return preserve_any_location_wrapper (result
, expr
);
979 /* Convert EXPR to the complex type TYPE in the usual ways. If FOLD_P is
980 true, try to fold the expression. */
983 convert_to_complex_1 (tree type
, tree expr
, bool fold_p
)
985 location_t loc
= EXPR_LOCATION (expr
);
986 tree subtype
= TREE_TYPE (type
);
988 switch (TREE_CODE (TREE_TYPE (expr
)))
991 case FIXED_POINT_TYPE
:
995 return build2 (COMPLEX_EXPR
, type
, convert (subtype
, expr
),
996 convert (subtype
, integer_zero_node
));
1000 tree elt_type
= TREE_TYPE (TREE_TYPE (expr
));
1002 if (TYPE_MAIN_VARIANT (elt_type
) == TYPE_MAIN_VARIANT (subtype
))
1004 else if (TREE_CODE (expr
) == COMPOUND_EXPR
)
1006 tree t
= convert_to_complex_1 (type
, TREE_OPERAND (expr
, 1),
1008 if (t
== TREE_OPERAND (expr
, 1))
1010 return build2_loc (EXPR_LOCATION (expr
), COMPOUND_EXPR
,
1011 TREE_TYPE (t
), TREE_OPERAND (expr
, 0), t
);
1013 else if (TREE_CODE (expr
) == COMPLEX_EXPR
)
1014 return maybe_fold_build2_loc (fold_p
, loc
, COMPLEX_EXPR
, type
,
1016 TREE_OPERAND (expr
, 0)),
1018 TREE_OPERAND (expr
, 1)));
1021 expr
= save_expr (expr
);
1022 tree realp
= maybe_fold_build1_loc (fold_p
, loc
, REALPART_EXPR
,
1023 TREE_TYPE (TREE_TYPE (expr
)),
1025 tree imagp
= maybe_fold_build1_loc (fold_p
, loc
, IMAGPART_EXPR
,
1026 TREE_TYPE (TREE_TYPE (expr
)),
1028 return maybe_fold_build2_loc (fold_p
, loc
, COMPLEX_EXPR
, type
,
1029 convert (subtype
, realp
),
1030 convert (subtype
, imagp
));
1035 case REFERENCE_TYPE
:
1036 error ("pointer value used where a complex was expected");
1037 return convert_to_complex_1 (type
, integer_zero_node
, fold_p
);
1040 error ("aggregate value used where a complex was expected");
1041 return convert_to_complex_1 (type
, integer_zero_node
, fold_p
);
1045 /* A wrapper around convert_to_complex_1 that always folds the
1049 convert_to_complex (tree type
, tree expr
)
1051 return convert_to_complex_1 (type
, expr
, true);
1054 /* A wrapper around convert_to_complex_1 that only folds the
1055 expression if DOFOLD, or if it is CONSTANT_CLASS_OR_WRAPPER_P. */
1058 convert_to_complex_maybe_fold (tree type
, tree expr
, bool dofold
)
1061 = convert_to_complex_1 (type
, expr
,
1062 dofold
|| CONSTANT_CLASS_OR_WRAPPER_P (expr
));
1063 return preserve_any_location_wrapper (result
, expr
);
1066 /* Convert EXPR to the vector type TYPE in the usual ways. */
1069 convert_to_vector (tree type
, tree expr
)
1071 switch (TREE_CODE (TREE_TYPE (expr
)))
1075 if (!tree_int_cst_equal (TYPE_SIZE (type
), TYPE_SIZE (TREE_TYPE (expr
))))
1077 error ("cannot convert a value of type %qT"
1078 " to vector type %qT which has different size",
1079 TREE_TYPE (expr
), type
);
1080 return error_mark_node
;
1082 return build1 (VIEW_CONVERT_EXPR
, type
, expr
);
1085 error ("cannot convert value to a vector");
1086 return error_mark_node
;
1090 /* Convert EXPR to some fixed-point type TYPE.
1092 EXPR must be fixed-point, float, integer, or enumeral;
1093 in other cases error is called. */
1096 convert_to_fixed (tree type
, tree expr
)
1098 if (integer_zerop (expr
))
1100 tree fixed_zero_node
= build_fixed (type
, FCONST0 (TYPE_MODE (type
)));
1101 return fixed_zero_node
;
1103 else if (integer_onep (expr
) && ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type
)))
1105 tree fixed_one_node
= build_fixed (type
, FCONST1 (TYPE_MODE (type
)));
1106 return fixed_one_node
;
1109 switch (TREE_CODE (TREE_TYPE (expr
)))
1111 case FIXED_POINT_TYPE
:
1116 return build1 (FIXED_CONVERT_EXPR
, type
, expr
);
1119 return convert (type
,
1120 fold_build1 (REALPART_EXPR
,
1121 TREE_TYPE (TREE_TYPE (expr
)), expr
));
1124 error ("aggregate value used where a fixed-point was expected");
1125 return error_mark_node
;
1131 namespace selftest
{
1133 /* Selftests for conversions. */
1136 test_convert_to_integer_maybe_fold (tree orig_type
, tree new_type
)
1138 /* Calling convert_to_integer_maybe_fold on an INTEGER_CST. */
1140 tree orig_cst
= build_int_cst (orig_type
, 42);
1142 /* Verify that convert_to_integer_maybe_fold on a constant returns a new
1143 constant of the new type, unless the types are the same, in which
1144 case verify it's a no-op. */
1146 tree result
= convert_to_integer_maybe_fold (new_type
,
1148 if (orig_type
!= new_type
)
1150 ASSERT_EQ (TREE_TYPE (result
), new_type
);
1151 ASSERT_EQ (TREE_CODE (result
), INTEGER_CST
);
1154 ASSERT_EQ (result
, orig_cst
);
1157 /* Calling convert_to_integer_maybe_fold on a location wrapper around
1160 Verify that convert_to_integer_maybe_fold on a location wrapper
1161 around a constant returns a new location wrapper around an equivalent
1162 constant, both of the new type, unless the types are the same,
1163 in which case the original wrapper should be returned. */
1165 const location_t loc
= BUILTINS_LOCATION
;
1166 tree wrapped_orig_cst
= maybe_wrap_with_location (orig_cst
, loc
);
1168 = convert_to_integer_maybe_fold (new_type
, wrapped_orig_cst
, false);
1169 ASSERT_EQ (TREE_TYPE (result
), new_type
);
1170 ASSERT_EQ (EXPR_LOCATION (result
), loc
);
1171 ASSERT_TRUE (location_wrapper_p (result
));
1172 ASSERT_EQ (TREE_TYPE (TREE_OPERAND (result
, 0)), new_type
);
1173 ASSERT_EQ (TREE_CODE (TREE_OPERAND (result
, 0)), INTEGER_CST
);
1175 if (orig_type
== new_type
)
1176 ASSERT_EQ (result
, wrapped_orig_cst
);
1180 /* Verify that convert_to_integer_maybe_fold preserves locations. */
1183 test_convert_to_integer_maybe_fold ()
1186 test_convert_to_integer_maybe_fold (char_type_node
, long_integer_type_node
);
1189 test_convert_to_integer_maybe_fold (char_type_node
, char_type_node
);
1192 test_convert_to_integer_maybe_fold (char_type_node
, long_integer_type_node
);
1195 test_convert_to_integer_maybe_fold (long_integer_type_node
,
1196 long_integer_type_node
);
1199 /* Run all of the selftests within this file. */
1204 test_convert_to_integer_maybe_fold ();
1207 } // namespace selftest
1209 #endif /* CHECKING_P */