emacs_ada_mode_8.1.0_114ab44a/compare_annex_p.adb

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
--  Abstract :
--
--  Compare ARM Annex P to ada_annex_p.wy
--
--  Copyright (C) 2020 Free Software Foundation All Rights Reserved.
--
--  This library is free software;  you can redistribute it and/or modify it
--  under terms of the  GNU General Public License  as published by the Free
--  Software  Foundation;  either version 3,  or (at your  option) any later
--  version. This library is distributed in the hope that it will be useful,
--  but WITHOUT ANY WARRANTY;  without even the implied warranty of MERCHAN-
--  TABILITY or FITNESS FOR A PARTICULAR PURPOSE.

pragma License (Modified_GPL);

with Ada.Command_Line;
with Ada.Directories;
with Ada.Strings.Fixed;
with Ada.Strings.Unbounded;
with Ada.Text_IO; use Ada.Text_IO;
with SAL;
with WisiToken.BNF.Generate_Utils;
with WisiToken.Parse.LR.Parser_No_Recover;
with WisiToken.Syntax_Trees.LR_Utils;
with WisiToken_Grammar_Runtime;
with Wisitoken_Grammar_Actions;
procedure Compare_Annex_P
is
   use WisiToken;

   --  Usage: compare_annex_p <upstream.wy> <downstream.wy> [verbosity]
   --
   --  upstream.wy is from ARM Annex P via annex_p_to_wy.adb (converted
   --  to unix line endings). downstream.wy is the working version, with
   --  grammar actions.

   Upstream_WY_Source   : constant String := Ada.Command_Line.Argument (1);
   Downstream_WY_Source : constant String := Ada.Command_Line.Argument (2);

   Verbosity : constant Integer :=
     (if Ada.Command_Line.Argument_Count >= 3
      then Integer'Value (Ada.Command_Line.Argument (3))
      else 0);

   type String_Array is array (Positive range <>) of Ada.Strings.Unbounded.String_Access;

   Exclude_Up_Nonterms : constant String_Array :=
     (
      --  These are replaced by regexp.
      new String'("CHARACTER_LITERAL"),
      new String'("IDENTIFIER"),
      new String'("NUMERIC_LITERAL"),
      new String'("STRING_LITERAL"),
      new String'("base"),
      new String'("based_literal"),
      new String'("based_numeral"),
      new String'("comment"),
      new String'("decimal_literal"),
      new String'("digit"),
      new String'("exponent"),
      new String'("extended_digit"),
      new String'("identifier_extend"),
      new String'("identifier_start"),
      new String'("numeral"),
      new String'("string_element"),

      --  These are redundant with something
      new String'("code_statement"),
      new String'("context_clause"),
      new String'("context_item"),
      new String'("entry_call_statement"),
      new String'("generalized_indexing"),
      new String'("indexed_component"),
      new String'("library_item"),
      new String'("library_unit_body"),
      new String'("library_unit_declaration"),
      new String'("library_unit_renaming_declaration"),

      --  These are not used in the grammar
      new String'("highest_precedence_operator"),
      new String'("logical_operator"),
      new String'("restriction"),
      new String'("restriction_parameter_argument"),
      new String'("storage_pool_indicator"),
      new String'("synchronization_kind")
     );

   function Build_Inlined_Up_Nonterms return WisiToken.BNF.String_Pair_Lists.List
   is begin
      return Result : WisiToken.BNF.String_Pair_Lists.List do
         Result.Append ((+"ancestor_part", +"expression"));
         Result.Append ((+"defining_character_literal", +"CHARACTER_LITERAL"));
         Result.Append ((+"defining_designator", +"name"));
         Result.Append ((+"defining_identifier", +"IDENTIFIER"));
         Result.Append ((+"defining_operator_symbol", +"STRING_LITERAL"));
         Result.Append ((+"defining_program_unit_name", +"name"));
         Result.Append ((+"designator", +"name"));
         Result.Append ((+"formal_parameter_name", +"name"));
         Result.Append ((+"generalized_reference", +"name"));
         Result.Append ((+"global_name", +"name"));
         Result.Append ((+"implicit_dereference", +"name"));
         Result.Append ((+"local_name", +"name"));
         Result.Append ((+"operator_symbol", +"STRING_LITERAL"));
         Result.Append ((+"parent_unit_name", +"name"));
         Result.Append ((+"prefix", +"name"));
         Result.Append ((+"procedure_or_entry_call", +"procedure_call_statement"));
         Result.Append ((+"subtype_mark", +"name"));
      end return;
   end Build_Inlined_Up_Nonterms;

   Upstream_Parser   : WisiToken.Parse.LR.Parser_No_Recover.Parser;
   Downstream_Parser : WisiToken.Parse.LR.Parser_No_Recover.Parser;

   Virtual_Identifiers : WisiToken.BNF.String_Arrays.Vector;
   --  Empty because we are not translating to BNF; required by
   --  wisitoken_grammar_runtime Get_Text.

   Up_Pad : constant String := Ada.Strings.Fixed."*"
     (Integer'Max (0, Ada.Directories.Simple_Name (Downstream_WY_Source)'Length -
                     Ada.Directories.Simple_Name (Upstream_WY_Source)'Length),
      ' ');

   Down_Pad : constant String := Ada.Strings.Fixed."*"
     (Integer'Max (0, Ada.Directories.Simple_Name (Upstream_WY_Source)'Length -
                     Ada.Directories.Simple_Name (Downstream_WY_Source)'Length),
      ' ');

   Error_Count : Integer := 0;
