OSDN Git Service

* 41intnam.ads, 42intnam.ads, 4aintnam.ads, 4cintnam.ads,
[pf3gnuchains/gcc-fork.git] / gcc / ada / sinfo-cn.ads
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                             S I N F O . C N                              --
6 --                                                                          --
7 --                                 S p e c                                  --
8 --                                                                          --
9 --                            $Revision: 1.9 $
10 --                                                                          --
11 --          Copyright (C) 1992-2001, Free Software Foundation, Inc.         --
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,  59 Temple Place - Suite 330,  Boston, --
22 -- MA 02111-1307, USA.                                                      --
23 --                                                                          --
24 -- GNAT was originally developed  by the GNAT team at  New York University. --
25 -- It is now maintained by Ada Core Technologies Inc (http://www.gnat.com). --
26 --                                                                          --
27 ------------------------------------------------------------------------------
28
29 --  This child package of Sinfo contains some routines that permit in place
30 --  alteration of existing tree nodes by changing the value in the Nkind
31 --  field. Since Nkind functions logically in a manner similar to a variant
32 --  record discriminant part, such alterations cannot be permitted in a
33 --  general manner, but in some specific cases, the fields of related nodes
34 --  have been deliberately laid out in a manner that permits such alteration.
35
36 package Sinfo.CN is
37
38    procedure Change_Identifier_To_Defining_Identifier (N : in out Node_Id);
39    --  N must refer to a node of type N_Identifier. This node is modified to
40    --  be of type N_Defining_Identifier. The scanner always returns identifiers
41    --  as N_Identifier. The parser then uses this routine to change the node
42    --  to be a defining identifier where the context demands it. This routine
43    --  also allocates the necessary extension node. Note that this procedure
44    --  may (but is not required to) change the Id of the node in question.
45
46    procedure Change_Character_Literal_To_Defining_Character_Literal
47      (N : in out Node_Id);
48    --  Similar processing for a character literal
49
50    procedure Change_Operator_Symbol_To_Defining_Operator_Symbol
51      (N : in out Node_Id);
52    --  Similar processing for an operator symbol
53
54    procedure Change_Conversion_To_Unchecked (N : Node_Id);
55    --  Change checked conversion node to unchecked conversion node, clearing
56    --  irrelevant check flags (other fields in the two nodes are identical)
57
58    procedure Change_Operator_Symbol_To_String_Literal (N : Node_Id);
59    --  The scanner returns any string that looks like an operator symbol as
60    --  a N_Operator_Symbol node. The parser then uses this procedure to change
61    --  the node to a normal N_String_Literal node if the context is not one
62    --  in which an operator symbol is required. There are some cases where the
63    --  parser cannot tell, in which case this transformation happens later on.
64
65    procedure Change_Selected_Component_To_Expanded_Name (N : Node_Id);
66    --  The parser always generates Selected_Component nodes. The semantics
67    --  modifies these to Expanded_Name nodes where appropriate. Note that
68    --  on return the Chars field is set to a copy of the contents of the
69    --  Chars field of the Selector_Name field.
70
71 end Sinfo.CN;