Coverage Report

Created: 2026-09-14 08:07

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/binutils-gdb/gas/cond.c
Line
Count
Source
1
/* cond.c - conditional assembly pseudo-ops, and .include
2
   Copyright (C) 1990-2026 Free Software Foundation, Inc.
3
4
   This file is part of GAS, the GNU Assembler.
5
6
   GAS 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 3, or (at your option)
9
   any later version.
10
11
   GAS 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 GAS; see the file COPYING.  If not, write to the Free
18
   Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
19
   02110-1301, USA.  */
20
21
#include "as.h"
22
#include "sb.h"
23
#include "macro.h"
24
25
#include "obstack.h"
26
27
/* This is allocated to grow and shrink as .ifdef/.endif pairs are
28
   scanned.  */
29
struct obstack cond_obstack;
30
31
struct file_line
32
{
33
  const char *file;
34
  unsigned int line;
35
};
36
37
/* We push one of these structures for each .if, and pop it at the
38
   .endif.  */
39
40
struct conditional_frame
41
{
42
  /* The source file & line number of the "if".  */
43
  struct file_line if_file_line;
44
  /* The source file & line of the "else".  */
45
  struct file_line else_file_line;
46
  /* The previous conditional.  */
47
  struct conditional_frame *previous_cframe;
48
  /* Have we seen an else yet?  */
49
  int else_seen;
50
  /* Whether we are currently ignoring input.  */
51
  int ignoring;
52
  /* Whether a conditional at a higher level is ignoring input.
53
     Set also when a branch of an "if .. elseif .." tree has matched
54
     to prevent further matches.  */
55
  int dead_tree;
56
  /* Macro nesting level at which this conditional was created.  */
57
  int macro_nest;
58
};
59
60
static void initialize_cframe (struct conditional_frame *cframe);
61
static char *get_mri_string (int, int *);
62
63
static struct conditional_frame *current_cframe = NULL;
64
65
/* Performs the .ifdef (test_defined == 1) and
66
   the .ifndef (test_defined == 0) pseudo op.  */
67
68
void
69
s_ifdef (int test_defined)
70
45
{
71
  /* Points to name of symbol.  */
72
45
  char *name;
73
  /* Points to symbol.  */
74
45
  symbolS *symbolP;
75
45
  struct conditional_frame cframe;
76
45
  char c;
77
78
  /* Leading whitespace is part of operand.  */
79
45
  SKIP_WHITESPACE ();
80
45
  name = input_line_pointer;
81
82
45
  if (!is_name_beginner (*name) && *name != '"')
83
10
    {
84
10
      as_bad (_("invalid identifier for \".ifdef\""));
85
10
      obstack_1grow (&cond_obstack, 0);
86
10
      ignore_rest_of_line ();
87
10
      return;
88
10
    }
89
90
35
  c = get_symbol_name (& name);
91
35
  symbolP = symbol_find (name);
92
35
  (void) restore_line_pointer (c);
93
94
35
  initialize_cframe (&cframe);
95
96
35
  if (cframe.dead_tree)
97
0
    cframe.ignoring = 1;
98
35
  else
99
35
    {
100
35
      int is_defined;
101
102
      /* Use the same definition of 'defined' as .equiv so that a symbol
103
   which has been referenced but not yet given a value/address is
104
   considered to be undefined.  */
105
35
      is_defined =
106
35
  symbolP != NULL
107
16
  && (S_IS_DEFINED (symbolP) || symbol_equated_p (symbolP))
108
16
  && S_GET_SEGMENT (symbolP) != reg_section;
109
110
35
      cframe.ignoring = ! (test_defined ^ is_defined);
111
35
    }
112
113
35
  current_cframe = obstack_alloc (&cond_obstack, sizeof cframe);
114
35
  memcpy (current_cframe, &cframe, sizeof cframe);
115
116
35
  if (LISTING_SKIP_COND ()
117
0
      && cframe.ignoring
118
0
      && (cframe.previous_cframe == NULL
119
0
    || ! cframe.previous_cframe->ignoring))
120
0
    listing_list (2);
121
122
35
  demand_empty_rest_of_line ();
123
35
}
124
125
void
126
s_if (int arg)
127
10
{
128
10
  expressionS operand;
129
10
  struct conditional_frame cframe;
130
10
  int t;
131
10
  char *stop = NULL;
132
10
  char stopc = 0;
133
134
10
  if (flag_mri)
135
3
    stop = mri_comment_field (&stopc);
136
137
  /* Leading whitespace is part of operand.  */
138
10
  SKIP_WHITESPACE ();
139
140
10
  if (current_cframe != NULL && current_cframe->ignoring)
141
0
    {
142
0
      operand.X_add_number = 0;
143
0
      while (! is_end_of_stmt (*input_line_pointer))
144
0
  ++input_line_pointer;
145
0
    }
146
10
  else
147
10
    {
148
10
      expression_and_evaluate (&operand);
149
10
      if (operand.X_op != O_constant)
150
5
  as_bad (_("non-constant expression in \".if\" statement"));
151
10
    }
152
153
10
  switch ((operatorT) arg)
154
10
    {
155
1
    case O_eq: t = operand.X_add_number == 0; break;
156
6
    case O_ne: t = operand.X_add_number != 0; break;
157
0
    case O_lt: t = operand.X_add_number < 0; break;
158
2
    case O_le: t = operand.X_add_number <= 0; break;
159
1
    case O_ge: t = operand.X_add_number >= 0; break;
160
0
    case O_gt: t = operand.X_add_number > 0; break;
161
0
    default:
162
0
      abort ();
163
0
      return;
164
10
    }
165
166
  /* If the above error is signaled, this will dispatch
167
     using an undefined result.  No big deal.  */
168
10
  initialize_cframe (&cframe);
169
10
  cframe.ignoring = cframe.dead_tree || ! t;
170
10
  current_cframe = obstack_alloc (&cond_obstack, sizeof cframe);
171
10
  memcpy (current_cframe, & cframe, sizeof cframe);
172
173
10
  if (LISTING_SKIP_COND ()
174
0
      && cframe.ignoring
175
0
      && (cframe.previous_cframe == NULL
176
0
    || ! cframe.previous_cframe->ignoring))
177
0
    listing_list (2);
178
179
10
  if (flag_mri)
180
3
    mri_comment_end (stop, stopc);
181
182
10
  demand_empty_rest_of_line ();
183
10
}
184
185
/* Performs the .ifb (test_blank == 1) and
186
   the .ifnb (test_blank == 0) pseudo op.  */
