OSDN Git Service

* gcc-interface/gigi.h (gnat_mark_addressable): Rename parameter.
[pf3gnuchains/gcc-fork.git] / gcc / ada / prj-err.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                              P R J . E R R                               --
6 --                                                                          --
7 --                                 B o d y                                  --
8 --                                                                          --
9 --          Copyright (C) 2002-2009, 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 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.          --
20 --                                                                          --
21 -- GNAT was originally developed  by the GNAT team at  New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
23 --                                                                          --
24 ------------------------------------------------------------------------------
25
26 with Err_Vars;
27 with Output;   use Output;
28 with Stringt;  use Stringt;
29
30 package body Prj.Err is
31
32    -----------------------
33    -- Obsolescent_Check --
34    -----------------------
35
36    procedure Obsolescent_Check (S : Source_Ptr) is
37       pragma Warnings (Off, S);
38    begin
39       null;
40    end Obsolescent_Check;
41
42    ---------------
43    -- Post_Scan --
44    ---------------
45
46    procedure Post_Scan is
47       Debug_Tokens : constant Boolean := False;
48
49    begin
50       --  Change operator symbol to literal strings, since that's the way
51       --  we treat all strings in a project file.
52
53       if Token = Tok_Operator_Symbol
54         or else Token = Tok_String_Literal
55       then
56          Token := Tok_String_Literal;
57          String_To_Name_Buffer (String_Literal_Id);
58          Token_Name := Name_Find;
59       end if;
60
61       if Debug_Tokens then
62          Write_Line (Token_Type'Image (Token));
63
64          if Token = Tok_Identifier
65            or else Token = Tok_String_Literal
66          then
67             Write_Line ("  " & Get_Name_String (Token_Name));
68          end if;
69       end if;
70    end Post_Scan;
71
72    ---------------
73    -- Error_Msg --
74    ---------------
75
76    procedure Error_Msg
77      (Flags    : Processing_Flags;
78       Msg      : String;
79       Location : Source_Ptr := No_Location;
80       Project  : Project_Id := null)
81    is
82       Real_Location : Source_Ptr := Location;
83
84    begin
85       --  Display the error message in the traces so that it appears in the
86       --  correct location in the traces (otherwise error messages are only
87       --  displayed at the end and it is difficult to see when they were
88       --  triggered)
89
90       if Current_Verbosity = High then
91          Write_Line ("ERROR: " & Msg);
92       end if;
93
94       --  If location of error is unknown, use the location of the project
95
96       if Real_Location = No_Location
97         and then Project /= null
98       then
99          Real_Location := Project.Location;
100       end if;
101
102       if Real_Location = No_Location then
103
104          --  If still null, we are parsing a project that was created in-memory
105          --  so we shouldn't report errors for projects that the user has no
106          --  access to in any case.
107
108          return;
109       end if;
110
111       --  Report the error through Errutil, so that duplicate errors are
112       --  properly removed, messages are sorted, and correctly interpreted,...
113
114       Errutil.Error_Msg (Msg, Real_Location);
115
116       --  Let the application know there was an error
117
118       if Flags.Report_Error /= null then
119          Flags.Report_Error
120            (Project,
121             Is_Warning =>
122               Msg (Msg'First) = '?'
123                 or else (Msg (Msg'First) = '<'
124                           and then Err_Vars.Error_Msg_Warn)
125                 or else (Msg (Msg'First) = '\'
126                           and then Msg (Msg'First + 1) = '<'
127                           and then Err_Vars.Error_Msg_Warn));
128       end if;
129    end Error_Msg;
130
131 end Prj.Err;