Add C++11 header <cuchar>.
[official-gcc.git] / gcc / rtlhooks.c
blob0c6998124e8df68751d8b156a14da35e6cf04db4
1 /* Generic hooks for the RTL middle-end.
2 Copyright (C) 2004-2015 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
9 version.
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
14 for more details.
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/>. */
20 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "tm.h"
24 #include "rtl.h"
25 #include "rtlhooks-def.h"
26 #include "tree.h"
27 #include "function.h"
28 #include "flags.h"
29 #include "alias.h"
30 #include "insn-config.h"
31 #include "expmed.h"
32 #include "dojump.h"
33 #include "explow.h"
34 #include "calls.h"
35 #include "emit-rtl.h"
36 #include "varasm.h"
37 #include "stmt.h"
38 #include "expr.h"
39 #include "recog.h"
42 /* For speed, we will copy the RTX hooks struct member-by-member
43 instead of doing indirect calls. For these reason, we initialize
44 *two* struct rtl_hooks globals: rtl_hooks is the one that is used
45 to actually call the hooks, while general_rtl_hooks is used
46 to restore the hooks by passes that modify them. */
48 const struct rtl_hooks general_rtl_hooks = RTL_HOOKS_INITIALIZER;
49 struct rtl_hooks rtl_hooks = RTL_HOOKS_INITIALIZER;
51 rtx
52 gen_lowpart_general (machine_mode mode, rtx x)
54 rtx result = gen_lowpart_common (mode, x);
56 if (result)
57 return result;
58 /* Handle SUBREGs and hard REGs that were rejected by
59 simplify_gen_subreg. */
60 else if (REG_P (x) || GET_CODE (x) == SUBREG)
62 result = gen_lowpart_common (mode, copy_to_reg (x));
63 gcc_assert (result != 0);
64 return result;
66 else
68 int offset = 0;
70 /* The only additional case we can do is MEM. */
71 gcc_assert (MEM_P (x));
73 /* The following exposes the use of "x" to CSE. */
74 if (GET_MODE_SIZE (GET_MODE (x)) <= UNITS_PER_WORD
75 && SCALAR_INT_MODE_P (GET_MODE (x))
76 && TRULY_NOOP_TRUNCATION_MODES_P (mode, GET_MODE (x))
77 && !reload_completed)
78 return gen_lowpart_general (mode, force_reg (GET_MODE (x), x));
80 if (WORDS_BIG_ENDIAN)
81 offset = (MAX (GET_MODE_SIZE (GET_MODE (x)), UNITS_PER_WORD)
82 - MAX (GET_MODE_SIZE (mode), UNITS_PER_WORD));
84 if (BYTES_BIG_ENDIAN)
85 /* Adjust the address so that the address-after-the-data
86 is unchanged. */
87 offset -= (MIN (UNITS_PER_WORD, GET_MODE_SIZE (mode))
88 - MIN (UNITS_PER_WORD, GET_MODE_SIZE (GET_MODE (x))));
90 return adjust_address (x, mode, offset);
94 rtx
95 reg_num_sign_bit_copies_general (const_rtx x ATTRIBUTE_UNUSED,
96 machine_mode mode ATTRIBUTE_UNUSED,
97 const_rtx known_x ATTRIBUTE_UNUSED,
98 machine_mode known_mode ATTRIBUTE_UNUSED,
99 unsigned int known_ret ATTRIBUTE_UNUSED,
100 unsigned int *result ATTRIBUTE_UNUSED)
102 return NULL;
106 reg_nonzero_bits_general (const_rtx x ATTRIBUTE_UNUSED,
107 machine_mode mode ATTRIBUTE_UNUSED,
108 const_rtx known_x ATTRIBUTE_UNUSED,
109 machine_mode known_mode ATTRIBUTE_UNUSED,
110 unsigned HOST_WIDE_INT known_ret ATTRIBUTE_UNUSED,
111 unsigned HOST_WIDE_INT *nonzero ATTRIBUTE_UNUSED)
113 return NULL;
116 bool
117 reg_truncated_to_mode_general (machine_mode mode ATTRIBUTE_UNUSED,
118 const_rtx x ATTRIBUTE_UNUSED)
120 return false;
123 /* Assuming that X is an rtx (e.g., MEM, REG or SUBREG) for a fixed-point
124 number, return an rtx (MEM, SUBREG, or CONST_INT) that refers to the
125 least-significant part of X.
126 MODE specifies how big a part of X to return.
128 If the requested operation cannot be done, 0 is returned.
130 This is similar to gen_lowpart_general. */
133 gen_lowpart_if_possible (machine_mode mode, rtx x)
135 rtx result = gen_lowpart_common (mode, x);
137 if (result)
138 return result;
139 else if (MEM_P (x))
141 /* This is the only other case we handle. */
142 int offset = 0;
143 rtx new_rtx;
145 if (WORDS_BIG_ENDIAN)
146 offset = (MAX (GET_MODE_SIZE (GET_MODE (x)), UNITS_PER_WORD)
147 - MAX (GET_MODE_SIZE (mode), UNITS_PER_WORD));
148 if (BYTES_BIG_ENDIAN)
149 /* Adjust the address so that the address-after-the-data is
150 unchanged. */
151 offset -= (MIN (UNITS_PER_WORD, GET_MODE_SIZE (mode))
152 - MIN (UNITS_PER_WORD, GET_MODE_SIZE (GET_MODE (x))));
154 new_rtx = adjust_address_nv (x, mode, offset);
155 if (! memory_address_addr_space_p (mode, XEXP (new_rtx, 0),
156 MEM_ADDR_SPACE (x)))
157 return 0;
159 return new_rtx;
161 else if (mode != GET_MODE (x) && GET_MODE (x) != VOIDmode
162 && validate_subreg (mode, GET_MODE (x), x,
163 subreg_lowpart_offset (mode, GET_MODE (x))))
164 return gen_lowpart_SUBREG (mode, x);
165 else
166 return 0;