187
188
void
189
s_ifb (int test_blank)
190
2.84k
{
191
2.84k
  struct conditional_frame cframe;
192
193
2.84k
  initialize_cframe (&cframe);
194
195
2.84k
  if (cframe.dead_tree)
196
0
    cframe.ignoring = 1;
197
2.84k
  else
198
2.84k
    {
199
2.84k
      int is_eol;
200
201
2.84k
      SKIP_WHITESPACE ();
202
2.84k
      is_eol = is_end_of_stmt (*input_line_pointer);
203
2.84k
      cframe.ignoring = (test_blank == !is_eol);
204
2.84k
    }
205
206
2.84k
  current_cframe = obstack_alloc (&cond_obstack, sizeof cframe);
207
2.84k
  memcpy (current_cframe, &cframe, sizeof cframe);
208
209
2.84k
  if (LISTING_SKIP_COND ()
210
0
      && cframe.ignoring
211
0
      && (cframe.previous_cframe == NULL
212
0
    || ! cframe.previous_cframe->ignoring))
213
0
    listing_list (2);
214
215
2.84k
  ignore_rest_of_line ();
216
2.84k
}
217
218
/* Get a string for the MRI IFC or IFNC pseudo-ops.  */
219
220
static char *
221
get_mri_string (int terminator, int *len)
222
16
{
223
16
  char *ret;
224
16
  char *s;
225
226
16
  SKIP_WHITESPACE ();
227
16
  s = ret = input_line_pointer;
228
16
  if (*input_line_pointer == '\'')
229
0
    {
230
0
      ++s;
231
0
      ++input_line_pointer;
232
0
      while (! is_end_of_stmt (*input_line_pointer))
233
0
  {
234
0
    *s++ = *input_line_pointer++;
235
0
    if (s[-1] == '\'')
236
0
      {
237
0
        if (*input_line_pointer != '\'')
238
0
    break;
239
0
        ++input_line_pointer;
240
0
      }
241
0
  }
242
0
      SKIP_WHITESPACE ();
243
0
    }
244
16
  else
245
16
    {
246
16
      while (*input_line_pointer != terminator
247
16
       && ! is_end_of_stmt (*input_line_pointer))
248
0
  ++input_line_pointer;
249
16
      s = input_line_pointer;
250
16
      while (s > ret && is_whitespace (s[-1]))
251
0
  --s;
252
16
    }
253
254
16
  *len = s - ret;
255
16
  return ret;
256
16
}
257
258
/* The MRI IFC and IFNC pseudo-ops.  */
259
260
void
261
s_ifc (int arg)
262
8
{
263
8
  char *stop = NULL;
264
8
  char stopc = 0;
265
8
  char *s1, *s2;
266
8
  int len1, len2;
267
8
  int res;
268
8
  struct conditional_frame cframe;
269
270
8
  if (flag_mri)
271
0
    stop = mri_comment_field (&stopc);
272
273
8
  s1 = get_mri_string (',', &len1);
274
275
8
  if (*input_line_pointer != ',')
276
8
    as_bad (_("bad format for ifc or ifnc"));
277
0
  else
278
0
    ++input_line_pointer;
279
280
8
  s2 = get_mri_string (';', &len2);
281
282
8
  res = len1 == len2 && strncmp (s1, s2, len1) == 0;
283
284
8
  initialize_cframe (&cframe);
285
8
  cframe.ignoring = cframe.dead_tree || ! (res ^ arg);
286
8
  current_cframe = obstack_alloc (&cond_obstack, sizeof cframe);
287
8
  memcpy (current_cframe, &cframe, sizeof cframe);
288
  
289
8
 if (LISTING_SKIP_COND ()
290
0
      && cframe.ignoring
291
0
      && (cframe.previous_cframe == NULL
292
0
    || ! cframe.previous_cframe->ignoring))
293
0
    listing_list (2);
294
295
8
  if (flag_mri)
296
0
    mri_comment_end (stop, stopc);
297
298
8
  demand_empty_rest_of_line ();
299
8
}
300
301
void
302
s_elseif (int arg)
303
17
{
304
17
  if (current_cframe == NULL)
305
0
    {
306
0
      as_bad (_("\".elseif\" without matching \".if\""));
307
0
    }
308
17
  else if (current_cframe->else_seen)
309
0
    {
310
0
      as_bad (_("\".elseif\" after \".else\""));
311
0
      as_bad_where (current_cframe->else_file_line.file,
312
0
        current_cframe->else_file_line.line,
313
0
        _("here is the previous \".else\""));
314
0
      as_bad_where (current_cframe->if_file_line.file,
315
0
        current_cframe->if_file_line.line,
316
0
        _("here is the previous \".if\""));
317
0
    }
318
17
  else
319
17
    {
320
17
      current_cframe->else_file_line.file
321
17
        = as_where (&current_cframe->else_file_line.line);
322
323
17
      current_cframe->dead_tree |= !current_cframe->ignoring;
324
17
      current_cframe->ignoring = current_cframe->dead_tree;
325
17
    }
326
327
17
  if (current_cframe == NULL || current_cframe->ignoring)
328
0
    {
329
0
      while (! is_end_of_stmt (*input_line_pointer))
330
0
  ++input_line_pointer;
331
332
0
      if (current_cframe == NULL)
333
0
  return;
334
0
    }
335
17
  else
336
17
    {
337
17
      expressionS operand;
338
17
      int t;
339
340
      /* Leading whitespace is part of operand.  */
341
17
      SKIP_WHITESPACE ();
342
343
17
      expression_and_evaluate (&operand);
344
17
      if (operand.X_op != O_constant)
345
17
  as_bad (_("non-constant expression in \".elseif\" statement"));
346
347
17
      switch (arg)
348
17
  {
349
0
  case O_eq: t = operand.X_add_number == 0; break;
350
17
  case O_ne: t = operand.X_add_number != 0; break;
351
0
  case O_lt: t = operand.X_add_number < 0; break;
352
0
  case O_le: t = operand.X_add_number <= 0; break;
353
0
  case O_ge: t = operand.X_add_number >= 0; break;
354
0
  case O_gt: t = operand.X_add_number > 0; break;
355
0
  default:
356
0
    abort ();
357
0
    return;
358
17
  }
359
360
17
      current_cframe->ignoring = current_cframe->dead_tree || ! t;
361
17
    }
362
363
17
  if (LISTING_SKIP_COND ()
364
0
      && (current_cframe->previous_cframe == NULL
365
0
    || ! current_cframe->previous_cframe->ignoring))
366
0
    {
367
0
      if (! current_cframe->ignoring)
368
0
  listing_list (1);
369
0
      else
370
0
  listing_list (2);
371
0
    }
372
373
17
  demand_empty_rest_of_line ();
374
17
}
375
376
void
377
s_endif (int arg ATTRIBUTE_UNUSED)
378
8
{
379
8
  struct conditional_frame *hold;
380
381
8
  if (current_cframe == NULL)
382
6
    {
383
6
      as_bad (_("\".endif\" without \".if\""));
384
6
    }
385
2
  else
386
2
    {
387
2
      if (LISTING_SKIP_COND ()
388
0
    && current_cframe->ignoring
389
0
    && (current_cframe->previous_cframe == NULL
390
0
        || ! current_cframe->previous_cframe->ignoring))
391
0
  listing_list (1);
392
393
2
      hold = current_cframe;
394
2
      current_cframe = current_cframe->previous_cframe;
395
2
      obstack_free (&cond_obstack, hold);
396
2
    }        /* if one pop too many */
397
398
8
  if (flag_mri)
399
8
    {
400
8
      while (! is_end_of_stmt (*input_line_pointer))
401
0
  ++input_line_pointer;
402
8
    }
403
404
8
  demand_empty_rest_of_line ();
405
8
}
406
407
void
408
s_else (int arg ATTRIBUTE_UNUSED)
409
10
{
410
10
  if (current_cframe == NULL)
411
8
    {
412
8
      as_bad (_("\".else\" without matching \".if\""));
413
8
    }
414
2
  else if (current_cframe->else_seen)
415
0
    {
416
0
      as_bad (_("duplicate \".else\""));
417
0
      as_bad_where (current_cframe->else_file_line.file,
418
0
        current_cframe->else_file_line.line,
419
0
        _("here is the previous \".else\""));
420
0
      as_bad_where (current_cframe->if_file_line.file,
421
0
        current_cframe->if_file_line.line,
422
0
        _("here is the previous \".if\""));
423
0
    }
424
2
  else
425
2
    {
426
2
      current_cframe->else_file_line.file
427
2
        = as_where (&current_cframe->else_file_line.line);
428
429
2
      current_cframe->ignoring =
430
2
  current_cframe->dead_tree | !current_cframe->ignoring;
431
432
2
      if (LISTING_SKIP_COND ()
433
0
    && (current_cframe->previous_cframe == NULL
434
0
        || ! current_cframe->previous_cframe->ignoring))
435
0
  {
436
0
    if (! current_cframe->ignoring)
437
0
      listing_list (1);
438
0
    else
439
0
      listing_list (2);
440
0
  }
441
442
2
      current_cframe->else_seen = 1;
443
2
    }
444
445
10
  if (flag_mri)
446
10
    {
447
16
      while (! is_end_of_stmt (*input_line_pointer))
448
6
  ++input_line_pointer;
449
10
    }
450
451
10
  demand_empty_rest_of_line ();
452
10
}
453
454
void
455
s_ifeqs (int arg)
456
2.05k
{
457
2.05k
  char *s1, *s2;
458
2.05k
  int len1, len2;
459
2.05k
  int res;
460
2.05k
  struct conditional_frame cframe;
461
462
2.05k
  s1 = demand_copy_C_string (&len1);
463
2.05k
  if (s1 == NULL)
464
2
    {
465
2
      ignore_rest_of_line ();
466
2
      return;
467
2
    }
468
469
2.05k
  SKIP_WHITESPACE ();
470
2.05k
  if (*input_line_pointer != ',')
471
0
    {
472
0
      as_bad (_(".ifeqs syntax error"));
473
0
      ignore_rest_of_line ();
474
0
      return;
475
0
    }
476
477
2.05k
  ++input_line_pointer;
478
479
2.05k
  s2 = demand_copy_C_string (&len2);
480
2.05k
  if (s2 == NULL)
481
4
    {
482
4
      ignore_rest_of_line ();
483
4
      return;
484
4
    }
485
486
2.05k
  res = len1 == len2 && strncmp (s1, s2, len1) == 0;
487
488
2.05k
  initialize_cframe (&cframe);
489
2.05k
  cframe.ignoring = cframe.dead_tree || ! (res ^ arg);
490
2.05k
  current_cframe = obstack_alloc (&cond_obstack, sizeof cframe);
491
2.05k
  memcpy (current_cframe, &cframe, sizeof cframe);
492
493
2.05k
  if (LISTING_SKIP_COND ()
494
0
      && cframe.ignoring
495
0
      && (cframe.previous_cframe == NULL
496
0
    || ! cframe.previous_cframe->ignoring))
497
0
    listing_list (2);
498
499
2.05k
  demand_empty_rest_of_line ();
500
2.05k
}
501
502
int
503
ignore_input (void)
504
731k
{
505
731k
  char *s;
506
507
731k
  s = input_line_pointer;
508
509
731k
  if (NO_PSEUDO_DOT || flag_m68k_mri)
510
0
    {
511
0
      if (s[-1] != '.')
512
0
  --s;
513
0
    }
514
731k
  else
515
731k
    {
516
731k
      if (s[-1] != '.')
517
344k
  return current_cframe != NULL && current_cframe->ignoring;
518
731k
    }
519
520
  /* We cannot ignore certain pseudo ops.  */
521
387k
  switch (s[0])
522
387k
    {
523
24.0k
    case 'i': case  'I':
524
24.0k
      if (s[1] == 'f' || s[1] == 'F')
525
5.02k
  return 0;
526
19.0k
      break;
527
19.0k
    case 'e': case 'E':
528
12.7k
      if (!strncasecmp (s, "else", 4)
529
12.7k
    || !strncasecmp (s, "endif", 5)
530
12.6k
    || !strncasecmp (s, "endc", 4))
531
53
  return 0;
532
12.6k
      break;
533
110k
    case 'l': case 'L':
534
110k
      if (!strncasecmp (s, "linefile", 8))
535
75.9k
  return 0;
536
34.7k
      break;
537
387k
    }
538
539
306k
  return current_cframe != NULL && current_cframe->ignoring;
540
387k
}
541
542
static void
543
initialize_cframe (struct conditional_frame *cframe)
544
4.94k
{
545
4.94k
  memset (cframe, 0, sizeof (*cframe));
546
4.94k
  cframe->if_file_line.file = as_where (&cframe->if_file_line.line);
547
4.94k
  cframe->previous_cframe = current_cframe;
548
4.94k
  cframe->dead_tree = current_cframe != NULL && current_cframe->ignoring;
549
4.94k
  cframe->macro_nest = macro_nest;
550
4.94k
}
551
552
/* Give an error if a conditional is unterminated inside a macro or
553
   the assembly as a whole.  If NEST is non negative, we are being
554
   called because of the end of a macro expansion.  If NEST is
555
   negative, we are being called at the of the input files.  */
