OSDN Git Service

* class.c (get_enclosing_class): New function.
[pf3gnuchains/gcc-fork.git] / gcc / cp / g++spec.c
1 /* Specific flags and argument handling of the C++ front-end.
2    Copyright (C) 1996, 1997 Free Software Foundation, Inc.
3
4 This file is part of GNU CC.
5
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU CC 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.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING.  If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA.  */
20
21 #include "config.h"
22
23 #include "system.h"
24
25 #include "gansidecl.h"
26
27 /* This bit is set if we saw a `-xfoo' language specification.  */
28 #define LANGSPEC        (1<<1)
29 /* This bit is set if they did `-lm' or `-lmath'.  */
30 #define MATHLIB         (1<<2)
31 /* This bit is set if they did `-lc'.  */
32 #define WITHLIBC        (1<<3)
33
34 #ifndef MATH_LIBRARY
35 #define MATH_LIBRARY "-lm"
36 #endif
37
38 extern char *xmalloc PROTO((size_t));
39
40 void
41 lang_specific_driver (fn, in_argc, in_argv, in_added_libraries)
42      void (*fn)();
43      int *in_argc;
44      char ***in_argv;
45      int *in_added_libraries;
46 {
47   int i, j;
48
49   /* If non-zero, the user gave us the `-v' flag.  */ 
50   int saw_verbose_flag = 0;
51
52   /* This will be 0 if we encounter a situation where we should not
53      link in libstdc++.  */
54   int library = 1;
55
56   /* The number of arguments being added to what's in argv, other than
57      libraries.  We use this to track the number of times we've inserted
58      -xc++/-xnone.  */
59   int added = 2;
60
61   /* Used to track options that take arguments, so we don't go wrapping
62      those with -xc++/-xnone.  */
63   char *quote = NULL;
64
65   /* The new argument list will be contained in this.  */
66   char **arglist;
67
68   /* Non-zero if we saw a `-xfoo' language specification on the
69      command line.  Used to avoid adding our own -xc++ if the user
70      already gave a language for the file.  */
71   int saw_speclang = 0;
72
73   /* "-lm" or "-lmath" if it appears on the command line.  */
74   char *saw_math = 0;
75
76   /* "-lc" if it appears on the command line.  */
77   char *saw_libc = 0;
78
79   /* An array used to flag each argument that needs a bit set for
80      LANGSPEC, MATHLIB, or WITHLIBC.  */
81   int *args;
82
83   /* By default, we throw on the math library if we have one.  */
84   int need_math = (MATH_LIBRARY[0] != '\0');
85
86   /* The total number of arguments with the new stuff.  */
87   int argc;
88
89   /* The argument list.  */
90   char **argv;
91
92   /* The number of libraries added in.  */
93   int added_libraries;
94
95   /* The total number of arguments with the new stuff.  */
96   int num_args = 1;
97
98   argc = *in_argc;
99   argv = *in_argv;
100   added_libraries = *in_added_libraries;
101
102   args = (int *) xmalloc (argc * sizeof (int));
103   bzero ((char *) args, argc * sizeof (int));
104
105   for (i = 1; i < argc; i++)
106     {
107       /* If the previous option took an argument, we swallow it here.  */
108       if (quote)
109         {
110           quote = NULL;
111           continue;
112         }
113
114       /* We don't do this anymore, since we don't get them with minus
115          signs on them.  */
116       if (argv[i][0] == '\0' || argv[i][1] == '\0')
117         continue;
118
119       if (argv[i][0] == '-')
120         {
121           if (library != 0 && (strcmp (argv[i], "-nostdlib") == 0
122                                || strcmp (argv[i], "-nodefaultlibs") == 0))
123             {
124               library = 0;
125             }
126           else if (strcmp (argv[i], "-lm") == 0
127                    || strcmp (argv[i], "-lmath") == 0
128                    || strcmp (argv[i], MATH_LIBRARY) == 0
129 #ifdef ALT_LIBM
130                    || strcmp (argv[i], ALT_LIBM) == 0
131 #endif
132                   )
133             {
134               args[i] |= MATHLIB;
135               need_math = 0;
136             }
137           else if (strcmp (argv[i], "-lc") == 0)
138             args[i] |= WITHLIBC;
139           else if (strcmp (argv[i], "-v") == 0)
140             {
141               saw_verbose_flag = 1;
142               if (argc == 2)
143                 {
144                   /* If they only gave us `-v', don't try to link
145                      in libg++.  */ 
146                   library = 0;
147                 }
148             }
149           else if (strncmp (argv[i], "-x", 2) == 0)
150             saw_speclang = 1;
151           else if (((argv[i][2] == '\0'
152                      && (char *)strchr ("bBVDUoeTuIYmLiA", argv[i][1]) != NULL)
153                     || strcmp (argv[i], "-Tdata") == 0))
154             quote = argv[i];
155           else if (library != 0 && ((argv[i][2] == '\0'
156                      && (char *) strchr ("cSEM", argv[i][1]) != NULL)
157                     || strcmp (argv[i], "-MM") == 0))
158             {
159               /* Don't specify libraries if we won't link, since that would
160                  cause a warning.  */
161               library = 0;
162               added -= 2;
163             }
164           else
165             /* Pass other options through.  */
166             continue;
167         }
168       else
169         {
170           int len; 
171
172           if (saw_speclang)
173             {
174               saw_speclang = 0;
175               continue;
176             }
177
178           /* If the filename ends in .c or .i, put options around it.
179              But not if a specified -x option is currently active.  */
180           len = strlen (argv[i]);
181           if (len > 2
182               && (argv[i][len - 1] == 'c' || argv[i][len - 1] == 'i')
183               && argv[i][len - 2] == '.')
184             {
185               args[i] |= LANGSPEC;
186               added += 2;
187             }
188         }
189     }
190
191   if (quote)
192     (*fn) ("argument to `%s' missing\n", quote);
193
194   /* If we know we don't have to do anything, bail now.  */
195   if (! added && ! library)
196     {
197       free (args);
198       return;
199     }
200
201   num_args = argc + added + need_math;
202   arglist = (char **) xmalloc (num_args * sizeof (char *));
203
204   /* NOTE: We start at 1 now, not 0.  */
205   for (i = 0, j = 0; i < argc; i++, j++)
206     {
207       arglist[j] = argv[i];
208
209       /* Make sure -lstdc++ is before the math library, since libstdc++
210          itself uses those math routines.  */
211       if (!saw_math && (args[i] & MATHLIB) && library)
212         {
213           --j;
214           saw_math = argv[i];
215         }
216
217       if (!saw_libc && (args[i] & WITHLIBC) && library)
218         {
219           --j;
220           saw_libc = argv[i];
221         }
222
223       /* Wrap foo.c and foo.i files in a language specification to
224          force the gcc compiler driver to run cc1plus on them.  */
225       if (args[i] & LANGSPEC)
226         {
227           int len = strlen (argv[i]);
228           if (argv[i][len - 1] == 'i')
229             arglist[j++] = "-xc++-cpp-output";
230           else
231             arglist[j++] = "-xc++";
232           arglist[j++] = argv[i];
233           arglist[j] = "-xnone";
234         }
235   }
236
237   /* Add `-lstdc++' if we haven't already done so.  */
238   if (library)
239     {
240       arglist[j++] = "-lstdc++";
241       added_libraries++;
242     }
243   if (saw_math)
244     arglist[j++] = saw_math;
245   else if (library && need_math)
246     {
247       arglist[j++] = MATH_LIBRARY;
248       added_libraries++;
249     }
250   if (saw_libc)
251     arglist[j++] = saw_libc;
252
253   arglist[j] = NULL;
254
255   *in_argc = j;
256   *in_argv = arglist;
257   *in_added_libraries = added_libraries;
258 }
259
260 /* Called before linking.  Returns 0 on success and -1 on failure. */
261 int lang_specific_pre_link ()  /* Not used for C++. */
262 {
263   return 0;
264 }
265
266 /* Number of extra output files that lang_specific_pre_link may generate. */
267 int lang_specific_extra_outfiles = 0;  /* Not used for C++. */