libgomp: Use pthread mutexes in the nvptx plugin.
[official-gcc.git] / gcc / rtlhooks.c
blobefb15139943adf320cc81ac1d5b002ad59b37acd
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 "symtab.h"
27 #include "expr.h"
28 #include "recog.h"
31 /* For speed, we will copy the RTX hooks struct member-by-member
32 instead of doing indirect calls. For these reason, we initialize
33 *two* struct rtl_hooks globals: rtl_hooks is the one that is used
34 to actually call the hooks, while general_rtl_hooks is used
35 to restore the hooks by passes that modify them. */
37 const struct rtl_hooks general_rtl_hooks = RTL_HOOKS_INITIALIZER;
38 struct rtl_hooks rtl_hooks = RTL_HOOKS_INITIALIZER;
40 rtx
41 gen_lowpart_general (machine_mode mode, rtx x)
43 rtx result = gen_lowpart_common (mode, x);
45 if (result)
46 return result;
47 /* Handle SUBREGs and hard REGs that were rejected by
48 simplify_gen_subreg. */
49 else if (REG_P (x) || GET_CODE (x) == SUBREG)
51 result = gen_lowpart_common (mode, copy_to_reg (x));
52 gcc_assert (result != 0);
53 return result;
55 else
57 int offset = 0;
59 /* The only additional case we can do is MEM. */
60 gcc_assert (MEM_P (x));
62 /* The following exposes the use of "x" to CSE. */
63 if (GET_MODE_SIZE (GET_MODE (x)) <= UNITS_PER_WORD
64 && SCALAR_INT_MODE_P (GET_MODE (x))
65 && TRULY_NOOP_TRUNCATION_MODES_P (mode, GET_MODE (x))
66 && !reload_completed)
67 return gen_lowpart_general (mode, force_reg (GET_MODE (x), x));
69 if (WORDS_BIG_ENDIAN)
70 offset = (MAX (GET_MODE_SIZE (GET_MODE (x)), UNITS_PER_WORD)
71 - MAX (GET_MODE_SIZE (mode), UNITS_PER_WORD));
73 if (BYTES_BIG_ENDIAN)
74 /* Adjust the address so that the address-after-the-data
75 is unchanged. */
76 offset -= (MIN (UNITS_PER_WORD, GET_MODE_SIZE (mode))
77 - MIN (UNITS_PER_WORD, GET_MODE_SIZE (GET_MODE (x))));
79 return adjust_address (x, mode, offset);
83 rtx
84 reg_num_sign_bit_copies_general (const_rtx x ATTRIBUTE_UNUSED,
85 machine_mode mode ATTRIBUTE_UNUSED,
86 const_rtx known_x ATTRIBUTE_UNUSED,
87 machine_mode known_mode ATTRIBUTE_UNUSED,
88 unsigned int known_ret ATTRIBUTE_UNUSED,
89 unsigned int *result ATTRIBUTE_UNUSED)
91 return NULL;
94 rtx
95 reg_nonzero_bits_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 HOST_WIDE_INT known_ret ATTRIBUTE_UNUSED,
100 unsigned HOST_WIDE_INT *nonzero ATTRIBUTE_UNUSED)
102 return NULL;
105 bool
106 reg_truncated_to_mode_general (machine_mode mode ATTRIBUTE_UNUSED,
107 const_rtx x ATTRIBUTE_UNUSED)
109 return false;
112 /* Assuming that X is an rtx (e.g., MEM, REG or SUBREG) for a fixed-point
113 number, return an rtx (MEM, SUBREG, or CONST_INT) that refers to the
114 least-significant part of X.
115 MODE specifies how big a part of X to return.
117 If the requested operation cannot be done, 0 is returned.
119 This is similar to gen_lowpart_general. */
122 gen_lowpart_if_possible (machine_mode mode, rtx x)
124 rtx result = gen_lowpart_common (mode, x);
126 if (result)
127 return result;
128 else if (MEM_P (x))
130 /* This is the only other case we handle. */
131 int offset = 0;
132 rtx new_rtx;
134 if (WORDS_BIG_ENDIAN)
135 offset = (MAX (GET_MODE_SIZE (GET_MODE (x)), UNITS_PER_WORD)
136 - MAX (GET_MODE_SIZE (mode), UNITS_PER_WORD));
137 if (BYTES_BIG_ENDIAN)
138 /* Adjust the address so that the address-after-the-data is
139 unchanged. */
140 offset -= (MIN (UNITS_PER_WORD, GET_MODE_SIZE (mode))
141 - MIN (UNITS_PER_WORD, GET_MODE_SIZE (GET_MODE (x))));
143 new_rtx = adjust_address_nv (x, mode, offset);
144 if (! memory_address_addr_space_p (mode, XEXP (new_rtx, 0),
145 MEM_ADDR_SPACE (x)))
146 return 0;
148 return new_rtx;
150 else if (mode != GET_MODE (x) && GET_MODE (x) != VOIDmode
151 && validate_subreg (mode, GET_MODE (x), x,
152 subreg_lowpart_offset (mode, GET_MODE (x))))
153 return gen_lowpart_SUBREG (mode, x);
154 else
155 return 0;