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 / sinfo-cn.adb < prev    next >
Text File  |  1996-09-28  |  5KB  |  111 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT COMPILER COMPONENTS                         --
  4. --                                                                          --
  5. --                             S I N F O . C N                              --
  6. --                                                                          --
  7. --                                 B o d y                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.5 $                              --
  10. --                                                                          --
  11. --           Copyright (c) 1992,1993,1994 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. --  This child package of Sinfo contains some routines that permit in place
  26. --  alteration of existing tree nodes by changing the value in the Nkind
  27. --  field. Since Nkind functions logically in a manner similart to a variant
  28. --  record discriminant part, such alterations cannot be permitted in a
  29. --  general manner, but in some specific cases, the fields of related nodes
  30. --  have been deliberately layed out in a manner that permits such alteration.
  31. --  that determin
  32.  
  33. with Atree; use Atree;
  34.  
  35. package body Sinfo.CN is
  36.  
  37.    use Atree.Unchecked_Access;
  38.    --  This package is one of the few packages which is allowed to make direct
  39.    --  references to tree nodes (since it is in the business of providing a
  40.    --  higher level of tree access which other clients are expected to use and
  41.    --  which implements checks).
  42.  
  43.    ----------------------------------------------
  44.    -- Change_Identifier_To_Defining_Identifier --
  45.    ----------------------------------------------
  46.  
  47.    procedure Change_Identifier_To_Defining_Identifier (N : in out Node_Id) is
  48.    begin
  49.       Set_Nkind (N, N_Defining_Identifier);
  50.       N := Extend_Node (N);
  51.    end Change_Identifier_To_Defining_Identifier;
  52.  
  53.    ------------------------------------------------------------
  54.    -- Change_Character_Literal_To_Defining_Character_Literal --
  55.    ------------------------------------------------------------
  56.  
  57.    procedure Change_Character_Literal_To_Defining_Character_Literal
  58.      (N : in out Node_Id)
  59.    is
  60.    begin
  61.       Set_Nkind (N, N_Defining_Character_Literal);
  62.       N := Extend_Node (N);
  63.    end Change_Character_Literal_To_Defining_Character_Literal;
  64.  
  65.    ------------------------------------
  66.    -- Change_Conversion_To_Unchecked --
  67.    ------------------------------------
  68.  
  69.    procedure Change_Conversion_To_Unchecked (N : Node_Id) is
  70.    begin
  71.       Set_Do_Overflow_Check (N, False);
  72.       Set_Do_Tag_Check (N, False);
  73.       Set_Do_Length_Check (N, False);
  74.       Set_Nkind (N, N_Unchecked_Type_Conversion);
  75.    end Change_Conversion_To_Unchecked;
  76.  
  77.    --------------------------------------------------------
  78.    -- Change_Operator_Symbol_To_Defining_Operator_Symbol --
  79.    --------------------------------------------------------
  80.  
  81.    procedure Change_Operator_Symbol_To_Defining_Operator_Symbol
  82.      (N : in out Node_Id)
  83.    is
  84.    begin
  85.       Set_Nkind (N, N_Defining_Operator_Symbol);
  86.       Set_Node2 (N, Empty); -- Clear unused Str2 field
  87.       N := Extend_Node (N);
  88.    end Change_Operator_Symbol_To_Defining_Operator_Symbol;
  89.  
  90.    ----------------------------------------------
  91.    -- Change_Operator_Symbol_To_String_Literal --
  92.    ----------------------------------------------
  93.  
  94.    procedure Change_Operator_Symbol_To_String_Literal (N : Node_Id) is
  95.    begin
  96.       Set_Nkind (N, N_String_Literal);
  97.       Set_Node1 (N, Empty); -- clear Name1 field
  98.    end Change_Operator_Symbol_To_String_Literal;
  99.  
  100.    ------------------------------------------------
  101.    -- Change_Selected_Component_To_Expanded_Name --
  102.    ------------------------------------------------
  103.  
  104.    procedure Change_Selected_Component_To_Expanded_Name (N : Node_Id) is
  105.    begin
  106.       Set_Nkind (N, N_Expanded_Name);
  107.       Set_Chars (N, Chars (Selector_Name (N)));
  108.    end Change_Selected_Component_To_Expanded_Name;
  109.  
  110. end Sinfo.CN;
  111.