OSDN Git Service

* sysdep.c: Problem discovered during IA64 VMS port.
[pf3gnuchains/gcc-fork.git] / gcc / ada / sinput-p.ads
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                             S I N P U T . P                              --
6 --                                                                          --
7 --                                 S p e c                                  --
8 --                                                                          --
9 --          Copyright (C) 1992-2002, Free Software Foundation, Inc.         --
10 --                                                                          --
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 2,  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 COPYING.  If not, write --
19 -- to  the Free Software Foundation,  59 Temple Place - Suite 330,  Boston, --
20 -- MA 02111-1307, USA.                                                      --
21 --                                                                          --
22 -- GNAT was originally developed  by the GNAT team at  New York University. --
23 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
24 --                                                                          --
25 ------------------------------------------------------------------------------
26
27 --  This child package contains the routines used to actually load a project
28 --  file and create entries in the source file table. It also contains two
29 --  routines to save and restore a project scan context.
30
31 with Scans; use Scans;
32 with Types; use Types;
33
34 package Sinput.P is
35
36    function Load_Project_File (Path : String) return Source_File_Index;
37    --  Load into memory the source of a project source file.
38    --  Initialize the Scans state.
39
40    function Source_File_Is_Subunit (X : Source_File_Index) return Boolean;
41    --  This function determines if a source file represents a subunit. It
42    --  works by scanning for the first compilation unit token, and returning
43    --  True if it is the token SEPARATE. It will return False otherwise,
44    --  meaning that the file cannot possibly be a legal subunit. This
45    --  function does NOT do a complete parse of the file, or build a
46    --  tree. It is used in gnatmake to decide if a body without a spec
47    --  in a project file needs to be compiled or not.
48
49    type Saved_Project_Scan_State is limited private;
50    --  Used to save project scan state in following two routines
51
52    procedure Save_Project_Scan_State
53      (Saved_State : out Saved_Project_Scan_State);
54    pragma Inline (Save_Project_Scan_State);
55    --  Save the Scans state, as well as the values of
56    --  Source and Current_Source_File.
57
58    procedure Restore_Project_Scan_State
59      (Saved_State : Saved_Project_Scan_State);
60    pragma Inline (Restore_Project_Scan_State);
61    --  Restore the Scans state and the values of
62    --  Source and Current_Source_File.
63
64 private
65
66    type Saved_Project_Scan_State is record
67       Scan_State          : Saved_Scan_State;
68       Source              : Source_Buffer_Ptr;
69       Current_Source_File : Source_File_Index;
70    end record;
71
72 end Sinput.P;