file gprof.info was initially added on branch binutils-2_10-branch.
[binutils.git] / gas / cond.c
blob025ca51b11a30bdeda48da82c5f72e9a042b34e8
1 /* cond.c - conditional assembly pseudo-ops, and .include
2 Copyright (C) 1990, 91, 92, 93, 95, 96, 97, 98, 99, 2000
3 Free Software Foundation, Inc.
5 This file is part of GAS, the GNU Assembler.
7 GAS is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GAS is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GAS; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
22 #include "as.h"
23 #include "macro.h"
25 #include "obstack.h"
27 /* This is allocated to grow and shrink as .ifdef/.endif pairs are scanned. */
28 struct obstack cond_obstack;
30 struct file_line
32 char *file;
33 unsigned int line;
36 /* We push one of these structures for each .if, and pop it at the
37 .endif. */
39 struct conditional_frame
41 /* The source file & line number of the "if". */
42 struct file_line if_file_line;
43 /* The source file & line of the "else". */
44 struct file_line else_file_line;
45 /* The previous conditional. */
46 struct conditional_frame *previous_cframe;
47 /* Have we seen an else yet? */
48 int else_seen;
49 /* Whether we are currently ignoring input. */
50 int ignoring;
51 /* Whether a conditional at a higher level is ignoring input. */
52 int dead_tree;
53 /* Macro nesting level at which this conditional was created. */
54 int macro_nest;
57 static void initialize_cframe PARAMS ((struct conditional_frame *cframe));
58 static char *get_mri_string PARAMS ((int, int *));
60 static struct conditional_frame *current_cframe = NULL;
62 void
63 s_ifdef (arg)
64 int arg;
66 register char *name; /* points to name of symbol */
67 register symbolS *symbolP; /* Points to symbol */
68 struct conditional_frame cframe;
70 SKIP_WHITESPACE (); /* Leading whitespace is part of operand. */
71 name = input_line_pointer;
73 if (!is_name_beginner (*name))
75 as_bad (_("invalid identifier for \".ifdef\""));
76 obstack_1grow (&cond_obstack, 0);
77 ignore_rest_of_line ();
79 else
81 char c;
83 c = get_symbol_end ();
84 symbolP = symbol_find (name);
85 *input_line_pointer = c;
87 initialize_cframe (&cframe);
88 cframe.ignoring = cframe.dead_tree || !((symbolP != 0) ^ arg);
89 current_cframe = ((struct conditional_frame *)
90 obstack_copy (&cond_obstack, &cframe,
91 sizeof (cframe)));
93 if (LISTING_SKIP_COND ()
94 && cframe.ignoring
95 && (cframe.previous_cframe == NULL
96 || ! cframe.previous_cframe->ignoring))
97 listing_list (2);
99 demand_empty_rest_of_line ();
100 } /* if a valid identifyer name */
101 } /* s_ifdef() */
103 void
104 s_if (arg)
105 int arg;
107 expressionS operand;
108 struct conditional_frame cframe;
109 int t;
110 char *stop = NULL;
111 char stopc;
113 if (flag_mri)
114 stop = mri_comment_field (&stopc);
116 SKIP_WHITESPACE (); /* Leading whitespace is part of operand. */
118 if (current_cframe != NULL && current_cframe->ignoring)
120 operand.X_add_number = 0;
121 while (! is_end_of_line[(unsigned char) *input_line_pointer])
122 ++input_line_pointer;
124 else
126 expression (&operand);
127 if (operand.X_op != O_constant)
128 as_bad (_("non-constant expression in \".if\" statement"));
131 switch ((operatorT) arg)
133 case O_eq: t = operand.X_add_number == 0; break;
134 case O_ne: t = operand.X_add_number != 0; break;
135 case O_lt: t = operand.X_add_number < 0; break;
136 case O_le: t = operand.X_add_number <= 0; break;
137 case O_ge: t = operand.X_add_number >= 0; break;
138 case O_gt: t = operand.X_add_number > 0; break;
139 default:
140 abort ();
141 return;
144 /* If the above error is signaled, this will dispatch
145 using an undefined result. No big deal. */
146 initialize_cframe (&cframe);
147 cframe.ignoring = cframe.dead_tree || ! t;
148 current_cframe = ((struct conditional_frame *)
149 obstack_copy (&cond_obstack, &cframe, sizeof (cframe)));
151 if (LISTING_SKIP_COND ()
152 && cframe.ignoring
153 && (cframe.previous_cframe == NULL
154 || ! cframe.previous_cframe->ignoring))
155 listing_list (2);
157 if (flag_mri)
158 mri_comment_end (stop, stopc);
160 demand_empty_rest_of_line ();
161 } /* s_if() */
163 /* Get a string for the MRI IFC or IFNC pseudo-ops. */
165 static char *
166 get_mri_string (terminator, len)
167 int terminator;
168 int *len;
170 char *ret;
171 char *s;
173 SKIP_WHITESPACE ();
174 s = ret = input_line_pointer;
175 if (*input_line_pointer == '\'')
177 ++s;
178 ++input_line_pointer;
179 while (! is_end_of_line[(unsigned char) *input_line_pointer])
181 *s++ = *input_line_pointer++;
182 if (s[-1] == '\'')
184 if (*input_line_pointer != '\'')
185 break;
186 ++input_line_pointer;
189 SKIP_WHITESPACE ();
191 else
193 while (*input_line_pointer != terminator
194 && ! is_end_of_line[(unsigned char) *input_line_pointer])
195 ++input_line_pointer;
196 s = input_line_pointer;
197 while (s > ret && (s[-1] == ' ' || s[-1] == '\t'))
198 --s;
201 *len = s - ret;
202 return ret;
205 /* The MRI IFC and IFNC pseudo-ops. */
207 void
208 s_ifc (arg)
209 int arg;
211 char *stop = NULL;
212 char stopc;
213 char *s1, *s2;
214 int len1, len2;
215 int res;
216 struct conditional_frame cframe;
218 if (flag_mri)
219 stop = mri_comment_field (&stopc);
221 s1 = get_mri_string (',', &len1);
223 if (*input_line_pointer != ',')
224 as_bad (_("bad format for ifc or ifnc"));
225 else
226 ++input_line_pointer;
228 s2 = get_mri_string (';', &len2);
230 res = len1 == len2 && strncmp (s1, s2, len1) == 0;
232 initialize_cframe (&cframe);
233 cframe.ignoring = cframe.dead_tree || ! (res ^ arg);
234 current_cframe = ((struct conditional_frame *)
235 obstack_copy (&cond_obstack, &cframe, sizeof (cframe)));
237 if (LISTING_SKIP_COND ()
238 && cframe.ignoring
239 && (cframe.previous_cframe == NULL
240 || ! cframe.previous_cframe->ignoring))
241 listing_list (2);
243 if (flag_mri)
244 mri_comment_end (stop, stopc);
246 demand_empty_rest_of_line ();
249 void
250 s_elseif (arg)
251 int arg;
253 expressionS operand;
254 int t;
256 if (current_cframe == NULL)
258 as_bad (_("\".elseif\" without matching \".if\" - ignored"));
261 else if (current_cframe->else_seen)
263 as_bad (_("\".elseif\" after \".else\" - ignored"));
264 as_bad_where (current_cframe->else_file_line.file,
265 current_cframe->else_file_line.line,
266 _("here is the previous \"else\""));
267 as_bad_where (current_cframe->if_file_line.file,
268 current_cframe->if_file_line.line,
269 _("here is the previous \"if\""));
271 else
273 as_where (&current_cframe->else_file_line.file,
274 &current_cframe->else_file_line.line);
276 if (!current_cframe->dead_tree)
278 current_cframe->ignoring = !current_cframe->ignoring;
279 if (LISTING_SKIP_COND ())
281 if (! current_cframe->ignoring)
282 listing_list (1);
283 else
284 listing_list (2);
286 } /* if not a dead tree */
287 } /* if error else do it */
290 SKIP_WHITESPACE (); /* Leading whitespace is part of operand. */
292 if (current_cframe != NULL && current_cframe->ignoring)
294 operand.X_add_number = 0;
295 while (! is_end_of_line[(unsigned char) *input_line_pointer])
296 ++input_line_pointer;
298 else
300 expression (&operand);
301 if (operand.X_op != O_constant)
302 as_bad (_("non-constant expression in \".elseif\" statement"));
305 switch ((operatorT) arg)
307 case O_eq: t = operand.X_add_number == 0; break;
308 case O_ne: t = operand.X_add_number != 0; break;
309 case O_lt: t = operand.X_add_number < 0; break;
310 case O_le: t = operand.X_add_number <= 0; break;
311 case O_ge: t = operand.X_add_number >= 0; break;
312 case O_gt: t = operand.X_add_number > 0; break;
313 default:
314 abort ();
315 return;
318 current_cframe->ignoring = current_cframe->dead_tree || ! t;
320 if (LISTING_SKIP_COND ()
321 && current_cframe->ignoring
322 && (current_cframe->previous_cframe == NULL
323 || ! current_cframe->previous_cframe->ignoring))
324 listing_list (2);
326 demand_empty_rest_of_line ();
329 void
330 s_endif (arg)
331 int arg ATTRIBUTE_UNUSED;
333 struct conditional_frame *hold;
335 if (current_cframe == NULL)
337 as_bad (_("\".endif\" without \".if\""));
339 else
341 if (LISTING_SKIP_COND ()
342 && current_cframe->ignoring
343 && (current_cframe->previous_cframe == NULL
344 || ! current_cframe->previous_cframe->ignoring))
345 listing_list (1);
347 hold = current_cframe;
348 current_cframe = current_cframe->previous_cframe;
349 obstack_free (&cond_obstack, hold);
350 } /* if one pop too many */
352 if (flag_mri)
354 while (! is_end_of_line[(unsigned char) *input_line_pointer])
355 ++input_line_pointer;
358 demand_empty_rest_of_line ();
359 } /* s_endif() */
361 void
362 s_else (arg)
363 int arg ATTRIBUTE_UNUSED;
365 if (current_cframe == NULL)
367 as_bad (_(".else without matching .if - ignored"));
370 else if (current_cframe->else_seen)
372 as_bad (_("duplicate \"else\" - ignored"));
373 as_bad_where (current_cframe->else_file_line.file,
374 current_cframe->else_file_line.line,
375 _("here is the previous \"else\""));
376 as_bad_where (current_cframe->if_file_line.file,
377 current_cframe->if_file_line.line,
378 _("here is the previous \"if\""));
380 else
382 as_where (&current_cframe->else_file_line.file,
383 &current_cframe->else_file_line.line);
385 if (!current_cframe->dead_tree)
387 current_cframe->ignoring = !current_cframe->ignoring;
388 if (LISTING_SKIP_COND ())
390 if (! current_cframe->ignoring)
391 listing_list (1);
392 else
393 listing_list (2);
395 } /* if not a dead tree */
397 current_cframe->else_seen = 1;
398 } /* if error else do it */
400 if (flag_mri)
402 while (! is_end_of_line[(unsigned char) *input_line_pointer])
403 ++input_line_pointer;
406 demand_empty_rest_of_line ();
407 } /* s_else() */
409 void
410 s_ifeqs (arg)
411 int arg;
413 char *s1, *s2;
414 int len1, len2;
415 int res;
416 struct conditional_frame cframe;
418 s1 = demand_copy_C_string (&len1);
420 SKIP_WHITESPACE ();
421 if (*input_line_pointer != ',')
423 as_bad (_(".ifeqs syntax error"));
424 ignore_rest_of_line ();
425 return;
428 ++input_line_pointer;
430 s2 = demand_copy_C_string (&len2);
432 res = len1 == len2 && strncmp (s1, s2, len1) == 0;
434 initialize_cframe (&cframe);
435 cframe.ignoring = cframe.dead_tree || ! (res ^ arg);
436 current_cframe = ((struct conditional_frame *)
437 obstack_copy (&cond_obstack, &cframe, sizeof (cframe)));
439 if (LISTING_SKIP_COND ()
440 && cframe.ignoring
441 && (cframe.previous_cframe == NULL
442 || ! cframe.previous_cframe->ignoring))
443 listing_list (2);
445 demand_empty_rest_of_line ();
446 } /* s_ifeqs() */
448 int
449 ignore_input ()
451 char *s;
453 s = input_line_pointer;
455 if (NO_PSEUDO_DOT || flag_m68k_mri)
457 if (s[-1] != '.')
458 --s;
460 else
462 if (s[-1] != '.')
463 return (current_cframe != NULL) && (current_cframe->ignoring);
466 /* We cannot ignore certain pseudo ops. */
467 if (((s[0] == 'i'
468 || s[0] == 'I')
469 && (!strncasecmp (s, "if", 2)
470 || !strncasecmp (s, "ifdef", 5)
471 || !strncasecmp (s, "ifndef", 6)))
472 || ((s[0] == 'e'
473 || s[0] == 'E')
474 && (!strncasecmp (s, "else", 4)
475 || !strncasecmp (s, "endif", 5)
476 || !strncasecmp (s, "endc", 4))))
477 return 0;
479 return (current_cframe != NULL) && (current_cframe->ignoring);
480 } /* ignore_input() */
482 static void
483 initialize_cframe (cframe)
484 struct conditional_frame *cframe;
486 memset (cframe, 0, sizeof (*cframe));
487 as_where (&cframe->if_file_line.file,
488 &cframe->if_file_line.line);
489 cframe->previous_cframe = current_cframe;
490 cframe->dead_tree = current_cframe != NULL && current_cframe->ignoring;
491 cframe->macro_nest = macro_nest;
494 /* Give an error if a conditional is unterminated inside a macro or
495 the assembly as a whole. If NEST is non negative, we are being
496 called because of the end of a macro expansion. If NEST is
497 negative, we are being called at the of the input files. */
499 void
500 cond_finish_check (nest)
501 int nest;
503 if (current_cframe != NULL && current_cframe->macro_nest >= nest)
505 if (nest >= 0)
506 as_bad (_("end of macro inside conditional"));
507 else
508 as_bad (_("end of file inside conditional"));
509 as_bad_where (current_cframe->if_file_line.file,
510 current_cframe->if_file_line.line,
511 _("here is the start of the unterminated conditional"));
512 if (current_cframe->else_seen)
513 as_bad_where (current_cframe->else_file_line.file,
514 current_cframe->else_file_line.line,
515 _("here is the \"else\" of the unterminated conditional"));
519 /* This function is called when we exit out of a macro. We assume
520 that any conditionals which began within the macro are correctly
521 nested, and just pop them off the stack. */
523 void
524 cond_exit_macro (nest)
525 int nest;
527 while (current_cframe != NULL && current_cframe->macro_nest >= nest)
529 struct conditional_frame *hold;
531 hold = current_cframe;
532 current_cframe = current_cframe->previous_cframe;
533 obstack_free (&cond_obstack, hold);
537 /* end of cond.c */