begin
   WisiToken.BNF.Generate_Utils.Parse_Grammar_File (Upstream_Parser, Upstream_WY_Source);
   WisiToken.BNF.Generate_Utils.Parse_Grammar_File (Downstream_Parser, Downstream_WY_Source);

   declare
      use WisiToken.Syntax_Trees.LR_Utils;
      use Wisitoken_Grammar_Actions;

      Upstream_Comp_Units : constant Constant_List     := Creators.Create_List
        (Upstream_Parser.Tree_Var_Ref, Upstream_Parser.Tree.Child (Upstream_Parser.Tree.Root, 1),
         +compilation_unit_list_ID, +compilation_unit_ID);
      Upstream_Iter       : constant Constant_Iterator := Upstream_Comp_Units.Iterate_Constant;
      Upstream_Cur        : Cursor                     := Upstream_Iter.First;

      Downstream_Comp_Units : constant Constant_List     := Creators.Create_List
        (Downstream_Parser.Tree_Var_Ref, Downstream_Parser.Tree.Child (Downstream_Parser.Tree.Root, 1),
         +compilation_unit_list_ID, +compilation_unit_ID);
      Downstream_Iter       : constant Constant_Iterator := Downstream_Comp_Units.Iterate_Constant;
      Downstream_Cur        : Cursor                     := Downstream_Iter.First;

      function Upstream_ID return Token_Enum_ID
      is begin
         return -Upstream_Parser.Tree.ID (Upstream_Parser.Tree.Child (Element (Upstream_Cur), 1));
      end Upstream_ID;

      function Upstream_Nonterm return Valid_Node_Index
      is (Upstream_Parser.Tree.Child (Element (Upstream_Cur), 1));

      function Up_Text (Node : in Valid_Node_Index) return String
      is (WisiToken_Grammar_Runtime.Get_Text
            (Upstream_Parser.Terminals, Upstream_Parser.Lexer, Virtual_Identifiers, Upstream_Parser.Tree, Node));

      function Upstream_Error_Message (Msg : in String) return String
      is (Syntax_Trees.Error_Message
            (Upstream_Parser.Tree, Upstream_Parser.Terminals, Element (Upstream_Cur),
             Ada.Directories.Simple_Name (Upstream_WY_Source), Msg));

      function Up_Child (Node : in Valid_Node_Index; Child : in Positive_Index_Type) return Valid_Node_Index
      is (Upstream_Parser.Tree.Child (Node, Child));

      function Downstream_ID return Token_Enum_ID
      is begin
         return -Downstream_Parser.Tree.ID (Downstream_Parser.Tree.Child (Element (Downstream_Cur), 1));
      end Downstream_ID;

      function Downstream_Nonterm return Valid_Node_Index
      is (Downstream_Parser.Tree.Child (Element (Downstream_Cur), 1));

      function Down_Text (Node : in Valid_Node_Index) return String
      is (WisiToken_Grammar_Runtime.Get_Text
            (Downstream_Parser.Terminals, Downstream_Parser.Lexer, Virtual_Identifiers, Downstream_Parser.Tree, Node));

      function Downstream_Error_Message (Msg : in String) return String
      is (Syntax_Trees.Error_Message
            (Downstream_Parser.Tree, Downstream_Parser.Terminals, Element (Downstream_Cur),
             Ada.Directories.Simple_Name (Downstream_WY_Source), Msg));

      function Down_Child (Node : in Valid_Node_Index; Child : in Positive_Index_Type) return Valid_Node_Index
      is (Downstream_Parser.Tree.Child (Node, Child));

      Inlined_Up_Nonterms : constant WisiToken.BNF.String_Pair_Lists.List := Build_Inlined_Up_Nonterms;

      function Is_Inlined (Nonterm : in Valid_Node_Index) return Boolean
      is
         Tree : Syntax_Trees.Tree renames Upstream_Parser.Tree_Var_Ref.Element.all;

         Nonterm_Name : constant String := Up_Text (Tree.Child (Nonterm, 1));
      begin
         return (for some Pair of Inlined_Up_Nonterms => -Pair.Name = Nonterm_Name);
      end Is_Inlined;

      function Up_Text_Inlined (Nonterm : in Valid_Node_Index) return String
      is
         use Ada.Strings.Unbounded;

         Tree : Syntax_Trees.Tree renames Upstream_Parser.Tree_Var_Ref.Element.all;
         Children : constant Valid_Node_Index_Array := Tree.Children (Nonterm);
         RHS_List : constant Constant_List := Creators.Create_List
           (Upstream_Parser.Tree_Var_Ref, Children (3), +rhs_list_ID, +rhs_ID);

         Result : Unbounded_String := +Up_Text (Children (1)) & " " & Up_Text (Children (2)) & " ";

         Need_Bar : Boolean := False;

         function Do_Inlined (Orig : in String) return String
         is begin
            for Pair of Inlined_Up_Nonterms loop
               if -Pair.Name = Orig then
                  return -Pair.Value;
               end if;
            end loop;
            return Orig;
         end Do_Inlined;

         function Get_Inlined (Node : in Valid_Node_Index) return String
         with Pre => To_Token_Enum (Tree.ID (Node)) in rhs_ID | rhs_alternative_list_ID | rhs_item_list_ID
         is
            Result : Unbounded_String;
         begin
            case To_Token_Enum (Tree.ID (Node)) is
            when rhs_ID =>
               if Tree.RHS_Index (Node) = 0 then
                  return "";
               else
                  return Get_Inlined (Tree.Child (Node, 1)); --  rhs_item_list
               end if;

            when rhs_item_list_ID =>
               declare
                  Item_List : constant Constant_List := Creators.Create_List
                    (Tree, Node, +rhs_item_list_ID, +rhs_element_ID);
                  Need_Space : Boolean := False;
               begin
                  for Node of Item_List loop
                     declare
                        Item : constant Valid_Node_Index := Tree.Find_Descendant (Node, +rhs_item_ID);
                     begin
                        Result := Result & (if Need_Space then " " else "");
                        Need_Space := True;

                        case Tree.RHS_Index (Item) is
                        when 0 =>
                           Result := Result & Do_Inlined (Up_Text (Item));

                        when 3 =>
                           pragma Assert (Tree.ID (Tree.Child (Item, 1)) = +rhs_optional_item_ID);
                           declare
                              Children : constant Valid_Node_Index_Array := Tree.Children (Tree.Child (Item, 1));
                           begin
                              case Children'Length is
                              when 3 | 4 =>
                                 Result := Result & Up_Text (Children (1)) & " " & Get_Inlined (Children (2)) & " " &
                                   Up_Text (Children (3)) &
                                   (if Children'Length = 4 then Up_Text (Children (4)) else "");
                              when 2 =>
                                 Result := Result & Do_Inlined (Up_Text (Children (1))) & " " & Up_Text (Children (2));
                              when others =>
                                 raise SAL.Programmer_Error;
                              end case;
                           end;

                        when 4 =>
                           pragma Assert (Tree.ID (Tree.Child (Item, 1)) = +rhs_multiple_item_ID);
                           declare
                              Children : constant Valid_Node_Index_Array := Tree.Children (Tree.Child (Item, 1));
                           begin
                              case Children'Length is
                              when 3 | 4 =>
                                 Result := Result & Up_Text (Children (1)) & " " & Get_Inlined (Children (2)) & " " &
                                   Up_Text (Children (3)) &
                                   (if Children'Length = 4 then Up_Text (Children (4)) else "");
                              when 2 =>
                                 Result := Result & Do_Inlined (Up_Text (Children (1))) & " " & Up_Text (Children (2));
                              when others =>
                                 raise SAL.Programmer_Error;
                              end case;
                           end;

                        when 1 | 2 | 5 =>
                           --  So far no nested group
                           Result := Result & Up_Text (Item);

                        when others =>
                           raise SAL.Programmer_Error;
                        end case;
                     end;
                  end loop;
               end;

            when rhs_alternative_list_ID =>
               declare
                  Alt_List : constant Constant_List := Creators.Create_List
                    (Upstream_Parser.Tree_Var_Ref, Node, +rhs_alternative_list_ID, +rhs_item_list_ID);
                  Need_Bar : Boolean := False;
               begin
                  for Item_List of Alt_List loop
                     Result := Result & (if Need_Bar then " | " else "") & Get_Inlined (Item_List);
                     Need_Bar := True;
                  end loop;
               end;

            when others =>
               raise SAL.Programmer_Error;
            end case;

            return -Result;
         end Get_Inlined;
      begin
         for RHS of RHS_List loop
            Result := Result & (if Need_Bar then " | " else "") & Get_Inlined (RHS);
            Need_Bar := True;
         end loop;
         declare
            Semicolon : constant String := Up_Text (Children (4));
         begin
            if Semicolon'Length > 0 then
               Result := Result & " " & Semicolon;
            end if;
         end;
         return To_String (Result);
      end Up_Text_Inlined;

      function Down_Text_Redundant (Nonterm : in Valid_Node_Index) return String
      --  Get text of Nonterm tokens from Downstream tree, but include
      --  ;;redundant comments as code, and substitute Inlined_Up_Nonterms.
      is
         use Ada.Strings.Unbounded;

         Tree : Syntax_Trees.Tree renames Downstream_Parser.Tree_Var_Ref.Element.all;
         Children : constant Valid_Node_Index_Array := Tree.Children (Nonterm);
         RHS_List : constant Constant_List := Creators.Create_List
           (Downstream_Parser.Tree_Var_Ref, Children (3), +rhs_list_ID, +rhs_ID);

         Result : Unbounded_String := +Down_Text (Children (1)) & " " & Down_Text (Children (2)) & " ";

         Need_Bar : Boolean := False;

         function Is_New (RHS : in Valid_Node_Index) return Boolean
         is
            use Ada.Strings.Fixed;
            --  A new RHS looks like:
            --      pragma_g ;; new
            New_Pattern : constant String := ";; new";

            Last_Terminal : constant Node_Index := Tree.Last_Terminal (RHS);

            Aug : constant Base_Token_Class_Access :=
              (if Last_Terminal = Invalid_Node_Index then null else Tree.Augmented (Last_Terminal));
         begin
            if Aug = null then
               return False;
            end if;
            declare
               Non_Grammar : WisiToken.Base_Token_Arrays.Vector renames WisiToken_Grammar_Runtime.Augmented_Token_Access
                 (Aug).Non_Grammar;
            begin
               for Tok of Non_Grammar loop
                  if Tok.ID = +COMMENT_ID then
                     declare
                        Line : constant String := Downstream_Parser.Lexer.Buffer_Text (Tok.Byte_Region);
                        Red_Index : constant Integer := Index (Line, New_Pattern);
                     begin
                        return Red_Index /= 0;
                     end;
                  end if;
               end loop;
               return False;
            end;
         end Is_New;

         procedure Get_Redundant (RHS : in Valid_Node_Index)
         is
            use Ada.Strings.Fixed;
            --  A redundant RHS looks like:
            --    ;; [ IDENTIFIER '=>' ] name ;; redundant with expression
            --
            Red_Pattern : constant String := ";; redundant";

            Last_Terminal : constant Node_Index := Tree.Last_Terminal (RHS);

            Aug : constant Base_Token_Class_Access :=
              (if Last_Terminal = Invalid_Node_Index then null else Tree.Augmented (Last_Terminal));

         begin
            if Aug = null then
               return;
            end if;
            declare
               Non_Grammar : WisiToken.Base_Token_Arrays.Vector renames WisiToken_Grammar_Runtime.Augmented_Token_Access
                 (Aug).Non_Grammar;
            begin
               for Tok of Non_Grammar loop
                  if Tok.ID = +COMMENT_ID then
                     declare
                        Line          : constant String  := Downstream_Parser.Lexer.Buffer_Text (Tok.Byte_Region);
                        Red_Index     : constant Integer := Index (Line, Red_Pattern);
                        Comment_Index : constant Integer := Index (Line, ";;");
                     begin
                        if Red_Index = 0 then
                           null;
                        else
                           Result := Result &
                             (if Need_Bar then " | " else "") &
                             Line (Comment_Index + 3 .. Red_Index - 2);
                           Need_Bar := True;
                        end if;
                     end;
                  end if;
               end loop;
            end;
         end Get_Redundant;

         function Handle_Extra (RHS : in Valid_Node_Index) return String
         is
            use Ada.Strings.Fixed;
            --  For example, upstream 'expression' has:
            --
            --  expression ::=
            --      relation {'and' relation}
            --
            --  Downstream has:
            --
            --  expression ::=
            --      relation ;; new to reduce conflicts
            --    | relation {'and' relation}-        ;; extra -

            Extra_Pattern : constant String := ";; extra";

            RHS_Text : constant String := Down_Text (RHS);
            Last     : Integer         := RHS_Text'Last;

            Last_Terminal : constant Node_Index := Tree.Last_Terminal (RHS);

            Aug : constant Base_Token_Class_Access :=
              (if Last_Terminal = Invalid_Node_Index then null else Tree.Augmented (Last_Terminal));
         begin
            if Aug = null then
               return RHS_Text;
            end if;
            declare
               Non_Grammar : WisiToken.Base_Token_Arrays.Vector renames WisiToken_Grammar_Runtime.Augmented_Token_Access
                 (Aug).Non_Grammar;
            begin
               for Tok of Non_Grammar loop
                  if Tok.ID = +COMMENT_ID then
                     declare
                        Comment_Text : constant String  := Downstream_Parser.Lexer.Buffer_Text (Tok.Byte_Region);
                        Extra_Index  : constant Integer := Index (Comment_Text, Extra_Pattern);
                     begin
                        if Extra_Index = 0 then
                           null;
                        else
                           Last := Last - (Comment_Text'Last - Extra_Index - Extra_Pattern'Length) - 1;
                           --  - 1 for trailing space.
                           exit;
                        end if;
                     end;
                  end if;
               end loop;
            end;
            return RHS_Text (RHS_Text'First .. Last);
         end Handle_Extra;

      begin
         Get_Redundant (Children (2)); -- original first RHS, after '::='

         for RHS of RHS_List loop
            if Is_New (RHS) then
               null;
            else
               Result := Result & (if Need_Bar then " | " else "") & Handle_Extra (RHS);
               Need_Bar := True;
               Get_Redundant (RHS);
            end if;
         end loop;
         declare
            Semicolon : constant String := Down_Text (Children (4));
         begin
            if Semicolon'Length > 0 then
               Result := Result & " " & Semicolon;
            end if;
         end;
         return To_String (Result);
      end Down_Text_Redundant;

      function Up_Exclude (Nonterm : in Valid_Node_Index) return Boolean
      is (for some Ptr of Exclude_Up_Nonterms => Ptr.all = Up_Text (Up_Child (Nonterm, 1)));

   begin
      loop
         exit when not Has_Element (Upstream_Cur) or not Has_Element (Downstream_Cur);
         if Upstream_ID = nonterminal_ID and then not Up_Exclude (Upstream_Nonterm) then
            if Downstream_ID = nonterminal_ID then
               declare
                  Up_Nonterm   : constant Valid_Node_Index := Upstream_Nonterm;
                  Down_Nonterm : constant Valid_Node_Index := Downstream_Nonterm;
               begin
                  if Is_Inlined (Up_Nonterm) then
                     if Verbosity > 0 then
                        Put_Line (Up_Text (Up_Child (Up_Nonterm, 1)) & " inlined");
                     end if;
                     Upstream_Cur := Upstream_Iter.Next (Upstream_Cur);

                  else
                     declare
                        Up   : constant String := Up_Text_Inlined (Up_Nonterm);
                        Down : constant String := Down_Text_Redundant (Down_Nonterm);
                     begin
                        if Up = Down then
                           if Verbosity > 0 then
                              Put_Line (Up_Text (Up_Child (Up_Nonterm, 1)) & " = " &
                                          Down_Text (Down_Child (Down_Nonterm, 1)));
                           end if;
                        else
                           Put_Line (Standard_Error, Downstream_Error_Message (Down_Pad & Down));
                           Put_Line (Standard_Error, Upstream_Error_Message (Up_Pad & Up));
                           Error_Count := @ + 1;

                           if Up_Text (Up_Child (Up_Nonterm, 1)) /= Down_Text (Down_Child (Down_Nonterm, 1)) then
                              --  Missing a nonterm; all subsequent error messages would be bogus
                              exit;
                           end if;
                        end if;

                        Upstream_Cur   := Upstream_Iter.Next (Upstream_Cur);
                        Downstream_Cur := Downstream_Iter.Next (Downstream_Cur);
                     end;
                  end if;
               end;
            else
               Downstream_Cur := Downstream_Iter.Next (Downstream_Cur);
            end if;
         else
            Upstream_Cur   := Upstream_Iter.Next (Upstream_Cur);
         end if;
      end loop;
   end;

   if Error_Count > 0 then
      declare
         use Ada.Command_Line;
      begin
         Set_Exit_Status (Failure);
      end;
   end if;
end Compare_Annex_P;