Commit dea1d3dc by Arnaud Charlet

[multiple changes]

2011-12-21  Thomas Quinot  <quinot@adacore.com>

	* thread.c, s-oscons-tmplt.c, init.c (pthread_condattr_setclock): For
	AIX 5.2, define as a dummy weak symbol in init.c.
	(CLOCK_RT_Ada): Set to CLOCK_MONOTONIC on all versions of AIX.

2011-12-21  Thomas Quinot  <quinot@adacore.com>

	* snames.ads-tmpl, sem_ch8.adb: Minor reformatting.
	* sem_prag.adb: Minor comment clarification.

2011-12-21  Vincent Celier  <celier@adacore.com>

	* prj-nmsc.adb (Report_No_Sources): New argument Lang for the
	language name as a Name_Id. Do not report no sources if language
	is not allowed.
	(Add_Source): Do not add source if language is not allowed.
	* prj.adb (Add_Restricted_Language): New procedure
	(Is_Allowed_Language): New function
	* prj.ads (Add_Restricted_Language): New procedure
	(Is_Allowed_Language): New function

From-SVN: r182577
parent 88115c2a
2011-12-21 Thomas Quinot <quinot@adacore.com>
* thread.c, s-oscons-tmplt.c, init.c (pthread_condattr_setclock): For
AIX 5.2, define as a dummy weak symbol in init.c.
(CLOCK_RT_Ada): Set to CLOCK_MONOTONIC on all versions of AIX.
2011-12-21 Thomas Quinot <quinot@adacore.com>
* snames.ads-tmpl, sem_ch8.adb: Minor reformatting.
* sem_prag.adb: Minor comment clarification.
2011-12-21 Vincent Celier <celier@adacore.com>
* prj-nmsc.adb (Report_No_Sources): New argument Lang for the
language name as a Name_Id. Do not report no sources if language
is not allowed.
(Add_Source): Do not add source if language is not allowed.
* prj.adb (Add_Restricted_Language): New procedure
(Is_Allowed_Language): New function
* prj.ads (Add_Restricted_Language): New procedure
(Is_Allowed_Language): New function
2011-12-21 Robert Dewar <dewar@adacore.com>
* exp_ch5.adb, sem_dim.adb, sem_dim.ads, sem_ch12.adb, prj-conf.adb:
......
......@@ -219,6 +219,19 @@ nanosleep (struct timestruc_t *Rqtp, struct timestruc_t *Rmtp)
#endif /* _AIXVERSION_430 */
/* Version of AIX before 5.3 don't have pthread_condattr_setclock:
* supply it as a weak symbol here so that if linking on a 5.3 or newer
* machine, we get the real one.
*/
#ifndef _AIXVERSION_530
#pragma weak pthread_condattr_setclock
int
pthread_condattr_setclock (pthread_condattr_t *attr, clockid_t cl) {
return 0;
}
#endif
static void
__gnat_error_handler (int sig,
siginfo_t *si ATTRIBUTE_UNUSED,
......
......@@ -486,6 +486,7 @@ package body Prj.Nmsc is
procedure Report_No_Sources
(Project : Project_Id;
Lang : Name_Id;
Lang_Name : String;
Data : Tree_Processing_Data;
Location : Source_Ptr;
......@@ -642,6 +643,13 @@ package body Prj.Nmsc is
Source_To_Replace : Source_Id := No_Source;
begin
-- Nothing to do if the language is not one of the restricted ones
if not Is_Allowed_Language (Lang_Id.Name) then
Id := No_Source;
return;
end if;
-- Check if the same file name or unit is used in the prj tree
Add_Src := True;
......@@ -1020,6 +1028,56 @@ package body Prj.Nmsc is
(Project : Project_Id;
Data : in out Tree_Processing_Data)
is
procedure Check_Aggregate
(Project : Project_Id;
Data : in out Tree_Processing_Data);
-- Check the aggregate project attributes, reject any not supported
-- attributes.
---------------------
-- Check_Aggregate --
---------------------
procedure Check_Aggregate
(Project : Project_Id;
Data : in out Tree_Processing_Data)
is
procedure Check_Not_Defined (Name : Name_Id);
-- Report an error if Var is defined
-----------------------
-- Check_Not_Defined --
-----------------------
procedure Check_Not_Defined (Name : Name_Id) is
Var : constant Prj.Variable_Value :=
Prj.Util.Value_Of
(Name,
Project.Decl.Attributes,
Data.Tree.Shared);
begin
if not Var.Default then
Error_Msg_Name_1 := Name;
Error_Msg
(Data.Flags, "wrong attribute %% in aggregate library",
Var.Location, Project);
end if;
end Check_Not_Defined;
begin
Check_Not_Defined (Snames.Name_Library_Dir);
Check_Not_Defined (Snames.Name_Library_Interface);
Check_Not_Defined (Snames.Name_Library_Name);
Check_Not_Defined (Snames.Name_Library_Ali_Dir);
Check_Not_Defined (Snames.Name_Library_Src_Dir);
Check_Not_Defined (Snames.Name_Library_Options);
Check_Not_Defined (Snames.Name_Library_Standalone);
Check_Not_Defined (Snames.Name_Library_Kind);
Check_Not_Defined (Snames.Name_Leading_Library_Options);
Check_Not_Defined (Snames.Name_Library_Version);
end Check_Aggregate;
Shared : constant Shared_Project_Tree_Data_Access := Data.Tree.Shared;
Prj_Data : Project_Processing_Data;
......@@ -1058,7 +1116,12 @@ package body Prj.Nmsc is
Check_Configuration (Project, Data);
if Project.Qualifier /= Aggregate then
if Project.Qualifier = Aggregate then
-- For aggregate project checks that no library attributes are
-- defined.
Check_Aggregate (Project, Data);
else
Check_Library_Attributes (Project, Data);
Check_Package_Naming (Project, Data);
......@@ -7745,6 +7808,7 @@ package body Prj.Nmsc is
if Source = No_Source then
Report_No_Sources
(Project.Project,
Language.Name,
Get_Name_String (Language.Display_Name),
Data,
Project.Source_List_File_Location,
......@@ -8191,21 +8255,23 @@ package body Prj.Nmsc is
procedure Report_No_Sources
(Project : Project_Id;
Lang : Name_Id;
Lang_Name : String;
Data : Tree_Processing_Data;
Location : Source_Ptr;
Continuation : Boolean := False)
is
begin
case Data.Flags.When_No_Sources is
if Is_Allowed_Language (Lang) then
case Data.Flags.When_No_Sources is
when Silent =>
null;
when Warning | Error =>
declare
Msg : constant String :=
"<there are no "
& Lang_Name & " sources in this project";
"<there are no "
& Lang_Name & " sources in this project";
begin
Error_Msg_Warn := Data.Flags.When_No_Sources = Warning;
......@@ -8216,7 +8282,8 @@ package body Prj.Nmsc is
Error_Msg (Data.Flags, Msg, Location, Project);
end if;
end;
end case;
end case;
end if;
end Report_No_Sources;
----------------------
......
......@@ -42,6 +42,17 @@ with GNAT.HTable;
package body Prj is
type Restricted_Lang;
type Restricted_Lang_Access is access Restricted_Lang;
type Restricted_Lang is record
Name : Name_Id;
Next : Restricted_Lang_Access;
end record;
Restricted_Languages : Restricted_Lang_Access := null;
-- When null, all languages are allowed, otherwise only the languages in
-- the list are allowed.
Object_Suffix : constant String := Get_Target_Object_Suffix.all;
-- File suffix for object files
......@@ -86,6 +97,20 @@ package body Prj is
function Contains_ALI_Files (Dir : Path_Name_Type) return Boolean;
-- Return True if there is at least one ALI file in the directory Dir
-----------------------------
-- Add_Restricted_Language --
-----------------------------
procedure Add_Restricted_Language (Name : String) is
N : String (1 .. Name'Length) := Name;
begin
To_Lower (N);
Name_Len := 0;
Add_Str_To_Name_Buffer (N);
Restricted_Languages :=
new Restricted_Lang'(Name => Name_Find, Next => Restricted_Languages);
end Add_Restricted_Language;
-------------------
-- Add_To_Buffer --
-------------------
......@@ -360,6 +385,30 @@ package body Prj is
return Name_Find;
end Extend_Name;
-------------------------
-- Is_Allowed_Language --
-------------------------
function Is_Allowed_Language (Name : Name_Id) return Boolean is
R : Restricted_Lang_Access := Restricted_Languages;
Lang : constant String := Get_Name_String (Name);
begin
if R = null then
return True;
else
while R /= null loop
if Get_Name_String (R.Name) = Lang then
return True;
end if;
R := R.Next;
end loop;
return False;
end if;
end Is_Allowed_Language;
---------------------
-- Project_Changed --
---------------------
......@@ -1549,7 +1598,9 @@ package body Prj is
procedure Debug_Output (Str : String) is
begin
if Current_Verbosity > Default then
Set_Standard_Error;
Write_Line ((1 .. Debug_Level * 2 => ' ') & Str);
Set_Standard_Output;
end if;
end Debug_Output;
......@@ -1560,7 +1611,9 @@ package body Prj is
procedure Debug_Indent is
begin
if Current_Verbosity = High then
Set_Standard_Error;
Write_Str ((1 .. Debug_Level * 2 => ' '));
Set_Standard_Output;
end if;
end Debug_Indent;
......@@ -1572,6 +1625,7 @@ package body Prj is
begin
if Current_Verbosity = High then
Debug_Indent;
Set_Standard_Error;
Write_Str (Str);
if Str2 = No_Name then
......@@ -1579,6 +1633,7 @@ package body Prj is
else
Write_Line (" """ & Get_Name_String (Str2) & '"');
end if;
Set_Standard_Output;
end if;
end Debug_Output;
......
......@@ -41,6 +41,14 @@ with GNAT.OS_Lib; use GNAT.OS_Lib;
package Prj is
procedure Add_Restricted_Language (Name : String);
-- Call by gprbuild for each language specify by switch
-- --restricted-to-languages=.
function Is_Allowed_Language (Name : Name_Id) return Boolean;
-- Returns True if --restricted-to-languages= is not used or if Name
-- is one of the restricted languages.
All_Other_Names : constant Name_Id := Names_High_Bound;
-- Name used to replace others as an index of an associative array
-- attribute in situations where this is allowed.
......@@ -1370,6 +1378,10 @@ package Prj is
Extended : Project_Id) return Boolean;
-- Return True if Extending is extending the Extended project
function Is_Ext
(Extending : Project_Id;
Extended : Project_Id) return Boolean renames Is_Extending;
function Has_Ada_Sources (Data : Project_Id) return Boolean;
-- Return True if the project has Ada sources
......
......@@ -1379,7 +1379,7 @@ CND(CLOCK_THREAD_CPUTIME_ID, "Thread CPU clock")
/* There's no clock_gettime or clock_id's on Darwin, generate a dummy value */
# define CLOCK_RT_Ada "-1"
#elif defined(FreeBSD) || (defined(_AIX) && defined(_AIXVERSION_530))
#elif defined(FreeBSD) || defined(_AIX)
/** On these platforms use system provided monotonic clock instead of
** the default CLOCK_REALTIME. We then need to set up cond var attributes
** appropriately (see thread.c).
......
......@@ -8031,7 +8031,7 @@ package body Sem_Ch8 is
end if;
end Use_Class_Wide_Operations;
-- Start of processing for Use_One_Type;
-- Start of processing for Use_One_Type
begin
-- It is the type determined by the subtype mark (8.4(8)) whose
......
......@@ -14887,7 +14887,8 @@ package body Sem_Prag is
-----------------------------------------
-- This function makes use of the following static table which indicates
-- whether a given pragma is significant.
-- whether appearance of some name in a given pragma is to be considered
-- as a reference for the purposes of warnings about unreferenced objects.
-- -1 indicates that references in any argument position are significant
-- 0 indicates that appearance in any argument is not significant
......
......@@ -37,6 +37,21 @@
# include <pthread.h>
# include <time.h>
#ifndef _AIXVERSION_530
/* We use the same runtime library for AIX 5.2 and 5.3, but pthread_condattr_
* setclock exists only on the latter, so for the former provide a dummy
* implementation (declared below, weak symbol defined in init.c).
*
* Note: this means that under AIX 5.2 we'll be using CLOCK_MONOTONIC
* timestamps from clock_gettime() as arguments to pthread_cond_timedwait,
* which expects a CLOCK_REALTIME value, which is technically wrong, but
* inocuous in practice on that particular platform since both clocks happen
* to use close epochs.
*/
extern int pthread_condattr_setclock (pthread_condattr_t *attr, clockid_t cl);
#endif
int
__gnat_pthread_condattr_setup(pthread_condattr_t *attr) {
/*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment