Commit a31945d7 by Arnaud Charlet

[multiple changes]

2011-11-04  Matthew Heaney  <heaney@adacore.com>

	* a-cdlili.ad[sb], a-cidlli.ad[sb], a-coorse.ad[sb], a-ciorse.ad[sb],
	a-coorma.ad[sb], a-ciorma.ad[sb], a-coormu.ad[sb], a-ciormu.ad[sb],
	a-cohama.ad[sb], a-cihama.ad[sb], a-cohase.ad[sb], a-cihase.ad[sb],
	a-convec.ad[sb], a-coinve.ad[sb] (Assign, Copy): New operations
	added to package.

2011-11-04  Robert Dewar  <dewar@adacore.com>

	* sem_ch12.adb: Minor reformatting

2011-11-04  Gary Dismukes  <dismukes@adacore.com>

	* bindgen.adb (Gen_Elab_Calls): In the case of the AAMP target,
	initialize elaboration entities to zero when specs are processed.

From-SVN: r180930
parent 1ba878a9
2011-11-04 Matthew Heaney <heaney@adacore.com>
* a-cdlili.ad[sb], a-cidlli.ad[sb], a-coorse.ad[sb], a-ciorse.ad[sb],
a-coorma.ad[sb], a-ciorma.ad[sb], a-coormu.ad[sb], a-ciormu.ad[sb],
a-cohama.ad[sb], a-cihama.ad[sb], a-cohase.ad[sb], a-cihase.ad[sb],
a-convec.ad[sb], a-coinve.ad[sb] (Assign, Copy): New operations
added to package.
2011-11-04 Robert Dewar <dewar@adacore.com>
* sem_ch12.adb: Minor reformatting
2011-11-04 Gary Dismukes <dismukes@adacore.com>
* bindgen.adb (Gen_Elab_Calls): In the case of the AAMP target,
initialize elaboration entities to zero when specs are processed.
2011-10-28 Iain Sandoe <iains@gcc.gnu.org> 2011-10-28 Iain Sandoe <iains@gcc.gnu.org>
Eric Botcazou <ebotcazou@adacore.com> Eric Botcazou <ebotcazou@adacore.com>
......
...@@ -146,6 +146,27 @@ package body Ada.Containers.Doubly_Linked_Lists is ...@@ -146,6 +146,27 @@ package body Ada.Containers.Doubly_Linked_Lists is
Insert (Container, No_Element, New_Item, Count); Insert (Container, No_Element, New_Item, Count);
end Append; end Append;
------------
-- Assign --
------------
procedure Assign (Target : in out List; Source : List) is
Node : Node_Access;
begin
if Target'Address = Source'Address then
return;
end if;
Target.Clear;
Node := Source.First;
while Node /= null loop
Target.Append (Node.Element);
Node := Node.Next;
end loop;
end Assign;
----------- -----------
-- Clear -- -- Clear --
----------- -----------
...@@ -206,6 +227,17 @@ package body Ada.Containers.Doubly_Linked_Lists is ...@@ -206,6 +227,17 @@ package body Ada.Containers.Doubly_Linked_Lists is
return Find (Container, Item) /= No_Element; return Find (Container, Item) /= No_Element;
end Contains; end Contains;
----------
-- Copy --
----------
function Copy (Source : List) return List is
begin
return Target : List do
Target.Assign (Source);
end return;
end Copy;
------------ ------------
-- Delete -- -- Delete --
------------ ------------
......
...@@ -90,6 +90,10 @@ package Ada.Containers.Doubly_Linked_Lists is ...@@ -90,6 +90,10 @@ package Ada.Containers.Doubly_Linked_Lists is
Position : Cursor; Position : Cursor;
Process : not null access procedure (Element : in out Element_Type)); Process : not null access procedure (Element : in out Element_Type));
procedure Assign (Target : in out List; Source : List);
function Copy (Source : List) return List;
procedure Move procedure Move
(Target : in out List; (Target : in out List;
Source : in out List); Source : in out List);
......
...@@ -171,6 +171,27 @@ package body Ada.Containers.Indefinite_Doubly_Linked_Lists is ...@@ -171,6 +171,27 @@ package body Ada.Containers.Indefinite_Doubly_Linked_Lists is
Insert (Container, No_Element, New_Item, Count); Insert (Container, No_Element, New_Item, Count);
end Append; end Append;
------------
-- Assign --
------------
procedure Assign (Target : in out List; Source : List) is
Node : Node_Access;
begin
if Target'Address = Source'Address then
return;
end if;
Target.Clear;
Node := Source.First;
while Node /= null loop
Target.Append (Node.Element.all);
Node := Node.Next;
end loop;
end Assign;
----------- -----------
-- Clear -- -- Clear --
----------- -----------
...@@ -230,6 +251,17 @@ package body Ada.Containers.Indefinite_Doubly_Linked_Lists is ...@@ -230,6 +251,17 @@ package body Ada.Containers.Indefinite_Doubly_Linked_Lists is
return Find (Container, Item) /= No_Element; return Find (Container, Item) /= No_Element;
end Contains; end Contains;
----------
-- Copy --
----------
function Copy (Source : List) return List is
begin
return Target : List do
Target.Assign (Source);
end return;
end Copy;
------------ ------------
-- Delete -- -- Delete --
------------ ------------
......
...@@ -90,6 +90,10 @@ package Ada.Containers.Indefinite_Doubly_Linked_Lists is ...@@ -90,6 +90,10 @@ package Ada.Containers.Indefinite_Doubly_Linked_Lists is
Position : Cursor; Position : Cursor;
Process : not null access procedure (Element : in out Element_Type)); Process : not null access procedure (Element : in out Element_Type));
procedure Assign (Target : in out List; Source : List);
function Copy (Source : List) return List;
procedure Move procedure Move
(Target : in out List; (Target : in out List;
Source : in out List); Source : in out List);
......
...@@ -35,6 +35,8 @@ pragma Elaborate_All (Ada.Containers.Hash_Tables.Generic_Keys); ...@@ -35,6 +35,8 @@ pragma Elaborate_All (Ada.Containers.Hash_Tables.Generic_Keys);
with Ada.Unchecked_Deallocation; with Ada.Unchecked_Deallocation;
with System; use type System.Address;
package body Ada.Containers.Indefinite_Hashed_Maps is package body Ada.Containers.Indefinite_Hashed_Maps is
procedure Free_Key is procedure Free_Key is
...@@ -132,6 +134,41 @@ package body Ada.Containers.Indefinite_Hashed_Maps is ...@@ -132,6 +134,41 @@ package body Ada.Containers.Indefinite_Hashed_Maps is
HT_Ops.Adjust (Container.HT); HT_Ops.Adjust (Container.HT);
end Adjust; end Adjust;
------------
-- Assign --
------------
procedure Assign (Target : in out Map; Source : Map) is
procedure Insert_Item (Node : Node_Access);
pragma Inline (Insert_Item);
procedure Insert_Items is new HT_Ops.Generic_Iteration (Insert_Item);
-----------------
-- Insert_Item --
-----------------
procedure Insert_Item (Node : Node_Access) is
begin
Target.Insert (Key => Node.Key.all, New_Item => Node.Element.all);
end Insert_Item;
-- Start of processing for Assign
begin
if Target'Address = Source'Address then
return;
end if;
Target.Clear;
if Target.Capacity < Source.Length then
Target.Reserve_Capacity (Source.Length);
end if;
Insert_Items (Target.HT);
end Assign;
-------------- --------------
-- Capacity -- -- Capacity --
-------------- --------------
...@@ -159,6 +196,34 @@ package body Ada.Containers.Indefinite_Hashed_Maps is ...@@ -159,6 +196,34 @@ package body Ada.Containers.Indefinite_Hashed_Maps is
return Find (Container, Key) /= No_Element; return Find (Container, Key) /= No_Element;
end Contains; end Contains;
----------
-- Copy --
----------
function Copy
(Source : Map;
Capacity : Count_Type := 0) return Map
is
C : Count_Type;
begin
if Capacity = 0 then
C := Source.Length;
elsif Capacity >= Source.Length then
C := Capacity;
else
raise Capacity_Error
with "Requested capacity is less than Source length";
end if;
return Target : Map do
Target.Reserve_Capacity (C);
Target.Assign (Source);
end return;
end Copy;
--------------- ---------------
-- Copy_Node -- -- Copy_Node --
--------------- ---------------
......
...@@ -134,6 +134,10 @@ package Ada.Containers.Indefinite_Hashed_Maps is ...@@ -134,6 +134,10 @@ package Ada.Containers.Indefinite_Hashed_Maps is
-- Calls Process with the key (with only a constant view) and element (with -- Calls Process with the key (with only a constant view) and element (with
-- a variable view) of the node designed by the cursor. -- a variable view) of the node designed by the cursor.
procedure Assign (Target : in out Map; Source : Map);
function Copy (Source : Map; Capacity : Count_Type := 0) return Map;
procedure Move (Target : in out Map; Source : in out Map); procedure Move (Target : in out Map; Source : in out Map);
-- Clears Target (if it's not empty), and then moves (not copies) the -- Clears Target (if it's not empty), and then moves (not copies) the
-- buckets array and nodes from Source to Target. -- buckets array and nodes from Source to Target.
......
...@@ -173,6 +173,16 @@ package body Ada.Containers.Indefinite_Hashed_Sets is ...@@ -173,6 +173,16 @@ package body Ada.Containers.Indefinite_Hashed_Sets is
Free_Element (X); Free_Element (X);
end Assign; end Assign;
procedure Assign (Target : in out Set; Source : Set) is
begin
if Target'Address = Source'Address then
return;
end if;
Target.Clear;
Target.Union (Source);
end Assign;
-------------- --------------
-- Capacity -- -- Capacity --
-------------- --------------
...@@ -200,6 +210,34 @@ package body Ada.Containers.Indefinite_Hashed_Sets is ...@@ -200,6 +210,34 @@ package body Ada.Containers.Indefinite_Hashed_Sets is
return Find (Container, Item) /= No_Element; return Find (Container, Item) /= No_Element;
end Contains; end Contains;
----------
-- Copy --
----------
function Copy
(Source : Set;
Capacity : Count_Type := 0) return Set
is
C : Count_Type;
begin
if Capacity = 0 then
C := Source.Length;
elsif Capacity >= Source.Length then
C := Capacity;
else
raise Capacity_Error
with "Requested capacity is less than Source length";
end if;
return Target : Set do
Target.Reserve_Capacity (C);
Target.Assign (Source);
end return;
end Copy;
--------------- ---------------
-- Copy_Node -- -- Copy_Node --
--------------- ---------------
......
...@@ -153,6 +153,10 @@ package Ada.Containers.Indefinite_Hashed_Sets is ...@@ -153,6 +153,10 @@ package Ada.Containers.Indefinite_Hashed_Sets is
Position : Cursor) Position : Cursor)
return Constant_Reference_Type; return Constant_Reference_Type;
procedure Assign (Target : in out Set; Source : Set);
function Copy (Source : Set; Capacity : Count_Type := 0) return Set;
procedure Move (Target : in out Set; Source : in out Set); procedure Move (Target : in out Set; Source : in out Set);
-- Clears Target (if it's not empty), and then moves (not copies) the -- Clears Target (if it's not empty), and then moves (not copies) the
-- buckets array and nodes from Source to Target. -- buckets array and nodes from Source to Target.
......
...@@ -35,6 +35,8 @@ pragma Elaborate_All (Ada.Containers.Red_Black_Trees.Generic_Operations); ...@@ -35,6 +35,8 @@ pragma Elaborate_All (Ada.Containers.Red_Black_Trees.Generic_Operations);
with Ada.Containers.Red_Black_Trees.Generic_Keys; with Ada.Containers.Red_Black_Trees.Generic_Keys;
pragma Elaborate_All (Ada.Containers.Red_Black_Trees.Generic_Keys); pragma Elaborate_All (Ada.Containers.Red_Black_Trees.Generic_Keys);
with System; use type System.Address;
package body Ada.Containers.Indefinite_Ordered_Maps is package body Ada.Containers.Indefinite_Ordered_Maps is
pragma Suppress (All_Checks); pragma Suppress (All_Checks);
...@@ -287,6 +289,37 @@ package body Ada.Containers.Indefinite_Ordered_Maps is ...@@ -287,6 +289,37 @@ package body Ada.Containers.Indefinite_Ordered_Maps is
Adjust (Container.Tree); Adjust (Container.Tree);
end Adjust; end Adjust;
------------
-- Assign --
------------
procedure Assign (Target : in out Map; Source : Map) is
procedure Insert_Item (Node : Node_Access);
pragma Inline (Insert_Item);
procedure Insert_Items is
new Tree_Operations.Generic_Iteration (Insert_Item);
-----------------
-- Insert_Item --
-----------------
procedure Insert_Item (Node : Node_Access) is
begin
Target.Insert (Key => Node.Key.all, New_Item => Node.Element.all);
end Insert_Item;
-- Start of processing for Assign
begin
if Target'Address = Source'Address then
return;
end if;
Target.Clear;
Insert_Items (Target.Tree);
end Assign;
------------- -------------
-- Ceiling -- -- Ceiling --
------------- -------------
...@@ -340,6 +373,17 @@ package body Ada.Containers.Indefinite_Ordered_Maps is ...@@ -340,6 +373,17 @@ package body Ada.Containers.Indefinite_Ordered_Maps is
return Find (Container, Key) /= No_Element; return Find (Container, Key) /= No_Element;
end Contains; end Contains;
----------
-- Copy --
----------
function Copy (Source : Map) return Map is
begin
return Target : Map do
Target.Assign (Source);
end return;
end Copy;
--------------- ---------------
-- Copy_Node -- -- Copy_Node --
--------------- ---------------
......
...@@ -96,6 +96,10 @@ package Ada.Containers.Indefinite_Ordered_Maps is ...@@ -96,6 +96,10 @@ package Ada.Containers.Indefinite_Ordered_Maps is
Process : not null access procedure (Key : Key_Type; Process : not null access procedure (Key : Key_Type;
Element : in out Element_Type)); Element : in out Element_Type));
procedure Assign (Target : in out Map; Source : Map);
function Copy (Source : Map) return Map;
procedure Move (Target : in out Map; Source : in out Map); procedure Move (Target : in out Map; Source : in out Map);
procedure Insert procedure Insert
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
-- -- -- --
-- B o d y -- -- B o d y --
-- -- -- --
-- Copyright (C) 2004-2010, Free Software Foundation, Inc. -- -- Copyright (C) 2004-2011, Free Software Foundation, Inc. --
-- -- -- --
-- GNAT is free software; you can redistribute it and/or modify it under -- -- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- -- -- terms of the GNU General Public License as published by the Free Soft- --
...@@ -38,6 +38,8 @@ pragma Elaborate_All (Ada.Containers.Red_Black_Trees.Generic_Keys); ...@@ -38,6 +38,8 @@ pragma Elaborate_All (Ada.Containers.Red_Black_Trees.Generic_Keys);
with Ada.Containers.Red_Black_Trees.Generic_Set_Operations; with Ada.Containers.Red_Black_Trees.Generic_Set_Operations;
pragma Elaborate_All (Ada.Containers.Red_Black_Trees.Generic_Set_Operations); pragma Elaborate_All (Ada.Containers.Red_Black_Trees.Generic_Set_Operations);
with System; use type System.Address;
package body Ada.Containers.Indefinite_Ordered_Multisets is package body Ada.Containers.Indefinite_Ordered_Multisets is
----------------------------- -----------------------------
...@@ -298,6 +300,20 @@ package body Ada.Containers.Indefinite_Ordered_Multisets is ...@@ -298,6 +300,20 @@ package body Ada.Containers.Indefinite_Ordered_Multisets is
Adjust (Container.Tree); Adjust (Container.Tree);
end Adjust; end Adjust;
------------
-- Assign --
------------
procedure Assign (Target : in out Set; Source : Set) is
begin
if Target'Address = Source'Address then
return;
end if;
Target.Clear;
Target.Union (Source);
end Assign;
------------- -------------
-- Ceiling -- -- Ceiling --
------------- -------------
...@@ -344,6 +360,17 @@ package body Ada.Containers.Indefinite_Ordered_Multisets is ...@@ -344,6 +360,17 @@ package body Ada.Containers.Indefinite_Ordered_Multisets is
return Find (Container, Item) /= No_Element; return Find (Container, Item) /= No_Element;
end Contains; end Contains;
----------
-- Copy --
----------
function Copy (Source : Set) return Set is
begin
return Target : Set do
Target.Assign (Source);
end return;
end Copy;
--------------- ---------------
-- Copy_Node -- -- Copy_Node --
--------------- ---------------
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
-- -- -- --
-- S p e c -- -- S p e c --
-- -- -- --
-- Copyright (C) 2004-2010, Free Software Foundation, Inc. -- -- Copyright (C) 2004-2011, Free Software Foundation, Inc. --
-- -- -- --
-- GNAT is free software; you can redistribute it and/or modify it under -- -- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- -- -- terms of the GNU General Public License as published by the Free Soft- --
...@@ -118,6 +118,10 @@ package Ada.Containers.Indefinite_Ordered_Multisets is ...@@ -118,6 +118,10 @@ package Ada.Containers.Indefinite_Ordered_Multisets is
-- change the value of the element while Process is executing (to "tamper -- change the value of the element while Process is executing (to "tamper
-- with elements") will raise Program_Error. -- with elements") will raise Program_Error.
procedure Assign (Target : in out Set; Source : Set);
function Copy (Source : Set) return Set;
procedure Move (Target : in out Set; Source : in out Set); procedure Move (Target : in out Set; Source : in out Set);
-- If Target denotes the same object as Source, the operation does -- If Target denotes the same object as Source, the operation does
-- nothing. If either Target or Source is busy (cursor tampering is -- nothing. If either Target or Source is busy (cursor tampering is
......
...@@ -38,6 +38,8 @@ pragma Elaborate_All (Ada.Containers.Red_Black_Trees.Generic_Set_Operations); ...@@ -38,6 +38,8 @@ pragma Elaborate_All (Ada.Containers.Red_Black_Trees.Generic_Set_Operations);
with Ada.Unchecked_Deallocation; with Ada.Unchecked_Deallocation;
with System; use type System.Address;
package body Ada.Containers.Indefinite_Ordered_Sets is package body Ada.Containers.Indefinite_Ordered_Sets is
type Iterator is new type Iterator is new
...@@ -321,6 +323,20 @@ package body Ada.Containers.Indefinite_Ordered_Sets is ...@@ -321,6 +323,20 @@ package body Ada.Containers.Indefinite_Ordered_Sets is
Adjust (Container.Tree); Adjust (Container.Tree);
end Adjust; end Adjust;
------------
-- Assign --
------------
procedure Assign (Target : in out Set; Source : Set) is
begin
if Target'Address = Source'Address then
return;
end if;
Target.Clear;
Target.Union (Source);
end Assign;
------------- -------------
-- Ceiling -- -- Ceiling --
------------- -------------
...@@ -363,6 +379,17 @@ package body Ada.Containers.Indefinite_Ordered_Sets is ...@@ -363,6 +379,17 @@ package body Ada.Containers.Indefinite_Ordered_Sets is
return Find (Container, Item) /= No_Element; return Find (Container, Item) /= No_Element;
end Contains; end Contains;
----------
-- Copy --
----------
function Copy (Source : Set) return Set is
begin
return Target : Set do
Target.Assign (Source);
end return;
end Copy;
--------------- ---------------
-- Copy_Node -- -- Copy_Node --
--------------- ---------------
......
...@@ -111,6 +111,10 @@ package Ada.Containers.Indefinite_Ordered_Sets is ...@@ -111,6 +111,10 @@ package Ada.Containers.Indefinite_Ordered_Sets is
(Position : Cursor; (Position : Cursor;
Process : not null access procedure (Element : Element_Type)); Process : not null access procedure (Element : Element_Type));
procedure Assign (Target : in out Set; Source : Set);
function Copy (Source : Set) return Set;
procedure Move (Target : in out Set; Source : in out Set); procedure Move (Target : in out Set; Source : in out Set);
procedure Insert procedure Insert
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
-- -- -- --
-- B o d y -- -- B o d y --
-- -- -- --
-- Copyright (C) 2004-2010, Free Software Foundation, Inc. -- -- Copyright (C) 2004-2011, Free Software Foundation, Inc. --
-- -- -- --
-- GNAT is free software; you can redistribute it and/or modify it under -- -- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- -- -- terms of the GNU General Public License as published by the Free Soft- --
...@@ -35,6 +35,8 @@ pragma Elaborate_All (Ada.Containers.Hash_Tables.Generic_Operations); ...@@ -35,6 +35,8 @@ pragma Elaborate_All (Ada.Containers.Hash_Tables.Generic_Operations);
with Ada.Containers.Hash_Tables.Generic_Keys; with Ada.Containers.Hash_Tables.Generic_Keys;
pragma Elaborate_All (Ada.Containers.Hash_Tables.Generic_Keys); pragma Elaborate_All (Ada.Containers.Hash_Tables.Generic_Keys);
with System; use type System.Address;
package body Ada.Containers.Hashed_Maps is package body Ada.Containers.Hashed_Maps is
type Iterator is new type Iterator is new
...@@ -131,6 +133,41 @@ package body Ada.Containers.Hashed_Maps is ...@@ -131,6 +133,41 @@ package body Ada.Containers.Hashed_Maps is
HT_Ops.Adjust (Container.HT); HT_Ops.Adjust (Container.HT);
end Adjust; end Adjust;
------------
-- Assign --
------------
procedure Assign (Target : in out Map; Source : Map) is
procedure Insert_Item (Node : Node_Access);
pragma Inline (Insert_Item);
procedure Insert_Items is new HT_Ops.Generic_Iteration (Insert_Item);
-----------------
-- Insert_Item --
-----------------
procedure Insert_Item (Node : Node_Access) is
begin
Target.Insert (Key => Node.Key, New_Item => Node.Element);
end Insert_Item;
-- Start of processing for Assign
begin
if Target'Address = Source'Address then
return;
end if;
Target.Clear;
if Target.Capacity < Source.Length then
Target.Reserve_Capacity (Source.Length);
end if;
Insert_Items (Target.HT);
end Assign;
-------------- --------------
-- Capacity -- -- Capacity --
-------------- --------------
...@@ -158,6 +195,34 @@ package body Ada.Containers.Hashed_Maps is ...@@ -158,6 +195,34 @@ package body Ada.Containers.Hashed_Maps is
return Find (Container, Key) /= No_Element; return Find (Container, Key) /= No_Element;
end Contains; end Contains;
----------
-- Copy --
----------
function Copy
(Source : Map;
Capacity : Count_Type := 0) return Map
is
C : Count_Type;
begin
if Capacity = 0 then
C := Source.Length;
elsif Capacity >= Source.Length then
C := Capacity;
else
raise Capacity_Error
with "Requested capacity is less than Source length";
end if;
return Target : Map do
Target.Reserve_Capacity (C);
Target.Assign (Source);
end return;
end Copy;
--------------- ---------------
-- Copy_Node -- -- Copy_Node --
--------------- ---------------
......
...@@ -148,6 +148,10 @@ package Ada.Containers.Hashed_Maps is ...@@ -148,6 +148,10 @@ package Ada.Containers.Hashed_Maps is
-- Calls Process with the key (with only a constant view) and element (with -- Calls Process with the key (with only a constant view) and element (with
-- a variable view) of the node designed by the cursor. -- a variable view) of the node designed by the cursor.
procedure Assign (Target : in out Map; Source : Map);
function Copy (Source : Map; Capacity : Count_Type := 0) return Map;
procedure Move (Target : in out Map; Source : in out Map); procedure Move (Target : in out Map; Source : in out Map);
-- Clears Target (if it's not empty), and then moves (not copies) the -- Clears Target (if it's not empty), and then moves (not copies) the
-- buckets array and nodes from Source to Target. -- buckets array and nodes from Source to Target.
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
-- -- -- --
-- B o d y -- -- B o d y --
-- -- -- --
-- Copyright (C) 2004-2010, Free Software Foundation, Inc. -- -- Copyright (C) 2004-2011, Free Software Foundation, Inc. --
-- -- -- --
-- GNAT is free software; you can redistribute it and/or modify it under -- -- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- -- -- terms of the GNU General Public License as published by the Free Soft- --
...@@ -159,6 +159,16 @@ package body Ada.Containers.Hashed_Sets is ...@@ -159,6 +159,16 @@ package body Ada.Containers.Hashed_Sets is
Node.Element := Item; Node.Element := Item;
end Assign; end Assign;
procedure Assign (Target : in out Set; Source : Set) is
begin
if Target'Address = Source'Address then
return;
end if;
Target.Clear;
Target.Union (Source);
end Assign;
-------------- --------------
-- Capacity -- -- Capacity --
-------------- --------------
...@@ -186,6 +196,34 @@ package body Ada.Containers.Hashed_Sets is ...@@ -186,6 +196,34 @@ package body Ada.Containers.Hashed_Sets is
return Find (Container, Item) /= No_Element; return Find (Container, Item) /= No_Element;
end Contains; end Contains;
----------
-- Copy --
----------
function Copy
(Source : Set;
Capacity : Count_Type := 0) return Set
is
C : Count_Type;
begin
if Capacity = 0 then
C := Source.Length;
elsif Capacity >= Source.Length then
C := Capacity;
else
raise Capacity_Error
with "Requested capacity is less than Source length";
end if;
return Target : Set do
Target.Reserve_Capacity (C);
Target.Assign (Source);
end return;
end Copy;
--------------- ---------------
-- Copy_Node -- -- Copy_Node --
--------------- ---------------
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
-- -- -- --
-- S p e c -- -- S p e c --
-- -- -- --
-- Copyright (C) 2004-2010, Free Software Foundation, Inc. -- -- Copyright (C) 2004-2011, Free Software Foundation, Inc. --
-- -- -- --
-- This specification is derived from the Ada Reference Manual for use with -- -- This specification is derived from the Ada Reference Manual for use with --
-- GNAT. The copyright notice above, and the license provisions that follow -- -- GNAT. The copyright notice above, and the license provisions that follow --
...@@ -133,6 +133,10 @@ package Ada.Containers.Hashed_Sets is ...@@ -133,6 +133,10 @@ package Ada.Containers.Hashed_Sets is
-- Calls Process with the element (having only a constant view) of the node -- Calls Process with the element (having only a constant view) of the node
-- designed by the cursor. -- designed by the cursor.
procedure Assign (Target : in out Set; Source : Set);
function Copy (Source : Set; Capacity : Count_Type := 0) return Set;
procedure Move (Target : in out Set; Source : in out Set); procedure Move (Target : in out Set; Source : in out Set);
-- Clears Target (if it's not empty), and then moves (not copies) the -- Clears Target (if it's not empty), and then moves (not copies) the
-- buckets array and nodes from Source to Target. -- buckets array and nodes from Source to Target.
......
...@@ -616,6 +616,20 @@ package body Ada.Containers.Indefinite_Vectors is ...@@ -616,6 +616,20 @@ package body Ada.Containers.Indefinite_Vectors is
Count); Count);
end Append; end Append;
------------
-- Assign --
------------
procedure Assign (Target : in out Vector; Source : Vector) is
begin
if Target'Address = Source'Address then
return;
end if;
Target.Clear;
Target.Append (Source);
end Assign;
-------------- --------------
-- Capacity -- -- Capacity --
-------------- --------------
...@@ -698,6 +712,34 @@ package body Ada.Containers.Indefinite_Vectors is ...@@ -698,6 +712,34 @@ package body Ada.Containers.Indefinite_Vectors is
return Find_Index (Container, Item) /= No_Index; return Find_Index (Container, Item) /= No_Index;
end Contains; end Contains;
----------
-- Copy --
----------
function Copy
(Source : Vector;
Capacity : Count_Type := 0) return Vector
is
C : Count_Type;
begin
if Capacity = 0 then
C := Source.Length;
elsif Capacity >= Source.Length then
C := Capacity;
else
raise Capacity_Error
with "Requested capacity is less than Source length";
end if;
return Target : Vector do
Target.Reserve_Capacity (C);
Target.Assign (Source);
end return;
end Copy;
------------ ------------
-- Delete -- -- Delete --
------------ ------------
......
...@@ -204,6 +204,10 @@ package Ada.Containers.Indefinite_Vectors is ...@@ -204,6 +204,10 @@ package Ada.Containers.Indefinite_Vectors is
Position : Cursor; Position : Cursor;
Process : not null access procedure (Element : in out Element_Type)); Process : not null access procedure (Element : in out Element_Type));
procedure Assign (Target : in out Vector; Source : Vector);
function Copy (Source : Vector; Capacity : Count_Type := 0) return Vector;
procedure Move (Target : in out Vector; Source : in out Vector); procedure Move (Target : in out Vector; Source : in out Vector);
procedure Insert procedure Insert
......
...@@ -432,6 +432,20 @@ package body Ada.Containers.Vectors is ...@@ -432,6 +432,20 @@ package body Ada.Containers.Vectors is
Count); Count);
end Append; end Append;
------------
-- Assign --
------------
procedure Assign (Target : in out Vector; Source : Vector) is
begin
if Target'Address = Source'Address then
return;
end if;
Target.Clear;
Target.Append (Source);
end Assign;
-------------- --------------
-- Capacity -- -- Capacity --
-------------- --------------
...@@ -471,6 +485,34 @@ package body Ada.Containers.Vectors is ...@@ -471,6 +485,34 @@ package body Ada.Containers.Vectors is
return Find_Index (Container, Item) /= No_Index; return Find_Index (Container, Item) /= No_Index;
end Contains; end Contains;
----------
-- Copy --
----------
function Copy
(Source : Vector;
Capacity : Count_Type := 0) return Vector
is
C : Count_Type;
begin
if Capacity = 0 then
C := Source.Length;
elsif Capacity >= Source.Length then
C := Capacity;
else
raise Capacity_Error
with "Requested capacity is less than Source length";
end if;
return Target : Vector do
Target.Reserve_Capacity (C);
Target.Assign (Source);
end return;
end Copy;
------------ ------------
-- Delete -- -- Delete --
------------ ------------
......
...@@ -202,7 +202,12 @@ package Ada.Containers.Vectors is ...@@ -202,7 +202,12 @@ package Ada.Containers.Vectors is
function Reference (Container : Vector; Position : Index_Type) function Reference (Container : Vector; Position : Index_Type)
return Reference_Type; return Reference_Type;
procedure Assign (Target : in out Vector; Source : Vector);
function Copy (Source : Vector; Capacity : Count_Type := 0) return Vector;
procedure Move (Target : in out Vector; Source : in out Vector); procedure Move (Target : in out Vector; Source : in out Vector);
procedure Insert procedure Insert
(Container : in out Vector; (Container : in out Vector;
Before : Extended_Index; Before : Extended_Index;
......
...@@ -35,6 +35,8 @@ pragma Elaborate_All (Ada.Containers.Red_Black_Trees.Generic_Operations); ...@@ -35,6 +35,8 @@ pragma Elaborate_All (Ada.Containers.Red_Black_Trees.Generic_Operations);
with Ada.Containers.Red_Black_Trees.Generic_Keys; with Ada.Containers.Red_Black_Trees.Generic_Keys;
pragma Elaborate_All (Ada.Containers.Red_Black_Trees.Generic_Keys); pragma Elaborate_All (Ada.Containers.Red_Black_Trees.Generic_Keys);
with System; use type System.Address;
package body Ada.Containers.Ordered_Maps is package body Ada.Containers.Ordered_Maps is
type Iterator is new type Iterator is new
...@@ -248,6 +250,37 @@ package body Ada.Containers.Ordered_Maps is ...@@ -248,6 +250,37 @@ package body Ada.Containers.Ordered_Maps is
Adjust (Container.Tree); Adjust (Container.Tree);
end Adjust; end Adjust;
------------
-- Assign --
------------
procedure Assign (Target : in out Map; Source : Map) is
procedure Insert_Item (Node : Node_Access);
pragma Inline (Insert_Item);
procedure Insert_Items is
new Tree_Operations.Generic_Iteration (Insert_Item);
-----------------
-- Insert_Item --
-----------------
procedure Insert_Item (Node : Node_Access) is
begin
Target.Insert (Key => Node.Key, New_Item => Node.Element);
end Insert_Item;
-- Start of processing for Assign
begin
if Target'Address = Source'Address then
return;
end if;
Target.Clear;
Insert_Items (Target.Tree);
end Assign;
------------- -------------
-- Ceiling -- -- Ceiling --
------------- -------------
...@@ -304,6 +337,17 @@ package body Ada.Containers.Ordered_Maps is ...@@ -304,6 +337,17 @@ package body Ada.Containers.Ordered_Maps is
return Find (Container, Key) /= No_Element; return Find (Container, Key) /= No_Element;
end Contains; end Contains;
----------
-- Copy --
----------
function Copy (Source : Map) return Map is
begin
return Target : Map do
Target.Assign (Source);
end return;
end Copy;
--------------- ---------------
-- Copy_Node -- -- Copy_Node --
--------------- ---------------
......
...@@ -96,6 +96,10 @@ package Ada.Containers.Ordered_Maps is ...@@ -96,6 +96,10 @@ package Ada.Containers.Ordered_Maps is
Process : not null access Process : not null access
procedure (Key : Key_Type; Element : in out Element_Type)); procedure (Key : Key_Type; Element : in out Element_Type));
procedure Assign (Target : in out Map; Source : Map);
function Copy (Source : Map) return Map;
procedure Move (Target : in out Map; Source : in out Map); procedure Move (Target : in out Map; Source : in out Map);
procedure Insert procedure Insert
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
-- -- -- --
-- B o d y -- -- B o d y --
-- -- -- --
-- Copyright (C) 2004-2010, Free Software Foundation, Inc. -- -- Copyright (C) 2004-2011, Free Software Foundation, Inc. --
-- -- -- --
-- GNAT is free software; you can redistribute it and/or modify it under -- -- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- -- -- terms of the GNU General Public License as published by the Free Soft- --
...@@ -38,6 +38,8 @@ pragma Elaborate_All (Ada.Containers.Red_Black_Trees.Generic_Keys); ...@@ -38,6 +38,8 @@ pragma Elaborate_All (Ada.Containers.Red_Black_Trees.Generic_Keys);
with Ada.Containers.Red_Black_Trees.Generic_Set_Operations; with Ada.Containers.Red_Black_Trees.Generic_Set_Operations;
pragma Elaborate_All (Ada.Containers.Red_Black_Trees.Generic_Set_Operations); pragma Elaborate_All (Ada.Containers.Red_Black_Trees.Generic_Set_Operations);
with System; use type System.Address;
package body Ada.Containers.Ordered_Multisets is package body Ada.Containers.Ordered_Multisets is
----------------------------- -----------------------------
...@@ -266,6 +268,20 @@ package body Ada.Containers.Ordered_Multisets is ...@@ -266,6 +268,20 @@ package body Ada.Containers.Ordered_Multisets is
Adjust (Container.Tree); Adjust (Container.Tree);
end Adjust; end Adjust;
------------
-- Assign --
------------
procedure Assign (Target : in out Set; Source : Set) is
begin
if Target'Address = Source'Address then
return;
end if;
Target.Clear;
Target.Union (Source);
end Assign;
------------- -------------
-- Ceiling -- -- Ceiling --
------------- -------------
...@@ -312,6 +328,17 @@ package body Ada.Containers.Ordered_Multisets is ...@@ -312,6 +328,17 @@ package body Ada.Containers.Ordered_Multisets is
return Find (Container, Item) /= No_Element; return Find (Container, Item) /= No_Element;
end Contains; end Contains;
----------
-- Copy --
----------
function Copy (Source : Set) return Set is
begin
return Target : Set do
Target.Assign (Source);
end return;
end Copy;
--------------- ---------------
-- Copy_Node -- -- Copy_Node --
--------------- ---------------
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
-- -- -- --
-- S p e c -- -- S p e c --
-- -- -- --
-- Copyright (C) 2004-2010, Free Software Foundation, Inc. -- -- Copyright (C) 2004-2011, Free Software Foundation, Inc. --
-- -- -- --
-- GNAT is free software; you can redistribute it and/or modify it under -- -- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- -- -- terms of the GNU General Public License as published by the Free Soft- --
...@@ -117,6 +117,10 @@ package Ada.Containers.Ordered_Multisets is ...@@ -117,6 +117,10 @@ package Ada.Containers.Ordered_Multisets is
-- change the value of the element while Process is executing (to "tamper -- change the value of the element while Process is executing (to "tamper
-- with elements") will raise Program_Error. -- with elements") will raise Program_Error.
procedure Assign (Target : in out Set; Source : Set);
function Copy (Source : Set) return Set;
procedure Move (Target : in out Set; Source : in out Set); procedure Move (Target : in out Set; Source : in out Set);
-- If Target denotes the same object as Source, the operation does -- If Target denotes the same object as Source, the operation does
-- nothing. If either Target or Source is busy (cursor tampering is -- nothing. If either Target or Source is busy (cursor tampering is
......
...@@ -38,6 +38,8 @@ pragma Elaborate_All (Ada.Containers.Red_Black_Trees.Generic_Keys); ...@@ -38,6 +38,8 @@ pragma Elaborate_All (Ada.Containers.Red_Black_Trees.Generic_Keys);
with Ada.Containers.Red_Black_Trees.Generic_Set_Operations; with Ada.Containers.Red_Black_Trees.Generic_Set_Operations;
pragma Elaborate_All (Ada.Containers.Red_Black_Trees.Generic_Set_Operations); pragma Elaborate_All (Ada.Containers.Red_Black_Trees.Generic_Set_Operations);
with System; use type System.Address;
package body Ada.Containers.Ordered_Sets is package body Ada.Containers.Ordered_Sets is
type Iterator is new type Iterator is new
...@@ -281,6 +283,20 @@ package body Ada.Containers.Ordered_Sets is ...@@ -281,6 +283,20 @@ package body Ada.Containers.Ordered_Sets is
Adjust (Container.Tree); Adjust (Container.Tree);
end Adjust; end Adjust;
------------
-- Assign --
------------
procedure Assign (Target : in out Set; Source : Set) is
begin
if Target'Address = Source'Address then
return;
end if;
Target.Clear;
Target.Union (Source);
end Assign;
------------- -------------
-- Ceiling -- -- Ceiling --
------------- -------------
...@@ -325,6 +341,17 @@ package body Ada.Containers.Ordered_Sets is ...@@ -325,6 +341,17 @@ package body Ada.Containers.Ordered_Sets is
return Find (Container, Item) /= No_Element; return Find (Container, Item) /= No_Element;
end Contains; end Contains;
----------
-- Copy --
----------
function Copy (Source : Set) return Set is
begin
return Target : Set do
Target.Assign (Source);
end return;
end Copy;
--------------- ---------------
-- Copy_Node -- -- Copy_Node --
--------------- ---------------
......
...@@ -113,6 +113,10 @@ package Ada.Containers.Ordered_Sets is ...@@ -113,6 +113,10 @@ package Ada.Containers.Ordered_Sets is
(Position : Cursor; (Position : Cursor;
Process : not null access procedure (Element : Element_Type)); Process : not null access procedure (Element : Element_Type));
procedure Assign (Target : in out Set; Source : Set);
function Copy (Source : Set) return Set;
procedure Move (Target : in out Set; Source : in out Set); procedure Move (Target : in out Set; Source : in out Set);
procedure Insert procedure Insert
......
...@@ -1050,9 +1050,8 @@ package body Bindgen is ...@@ -1050,9 +1050,8 @@ package body Bindgen is
or else U.Unit_Kind /= 's') or else U.Unit_Kind /= 's')
then then
-- The only case in which we have to do something is if this -- In the case of a body with a separate spec, where the
-- is a body, with a separate spec, where the separate spec -- separate spec has an elaboration entity defined, this is
-- has an elaboration entity defined. In that case, this is
-- where we increment the elaboration entity. -- where we increment the elaboration entity.
if U.Utype = Is_Body if U.Utype = Is_Body
...@@ -1065,6 +1064,23 @@ package body Bindgen is ...@@ -1065,6 +1064,23 @@ package body Bindgen is
Set_Unit_Number (Unum_Spec); Set_Unit_Number (Unum_Spec);
Set_String (" + 1;"); Set_String (" + 1;");
Write_Statement_Buffer; Write_Statement_Buffer;
-- In the special case where the target is AAMP and the unit is
-- a spec with a body, the elaboration entity is initialized
-- here. This is done because it's the only way to accomplish
-- initialization of such entities, because there's not any
-- mechanism provided to initialize global variables at load
-- time on AAMP. (Also note that there is no notion of shared
-- libraries for AAMP, so no possibility of reelaboration.)
elsif AAMP_On_Target
and then U.Utype = Is_Spec
and then Units.Table (Unum_Spec).Set_Elab_Entity
then
Set_String (" E");
Set_Unit_Number (Unum_Spec);
Set_String (" := 0;");
Write_Statement_Buffer;
end if; end if;
-- Here if elaboration code is present. If binding a library -- Here if elaboration code is present. If binding a library
...@@ -1087,6 +1103,24 @@ package body Bindgen is ...@@ -1087,6 +1103,24 @@ package body Bindgen is
-- variables, only calls to 'Elab* subprograms. -- variables, only calls to 'Elab* subprograms.
else else
-- In the special case where the target is AAMP and the unit is
-- a spec with a body, the elaboration entity is initialized
-- here. This is done because it's the only way to accomplish
-- initialization of such entities, because there's not any
-- mechanism provided to initialize global variables at load
-- time on AAMP. (Also note that there is no notion of shared
-- libraries for AAMP, so no possibility of reelaboration.)
if AAMP_On_Target
and then U.Utype = Is_Spec
and then Units.Table (Unum_Spec).Set_Elab_Entity
then
Set_String (" E");
Set_Unit_Number (Unum_Spec);
Set_String (" := 0;");
Write_Statement_Buffer;
end if;
Check_Elab_Flag := Check_Elab_Flag :=
not CodePeer_Mode not CodePeer_Mode
and then (Force_Checking_Of_Elaboration_Flags and then (Force_Checking_Of_Elaboration_Flags
......
...@@ -7549,16 +7549,14 @@ package body Sem_Ch12 is ...@@ -7549,16 +7549,14 @@ package body Sem_Ch12 is
Scop := Scope (Scop); Scop := Scope (Scop);
end loop; end loop;
if Scop = Par_I then
-- Previous instance encloses current instance -- Previous instance encloses current instance
if Scop = Par_I then
null; null;
elsif Is_Generic_Instance (Scop) then
-- Current instance is within an unrelated instance -- Current instance is within an unrelated instance
elsif Is_Generic_Instance (Scop) then
null; null;
else else
......
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