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 / exp_ch4.ads < prev    next >
Text File  |  1996-09-28  |  5KB  |  91 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT COMPILER COMPONENTS                         --
  4. --                                                                          --
  5. --                              E X P _ C H 4                               --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.27 $                             --
  10. --                                                                          --
  11. --        Copyright (c) 1992,1993,1994,1995 NYU, All Rights Reserved        --
  12. --                                                                          --
  13. -- GNAT is free software;  you can  redistribute it  and/or modify it under --
  14. -- terms of the  GNU General Public License as published  by the Free Soft- --
  15. -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
  16. -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
  17. -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
  18. -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
  19. -- for  more details.  You should have  received  a copy of the GNU General --
  20. -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
  21. -- to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. --
  22. --                                                                          --
  23. ------------------------------------------------------------------------------
  24.  
  25. --  Expand routines for chapter 4 constructs
  26.  
  27. with Types; use Types;
  28.  
  29. package Exp_Ch4 is
  30.  
  31.    procedure Expand_N_Allocator                   (N : Node_Id);
  32.    procedure Expand_N_And_Then                    (N : Node_Id);
  33.    procedure Expand_N_Concat_Multiple             (N : Node_Id);
  34.    procedure Expand_N_Conditional_Expression      (N : Node_Id);
  35.    procedure Expand_N_In                          (N : Node_Id);
  36.    procedure Expand_N_Indexed_Component           (N : Node_Id);
  37.    procedure Expand_N_Not_In                      (N : Node_Id);
  38.    procedure Expand_N_Op_Abs                      (N : Node_Id);
  39.    procedure Expand_N_Op_Add                      (N : Node_Id);
  40.    procedure Expand_N_Op_And                      (N : Node_Id);
  41.    procedure Expand_N_Op_Concat                   (N : Node_Id);
  42.    procedure Expand_N_Op_Divide                   (N : Node_Id);
  43.    procedure Expand_N_Op_Expon                    (N : Node_Id);
  44.    procedure Expand_N_Op_Eq                       (N : Node_Id);
  45.    procedure Expand_N_Op_Ge                       (N : Node_Id);
  46.    procedure Expand_N_Op_Gt                       (N : Node_Id);
  47.    procedure Expand_N_Op_Le                       (N : Node_Id);
  48.    procedure Expand_N_Op_Lt                       (N : Node_Id);
  49.    procedure Expand_N_Op_Minus                    (N : Node_Id);
  50.    procedure Expand_N_Op_Mod                      (N : Node_Id);
  51.    procedure Expand_N_Op_Multiply                 (N : Node_Id);
  52.    procedure Expand_N_Op_Ne                       (N : Node_Id);
  53.    procedure Expand_N_Op_Not                      (N : Node_Id);
  54.    procedure Expand_N_Op_Or                       (N : Node_Id);
  55.    procedure Expand_N_Op_Rem                      (N : Node_Id);
  56.    procedure Expand_N_Op_Subtract                 (N : Node_Id);
  57.    procedure Expand_N_Op_Xor                      (N : Node_Id);
  58.    procedure Expand_N_Or_Else                     (N : Node_Id);
  59.    procedure Expand_N_Slice                       (N : Node_Id);
  60.    procedure Expand_N_Selected_Component          (N : Node_Id);
  61.    procedure Expand_N_Type_Conversion             (N : Node_Id);
  62.  
  63.    function Make_Boolean_Array_Op
  64.      (Typ  : Entity_Id;
  65.       N    : Node_Id)
  66.       return Node_Id;
  67.    --  Boolean operations on boolean arrays are expanded in line. This
  68.    --  function produce the body for the node N, which is (a and b),
  69.    --  (a or b), or (a xor b). It is used for both the normal case and
  70.    --  the packed case. In the normal case, the type involved, Typ, is the
  71.    --  normal Boolean array type, and the logical operations in the body
  72.    --  are simple boolean operations. In the packed case, the type, Typ,
  73.    --  is the Packed_Array_Type, and the operations in the body are
  74.    --  operations on the modular components of this array. Note that Typ
  75.    --  is always a constrained type (the caller has ensured this by using
  76.    --  Convert_To_Actual_Subtype if necessary).
  77.  
  78.    function Expand_Record_Equality
  79.      (Loc  : Source_Ptr;
  80.       Typ  : Entity_Id;
  81.       Lhs  : Node_Id;
  82.       Rhs  : Node_Id)
  83.       return Node_Id;
  84.    --  Expand a record equality into an expression that compares the fields
  85.    --  individually to yield the required Boolean result. Loc is the location
  86.    --  for the generated nodes. Typ is the type of the record, and Lhs, Rhs
  87.    --  are the record expressions to be compared. Note that the case of
  88.    --  variant records is not implemented yet ???.
  89.  
  90. end Exp_Ch4;
  91.