aboutsummaryrefslogtreecommitdiffstats
path: root/parse.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2014-10-14 06:19:33 +0200
committerTristan Gingold <tgingold@free.fr>2014-10-14 06:19:33 +0200
commit0e199cbea1070c016d29348cd659b9e6ca688afb (patch)
tree169e2c21b5e84998f03c2de76feed3e61cea503c /parse.adb
parent68d26922e31aad3cb34dd3b7689bcec75ad70fcb (diff)
downloadghdl-0e199cbea1070c016d29348cd659b9e6ca688afb.tar.gz
ghdl-0e199cbea1070c016d29348cd659b9e6ca688afb.tar.bz2
ghdl-0e199cbea1070c016d29348cd659b9e6ca688afb.zip
Initial support for package header and package instantiation.
Diffstat (limited to 'parse.adb')
-rw-r--r--parse.adb34
1 files changed, 15 insertions, 19 deletions
diff --git a/parse.adb b/parse.adb
index e4bf3460e..130b179a9 100644
--- a/parse.adb
+++ b/parse.adb
@@ -933,43 +933,43 @@ package body Parse is
-- precond : '('
-- postcond: next token
--
- -- [ §4.3.2.1 ]
+ -- [ LRM93 4.3.2.1 ]
-- interface_list ::= interface_element { ; interface_element }
--
- -- [ §4.3.2.1 ]
+ -- [ LRM93 4.3.2.1 ]
-- interface_element ::= interface_declaration
--
- -- [ §4.3.2 ]
+ -- [ LRM93 4.3.2 ]
-- interface_declaration ::= interface_constant_declaration
-- | interface_signal_declaration
-- | interface_variable_declaration
-- | interface_file_declaration
--
--
- -- [ §3.2.2 ]
+ -- [ LRM93 3.2.2 ]
-- identifier_list ::= identifier { , identifier }
--
- -- [ §4.3.2 ]
+ -- [ LRM93 4.3.2 ]
-- interface_constant_declaration ::=
-- [ CONSTANT ] identifier_list : [ IN ] subtype_indication
-- [ := STATIC_expression ]
--
- -- [ §4.3.2 ]
+ -- [ LRM93 4.3.2 ]
-- interface_file_declaration ::= FILE identifier_list : subtype_indication
--
- -- [ §4.3.2 ]
+ -- [ LRM93 4.3.2 ]
-- interface_signal_declaration ::=
-- [ SIGNAL ] identifier_list : [ mode ] subtype_indication [ BUS ]
-- [ := STATIC_expression ]
--
- -- [ §4.3.2 ]
+ -- [ LRM93 4.3.2 ]
-- interface_variable_declaration ::=
-- [ VARIABLE ] identifier_list : [ mode ] subtype_indication
-- [ := STATIC_expression ]
--
-- The default kind of interface declaration is DEFAULT.
function Parse_Interface_Chain (Default: Iir_Kind; Parent : Iir)
- return Iir
+ return Iir
is
Res, Last : Iir;
First, Prev_First : Iir;
@@ -1210,12 +1210,10 @@ package body Parse is
Res: Iir;
El : Iir;
begin
- -- tok_port must have been scaned.
- if Current_Token /= Tok_Port then
- raise Program_Error;
- end if;
-
+ -- Skip 'port'
+ pragma Assert (Current_Token = Tok_Port);
Scan;
+
Res := Parse_Interface_Chain
(Iir_Kind_Signal_Interface_Declaration, Parent);
@@ -1244,12 +1242,10 @@ package body Parse is
is
Res: Iir;
begin
- -- tok_port must have been scaned.
- if Current_Token /= Tok_Generic then
- raise Program_Error;
- end if;
-
+ -- Skip 'generic'
+ pragma Assert (Current_Token = Tok_Generic);
Scan;
+
Res := Parse_Interface_Chain
(Iir_Kind_Constant_Interface_Declaration, Parent);
Set_Generic_Chain (Parent, Res);