home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gnat-2.06-src.tgz / tar.out / fsf / gnat / ada / s-secsta.ads < prev    next >
Text File  |  1996-09-28  |  4KB  |  90 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT COMPILER COMPONENTS                         --
  4. --                                                                          --
  5. --               S Y S T E M . S E C O N D A R Y _ S T A C K                --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.13 $                             --
  10. --                                                                          --
  11. --         Copyright (c) 1992,1993,1994,1995 NYU, All Rights Reserved       --
  12. --                                                                          --
  13. -- The GNAT library is free software; you can redistribute it and/or modify --
  14. -- it under terms of the GNU Library General Public License as published by --
  15. -- the Free Software  Foundation; either version 2, or (at your option) any --
  16. -- later version.  The GNAT library is distributed in the hope that it will --
  17. -- be useful, but WITHOUT ANY WARRANTY;  without even  the implied warranty --
  18. -- of MERCHANTABILITY  or  FITNESS FOR  A PARTICULAR PURPOSE.  See the  GNU --
  19. -- Library  General  Public  License for  more  details.  You  should  have --
  20. -- received  a copy of the GNU  Library  General Public License  along with --
  21. -- the GNAT library;  see the file  COPYING.LIB.  If not, write to the Free --
  22. -- Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.        --
  23. --                                                                          --
  24. ------------------------------------------------------------------------------
  25.  
  26. with System.Storage_Elements;
  27. with System.Storage_Pools;
  28.  
  29. package System.Secondary_Stack is
  30.  
  31.    use System.Storage_Elements;
  32.    use System.Storage_Pools;
  33.  
  34.    type Secondary_Stack_Pool is new Root_Storage_Pool with null record;
  35.  
  36.    function  Storage_Size (Pool : Secondary_Stack_Pool) return Storage_Count;
  37.  
  38.    procedure Allocate
  39.      (Pool         : in out Secondary_Stack_Pool;
  40.       Address      :    out System.Address;
  41.       Storage_Size : in     Storage_Count;
  42.       Alignment    : in     Storage_Count);
  43.  
  44.    procedure Deallocate
  45.      (Pool         : in out Secondary_Stack_Pool;
  46.       Address      : in     System.Address;
  47.       Storage_Size : in     Storage_Count;
  48.       Alignment    : in     Storage_Count);
  49.  
  50.    type Mark_Id is private;
  51.    --  Type used to mark the stack.
  52.  
  53.    procedure SS_Init (Stk : out Address; Size : Natural);
  54.    --  Initialize the secondary stack with a main stack of the given Size.
  55.    --  All further allocations which do not overflow the main stack will not
  56.    --  generate dynamic (de)allocation calls. If the main Stack overflows
  57.    --  a new chuck of at least the same size will be allocated and linked
  58.    --  to the previous chunk.
  59.    --
  60.    --  Note: the reason that Stk is passed is that SS_Init is called before
  61.    --  the proper interface is established to obtain the address of the
  62.    --  stack using System.Task_Specific_Data.Get_Sec_Stack_Addr.
  63.  
  64.    procedure SS_Free (Stk : Address);
  65.    --  Release the memory allocated for the Secondary Stack. That is to say,
  66.    --  all the allocated chuncks.
  67.  
  68.    function SS_Mark return Mark_Id;
  69.    --  Return the Mark corresponding to the current state of the stack
  70.  
  71.    procedure SS_Release (M : Mark_Id);
  72.    --  Restore the state of the stack corresponding to the mark M. If an
  73.    --  additional chunk have been allocated, it will never be freed during a
  74.  
  75.    generic
  76.       with procedure Put_Line (S : String);
  77.    procedure SS_Info;
  78.    --  Debugging procedure used to print out secondary Stack allocation
  79.    --  information. This procedure is generic in order to avoid a direct
  80.    --  dependance on a particular IO package.
  81.  
  82.    SS_Pool : Secondary_Stack_Pool;
  83.    --  the pool for the secondary stack
  84.  
  85. private
  86.  
  87.    type Mark_Id is new Integer;
  88.  
  89. end System.Secondary_Stack;
  90.