556
557
void
558
cond_finish_check (int nest)
559
422
{
560
422
  if (current_cframe != NULL && current_cframe->macro_nest >= nest)
561
36
    {
562
36
      if (nest >= 0)
563
10
  as_bad (_("end of macro inside conditional"));
564
26
      else
565
26
  as_bad (_("end of file inside conditional"));
566
567
36
      as_bad_where (current_cframe->if_file_line.file,
568
36
        current_cframe->if_file_line.line,
569
36
        _("here is the start of the unterminated conditional"));
570
36
      if (current_cframe->else_seen)
571
0
  as_bad_where (current_cframe->else_file_line.file,
572
0
          current_cframe->else_file_line.line,
573
0
          _("here is the \"else\" of the unterminated conditional"));
574
36
      cond_exit_macro (nest);
575
36
    }
576
422
}
577
578
/* This function is called when we exit out of a macro.  We assume
579
   that any conditionals which began within the macro are correctly
580
   nested, and just pop them off the stack.  */
581
582
void
583
cond_exit_macro (int nest)
584
39
{
585
4.98k
  while (current_cframe != NULL && current_cframe->macro_nest >= nest)
586
4.94k
    {
587
4.94k
      struct conditional_frame *hold;
588
589
4.94k
      hold = current_cframe;
590
4.94k
      current_cframe = current_cframe->previous_cframe;
591
4.94k
      obstack_free (&cond_obstack, hold);
592
4.94k
    }
593
39
}