1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2016, Free Software Foundation, Inc. --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING3. If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license. --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
24 ------------------------------------------------------------------------------
27 with Atree
; use Atree
;
28 with Debug
; use Debug
;
29 with Einfo
; use Einfo
;
30 with Errout
; use Errout
;
31 with Fname
; use Fname
;
34 with Osint
; use Osint
;
35 with Output
; use Output
;
37 with Prepcomp
; use Prepcomp
;
38 with Scans
; use Scans
;
40 with Sem_Aux
; use Sem_Aux
;
41 with Sem_Util
; use Sem_Util
;
42 with Sinfo
; use Sinfo
;
43 with Snames
; use Snames
;
44 with System
; use System
;
46 with System
.OS_Lib
; use System
.OS_Lib
;
48 with Unchecked_Conversion
;
50 package body Sinput
.L
is
52 Prep_Buffer
: Text_Buffer_Ptr
:= null;
53 -- A buffer to temporarily stored the result of preprocessing a source.
54 -- It is only allocated if there is at least one source to preprocess.
56 Prep_Buffer_Last
: Text_Ptr
:= 0;
57 -- Index of the last significant character in Prep_Buffer
59 Initial_Size_Of_Prep_Buffer
: constant := 10_000
;
60 -- Size of Prep_Buffer when it is first allocated
62 -- When a file is to be preprocessed and the options to list symbols
63 -- has been selected (switch -s), Prep.List_Symbols is called with a
64 -- "foreword", a single line indicating what source the symbols apply to.
65 -- The following two constant String are the start and the end of this
68 Foreword_Start
: constant String :=
69 "Preprocessing Symbols for source """;
71 Foreword_End
: constant String := """";
77 procedure Put_Char_In_Prep_Buffer
(C
: Character);
78 -- Add one character in Prep_Buffer, extending Prep_Buffer if need be.
79 -- Used to initialize the preprocessor.
81 procedure New_EOL_In_Prep_Buffer
;
82 -- Add an LF to Prep_Buffer (used to initialize the preprocessor)
86 T
: Osint
.File_Type
) return Source_File_Index
;
87 -- Load a source file, a configuration pragmas file or a definition file
88 -- Coding also allows preprocessing file, but not a library file ???
90 -------------------------------
91 -- Adjust_Instantiation_Sloc --
92 -------------------------------
94 procedure Adjust_Instantiation_Sloc
96 Factor
: Sloc_Adjustment
)
98 Loc
: constant Source_Ptr
:= Sloc
(N
);
101 -- We only do the adjustment if the value is between the appropriate low
102 -- and high values. It is not clear that this should ever not be the
103 -- case, but in practice there seem to be some nodes that get copied
104 -- twice, and this is a defence against that happening.
106 if Factor
.Lo
<= Loc
and then Loc
<= Factor
.Hi
then
107 Set_Sloc
(N
, Loc
+ Factor
.Adjust
);
109 end Adjust_Instantiation_Sloc
;
111 --------------------------------
112 -- Complete_Source_File_Entry --
113 --------------------------------
115 procedure Complete_Source_File_Entry
is
116 CSF
: constant Source_File_Index
:= Current_Source_File
;
118 Trim_Lines_Table
(CSF
);
119 Source_File
.Table
(CSF
).Source_Checksum
:= Checksum
;
120 end Complete_Source_File_Entry
;
122 ---------------------------------
123 -- Create_Instantiation_Source --
124 ---------------------------------
126 procedure Create_Instantiation_Source
127 (Inst_Node
: Entity_Id
;
128 Template_Id
: Entity_Id
;
129 Factor
: out Sloc_Adjustment
;
130 Inlined_Body
: Boolean := False;
131 Inherited_Pragma
: Boolean := False)
133 Dnod
: constant Node_Id
:= Declaration_Node
(Template_Id
);
134 Xold
: Source_File_Index
;
135 Xnew
: Source_File_Index
;
138 Xold
:= Get_Source_File_Index
(Sloc
(Template_Id
));
139 Factor
.Lo
:= Source_File
.Table
(Xold
).Source_First
;
140 Factor
.Hi
:= Source_File
.Table
(Xold
).Source_Last
;
142 Source_File
.Append
(Source_File
.Table
(Xold
));
143 Xnew
:= Source_File
.Last
;
146 Sold
: Source_File_Record
renames Source_File
.Table
(Xold
);
147 Snew
: Source_File_Record
renames Source_File
.Table
(Xnew
);
152 Snew
.Inlined_Body
:= Inlined_Body
;
153 Snew
.Inherited_Pragma
:= Inherited_Pragma
;
154 Snew
.Template
:= Xold
;
156 -- For a genuine generic instantiation, assign new instance id. For
157 -- inlined bodies or inherited pragmas, we retain that of the
158 -- template, but we save the call location.
160 if Inlined_Body
or Inherited_Pragma
then
161 Snew
.Inlined_Call
:= Sloc
(Inst_Node
);
164 -- If the spec has been instantiated already, and we are now
165 -- creating the instance source for the corresponding body now,
166 -- retrieve the instance id that was assigned to the spec, which
167 -- corresponds to the same instantiation sloc.
169 Inst_Spec
:= Instance_Spec
(Inst_Node
);
170 if Present
(Inst_Spec
) then
172 Inst_Spec_Ent
: Entity_Id
;
173 -- Instance spec entity
175 Inst_Spec_Sloc
: Source_Ptr
;
176 -- Virtual sloc of the spec instance source
178 Inst_Spec_Inst_Id
: Instance_Id
;
179 -- Instance id assigned to the instance spec
182 Inst_Spec_Ent
:= Defining_Entity
(Inst_Spec
);
184 -- For a subprogram instantiation, we want the subprogram
185 -- instance, not the wrapper package.
187 if Present
(Related_Instance
(Inst_Spec_Ent
)) then
188 Inst_Spec_Ent
:= Related_Instance
(Inst_Spec_Ent
);
191 -- The specification of the instance entity has a virtual
192 -- sloc within the instance sloc range.
194 -- ??? But the Unit_Declaration_Node has the sloc of the
195 -- instantiation, which is somewhat of an oddity.
199 (Specification
(Unit_Declaration_Node
(Inst_Spec_Ent
)));
202 (Get_Source_File_Index
(Inst_Spec_Sloc
)).Instance
;
205 (Sloc
(Inst_Node
) = Instances
.Table
(Inst_Spec_Inst_Id
));
206 Snew
.Instance
:= Inst_Spec_Inst_Id
;
210 Instances
.Append
(Sloc
(Inst_Node
));
211 Snew
.Instance
:= Instances
.Last
;
215 -- Now compute the new values of Source_First and Source_Last and
216 -- adjust the source file pointer to have the correct virtual origin
217 -- for the new range of values.
219 -- Source_First must be greater than the last Source_Last value and
220 -- also must be a multiple of Source_Align.
223 ((Source_File
.Table
(Xnew
- 1).Source_Last
+ Source_Align
) /
224 Source_Align
) * Source_Align
;
225 Factor
.Adjust
:= Snew
.Source_First
- Factor
.Lo
;
226 Snew
.Source_Last
:= Factor
.Hi
+ Factor
.Adjust
;
228 Set_Source_File_Index_Table
(Xnew
);
230 Snew
.Sloc_Adjust
:= Sold
.Sloc_Adjust
- Factor
.Adjust
;
234 Write_Str
("*** Create instantiation source for ");
236 if Nkind
(Dnod
) in N_Proper_Body
237 and then Was_Originally_Stub
(Dnod
)
239 Write_Str
("subunit ");
241 elsif Ekind
(Template_Id
) = E_Generic_Package
then
242 if Nkind
(Dnod
) = N_Package_Body
then
243 Write_Str
("body of package ");
245 Write_Str
("spec of package ");
248 elsif Ekind
(Template_Id
) = E_Function
then
249 Write_Str
("body of function ");
251 elsif Ekind
(Template_Id
) = E_Procedure
then
252 Write_Str
("body of procedure ");
254 elsif Ekind
(Template_Id
) = E_Generic_Function
then
255 Write_Str
("spec of function ");
257 elsif Ekind
(Template_Id
) = E_Generic_Procedure
then
258 Write_Str
("spec of procedure ");
260 elsif Ekind
(Template_Id
) = E_Package_Body
then
261 Write_Str
("body of package ");
263 else pragma Assert
(Ekind
(Template_Id
) = E_Subprogram_Body
);
264 if Nkind
(Dnod
) = N_Procedure_Specification
then
265 Write_Str
("body of procedure ");
267 Write_Str
("body of function ");
271 Write_Name
(Chars
(Template_Id
));
274 Write_Str
(" new source index = ");
275 Write_Int
(Int
(Xnew
));
278 Write_Str
(" copying from file name = ");
279 Write_Name
(File_Name
(Xold
));
282 Write_Str
(" old source index = ");
283 Write_Int
(Int
(Xold
));
286 Write_Str
(" old lo = ");
287 Write_Int
(Int
(Factor
.Lo
));
290 Write_Str
(" old hi = ");
291 Write_Int
(Int
(Factor
.Hi
));
294 Write_Str
(" new lo = ");
295 Write_Int
(Int
(Snew
.Source_First
));
298 Write_Str
(" new hi = ");
299 Write_Int
(Int
(Snew
.Source_Last
));
302 Write_Str
(" adjustment factor = ");
303 Write_Int
(Int
(Factor
.Adjust
));
306 Write_Str
(" instantiation location: ");
307 Write_Location
(Sloc
(Inst_Node
));
311 -- For a given character in the source, a higher subscript will be
312 -- used to access the instantiation, which means that the virtual
313 -- origin must have a corresponding lower value. We compute this new
314 -- origin by taking the address of the appropriate adjusted element
315 -- in the old array. Since this adjusted element will be at a
316 -- negative subscript, we must suppress checks.
319 pragma Suppress
(All_Checks
);
321 pragma Warnings
(Off
);
322 -- This unchecked conversion is aliasing safe, since it is never
323 -- used to create improperly aliased pointer values.
325 function To_Source_Buffer_Ptr
is new
326 Unchecked_Conversion
(Address
, Source_Buffer_Ptr
);
328 pragma Warnings
(On
);
333 (Sold
.Source_Text
(-Factor
.Adjust
)'Address);
336 end Create_Instantiation_Source
;
338 ----------------------
339 -- Load_Config_File --
340 ----------------------
342 function Load_Config_File
343 (N
: File_Name_Type
) return Source_File_Index
346 return Load_File
(N
, Osint
.Config
);
347 end Load_Config_File
;
349 --------------------------
350 -- Load_Definition_File --
351 --------------------------
353 function Load_Definition_File
354 (N
: File_Name_Type
) return Source_File_Index
357 return Load_File
(N
, Osint
.Definition
);
358 end Load_Definition_File
;
366 T
: Osint
.File_Type
) return Source_File_Index
368 Src
: Source_Buffer_Ptr
;
369 X
: Source_File_Index
;
373 Preprocessing_Needed
: Boolean := False;
376 -- If already there, don't need to reload file. An exception occurs
377 -- in multiple unit per file mode. It would be nice in this case to
378 -- share the same source file for each unit, but this leads to many
379 -- difficulties with assumptions (e.g. in the body of lib), that a
380 -- unit can be found by locating its source file index. Since we do
381 -- not expect much use of this mode, it's no big deal to waste a bit
382 -- of space and time by reading and storing the source multiple times.
384 if Multiple_Unit_Index
= 0 then
385 for J
in 1 .. Source_File
.Last
loop
386 if Source_File
.Table
(J
).File_Name
= N
then
392 -- Here we must build a new entry in the file table
394 -- But first, we must check if a source needs to be preprocessed,
395 -- because we may have to load and parse a definition file, and we want
396 -- to do that before we load the source, so that the buffer of the
397 -- source will be the last created, and we will be able to replace it
398 -- and modify Hi without stepping on another buffer.
400 if T
= Osint
.Source
and then not Is_Internal_File_Name
(N
) then
401 Prepare_To_Preprocess
402 (Source
=> N
, Preprocessing_Needed
=> Preprocessing_Needed
);
405 Source_File
.Increment_Last
;
406 X
:= Source_File
.Last
;
408 -- Compute starting index, respecting alignment requirement
410 if X
= Source_File
.First
then
411 Lo
:= First_Source_Ptr
;
413 Lo
:= ((Source_File
.Table
(X
- 1).Source_Last
+ Source_Align
) /
414 Source_Align
) * Source_Align
;
417 Osint
.Read_Source_File
(N
, Lo
, Hi
, Src
, T
);
420 Source_File
.Decrement_Last
;
421 return No_Source_File
;
426 Write_Str
("*** Build source file table entry, Index = ");
428 Write_Str
(", file name = ");
431 Write_Str
(" lo = ");
432 Write_Int
(Int
(Lo
));
434 Write_Str
(" hi = ");
435 Write_Int
(Int
(Hi
));
438 Write_Str
(" first 10 chars -->");
441 procedure Wchar
(C
: Character);
442 -- Writes character or ? for control character
448 procedure Wchar
(C
: Character) is
451 or else C
in ASCII
.DEL
.. Character'Val (16#
9F#
)
460 for J
in Lo
.. Lo
+ 9 loop
467 Write_Str
(" last 10 chars -->");
469 for J
in Hi
- 10 .. Hi
- 1 loop
476 if Src
(Hi
) /= EOF
then
477 Write_Str
(" error: no EOF at end");
484 S
: Source_File_Record
renames Source_File
.Table
(X
);
485 File_Type
: Type_Of_File
;
490 File_Type
:= Sinput
.Src
;
492 when Osint
.Library
=>
496 File_Type
:= Sinput
.Config
;
498 when Osint
.Definition
=>
501 when Osint
.Preprocessing_Data
=>
502 File_Type
:= Preproc
;
505 S
:= (Debug_Source_Name
=> N
,
507 File_Type
=> File_Type
,
508 First_Mapped_Line
=> No_Line_Number
,
509 Full_Debug_Name
=> Osint
.Full_Source_Name
,
510 Full_File_Name
=> Osint
.Full_Source_Name
,
511 Full_Ref_Name
=> Osint
.Full_Source_Name
,
512 Instance
=> No_Instance_Id
,
513 Identifier_Casing
=> Unknown
,
514 Inlined_Call
=> No_Location
,
515 Inlined_Body
=> False,
516 Inherited_Pragma
=> False,
517 Keyword_Casing
=> Unknown
,
518 Last_Source_Line
=> 1,
521 Lines_Table_Max
=> 1,
522 Logical_Lines_Table
=> null,
523 Num_SRef_Pragmas
=> 0,
526 Source_Checksum
=> 0,
530 Template
=> No_Source_File
,
532 Time_Stamp
=> Osint
.Current_Source_File_Stamp
);
534 Alloc_Line_Tables
(S
, Opt
.Table_Factor
* Alloc
.Lines_Initial
);
535 S
.Lines_Table
(1) := Lo
;
538 -- Preprocess the source if it needs to be preprocessed
540 if Preprocessing_Needed
then
542 -- Temporarily set the Source_File_Index_Table entries for the
543 -- source, to avoid crash when reporting an error.
545 Set_Source_File_Index_Table
(X
);
547 if Opt
.List_Preprocessing_Symbols
then
551 Foreword
: String (1 .. Foreword_Start
'Length +
552 Name_Len
+ Foreword_End
'Length);
555 Foreword
(1 .. Foreword_Start
'Length) := Foreword_Start
;
556 Foreword
(Foreword_Start
'Length + 1 ..
557 Foreword_Start
'Length + Name_Len
) :=
558 Name_Buffer
(1 .. Name_Len
);
559 Foreword
(Foreword
'Last - Foreword_End
'Length + 1 ..
560 Foreword
'Last) := Foreword_End
;
561 Prep
.List_Symbols
(Foreword
);
566 T
: constant Nat
:= Total_Errors_Detected
;
567 -- Used to check if there were errors during preprocessing
569 Save_Style_Check
: Boolean;
570 -- Saved state of the Style_Check flag (which needs to be
571 -- temporarily set to False during preprocessing, see below).
576 -- If this is the first time we preprocess a source, allocate
577 -- the preprocessing buffer.
579 if Prep_Buffer
= null then
581 new Text_Buffer
(1 .. Initial_Size_Of_Prep_Buffer
);
584 -- Make sure the preprocessing buffer is empty
586 Prep_Buffer_Last
:= 0;
588 -- Initialize the preprocessor hooks
591 (Error_Msg
=> Errout
.Error_Msg
'Access,
592 Scan
=> Scn
.Scanner
.Scan
'Access,
593 Set_Ignore_Errors
=> Errout
.Set_Ignore_Errors
'Access,
594 Put_Char
=> Put_Char_In_Prep_Buffer
'Access,
595 New_EOL
=> New_EOL_In_Prep_Buffer
'Access);
597 -- Initialize scanner and set its behavior for preprocessing,
598 -- then preprocess. Also disable style checks, since some of
599 -- them are done in the scanner (specifically, those dealing
600 -- with line length and line termination), and cannot be done
601 -- during preprocessing (because the source file index table
602 -- has not been set yet).
604 Scn
.Scanner
.Initialize_Scanner
(X
);
606 Scn
.Scanner
.Set_Special_Character
('#');
607 Scn
.Scanner
.Set_Special_Character
('$');
608 Scn
.Scanner
.Set_End_Of_Line_As_Token
(True);
609 Save_Style_Check
:= Opt
.Style_Check
;
610 Opt
.Style_Check
:= False;
612 -- The actual preprocessing step
614 Preprocess
(Modified
);
616 -- Reset the scanner to its standard behavior, and restore the
617 -- Style_Checks flag.
619 Scn
.Scanner
.Reset_Special_Characters
;
620 Scn
.Scanner
.Set_End_Of_Line_As_Token
(False);
621 Opt
.Style_Check
:= Save_Style_Check
;
623 -- If there were errors during preprocessing, record an error
624 -- at the start of the file, and do not change the source
627 if T
/= Total_Errors_Detected
then
629 ("file could not be successfully preprocessed", Lo
);
630 return No_Source_File
;
633 -- Output the result of the preprocessing, if requested and
634 -- the source has been modified by the preprocessing. Only
635 -- do that for the main unit (spec, body and subunits).
637 if Generate_Processed_File
640 ((Compiler_State
= Parsing
641 and then Parsing_Main_Extended_Source
)
643 (Compiler_State
= Analyzing
644 and then Analysing_Subunit_Of_Main
))
647 FD
: File_Descriptor
;
653 Add_Str_To_Name_Buffer
(Prep_Suffix
);
655 Delete_File
(Name_Buffer
(1 .. Name_Len
), Status
);
658 Create_New_File
(Name_Buffer
(1 .. Name_Len
), Text
);
660 Status
:= FD
/= Invalid_FD
;
666 Prep_Buffer
(1)'Address,
667 Integer (Prep_Buffer_Last
));
668 Status
:= NB
= Integer (Prep_Buffer_Last
);
677 ("??could not write processed file """ &
678 Name_Buffer
(1 .. Name_Len
) & '"',
684 -- Set the new value of Hi
686 Hi
:= Lo
+ Source_Ptr
(Prep_Buffer_Last
);
688 -- Create the new source buffer
691 subtype Actual_Source_Buffer
is Source_Buffer
(Lo
.. Hi
);
692 -- Physical buffer allocated
694 type Actual_Source_Ptr
is access Actual_Source_Buffer
;
695 -- Pointer type for the physical buffer allocated
697 Actual_Ptr
: constant Actual_Source_Ptr
:=
698 new Actual_Source_Buffer
;
699 -- Actual physical buffer
702 Actual_Ptr
(Lo
.. Hi
- 1) :=
703 Prep_Buffer
(1 .. Prep_Buffer_Last
);
704 Actual_Ptr
(Hi
) := EOF
;
706 -- Now we need to work out the proper virtual origin
707 -- pointer to return. This is Actual_Ptr (0)'Address, but
708 -- we have to be careful to suppress checks to compute
712 pragma Suppress
(All_Checks
);
714 pragma Warnings
(Off
);
715 -- This unchecked conversion is aliasing safe, since
716 -- it is never used to create improperly aliased
719 function To_Source_Buffer_Ptr
is new
720 Unchecked_Conversion
(Address
, Source_Buffer_Ptr
);
722 pragma Warnings
(On
);
725 Src
:= To_Source_Buffer_Ptr
(Actual_Ptr
(0)'Address);
727 -- Record in the table the new source buffer and the
730 Source_File
.Table
(X
).Source_Text
:= Src
;
731 Source_File
.Table
(X
).Source_Last
:= Hi
;
733 -- Reset Last_Line to 1, because the lines do not
734 -- have necessarily the same starts and lengths.
736 Source_File
.Table
(X
).Last_Source_Line
:= 1;
743 Set_Source_File_Index_Table
(X
);
748 ----------------------------------
749 -- Load_Preprocessing_Data_File --
750 ----------------------------------
752 function Load_Preprocessing_Data_File
753 (N
: File_Name_Type
) return Source_File_Index
756 return Load_File
(N
, Osint
.Preprocessing_Data
);
757 end Load_Preprocessing_Data_File
;
759 ----------------------
760 -- Load_Source_File --
761 ----------------------
763 function Load_Source_File
764 (N
: File_Name_Type
) return Source_File_Index
767 return Load_File
(N
, Osint
.Source
);
768 end Load_Source_File
;
770 ----------------------------
771 -- New_EOL_In_Prep_Buffer --
772 ----------------------------
774 procedure New_EOL_In_Prep_Buffer
is
776 Put_Char_In_Prep_Buffer
(ASCII
.LF
);
777 end New_EOL_In_Prep_Buffer
;
779 -----------------------------
780 -- Put_Char_In_Prep_Buffer --
781 -----------------------------
783 procedure Put_Char_In_Prep_Buffer
(C
: Character) is
785 -- If preprocessing buffer is not large enough, double it
787 if Prep_Buffer_Last
= Prep_Buffer
'Last then
789 New_Prep_Buffer
: constant Text_Buffer_Ptr
:=
790 new Text_Buffer
(1 .. 2 * Prep_Buffer_Last
);
793 New_Prep_Buffer
(Prep_Buffer
'Range) := Prep_Buffer
.all;
795 Prep_Buffer
:= New_Prep_Buffer
;
799 Prep_Buffer_Last
:= Prep_Buffer_Last
+ 1;
800 Prep_Buffer
(Prep_Buffer_Last
) := C
;
801 end Put_Char_In_Prep_Buffer
;
803 -------------------------
804 -- Source_File_Is_Body --
805 -------------------------
807 function Source_File_Is_Body
(X
: Source_File_Index
) return Boolean is
811 Initialize_Scanner
(No_Unit
, X
);
813 -- Loop to look for subprogram or package body
818 -- PRAGMA, WITH, USE (which can appear before a body)
820 when Tok_Pragma | Tok_With | Tok_Use
=>
822 -- We just want to skip any of these, do it by skipping to a
823 -- semicolon, but check for EOF, in case we have bad syntax.
826 if Token
= Tok_Semicolon
then
829 elsif Token
= Tok_EOF
then
839 Scan
; -- Past PACKAGE
841 -- We have a body if and only if BODY follows
843 return Token
= Tok_Body
;
845 -- FUNCTION or PROCEDURE
847 when Tok_Procedure | Tok_Function
=>
850 -- Loop through tokens following PROCEDURE or FUNCTION
857 -- For parens, count paren level (note that paren level
858 -- can get greater than 1 if we have default parameters).
860 when Tok_Left_Paren
=>
861 Pcount
:= Pcount
+ 1;
863 when Tok_Right_Paren
=>
864 Pcount
:= Pcount
- 1;
866 -- EOF means something weird, probably no body
871 -- BEGIN or IS or END definitely means body is present
873 when Tok_Begin | Tok_Is | Tok_End
=>
876 -- Semicolon means no body present if at outside any
877 -- parens. If within parens, ignore, since it could be
878 -- a parameter separator.
880 when Tok_Semicolon
=>
885 -- Skip anything else
892 -- Anything else in main scan means we don't have a body
898 end Source_File_Is_Body
;
900 ----------------------------
901 -- Source_File_Is_No_Body --
902 ----------------------------
904 function Source_File_Is_No_Body
(X
: Source_File_Index
) return Boolean is
906 Initialize_Scanner
(No_Unit
, X
);
908 if Token
/= Tok_Pragma
then
914 if Token
/= Tok_Identifier
915 or else Chars
(Token_Node
) /= Name_No_Body
920 Scan
; -- past No_Body
922 if Token
/= Tok_Semicolon
then
926 Scan
; -- past semicolon
928 return Token
= Tok_EOF
;
929 end Source_File_Is_No_Body
;