aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/vhdl-sem_types.ads
blob: 33648b870cd113f5004f05ba11fb33c4593bc261 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
--  Semantic analysis.
--  Copyright (C) 2002, 2003, 2004, 2005 Tristan Gingold
--
--  GHDL is free software; you can redistribute it and/or modify it under
--  the terms of the GNU General Public License as published by the Free
--  Software Foundation; either version 2, or (at your option) any later
--  version.
--
--  GHDL is distributed in the hope that it will be useful, but WITHOUT ANY
--  WARRANTY; without even the implied warranty of MERCHANTABILITY or
--  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
--  for more details.
--
--  You should have received a copy of the GNU General Public License
--  along with GHDL; see the file COPYING.  If not, write to the Free
--  Software Foundation, 59 Temple Place - Suite 330, Boston, MA
--  02111-1307, USA.
with Iirs; use Iirs;

package Vhdl.Sem_Types is
   --  Analyze of types (LRM93 3 / LRM08 5)

   --  Analyze subtype indication DEF.
   --  If INCOMPLETE is TRUE, then DEF may designate an incomplete type
   --  definition.  Return either a name (denoting a type), an anonymous
   --  subtype definition or a name whose type is an error node.
   function Sem_Subtype_Indication (Def: Iir; Incomplete : Boolean := False)
     return Iir;

   procedure Sem_Protected_Type_Body (Bod : Iir);

   function Sem_Type_Definition (Def: Iir; Decl: Iir) return Iir;

   --  If A_RANGE is a range (range expression or range attribute), convert it
   --  to a subtype definition.  Otherwise return A_RANGE.
   --  The result is a subtype indication: either a type name or a subtype
   --  definition.
   function Range_To_Subtype_Indication (A_Range: Iir) return Iir;

   --  ATYPE is used to declare a signal.
   --  Set (recursively) the Has_Signal_Flag on ATYPE and all types used by
   --   ATYPE (basetype, elements...)
   --  If ATYPE can have signal (eg: access or file type), then this procedure
   --   returns silently.
   procedure Set_Type_Has_Signal (Atype : Iir);

   --  Return TRUE iff FUNC is a resolution function.
   --  If ATYPE is not NULL_IIR, type must match.
   function Is_A_Resolution_Function (Func: Iir; Atype: Iir) return Boolean;

   --  Return a subtype definition copy of DEF.
   --  This is used when an alias of DEF is required (eg: subtype a is b).
   function Copy_Subtype_Indication (Def : Iir) return Iir;

   --  Return a copy of the resolution_indication in SUBDEF, or null_iir if
   --  none.
   function Copy_Resolution_Indication (Subdef : Iir) return Iir;

   --  Adjust the constraint state CONSTRAINT given new element EL_TYPE.
   --  Initially CONSTRAINT must be Fully_Constrained and COMPOSITE_FOUND
   --  must be false.
   procedure Update_Record_Constraint (Constraint : in out Iir_Constraint;
                                       Composite_Found : in out Boolean;
                                       El_Type : Iir);

   --  Although a nature is not a type, it is patterned like a type.
   function Sem_Subnature_Indication (Def: Iir) return Iir;
end Vhdl.Sem_Types;