2015-06-11 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git] / gcc / incpath.c
blobffb3a041ab3e1880ad72ec08a97ca4d65c5863db
1 /* Set up combined include path chain for the preprocessor.
2 Copyright (C) 1986-2015 Free Software Foundation, Inc.
4 Broken out of cppinit.c and cppfiles.c and rewritten Mar 2003.
6 This program is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by the
8 Free Software Foundation; either version 3, or (at your option) any
9 later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; 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 "target.h"
24 #include "tm.h"
25 #include "cpplib.h"
26 #include "prefix.h"
27 #include "intl.h"
28 #include "incpath.h"
29 #include "cppdefault.h"
31 /* Microsoft Windows does not natively support inodes.
32 VMS has non-numeric inodes. */
33 #ifdef VMS
34 # define INO_T_EQ(A, B) (!memcmp (&(A), &(B), sizeof (A)))
35 # define INO_T_COPY(DEST, SRC) memcpy (&(DEST), &(SRC), sizeof (SRC))
36 #elif !defined (HOST_LACKS_INODE_NUMBERS)
37 # define INO_T_EQ(A, B) ((A) == (B))
38 # define INO_T_COPY(DEST, SRC) (DEST) = (SRC)
39 #endif
41 #if defined INO_T_EQ
42 #define DIRS_EQ(A, B) ((A)->dev == (B)->dev \
43 && INO_T_EQ ((A)->ino, (B)->ino))
44 #else
45 #define DIRS_EQ(A, B) (!filename_cmp ((A)->canonical_name, (B)->canonical_name))
46 #endif
48 static const char dir_separator_str[] = { DIR_SEPARATOR, 0 };
50 static void add_env_var_paths (const char *, int);
51 static void add_standard_paths (const char *, const char *, const char *, int);
52 static void free_path (struct cpp_dir *, int);
53 static void merge_include_chains (const char *, cpp_reader *, int);
54 static void add_sysroot_to_chain (const char *, int);
55 static struct cpp_dir *remove_duplicates (cpp_reader *, struct cpp_dir *,
56 struct cpp_dir *,
57 struct cpp_dir *, int);
59 /* Include chains heads and tails. */
60 static struct cpp_dir *heads[4];
61 static struct cpp_dir *tails[4];
62 static bool quote_ignores_source_dir;
63 enum { REASON_QUIET = 0, REASON_NOENT, REASON_DUP, REASON_DUP_SYS };
65 /* Free an element of the include chain, possibly giving a reason. */
66 static void
67 free_path (struct cpp_dir *path, int reason)
69 switch (reason)
71 case REASON_DUP:
72 case REASON_DUP_SYS:
73 fprintf (stderr, _("ignoring duplicate directory \"%s\"\n"), path->name);
74 if (reason == REASON_DUP_SYS)
75 fprintf (stderr,
76 _(" as it is a non-system directory that duplicates a system directory\n"));
77 break;
79 case REASON_NOENT:
80 fprintf (stderr, _("ignoring nonexistent directory \"%s\"\n"),
81 path->name);
82 break;
84 case REASON_QUIET:
85 default:
86 break;
89 free (path->name);
90 free (path);
93 /* Read ENV_VAR for a PATH_SEPARATOR-separated list of file names; and
94 append all the names to the search path CHAIN. */
95 static void
96 add_env_var_paths (const char *env_var, int chain)
98 char *p, *q, *path;
100 q = getenv (env_var);
102 if (!q)
103 return;
105 for (p = q; *q; p = q + 1)
107 q = p;
108 while (*q != 0 && *q != PATH_SEPARATOR)
109 q++;
111 if (p == q)
112 path = xstrdup (".");
113 else
115 path = XNEWVEC (char, q - p + 1);
116 memcpy (path, p, q - p);
117 path[q - p] = '\0';
120 add_path (path, chain, chain == SYSTEM, false);
124 /* Append the standard include chain defined in cppdefault.c. */
125 static void
126 add_standard_paths (const char *sysroot, const char *iprefix,
127 const char *imultilib, int cxx_stdinc)
129 const struct default_include *p;
130 int relocated = cpp_relocated ();
131 size_t len;
133 if (iprefix && (len = cpp_GCC_INCLUDE_DIR_len) != 0)
135 /* Look for directories that start with the standard prefix.
136 "Translate" them, i.e. replace /usr/local/lib/gcc... with
137 IPREFIX and search them first. */
138 for (p = cpp_include_defaults; p->fname; p++)
140 if (!p->cplusplus || cxx_stdinc)
142 /* Should we be translating sysrooted dirs too? Assume
143 that iprefix and sysroot are mutually exclusive, for
144 now. */
145 if (sysroot && p->add_sysroot)
146 continue;
147 if (!filename_ncmp (p->fname, cpp_GCC_INCLUDE_DIR, len))
149 char *str = concat (iprefix, p->fname + len, NULL);
150 if (p->multilib == 1 && imultilib)
151 str = reconcat (str, str, dir_separator_str,
152 imultilib, NULL);
153 else if (p->multilib == 2)
155 if (!imultiarch)
157 free (str);
158 continue;
160 str = reconcat (str, str, dir_separator_str,
161 imultiarch, NULL);
163 add_path (str, SYSTEM, p->cxx_aware, false);
169 for (p = cpp_include_defaults; p->fname; p++)
171 if (!p->cplusplus || cxx_stdinc)
173 char *str;
175 /* Should this directory start with the sysroot? */
176 if (sysroot && p->add_sysroot)
178 char *sysroot_no_trailing_dir_separator = xstrdup (sysroot);
179 size_t sysroot_len = strlen (sysroot);
181 if (sysroot_len > 0 && sysroot[sysroot_len - 1] == DIR_SEPARATOR)
182 sysroot_no_trailing_dir_separator[sysroot_len - 1] = '\0';
183 str = concat (sysroot_no_trailing_dir_separator, p->fname, NULL);
184 free (sysroot_no_trailing_dir_separator);
186 else if (!p->add_sysroot && relocated
187 && !filename_ncmp (p->fname, cpp_PREFIX, cpp_PREFIX_len))
189 static const char *relocated_prefix;
190 char *ostr;
191 /* If this path starts with the configure-time prefix,
192 but the compiler has been relocated, replace it
193 with the run-time prefix. The run-time exec prefix
194 is GCC_EXEC_PREFIX. Compute the path from there back
195 to the toplevel prefix. */
196 if (!relocated_prefix)
198 char *dummy;
199 /* Make relative prefix expects the first argument
200 to be a program, not a directory. */
201 dummy = concat (gcc_exec_prefix, "dummy", NULL);
202 relocated_prefix
203 = make_relative_prefix (dummy,
204 cpp_EXEC_PREFIX,
205 cpp_PREFIX);
206 free (dummy);
208 ostr = concat (relocated_prefix,
209 p->fname + cpp_PREFIX_len,
210 NULL);
211 str = update_path (ostr, p->component);
212 free (ostr);
214 else
215 str = update_path (p->fname, p->component);
217 if (p->multilib == 1 && imultilib)
218 str = reconcat (str, str, dir_separator_str, imultilib, NULL);
219 else if (p->multilib == 2)
221 if (!imultiarch)
223 free (str);
224 continue;
226 str = reconcat (str, str, dir_separator_str, imultiarch, NULL);
229 add_path (str, SYSTEM, p->cxx_aware, false);
234 /* For each duplicate path in chain HEAD, keep just the first one.
235 Remove each path in chain HEAD that also exists in chain SYSTEM.
236 Set the NEXT pointer of the last path in the resulting chain to
237 JOIN, unless it duplicates JOIN in which case the last path is
238 removed. Return the head of the resulting chain. Any of HEAD,
239 JOIN and SYSTEM can be NULL. */
241 static struct cpp_dir *
242 remove_duplicates (cpp_reader *pfile, struct cpp_dir *head,
243 struct cpp_dir *system, struct cpp_dir *join,
244 int verbose)
246 struct cpp_dir **pcur, *tmp, *cur;
247 struct stat st;
249 for (pcur = &head; *pcur; )
251 int reason = REASON_QUIET;
253 cur = *pcur;
255 if (stat (cur->name, &st))
257 /* Dirs that don't exist are silently ignored, unless verbose. */
258 if (errno != ENOENT)
259 cpp_errno (pfile, CPP_DL_ERROR, cur->name);
260 else
262 /* If -Wmissing-include-dirs is given, warn. */
263 cpp_options *opts = cpp_get_options (pfile);
264 if (opts->warn_missing_include_dirs && cur->user_supplied_p)
265 cpp_warning (pfile, CPP_W_MISSING_INCLUDE_DIRS, "%s: %s",
266 cur->name, xstrerror (errno));
267 reason = REASON_NOENT;
270 else if (!S_ISDIR (st.st_mode))
271 cpp_error_with_line (pfile, CPP_DL_WARNING, 0, 0,
272 "%s: not a directory", cur->name);
273 else
275 #if defined (INO_T_COPY)
276 INO_T_COPY (cur->ino, st.st_ino);
277 cur->dev = st.st_dev;
278 #endif
280 /* Remove this one if it is in the system chain. */
281 reason = REASON_DUP_SYS;
282 for (tmp = system; tmp; tmp = tmp->next)
283 if (DIRS_EQ (tmp, cur) && cur->construct == tmp->construct)
284 break;
286 if (!tmp)
288 /* Duplicate of something earlier in the same chain? */
289 reason = REASON_DUP;
290 for (tmp = head; tmp != cur; tmp = tmp->next)
291 if (DIRS_EQ (cur, tmp) && cur->construct == tmp->construct)
292 break;
294 if (tmp == cur
295 /* Last in the chain and duplicate of JOIN? */
296 && !(cur->next == NULL && join
297 && DIRS_EQ (cur, join)
298 && cur->construct == join->construct))
300 /* Unique, so keep this directory. */
301 pcur = &cur->next;
302 continue;
307 /* Remove this entry from the chain. */
308 *pcur = cur->next;
309 free_path (cur, verbose ? reason: REASON_QUIET);
312 *pcur = join;
313 return head;
316 /* Add SYSROOT to any user-supplied paths in CHAIN starting with
317 "=". */
319 static void
320 add_sysroot_to_chain (const char *sysroot, int chain)
322 struct cpp_dir *p;
324 for (p = heads[chain]; p != NULL; p = p->next)
325 if (p->name[0] == '=' && p->user_supplied_p)
326 p->name = concat (sysroot, p->name + 1, NULL);
329 /* Merge the four include chains together in the order quote, bracket,
330 system, after. Remove duplicate dirs (determined in
331 system-specific manner).
333 We can't just merge the lists and then uniquify them because then
334 we may lose directories from the <> search path that should be
335 there; consider -iquote foo -iquote bar -Ifoo -Iquux. It is
336 however safe to treat -iquote bar -iquote foo -Ifoo -Iquux as if
337 written -iquote bar -Ifoo -Iquux. */
339 static void
340 merge_include_chains (const char *sysroot, cpp_reader *pfile, int verbose)
342 /* Add the sysroot to user-supplied paths starting with "=". */
343 if (sysroot)
345 add_sysroot_to_chain (sysroot, QUOTE);
346 add_sysroot_to_chain (sysroot, BRACKET);
347 add_sysroot_to_chain (sysroot, SYSTEM);
348 add_sysroot_to_chain (sysroot, AFTER);
351 /* Join the SYSTEM and AFTER chains. Remove duplicates in the
352 resulting SYSTEM chain. */
353 if (heads[SYSTEM])
354 tails[SYSTEM]->next = heads[AFTER];
355 else
356 heads[SYSTEM] = heads[AFTER];
357 heads[SYSTEM] = remove_duplicates (pfile, heads[SYSTEM], 0, 0, verbose);
359 /* Remove duplicates from BRACKET that are in itself or SYSTEM, and
360 join it to SYSTEM. */
361 heads[BRACKET] = remove_duplicates (pfile, heads[BRACKET], heads[SYSTEM],
362 heads[SYSTEM], verbose);
364 /* Remove duplicates from QUOTE that are in itself or SYSTEM, and
365 join it to BRACKET. */
366 heads[QUOTE] = remove_duplicates (pfile, heads[QUOTE], heads[SYSTEM],
367 heads[BRACKET], verbose);
369 /* If verbose, print the list of dirs to search. */
370 if (verbose)
372 struct cpp_dir *p;
374 fprintf (stderr, _("#include \"...\" search starts here:\n"));
375 for (p = heads[QUOTE];; p = p->next)
377 if (p == heads[BRACKET])
378 fprintf (stderr, _("#include <...> search starts here:\n"));
379 if (!p)
380 break;
381 fprintf (stderr, " %s\n", p->name);
383 fprintf (stderr, _("End of search list.\n"));
387 /* Use given -I paths for #include "..." but not #include <...>, and
388 don't search the directory of the present file for #include "...".
389 (Note that -I. -I- is not the same as the default setup; -I. uses
390 the compiler's working dir.) */
391 void
392 split_quote_chain (void)
394 if (heads[QUOTE])
395 free_path (heads[QUOTE], REASON_QUIET);
396 if (tails[QUOTE])
397 free_path (tails[QUOTE], REASON_QUIET);
398 heads[QUOTE] = heads[BRACKET];
399 tails[QUOTE] = tails[BRACKET];
400 heads[BRACKET] = NULL;
401 tails[BRACKET] = NULL;
402 /* This is NOT redundant. */
403 quote_ignores_source_dir = true;
406 /* Add P to the chain specified by CHAIN. */
408 void
409 add_cpp_dir_path (cpp_dir *p, int chain)
411 if (tails[chain])
412 tails[chain]->next = p;
413 else
414 heads[chain] = p;
415 tails[chain] = p;
418 /* Add PATH to the include chain CHAIN. PATH must be malloc-ed and
419 NUL-terminated. */
420 void
421 add_path (char *path, int chain, int cxx_aware, bool user_supplied_p)
423 cpp_dir *p;
425 #if defined (HAVE_DOS_BASED_FILE_SYSTEM)
426 /* Remove unnecessary trailing slashes. On some versions of MS
427 Windows, trailing _forward_ slashes cause no problems for stat().
428 On newer versions, stat() does not recognize a directory that ends
429 in a '\\' or '/', unless it is a drive root dir, such as "c:/",
430 where it is obligatory. */
431 int pathlen = strlen (path);
432 char* end = path + pathlen - 1;
433 /* Preserve the lead '/' or lead "c:/". */
434 char* start = path + (pathlen > 2 && path[1] == ':' ? 3 : 1);
436 for (; end > start && IS_DIR_SEPARATOR (*end); end--)
437 *end = 0;
438 #endif
440 p = XNEW (cpp_dir);
441 p->next = NULL;
442 p->name = path;
443 #ifndef INO_T_EQ
444 p->canonical_name = lrealpath (path);
445 #endif
446 if (chain == SYSTEM || chain == AFTER)
447 p->sysp = 1 + !cxx_aware;
448 else
449 p->sysp = 0;
450 p->construct = 0;
451 p->user_supplied_p = user_supplied_p;
453 add_cpp_dir_path (p, chain);
456 /* Exported function to handle include chain merging, duplicate
457 removal, and registration with cpplib. */
458 void
459 register_include_chains (cpp_reader *pfile, const char *sysroot,
460 const char *iprefix, const char *imultilib,
461 int stdinc, int cxx_stdinc, int verbose)
463 static const char *const lang_env_vars[] =
464 { "C_INCLUDE_PATH", "CPLUS_INCLUDE_PATH",
465 "OBJC_INCLUDE_PATH", "OBJCPLUS_INCLUDE_PATH" };
466 cpp_options *cpp_opts = cpp_get_options (pfile);
467 size_t idx = (cpp_opts->objc ? 2: 0);
469 if (cpp_opts->cplusplus)
470 idx++;
471 else
472 cxx_stdinc = false;
474 /* CPATH and language-dependent environment variables may add to the
475 include chain. */
476 add_env_var_paths ("CPATH", BRACKET);
477 add_env_var_paths (lang_env_vars[idx], SYSTEM);
479 target_c_incpath.extra_pre_includes (sysroot, iprefix, stdinc);
481 /* Finally chain on the standard directories. */
482 if (stdinc)
483 add_standard_paths (sysroot, iprefix, imultilib, cxx_stdinc);
485 target_c_incpath.extra_includes (sysroot, iprefix, stdinc);
487 merge_include_chains (sysroot, pfile, verbose);
489 cpp_set_include_chains (pfile, heads[QUOTE], heads[BRACKET],
490 quote_ignores_source_dir);
493 /* Return the current chain of cpp dirs. */
495 struct cpp_dir *
496 get_added_cpp_dirs (int chain)
498 return heads[chain];
501 #if !(defined TARGET_EXTRA_INCLUDES) || !(defined TARGET_EXTRA_PRE_INCLUDES)
502 static void hook_void_charptr_charptr_int (const char *sysroot ATTRIBUTE_UNUSED,
503 const char *iprefix ATTRIBUTE_UNUSED,
504 int stdinc ATTRIBUTE_UNUSED)
507 #endif
509 #ifndef TARGET_EXTRA_INCLUDES
510 #define TARGET_EXTRA_INCLUDES hook_void_charptr_charptr_int
511 #endif
512 #ifndef TARGET_EXTRA_PRE_INCLUDES
513 #define TARGET_EXTRA_PRE_INCLUDES hook_void_charptr_charptr_int
514 #endif
516 struct target_c_incpath_s target_c_incpath = { TARGET_EXTRA_PRE_INCLUDES, TARGET_EXTRA_INCLUDES };