PR target/82524
[official-gcc.git] / gcc / rtlhooks.c
blob4d04ebd0c4716a7e7610448bb55ed39db02e8b02
1 /* Generic hooks for the RTL middle-end.
2 Copyright (C) 2004-2017 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 "function.h"
25 #include "rtl.h"
26 #include "tree.h"
27 #include "insn-config.h"
28 #include "memmodel.h"
29 #include "emit-rtl.h"
30 #include "recog.h"
31 #include "rtlhooks-def.h"
32 #include "explow.h"
33 #include "target.h"
36 /* For speed, we will copy the RTX hooks struct member-by-member
37 instead of doing indirect calls. For these reason, we initialize
38 *two* struct rtl_hooks globals: rtl_hooks is the one that is used
39 to actually call the hooks, while general_rtl_hooks is used
40 to restore the hooks by passes that modify them. */
42 const struct rtl_hooks general_rtl_hooks = RTL_HOOKS_INITIALIZER;
43 struct rtl_hooks rtl_hooks = RTL_HOOKS_INITIALIZER;
45 rtx
46 gen_lowpart_general (machine_mode mode, rtx x)
48 rtx result = gen_lowpart_common (mode, x);
50 if (result)
51 return result;
52 /* Handle SUBREGs and hard REGs that were rejected by
53 simplify_gen_subreg. */
54 else if (REG_P (x) || GET_CODE (x) == SUBREG)
56 result = gen_lowpart_common (mode, copy_to_reg (x));
57 gcc_assert (result != 0);
58 return result;
60 else
62 int offset = 0;
64 /* The only additional case we can do is MEM. */
65 gcc_assert (MEM_P (x));
67 /* The following exposes the use of "x" to CSE. */
68 scalar_int_mode xmode;
69 if (is_a <scalar_int_mode> (GET_MODE (x), &xmode)
70 && GET_MODE_SIZE (xmode) <= UNITS_PER_WORD
71 && TRULY_NOOP_TRUNCATION_MODES_P (mode, xmode)
72 && !reload_completed)
73 return gen_lowpart_general (mode, force_reg (xmode, x));
75 if (WORDS_BIG_ENDIAN)
76 offset = (MAX (GET_MODE_SIZE (GET_MODE (x)), UNITS_PER_WORD)
77 - MAX (GET_MODE_SIZE (mode), UNITS_PER_WORD));
79 if (BYTES_BIG_ENDIAN)
80 /* Adjust the address so that the address-after-the-data
81 is unchanged. */
82 offset -= (MIN (UNITS_PER_WORD, GET_MODE_SIZE (mode))
83 - MIN (UNITS_PER_WORD, GET_MODE_SIZE (GET_MODE (x))));
85 return adjust_address (x, mode, offset);
89 rtx
90 reg_num_sign_bit_copies_general (const_rtx, scalar_int_mode, scalar_int_mode,
91 unsigned int *)
93 return NULL;
96 rtx
97 reg_nonzero_bits_general (const_rtx, scalar_int_mode, scalar_int_mode,
98 unsigned HOST_WIDE_INT *)
100 return NULL;
103 bool
104 reg_truncated_to_mode_general (machine_mode mode ATTRIBUTE_UNUSED,
105 const_rtx x ATTRIBUTE_UNUSED)
107 return false;
110 /* Assuming that X is an rtx (e.g., MEM, REG or SUBREG) for a fixed-point
111 number, return an rtx (MEM, SUBREG, or CONST_INT) that refers to the
112 least-significant part of X.
113 MODE specifies how big a part of X to return.
115 If the requested operation cannot be done, 0 is returned.
117 This is similar to gen_lowpart_general. */
120 gen_lowpart_if_possible (machine_mode mode, rtx x)
122 rtx result = gen_lowpart_common (mode, x);
124 if (result)
125 return result;
126 else if (MEM_P (x))
128 /* This is the only other case we handle. */
129 int offset = 0;
130 rtx new_rtx;
132 if (WORDS_BIG_ENDIAN)
133 offset = (MAX (GET_MODE_SIZE (GET_MODE (x)), UNITS_PER_WORD)
134 - MAX (GET_MODE_SIZE (mode), UNITS_PER_WORD));
135 if (BYTES_BIG_ENDIAN)
136 /* Adjust the address so that the address-after-the-data is
137 unchanged. */
138 offset -= (MIN (UNITS_PER_WORD, GET_MODE_SIZE (mode))
139 - MIN (UNITS_PER_WORD, GET_MODE_SIZE (GET_MODE (x))));
141 new_rtx = adjust_address_nv (x, mode, offset);
142 if (! memory_address_addr_space_p (mode, XEXP (new_rtx, 0),
143 MEM_ADDR_SPACE (x)))
144 return 0;
146 return new_rtx;
148 else if (mode != GET_MODE (x) && GET_MODE (x) != VOIDmode
149 && validate_subreg (mode, GET_MODE (x), x,
150 subreg_lowpart_offset (mode, GET_MODE (x))))
151 return gen_lowpart_SUBREG (mode, x);
152 else
153 return 0;