1 /* Data type conversion
2 Copyright (C) 1987-2016 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 /* This file contains the functions for converting expressions to
22 different data types for the translation of the gfortran internal
23 representation to GIMPLE. The only entry point is `convert'. */
27 #include "coretypes.h"
29 #include "fold-const.h"
32 /* Prepare expr to be an argument of a TRUTH_NOT_EXPR,
33 or validate its data type for a GIMPLE `if' or `while' statement.
35 The resulting type should always be `boolean_type_node'. */
38 truthvalue_conversion (tree expr
)
40 switch (TREE_CODE (TREE_TYPE (expr
)))
43 if (TREE_TYPE (expr
) == boolean_type_node
)
45 else if (COMPARISON_CLASS_P (expr
))
47 TREE_TYPE (expr
) = boolean_type_node
;
50 else if (TREE_CODE (expr
) == NOP_EXPR
)
51 return fold_build1_loc (input_location
, NOP_EXPR
,
52 boolean_type_node
, TREE_OPERAND (expr
, 0));
54 return fold_build1_loc (input_location
, NOP_EXPR
, boolean_type_node
,
58 if (TREE_CODE (expr
) == INTEGER_CST
)
59 return integer_zerop (expr
) ? boolean_false_node
: boolean_true_node
;
61 return fold_build2_loc (input_location
, NE_EXPR
, boolean_type_node
,
62 expr
, build_int_cst (TREE_TYPE (expr
), 0));
69 /* Create an expression whose value is that of EXPR,
70 converted to type TYPE. The TREE_TYPE of the value
71 is always TYPE. This function implements all reasonable
72 conversions; callers should filter out those that are
73 not permitted by the language being compiled. */
76 convert (tree type
, tree expr
)
81 if (type
== TREE_TYPE (expr
))
84 if (TREE_CODE (type
) == ERROR_MARK
85 || TREE_CODE (expr
) == ERROR_MARK
86 || TREE_CODE (TREE_TYPE (expr
)) == ERROR_MARK
)
89 gcc_checking_assert (TREE_CODE (TREE_TYPE (expr
)) != VOID_TYPE
);
91 if (TYPE_MAIN_VARIANT (type
) == TYPE_MAIN_VARIANT (TREE_TYPE (expr
)))
92 return fold_build1_loc (input_location
, NOP_EXPR
, type
, expr
);
94 code
= TREE_CODE (type
);
95 if (code
== VOID_TYPE
)
96 return fold_build1_loc (input_location
, CONVERT_EXPR
, type
, e
);
97 if (code
== BOOLEAN_TYPE
)
98 return fold_build1_loc (input_location
, NOP_EXPR
, type
,
99 truthvalue_conversion (e
));
100 if (code
== INTEGER_TYPE
)
101 return fold (convert_to_integer (type
, e
));
102 if (code
== POINTER_TYPE
|| code
== REFERENCE_TYPE
)
103 return fold (convert_to_pointer (type
, e
));
104 if (code
== REAL_TYPE
)
105 return fold (convert_to_real (type
, e
));
106 if (code
== COMPLEX_TYPE
)
107 return fold (convert_to_complex (type
, e
));
108 if (code
== VECTOR_TYPE
)
109 return fold (convert_to_vector (type
, e
));