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
,
82 /* If the input precision differs from the target pointer type
83 precision, first convert the input expression to an integer type of
84 the target precision. Some targets, e.g. VMS, need several pointer
85 sizes to coexist so the latter isn't necessarily POINTER_SIZE. */
86 unsigned int pprec
= TYPE_PRECISION (type
);
87 unsigned int eprec
= TYPE_PRECISION (TREE_TYPE (expr
));
91 = maybe_fold_build1_loc (fold_p
, loc
, NOP_EXPR
,
92 lang_hooks
.types
.type_for_size (pprec
, 0),
95 return maybe_fold_build1_loc (fold_p
, loc
, CONVERT_EXPR
, type
, expr
);
98 error ("cannot convert to a pointer type");
99 return error_mark_node
;
103 /* Subroutine of the various convert_to_*_maybe_fold routines.
105 If a location wrapper has been folded to a constant (presumably of
106 a different type), re-wrap the new constant with a location wrapper. */
109 preserve_any_location_wrapper (tree result
, tree orig_expr
)
111 if (CONSTANT_CLASS_P (result
) && location_wrapper_p (orig_expr
))
113 if (result
== TREE_OPERAND (orig_expr
, 0))
116 return maybe_wrap_with_location (result
, EXPR_LOCATION (orig_expr
));
122 /* A wrapper around convert_to_pointer_1 that always folds the
126 convert_to_pointer (tree type
, tree expr
)
128 return convert_to_pointer_1 (type
, expr
, true);
131 /* A wrapper around convert_to_pointer_1 that only folds the
132 expression if DOFOLD, or if it is CONSTANT_CLASS_OR_WRAPPER_P. */
135 convert_to_pointer_maybe_fold (tree type
, tree expr
, bool dofold
)
138 = convert_to_pointer_1 (type
, expr
,
139 dofold
|| CONSTANT_CLASS_OR_WRAPPER_P (expr
));
140 return preserve_any_location_wrapper (result
, expr
);
143 /* Convert EXPR to some floating-point type TYPE.
145 EXPR must be float, fixed-point, integer, or enumeral;
146 in other cases error is called. If FOLD_P is true, try to fold
150 convert_to_real_1 (tree type
, tree expr
, bool fold_p
)
152 enum built_in_function fcode
= builtin_mathfn_code (expr
);
153 tree itype
= TREE_TYPE (expr
);
154 location_t loc
= EXPR_LOCATION (expr
);
156 if (TREE_CODE (expr
) == COMPOUND_EXPR
)
158 tree t
= convert_to_real_1 (type
, TREE_OPERAND (expr
, 1), fold_p
);
159 if (t
== TREE_OPERAND (expr
, 1))
161 return build2_loc (EXPR_LOCATION (expr
), COMPOUND_EXPR
, TREE_TYPE (t
),
162 TREE_OPERAND (expr
, 0), t
);
165 /* Disable until we figure out how to decide whether the functions are
166 present in runtime. */
167 /* Convert (float)sqrt((double)x) where x is float into sqrtf(x) */
169 && (TYPE_MODE (type
) == TYPE_MODE (double_type_node
)
170 || TYPE_MODE (type
) == TYPE_MODE (float_type_node
)))
174 #define CASE_MATHFN(FN) case BUILT_IN_##FN: case BUILT_IN_##FN##L:
189 /* The above functions may set errno differently with float
190 input or output so this transformation is not safe with
212 /* The above functions are not safe to do this conversion. */
213 if (!flag_unsafe_math_optimizations
)
220 if (call_expr_nargs (expr
) != 1
221 || !SCALAR_FLOAT_TYPE_P (TREE_TYPE (CALL_EXPR_ARG (expr
, 0))))
224 tree arg0
= strip_float_extensions (CALL_EXPR_ARG (expr
, 0));
227 /* We have (outertype)sqrt((innertype)x). Choose the wider mode
228 from the both as the safe type for operation. */
229 if (TYPE_PRECISION (TREE_TYPE (arg0
)) > TYPE_PRECISION (type
))
230 newtype
= TREE_TYPE (arg0
);
232 /* We consider to convert
234 (T1) sqrtT2 ((T2) exprT3)
236 (T1) sqrtT4 ((T4) exprT3)
238 , where T1 is TYPE, T2 is ITYPE, T3 is TREE_TYPE (ARG0),
239 and T4 is NEWTYPE. All those types are of floating-point types.
240 T4 (NEWTYPE) should be narrower than T2 (ITYPE). This conversion
241 is safe only if P1 >= P2*2+2, where P1 and P2 are precisions of
242 T2 and T4. See the following URL for a reference:
243 http://stackoverflow.com/questions/9235456/determining-
244 floating-point-square-root
246 if ((fcode
== BUILT_IN_SQRT
|| fcode
== BUILT_IN_SQRTL
)
247 && !flag_unsafe_math_optimizations
)
249 /* The following conversion is unsafe even the precision condition
252 (float) sqrtl ((long double) double_val) -> (float) sqrt (double_val)
254 if (TYPE_MODE (type
) != TYPE_MODE (newtype
))
257 int p1
= REAL_MODE_FORMAT (TYPE_MODE (itype
))->p
;
258 int p2
= REAL_MODE_FORMAT (TYPE_MODE (newtype
))->p
;
263 /* Be careful about integer to fp conversions.
264 These may overflow still. */
265 if (FLOAT_TYPE_P (TREE_TYPE (arg0
))
266 && TYPE_PRECISION (newtype
) < TYPE_PRECISION (itype
)
267 && (TYPE_MODE (newtype
) == TYPE_MODE (double_type_node
)
268 || TYPE_MODE (newtype
) == TYPE_MODE (float_type_node
)))
270 tree fn
= mathfn_built_in (newtype
, fcode
);
273 tree arg
= convert_to_real_1 (newtype
, arg0
, fold_p
);
274 expr
= build_call_expr (fn
, 1, arg
);
285 /* Propagate the cast into the operation. */
286 if (itype
!= type
&& FLOAT_TYPE_P (type
))
287 switch (TREE_CODE (expr
))
289 /* Convert (float)-x into -(float)x. This is safe for
290 round-to-nearest rounding mode when the inner type is float. */
293 if (!flag_rounding_math
294 && FLOAT_TYPE_P (itype
)
295 && TYPE_PRECISION (type
) < TYPE_PRECISION (itype
))
297 tree arg
= convert_to_real_1 (type
, TREE_OPERAND (expr
, 0),
299 return build1 (TREE_CODE (expr
), type
, arg
);
306 switch (TREE_CODE (TREE_TYPE (expr
)))
309 /* Ignore the conversion if we don't need to store intermediate
310 results and neither type is a decimal float. */
311 return build1_loc (loc
,
313 || DECIMAL_FLOAT_TYPE_P (type
)
314 || DECIMAL_FLOAT_TYPE_P (itype
))
315 ? CONVERT_EXPR
: NOP_EXPR
, type
, expr
);
321 return build1 (FLOAT_EXPR
, type
, expr
);
323 case FIXED_POINT_TYPE
:
324 return build1 (FIXED_CONVERT_EXPR
, type
, expr
);
327 return convert (type
,
328 maybe_fold_build1_loc (fold_p
, loc
, REALPART_EXPR
,
329 TREE_TYPE (TREE_TYPE (expr
)),
334 error ("pointer value used where a floating-point was expected");
335 return error_mark_node
;
338 error ("aggregate value used where a floating-point was expected");
339 return error_mark_node
;
343 /* A wrapper around convert_to_real_1 that always folds the
347 convert_to_real (tree type
, tree expr
)
349 return convert_to_real_1 (type
, expr
, true);
352 /* A wrapper around convert_to_real_1 that only folds the
353 expression if DOFOLD, or if it is CONSTANT_CLASS_OR_WRAPPER_P. */
356 convert_to_real_maybe_fold (tree type
, tree expr
, bool dofold
)
359 = convert_to_real_1 (type
, expr
,
360 dofold
|| CONSTANT_CLASS_OR_WRAPPER_P (expr
));
361 return preserve_any_location_wrapper (result
, expr
);
364 /* Try to narrow EX_FORM ARG0 ARG1 in narrowed arg types producing a
368 do_narrow (location_t loc
,
369 enum tree_code ex_form
, tree type
, tree arg0
, tree arg1
,
370 tree expr
, unsigned inprec
, unsigned outprec
, bool dofold
)
372 /* Do the arithmetic in type TYPEX,
373 then convert result to TYPE. */
376 /* Can't do arithmetic in enumeral types
377 so use an integer type that will hold the values. */
378 if (TREE_CODE (typex
) == ENUMERAL_TYPE
)
379 typex
= lang_hooks
.types
.type_for_size (TYPE_PRECISION (typex
),
380 TYPE_UNSIGNED (typex
));
382 /* The type demotion below might cause doing unsigned arithmetic
383 instead of signed, and thus hide overflow bugs. */
384 if ((ex_form
== PLUS_EXPR
|| ex_form
== MINUS_EXPR
)
385 && !TYPE_UNSIGNED (typex
)
386 && sanitize_flags_p (SANITIZE_SI_OVERFLOW
))
389 /* Similarly for multiplication, but in that case it can be
390 problematic even if typex is unsigned type - 0xffff * 0xffff
392 if (ex_form
== MULT_EXPR
393 && !TYPE_OVERFLOW_WRAPS (TREE_TYPE (expr
))
394 && sanitize_flags_p (SANITIZE_SI_OVERFLOW
))
397 /* But now perhaps TYPEX is as wide as INPREC.
398 In that case, do nothing special here.
399 (Otherwise would recurse infinitely in convert. */
400 if (TYPE_PRECISION (typex
) != inprec
)
402 /* Don't do unsigned arithmetic where signed was wanted,
404 Exception: if both of the original operands were
405 unsigned then we can safely do the work as unsigned.
406 Exception: shift operations take their type solely
407 from the first argument.
408 Exception: the LSHIFT_EXPR case above requires that
409 we perform this operation unsigned lest we produce
410 signed-overflow undefinedness.
411 And we may need to do it as unsigned
412 if we truncate to the original size. */
413 if (TYPE_UNSIGNED (TREE_TYPE (expr
))
414 || (TYPE_UNSIGNED (TREE_TYPE (arg0
))
415 && (TYPE_UNSIGNED (TREE_TYPE (arg1
))
416 || ex_form
== LSHIFT_EXPR
417 || ex_form
== RSHIFT_EXPR
418 || ex_form
== LROTATE_EXPR
419 || ex_form
== RROTATE_EXPR
))
420 || ex_form
== LSHIFT_EXPR
421 /* If we have !flag_wrapv, and either ARG0 or
422 ARG1 is of a signed type, we have to do
423 PLUS_EXPR, MINUS_EXPR or MULT_EXPR in an unsigned
424 type in case the operation in outprec precision
425 could overflow. Otherwise, we would introduce
426 signed-overflow undefinedness. */
427 || ((!(INTEGRAL_TYPE_P (TREE_TYPE (arg0
))
428 && TYPE_OVERFLOW_WRAPS (TREE_TYPE (arg0
)))
429 || !(INTEGRAL_TYPE_P (TREE_TYPE (arg1
))
430 && TYPE_OVERFLOW_WRAPS (TREE_TYPE (arg1
))))
431 && ((TYPE_PRECISION (TREE_TYPE (arg0
)) * 2u
433 || (TYPE_PRECISION (TREE_TYPE (arg1
)) * 2u
435 && (ex_form
== PLUS_EXPR
436 || ex_form
== MINUS_EXPR
437 || ex_form
== MULT_EXPR
)))
439 if (!TYPE_UNSIGNED (typex
))
440 typex
= unsigned_type_for (typex
);
444 if (TYPE_UNSIGNED (typex
))
445 typex
= signed_type_for (typex
);
447 /* We should do away with all this once we have a proper
448 type promotion/demotion pass, see PR45397. */
449 expr
= maybe_fold_build2_loc (dofold
, loc
, ex_form
, typex
,
450 convert (typex
, arg0
),
451 convert (typex
, arg1
));
452 return convert (type
, expr
);
458 /* Convert EXPR to some integer (or enum) type TYPE.
460 EXPR must be pointer, integer, discrete (enum, char, or bool), float,
461 fixed-point or vector; in other cases error is called.
463 If DOFOLD is TRUE, we try to simplify newly-created patterns by folding.
465 The result of this is always supposed to be a newly created tree node
466 not in use in any existing structure. */
469 convert_to_integer_1 (tree type
, tree expr
, bool dofold
)
471 enum tree_code ex_form
= TREE_CODE (expr
);
472 tree intype
= TREE_TYPE (expr
);
473 unsigned int inprec
= element_precision (intype
);
474 unsigned int outprec
= element_precision (type
);
475 location_t loc
= EXPR_LOCATION (expr
);
477 /* An INTEGER_TYPE cannot be incomplete, but an ENUMERAL_TYPE can
478 be. Consider `enum E = { a, b = (enum E) 3 };'. */
479 if (!COMPLETE_TYPE_P (type
))
481 error ("conversion to incomplete type");
482 return error_mark_node
;
485 if (ex_form
== COMPOUND_EXPR
)
487 tree t
= convert_to_integer_1 (type
, TREE_OPERAND (expr
, 1), dofold
);
488 if (t
== TREE_OPERAND (expr
, 1))
490 return build2_loc (EXPR_LOCATION (expr
), COMPOUND_EXPR
, TREE_TYPE (t
),
491 TREE_OPERAND (expr
, 0), t
);
494 /* Convert e.g. (long)round(d) -> lround(d). */
495 /* If we're converting to char, we may encounter differing behavior
496 between converting from double->char vs double->long->char.
497 We're in "undefined" territory but we prefer to be conservative,
498 so only proceed in "unsafe" math mode. */
500 && (flag_unsafe_math_optimizations
501 || (long_integer_type_node
502 && outprec
>= TYPE_PRECISION (long_integer_type_node
))))
504 tree s_expr
= strip_float_extensions (expr
);
505 tree s_intype
= TREE_TYPE (s_expr
);
506 const enum built_in_function fcode
= builtin_mathfn_code (s_expr
);
511 CASE_FLT_FN (BUILT_IN_CEIL
):
512 CASE_FLT_FN_FLOATN_NX (BUILT_IN_CEIL
):
513 /* Only convert in ISO C99 mode. */
514 if (!targetm
.libc_has_function (function_c99_misc
, intype
))
516 if (outprec
< TYPE_PRECISION (integer_type_node
)
517 || (outprec
== TYPE_PRECISION (integer_type_node
)
518 && !TYPE_UNSIGNED (type
)))
519 fn
= mathfn_built_in (s_intype
, BUILT_IN_ICEIL
);
520 else if (outprec
== TYPE_PRECISION (long_integer_type_node
)
521 && !TYPE_UNSIGNED (type
))
522 fn
= mathfn_built_in (s_intype
, BUILT_IN_LCEIL
);
523 else if (outprec
== TYPE_PRECISION (long_long_integer_type_node
)
524 && !TYPE_UNSIGNED (type
))
525 fn
= mathfn_built_in (s_intype
, BUILT_IN_LLCEIL
);
528 CASE_FLT_FN (BUILT_IN_FLOOR
):
529 CASE_FLT_FN_FLOATN_NX (BUILT_IN_FLOOR
):
530 /* Only convert in ISO C99 mode. */
531 if (!targetm
.libc_has_function (function_c99_misc
, intype
))
533 if (outprec
< TYPE_PRECISION (integer_type_node
)
534 || (outprec
== TYPE_PRECISION (integer_type_node
)
535 && !TYPE_UNSIGNED (type
)))
536 fn
= mathfn_built_in (s_intype
, BUILT_IN_IFLOOR
);
537 else if (outprec
== TYPE_PRECISION (long_integer_type_node
)
538 && !TYPE_UNSIGNED (type
))
539 fn
= mathfn_built_in (s_intype
, BUILT_IN_LFLOOR
);
540 else if (outprec
== TYPE_PRECISION (long_long_integer_type_node
)
541 && !TYPE_UNSIGNED (type
))
542 fn
= mathfn_built_in (s_intype
, BUILT_IN_LLFLOOR
);
545 CASE_FLT_FN (BUILT_IN_ROUND
):
546 CASE_FLT_FN_FLOATN_NX (BUILT_IN_ROUND
):
547 /* Only convert in ISO C99 mode and with -fno-math-errno. */
548 if (!targetm
.libc_has_function (function_c99_misc
, intype
)
551 if (outprec
< TYPE_PRECISION (integer_type_node
)
552 || (outprec
== TYPE_PRECISION (integer_type_node
)
553 && !TYPE_UNSIGNED (type
)))
554 fn
= mathfn_built_in (s_intype
, BUILT_IN_IROUND
);
555 else if (outprec
== TYPE_PRECISION (long_integer_type_node
)
556 && !TYPE_UNSIGNED (type
))
557 fn
= mathfn_built_in (s_intype
, BUILT_IN_LROUND
);
558 else if (outprec
== TYPE_PRECISION (long_long_integer_type_node
)
559 && !TYPE_UNSIGNED (type
))
560 fn
= mathfn_built_in (s_intype
, BUILT_IN_LLROUND
);
563 CASE_FLT_FN (BUILT_IN_NEARBYINT
):
564 CASE_FLT_FN_FLOATN_NX (BUILT_IN_NEARBYINT
):
565 /* Only convert nearbyint* if we can ignore math exceptions. */
566 if (flag_trapping_math
)
569 CASE_FLT_FN (BUILT_IN_RINT
):
570 CASE_FLT_FN_FLOATN_NX (BUILT_IN_RINT
):
571 /* Only convert in ISO C99 mode and with -fno-math-errno. */
572 if (!targetm
.libc_has_function (function_c99_misc
, intype
)
575 if (outprec
< TYPE_PRECISION (integer_type_node
)
576 || (outprec
== TYPE_PRECISION (integer_type_node
)
577 && !TYPE_UNSIGNED (type
)))
578 fn
= mathfn_built_in (s_intype
, BUILT_IN_IRINT
);
579 else if (outprec
== TYPE_PRECISION (long_integer_type_node
)
580 && !TYPE_UNSIGNED (type
))
581 fn
= mathfn_built_in (s_intype
, BUILT_IN_LRINT
);
582 else if (outprec
== TYPE_PRECISION (long_long_integer_type_node
)
583 && !TYPE_UNSIGNED (type
))
584 fn
= mathfn_built_in (s_intype
, BUILT_IN_LLRINT
);
587 CASE_FLT_FN (BUILT_IN_TRUNC
):
588 CASE_FLT_FN_FLOATN_NX (BUILT_IN_TRUNC
):
589 if (call_expr_nargs (s_expr
) != 1
590 || !SCALAR_FLOAT_TYPE_P (TREE_TYPE (CALL_EXPR_ARG (s_expr
, 0))))
592 return convert_to_integer_1 (type
, CALL_EXPR_ARG (s_expr
, 0),
600 && call_expr_nargs (s_expr
) == 1
601 && SCALAR_FLOAT_TYPE_P (TREE_TYPE (CALL_EXPR_ARG (s_expr
, 0))))
603 tree newexpr
= build_call_expr (fn
, 1, CALL_EXPR_ARG (s_expr
, 0));
604 return convert_to_integer_1 (type
, newexpr
, dofold
);
608 /* Convert (int)logb(d) -> ilogb(d). */
610 && flag_unsafe_math_optimizations
611 && !flag_trapping_math
&& !flag_errno_math
&& flag_finite_math_only
613 && (outprec
> TYPE_PRECISION (integer_type_node
)
614 || (outprec
== TYPE_PRECISION (integer_type_node
)
615 && !TYPE_UNSIGNED (type
))))
617 tree s_expr
= strip_float_extensions (expr
);
618 tree s_intype
= TREE_TYPE (s_expr
);
619 const enum built_in_function fcode
= builtin_mathfn_code (s_expr
);
624 CASE_FLT_FN (BUILT_IN_LOGB
):
625 fn
= mathfn_built_in (s_intype
, BUILT_IN_ILOGB
);
633 && call_expr_nargs (s_expr
) == 1
634 && SCALAR_FLOAT_TYPE_P (TREE_TYPE (CALL_EXPR_ARG (s_expr
, 0))))
636 tree newexpr
= build_call_expr (fn
, 1, CALL_EXPR_ARG (s_expr
, 0));
637 return convert_to_integer_1 (type
, newexpr
, dofold
);
641 switch (TREE_CODE (intype
))
645 if (integer_zerop (expr
)
646 && !TREE_OVERFLOW (tree_strip_any_location_wrapper (expr
)))
647 return build_int_cst (type
, 0);
649 /* Convert to an unsigned integer of the correct width first, and from
650 there widen/truncate to the required type. Some targets support the
651 coexistence of multiple valid pointer sizes, so fetch the one we need
654 return build1 (CONVERT_EXPR
, type
, expr
);
655 expr
= fold_build1 (CONVERT_EXPR
,
656 lang_hooks
.types
.type_for_size
657 (TYPE_PRECISION (intype
), 0),
659 return fold_convert (type
, expr
);
666 /* If this is a logical operation, which just returns 0 or 1, we can
667 change the type of the expression. */
669 if (TREE_CODE_CLASS (ex_form
) == tcc_comparison
)
671 expr
= copy_node (expr
);
672 TREE_TYPE (expr
) = type
;
676 /* If we are widening the type, put in an explicit conversion.
677 Similarly if we are not changing the width. After this, we know
678 we are truncating EXPR. */
680 else if (outprec
>= inprec
)
684 /* If the precision of the EXPR's type is K bits and the
685 destination mode has more bits, and the sign is changing,
686 it is not safe to use a NOP_EXPR. For example, suppose
687 that EXPR's type is a 3-bit unsigned integer type, the
688 TYPE is a 3-bit signed integer type, and the machine mode
689 for the types is 8-bit QImode. In that case, the
690 conversion necessitates an explicit sign-extension. In
691 the signed-to-unsigned case the high-order bits have to
693 if (TYPE_UNSIGNED (type
) != TYPE_UNSIGNED (TREE_TYPE (expr
))
694 && !type_has_mode_precision_p (TREE_TYPE (expr
)))
699 return maybe_fold_build1_loc (dofold
, loc
, code
, type
, expr
);
702 /* If TYPE is an enumeral type or a type with a precision less
703 than the number of bits in its mode, do the conversion to the
704 type corresponding to its mode, then do a nop conversion
706 else if (TREE_CODE (type
) == ENUMERAL_TYPE
707 || (TREE_CODE (type
) != BITINT_TYPE
708 && maybe_ne (outprec
,
709 GET_MODE_PRECISION (TYPE_MODE (type
)))))
712 = convert_to_integer_1 (lang_hooks
.types
.type_for_mode
713 (TYPE_MODE (type
), TYPE_UNSIGNED (type
)),
715 return maybe_fold_build1_loc (dofold
, loc
, NOP_EXPR
, type
, expr
);
718 /* Here detect when we can distribute the truncation down past some
719 arithmetic. For example, if adding two longs and converting to an
720 int, we can equally well convert both to ints and then add.
721 For the operations handled here, such truncation distribution
723 It is desirable in these cases:
724 1) when truncating down to full-word from a larger size
725 2) when truncating takes no work.
726 3) when at least one operand of the arithmetic has been extended
727 (as by C's default conversions). In this case we need two conversions
728 if we do the arithmetic as already requested, so we might as well
729 truncate both and then combine. Perhaps that way we need only one.
731 Note that in general we cannot do the arithmetic in a type
732 shorter than the desired result of conversion, even if the operands
733 are both extended from a shorter type, because they might overflow
734 if combined in that type. The exceptions to this--the times when
735 two narrow values can be combined in their narrow type even to
736 make a wider result--are handled by "shorten" in build_binary_op. */
742 /* We can pass truncation down through right shifting
743 when the shift count is a nonpositive constant. */
744 if (TREE_CODE (TREE_OPERAND (expr
, 1)) == INTEGER_CST
745 && tree_int_cst_sgn (TREE_OPERAND (expr
, 1)) <= 0)
750 /* We can pass truncation down through left shifting
751 when the shift count is a nonnegative constant and
752 the target type is unsigned. */
753 if (TREE_CODE (TREE_OPERAND (expr
, 1)) == INTEGER_CST
754 && tree_int_cst_sgn (TREE_OPERAND (expr
, 1)) >= 0
755 && TYPE_UNSIGNED (type
)
756 && TREE_CODE (TYPE_SIZE (type
)) == INTEGER_CST
)
758 /* If shift count is less than the width of the truncated type,
760 if (tree_int_cst_lt (TREE_OPERAND (expr
, 1), TYPE_SIZE (type
)))
761 /* In this case, shifting is like multiplication. */
765 /* If it is >= that width, result is zero.
766 Handling this with trunc1 would give the wrong result:
767 (int) ((long long) a << 32) is well defined (as 0)
768 but (int) a << 32 is undefined and would get a
771 tree t
= build_int_cst (type
, 0);
773 /* If the original expression had side-effects, we must
775 if (TREE_SIDE_EFFECTS (expr
))
776 return build2 (COMPOUND_EXPR
, type
, expr
, t
);
785 tree arg0
= get_unwidened (TREE_OPERAND (expr
, 0), NULL_TREE
);
786 tree arg1
= get_unwidened (TREE_OPERAND (expr
, 1), NULL_TREE
);
788 /* Don't distribute unless the output precision is at least as
789 big as the actual inputs and it has the same signedness. */
790 if (outprec
>= TYPE_PRECISION (TREE_TYPE (arg0
))
791 && outprec
>= TYPE_PRECISION (TREE_TYPE (arg1
))
792 /* If signedness of arg0 and arg1 don't match,
793 we can't necessarily find a type to compare them in. */
794 && (TYPE_UNSIGNED (TREE_TYPE (arg0
))
795 == TYPE_UNSIGNED (TREE_TYPE (arg1
)))
796 /* Do not change the sign of the division. */
797 && (TYPE_UNSIGNED (TREE_TYPE (expr
))
798 == TYPE_UNSIGNED (TREE_TYPE (arg0
)))
799 /* Either require unsigned division or a division by
800 a constant that is not -1. */
801 && (TYPE_UNSIGNED (TREE_TYPE (arg0
))
802 || (TREE_CODE (arg1
) == INTEGER_CST
803 && !integer_all_onesp (arg1
))))
805 tree tem
= do_narrow (loc
, ex_form
, type
, arg0
, arg1
,
806 expr
, inprec
, outprec
, dofold
);
817 tree arg0
= get_unwidened (TREE_OPERAND (expr
, 0), type
);
818 tree arg1
= get_unwidened (TREE_OPERAND (expr
, 1), type
);
820 /* Don't distribute unless the output precision is at least as
821 big as the actual inputs. Otherwise, the comparison of the
822 truncated values will be wrong. */
823 if (outprec
>= TYPE_PRECISION (TREE_TYPE (arg0
))
824 && outprec
>= TYPE_PRECISION (TREE_TYPE (arg1
))
825 /* If signedness of arg0 and arg1 don't match,
826 we can't necessarily find a type to compare them in. */
827 && (TYPE_UNSIGNED (TREE_TYPE (arg0
))
828 == TYPE_UNSIGNED (TREE_TYPE (arg1
))))
840 tree arg0
= get_unwidened (TREE_OPERAND (expr
, 0), type
);
841 tree arg1
= get_unwidened (TREE_OPERAND (expr
, 1), type
);
843 /* Do not try to narrow operands of pointer subtraction;
844 that will interfere with other folding. */
845 if (ex_form
== MINUS_EXPR
846 && CONVERT_EXPR_P (arg0
)
847 && CONVERT_EXPR_P (arg1
)
848 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (arg0
, 0)))
849 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (arg1
, 0))))
852 tree tem
= do_narrow (loc
, ex_form
, type
, arg0
, arg1
,
853 expr
, inprec
, outprec
, dofold
);
860 /* Using unsigned arithmetic for signed types may hide overflow
862 if (!TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (expr
, 0)))
863 && sanitize_flags_p (SANITIZE_SI_OVERFLOW
))
867 /* This is not correct for ABS_EXPR,
868 since we must test the sign before truncation. */
870 /* Do the arithmetic in type TYPEX,
871 then convert result to TYPE. */
874 /* Can't do arithmetic in enumeral types
875 so use an integer type that will hold the values. */
876 if (TREE_CODE (typex
) == ENUMERAL_TYPE
)
878 = lang_hooks
.types
.type_for_size (TYPE_PRECISION (typex
),
879 TYPE_UNSIGNED (typex
));
881 if (!TYPE_UNSIGNED (typex
))
882 typex
= unsigned_type_for (typex
);
883 return convert (type
,
884 fold_build1 (ex_form
, typex
,
886 TREE_OPERAND (expr
, 0))));
891 tree argtype
= TREE_TYPE (TREE_OPERAND (expr
, 0));
892 /* Don't introduce a "can't convert between vector values
893 of different size" error. */
894 if (TREE_CODE (argtype
) == VECTOR_TYPE
895 && maybe_ne (GET_MODE_SIZE (TYPE_MODE (argtype
)),
896 GET_MODE_SIZE (TYPE_MODE (type
))))
899 /* If truncating after truncating, might as well do all at once.
900 If truncating after extending, we may get rid of wasted work. */
901 return convert (type
, get_unwidened (TREE_OPERAND (expr
, 0), type
));
904 /* It is sometimes worthwhile to push the narrowing down through
905 the conditional and never loses. A COND_EXPR may have a throw
906 as one operand, which then has void type. Just leave void
907 operands as they are. */
909 fold_build3 (COND_EXPR
, type
, TREE_OPERAND (expr
, 0),
910 VOID_TYPE_P (TREE_TYPE (TREE_OPERAND (expr
, 1)))
911 ? TREE_OPERAND (expr
, 1)
912 : convert (type
, TREE_OPERAND (expr
, 1)),
913 VOID_TYPE_P (TREE_TYPE (TREE_OPERAND (expr
, 2)))
914 ? TREE_OPERAND (expr
, 2)
915 : convert (type
, TREE_OPERAND (expr
, 2)));
921 /* When parsing long initializers, we might end up with a lot of casts.
923 if (TREE_CODE (tree_strip_any_location_wrapper (expr
)) == INTEGER_CST
)
924 return fold_convert (type
, expr
);
925 return build1 (CONVERT_EXPR
, type
, expr
);
928 if (sanitize_flags_p (SANITIZE_FLOAT_CAST
)
929 && current_function_decl
!= NULL_TREE
)
931 expr
= save_expr (expr
);
932 tree check
= ubsan_instrument_float_cast (loc
, type
, expr
);
933 expr
= build1 (FIX_TRUNC_EXPR
, type
, expr
);
934 if (check
== NULL_TREE
)
936 return maybe_fold_build2_loc (dofold
, loc
, COMPOUND_EXPR
,
937 TREE_TYPE (expr
), check
, expr
);
940 return build1 (FIX_TRUNC_EXPR
, type
, expr
);
942 case FIXED_POINT_TYPE
:
943 return build1 (FIXED_CONVERT_EXPR
, type
, expr
);
946 expr
= maybe_fold_build1_loc (dofold
, loc
, REALPART_EXPR
,
947 TREE_TYPE (TREE_TYPE (expr
)), expr
);
948 return convert (type
, expr
);
951 if (!tree_int_cst_equal (TYPE_SIZE (type
), TYPE_SIZE (TREE_TYPE (expr
))))
953 error ("cannot convert a vector of type %qT"
954 " to type %qT which has different size",
955 TREE_TYPE (expr
), type
);
956 return error_mark_node
;
958 return build1 (VIEW_CONVERT_EXPR
, type
, expr
);
961 error ("aggregate value used where an integer was expected");
962 return error_mark_node
;
966 /* Convert EXPR to some integer (or enum) type TYPE.
968 EXPR must be pointer, integer, discrete (enum, char, or bool), float,
969 fixed-point or vector; in other cases error is called.
971 The result of this is always supposed to be a newly created tree node
972 not in use in any existing structure. */
975 convert_to_integer (tree type
, tree expr
)
977 return convert_to_integer_1 (type
, expr
, true);
980 /* A wrapper around convert_to_complex_1 that only folds the
981 expression if DOFOLD, or if it is CONSTANT_CLASS_OR_WRAPPER_P. */
984 convert_to_integer_maybe_fold (tree type
, tree expr
, bool dofold
)
987 = convert_to_integer_1 (type
, expr
,
988 dofold
|| CONSTANT_CLASS_OR_WRAPPER_P (expr
));
989 return preserve_any_location_wrapper (result
, expr
);
992 /* Convert EXPR to the complex type TYPE in the usual ways. If FOLD_P is
993 true, try to fold the expression. */
996 convert_to_complex_1 (tree type
, tree expr
, bool fold_p
)
998 location_t loc
= EXPR_LOCATION (expr
);
999 tree subtype
= TREE_TYPE (type
);
1001 switch (TREE_CODE (TREE_TYPE (expr
)))
1004 case FIXED_POINT_TYPE
:
1010 tree real
= convert (subtype
, expr
);
1011 tree imag
= convert (subtype
, integer_zero_node
);
1012 if (error_operand_p (real
) || error_operand_p (imag
))
1013 return error_mark_node
;
1014 return build2 (COMPLEX_EXPR
, type
, real
, imag
);
1019 tree elt_type
= TREE_TYPE (TREE_TYPE (expr
));
1021 if (TYPE_MAIN_VARIANT (elt_type
) == TYPE_MAIN_VARIANT (subtype
))
1023 else if (TREE_CODE (expr
) == COMPOUND_EXPR
)
1025 tree t
= convert_to_complex_1 (type
, TREE_OPERAND (expr
, 1),
1027 if (t
== TREE_OPERAND (expr
, 1))
1029 return build2_loc (EXPR_LOCATION (expr
), COMPOUND_EXPR
,
1030 TREE_TYPE (t
), TREE_OPERAND (expr
, 0), t
);
1032 else if (TREE_CODE (expr
) == COMPLEX_EXPR
)
1033 return maybe_fold_build2_loc (fold_p
, loc
, COMPLEX_EXPR
, type
,
1035 TREE_OPERAND (expr
, 0)),
1037 TREE_OPERAND (expr
, 1)));
1040 expr
= save_expr (expr
);
1041 tree realp
= maybe_fold_build1_loc (fold_p
, loc
, REALPART_EXPR
,
1042 TREE_TYPE (TREE_TYPE (expr
)),
1044 tree imagp
= maybe_fold_build1_loc (fold_p
, loc
, IMAGPART_EXPR
,
1045 TREE_TYPE (TREE_TYPE (expr
)),
1047 return maybe_fold_build2_loc (fold_p
, loc
, COMPLEX_EXPR
, type
,
1048 convert (subtype
, realp
),
1049 convert (subtype
, imagp
));
1054 case REFERENCE_TYPE
:
1055 error ("pointer value used where a complex was expected");
1056 return error_mark_node
;
1059 error ("aggregate value used where a complex was expected");
1060 return error_mark_node
;
1064 /* A wrapper around convert_to_complex_1 that always folds the
1068 convert_to_complex (tree type
, tree expr
)
1070 return convert_to_complex_1 (type
, expr
, true);
1073 /* A wrapper around convert_to_complex_1 that only folds the
1074 expression if DOFOLD, or if it is CONSTANT_CLASS_OR_WRAPPER_P. */
1077 convert_to_complex_maybe_fold (tree type
, tree expr
, bool dofold
)
1080 = convert_to_complex_1 (type
, expr
,
1081 dofold
|| CONSTANT_CLASS_OR_WRAPPER_P (expr
));
1082 return preserve_any_location_wrapper (result
, expr
);
1085 /* Convert EXPR to the vector type TYPE in the usual ways. */
1088 convert_to_vector (tree type
, tree expr
)
1090 switch (TREE_CODE (TREE_TYPE (expr
)))
1094 if (!tree_int_cst_equal (TYPE_SIZE (type
), TYPE_SIZE (TREE_TYPE (expr
))))
1096 error ("cannot convert a value of type %qT"
1097 " to vector type %qT which has different size",
1098 TREE_TYPE (expr
), type
);
1099 return error_mark_node
;
1101 return build1 (VIEW_CONVERT_EXPR
, type
, expr
);
1104 error ("cannot convert value to a vector");
1105 return error_mark_node
;
1109 /* Convert EXPR to some fixed-point type TYPE.
1111 EXPR must be fixed-point, float, integer, or enumeral;
1112 in other cases error is called. */
1115 convert_to_fixed (tree type
, tree expr
)
1117 if (integer_zerop (expr
))
1119 tree fixed_zero_node
= build_fixed (type
, FCONST0 (TYPE_MODE (type
)));
1120 return fixed_zero_node
;
1122 else if (integer_onep (expr
) && ALL_SCALAR_ACCUM_MODE_P (TYPE_MODE (type
)))
1124 tree fixed_one_node
= build_fixed (type
, FCONST1 (TYPE_MODE (type
)));
1125 return fixed_one_node
;
1128 switch (TREE_CODE (TREE_TYPE (expr
)))
1130 case FIXED_POINT_TYPE
:
1135 return build1 (FIXED_CONVERT_EXPR
, type
, expr
);
1138 return convert (type
,
1139 fold_build1 (REALPART_EXPR
,
1140 TREE_TYPE (TREE_TYPE (expr
)), expr
));
1143 error ("aggregate value used where a fixed-point was expected");
1144 return error_mark_node
;
1150 namespace selftest
{
1152 /* Selftests for conversions. */
1155 test_convert_to_integer_maybe_fold (tree orig_type
, tree new_type
)
1157 /* Calling convert_to_integer_maybe_fold on an INTEGER_CST. */
1159 tree orig_cst
= build_int_cst (orig_type
, 42);
1161 /* Verify that convert_to_integer_maybe_fold on a constant returns a new
1162 constant of the new type, unless the types are the same, in which
1163 case verify it's a no-op. */
1165 tree result
= convert_to_integer_maybe_fold (new_type
,
1167 if (orig_type
!= new_type
)
1169 ASSERT_EQ (TREE_TYPE (result
), new_type
);
1170 ASSERT_EQ (TREE_CODE (result
), INTEGER_CST
);
1173 ASSERT_EQ (result
, orig_cst
);
1176 /* Calling convert_to_integer_maybe_fold on a location wrapper around
1179 Verify that convert_to_integer_maybe_fold on a location wrapper
1180 around a constant returns a new location wrapper around an equivalent
1181 constant, both of the new type, unless the types are the same,
1182 in which case the original wrapper should be returned. */
1184 const location_t loc
= BUILTINS_LOCATION
;
1185 tree wrapped_orig_cst
= maybe_wrap_with_location (orig_cst
, loc
);
1187 = convert_to_integer_maybe_fold (new_type
, wrapped_orig_cst
, false);
1188 ASSERT_EQ (TREE_TYPE (result
), new_type
);
1189 ASSERT_EQ (EXPR_LOCATION (result
), loc
);
1190 ASSERT_TRUE (location_wrapper_p (result
));
1191 ASSERT_EQ (TREE_TYPE (TREE_OPERAND (result
, 0)), new_type
);
1192 ASSERT_EQ (TREE_CODE (TREE_OPERAND (result
, 0)), INTEGER_CST
);
1194 if (orig_type
== new_type
)
1195 ASSERT_EQ (result
, wrapped_orig_cst
);
1199 /* Verify that convert_to_integer_maybe_fold preserves locations. */
1202 test_convert_to_integer_maybe_fold ()
1205 test_convert_to_integer_maybe_fold (char_type_node
, long_integer_type_node
);
1208 test_convert_to_integer_maybe_fold (char_type_node
, char_type_node
);
1211 test_convert_to_integer_maybe_fold (char_type_node
, long_integer_type_node
);
1214 test_convert_to_integer_maybe_fold (long_integer_type_node
,
1215 long_integer_type_node
);
1218 /* Run all of the selftests within this file. */
1223 test_convert_to_integer_maybe_fold ();
1226 } // namespace selftest
1228 #endif /* CHECKING_P */