2006-01-31 Marcin Dalecki <martin@dalecki.de> * tree-vrp.c: Use XNEW/XCNEW allocation wrappers. * regrename.c: Ditto. * tree-ssa-loop-im.c: Ditto. * tree-dump.c: Ditto. * tree-complex.c: Ditto. * genrecog.c: Ditto. * tree-ssa-threadupdate.c: Ditto. * tracer.c: Ditto. * java/class.c: Ditto. * java/jcf-parse.c: Ditto. * java/resource.c: Ditto. * java/except.c: Ditto. * java/jvspec.c: Ditto. * java/jcf-write.c: Ditto. * java/jcf-path.c: Ditto. * java/gjavah.c: Ditto. * java/zextract.c: Ditto. * java/jcf-io.c: Ditto. * java/jcf.h: Ditto. * java/buffer.c: Ditto. * java/lang.c: Ditto. * java/parse-scan.y: Ditto. * java/lex.c: Ditto. * java/lex.h: Ditto. * cfgloopmanip.c: Ditto. * postreload-gcse.c: Ditto. * tree-ssa-loop-manip.c: Ditto. * postreload.c: Ditto. * tree-ssa-loop-ch.c: Ditto. * loop.c: Ditto. * ipa-cp.c: Ditto. * cppspec.c: Ditto. * diagnostic.c: Ditto. * final.c: Ditto. * genoutput.c: Ditto. * gcc.c: Ditto. * cfghooks.c: Ditto. * cfgloopanal.c: Ditto. * objc/objc-act.c: Ditto. * gcov.c: Ditto. * genextract.c: Ditto. * genautomata.c: Ditto. * pretty-print.c: Ditto. * genemit.c: Ditto. * cgraphunit.c: Ditto. * flow.c: Ditto. * df-scan.c: Ditto. * haifa-sched.c: Ditto. * dominance.c: Ditto. * dbxout.c: Ditto. * tree-ssa-loop-ivopts.c: Ditto. * df-core.c: Ditto. * mode-switching.c: Ditto. * modulo-sched.c: Ditto. * graph.c: Ditto. * ipa-pure-const.c: Ditto. * cse.c: Ditto. * fix-header.c: Ditto. * web.c: Ditto. * tree-stdarg.c: Ditto. * ipa-utils.c: Ditto. * loop-init.c: Ditto. * ipa-inline.c: Ditto. * cfganal.c: Ditto. * global.c: Ditto. * alloc-pool.c: Ditto. * dwarf2out.c: Ditto. * opts.c: Ditto. * genattrtab.c: Ditto. * tree-ssa-loop-ivcanon.c: Ditto. * predict.c: Ditto. * timevar.c: Ditto. * lcm.c: Ditto. * fortran/gfortranspec.c: Ditto. * regmove.c: Ditto. * local-alloc.c: Ditto. * langhooks.c: Ditto. * function.c: Ditto. * tree-vectorizer.c: Ditto. * gcse.c: Ditto. * ipa-type-escape.c: Ditto. * alias.c: Ditto. * tree-if-conv.c: Ditto. * profile.c: Ditto. * ipa.c: Ditto. * tree-data-ref.c: Ditto. * loop-unroll.c: Ditto. * treelang/treetree.c: Ditto. * calls.c: Ditto. * bt-load.c: Ditto. * ggc-common.c: Ditto. * except.c: Ditto. * coverage.c: Ditto. * cselib.c: Ditto. * tree-cfgcleanup.c: Ditto. * tree-ssa-pre.c: Ditto. * cfgcleanup.c: Ditto. * loop-invariant.c: Ditto. * loop-iv.c: Ditto. * ipa-prop.c: Ditto. * print-tree.c: Ditto. * conflict.c: Ditto. * ggc-page.c: Ditto. * sched-deps.c: Ditto. * regclass.c: Ditto. * tree-object-size.c: Ditto. * combine.c: Ditto. * bb-reorder.c: Ditto. * resource.c: Ditto. * var-tracking.c: Ditto. * cfgloop.c: Ditto. * df-problems.c: Ditto. * reg-stack.c: Ditto. * tlink.c: Ditto. * gccspec.c: Ditto. * sched-rgn.c: Ditto. * tree-ssa-structalias.c: Ditto. * tree-ssa-reassoc.c: Ditto. * config/darwin-c.c: Ditto. * config/darwin.c: Ditto. * config/arm/arm.c: Ditto. * cfgrtl.c: Ditto. * collect2.c: Ditto. * reload1.c: Ditto. From-SVN: r110446
211 lines
5.2 KiB
C
211 lines
5.2 KiB
C
/* Specific flags and argument handling of the C preprocessor.
|
|
Copyright (C) 1999 Free Software Foundation, Inc.
|
|
|
|
This file is part of GCC.
|
|
|
|
GCC is free software; you can redistribute it and/or modify it under
|
|
the terms of the GNU General Public License as published by the Free
|
|
Software Foundation; either version 2, or (at your option) any later
|
|
version.
|
|
|
|
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with GCC; see the file COPYING. If not, write to the Free
|
|
Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
|
|
02110-1301, USA. */
|
|
|
|
#include "config.h"
|
|
#include "system.h"
|
|
#include "coretypes.h"
|
|
#include "tm.h"
|
|
#include "gcc.h"
|
|
|
|
/* The `cpp' executable installed in $(bindir) and $(cpp_install_dir)
|
|
is a customized version of the gcc driver. It forces -E; -S and -c
|
|
are errors. It defaults to -x c for files with unrecognized
|
|
extensions, unless -x options appear in argv, in which case we
|
|
assume the user knows what they're doing. If no explicit input is
|
|
mentioned, it will read stdin. */
|
|
|
|
#ifndef SWITCH_TAKES_ARG
|
|
#define SWITCH_TAKES_ARG(CHAR) DEFAULT_SWITCH_TAKES_ARG(CHAR)
|
|
#endif
|
|
|
|
#ifndef WORD_SWITCH_TAKES_ARG
|
|
#define WORD_SWITCH_TAKES_ARG(STR) DEFAULT_WORD_SWITCH_TAKES_ARG (STR)
|
|
#endif
|
|
|
|
/* Suffixes for known sorts of input files. Note that we do not list
|
|
files which are normally considered to have been preprocessed already,
|
|
since the user's expectation is that `cpp' always preprocesses. */
|
|
static const char *const known_suffixes[] =
|
|
{
|
|
".c", ".C", ".S", ".m",
|
|
".cc", ".cxx", ".cpp", ".cp", ".c++",
|
|
NULL
|
|
};
|
|
|
|
/* Filter argc and argv before processing by the gcc driver proper. */
|
|
void
|
|
lang_specific_driver (int *in_argc, const char *const **in_argv,
|
|
int *in_added_libraries ATTRIBUTE_UNUSED)
|
|
{
|
|
int argc = *in_argc;
|
|
const char *const *argv = *in_argv;
|
|
|
|
/* Do we need to read stdin? */
|
|
int read_stdin = 1;
|
|
|
|
/* Do we need to insert -E? */
|
|
int need_E = 1;
|
|
|
|
/* Have we seen an input file? */
|
|
int seen_input = 0;
|
|
|
|
/* Positions to insert -xc, -xassembler-with-cpp, and -o, if necessary.
|
|
0 means unnecessary. */
|
|
int lang_c_here = 0;
|
|
int lang_S_here = 0;
|
|
int o_here = 0;
|
|
|
|
/* Do we need to fix up an input file with an unrecognized suffix? */
|
|
int need_fixups = 1;
|
|
|
|
int i, j, quote = 0;
|
|
const char **new_argv;
|
|
int new_argc;
|
|
extern int is_cpp_driver;
|
|
|
|
is_cpp_driver = 1;
|
|
|
|
/* First pass. If we see an -S or -c, barf. If we see an input file,
|
|
turn off read_stdin. If we see a second input file, it is actually
|
|
the output file. If we see a third input file, barf. */
|
|
for (i = 1; i < argc; i++)
|
|
{
|
|
if (quote == 1)
|
|
{
|
|
quote = 0;
|
|
continue;
|
|
}
|
|
|
|
if (argv[i][0] == '-')
|
|
{
|
|
if (argv[i][1] == '\0')
|
|
read_stdin = 0;
|
|
else if (argv[i][2] == '\0')
|
|
{
|
|
if (argv[i][1] == 'E')
|
|
need_E = 0;
|
|
else if (argv[i][1] == 'S' || argv[i][1] == 'c')
|
|
{
|
|
fatal ("\"%s\" is not a valid option to the preprocessor",
|
|
argv[i]);
|
|
return;
|
|
}
|
|
else if (argv[i][1] == 'x')
|
|
{
|
|
need_fixups = 0;
|
|
quote = 1;
|
|
}
|
|
else if (SWITCH_TAKES_ARG (argv[i][1]))
|
|
quote = 1;
|
|
}
|
|
else if (argv[i][1] == 'x')
|
|
need_fixups = 0;
|
|
else if (WORD_SWITCH_TAKES_ARG (&argv[i][1]))
|
|
quote = 1;
|
|
}
|
|
else /* not an option */
|
|
{
|
|
seen_input++;
|
|
if (seen_input == 3)
|
|
{
|
|
fatal ("too many input files");
|
|
return;
|
|
}
|
|
else if (seen_input == 2)
|
|
{
|
|
o_here = i;
|
|
}
|
|
else
|
|
{
|
|
read_stdin = 0;
|
|
if (need_fixups)
|
|
{
|
|
int l = strlen (argv[i]);
|
|
int known = 0;
|
|
const char *const *suff;
|
|
|
|
for (suff = known_suffixes; *suff; suff++)
|
|
if (!strcmp (*suff, &argv[i][l - strlen(*suff)]))
|
|
{
|
|
known = 1;
|
|
break;
|
|
}
|
|
|
|
if (! known)
|
|
{
|
|
/* .s files are a special case; we have to treat
|
|
them like .S files so -D__ASSEMBLER__ will be
|
|
in effect. */
|
|
if (!strcmp (".s", &argv[i][l - 2]))
|
|
lang_S_here = i;
|
|
else
|
|
lang_c_here = i;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/* If we don't need to edit the command line, we can bail early. */
|
|
|
|
new_argc = argc + need_E + read_stdin
|
|
+ !!o_here + !!lang_c_here + !!lang_S_here;
|
|
|
|
if (new_argc == argc)
|
|
return;
|
|
|
|
/* One more slot for a terminating null. */
|
|
new_argv = XNEWVEC (const char *, new_argc + 1);
|
|
|
|
new_argv[0] = argv[0];
|
|
j = 1;
|
|
|
|
if (need_E)
|
|
new_argv[j++] = "-E";
|
|
|
|
for (i = 1; i < argc; i++, j++)
|
|
{
|
|
if (i == lang_c_here)
|
|
new_argv[j++] = "-xc";
|
|
else if (i == lang_S_here)
|
|
new_argv[j++] = "-xassembler-with-cpp";
|
|
else if (i == o_here)
|
|
new_argv[j++] = "-o";
|
|
|
|
new_argv[j] = argv[i];
|
|
}
|
|
|
|
if (read_stdin)
|
|
new_argv[j++] = "-";
|
|
|
|
new_argv[j] = NULL;
|
|
*in_argc = new_argc;
|
|
*in_argv = new_argv;
|
|
}
|
|
|
|
/* Called before linking. Returns 0 on success and -1 on failure. */
|
|
int lang_specific_pre_link (void)
|
|
{
|
|
return 0; /* Not used for cpp. */
|
|
}
|
|
|
|
/* Number of extra output files that lang_specific_pre_link may generate. */
|
|
int lang_specific_extra_outfiles = 0; /* Not used for cpp. */
|