blob: 03b3c364fd80e497185769017fe36c9295cadafa (
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
|
-- Nodes recognizer for ieee.math_real.
-- Copyright (C) 2019 Tristan Gingold
--
-- This program 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 of the License, or
-- (at your option) any later version.
--
-- This program 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 this program. If not, see <gnu.org/licenses>.
with Types; use Types;
with Std_Names; use Std_Names;
package body Vhdl.Std_Env is
procedure Extract_Declarations (Pkg : Iir_Package_Declaration)
is
Decl : Iir;
Predef : Iir_Predefined_Functions;
Inter : Iir;
begin
Std_Env_Pkg := Pkg;
Decl := Get_Declaration_Chain (Pkg);
while Decl /= Null_Iir loop
pragma Assert (Get_Kind (Decl) in Iir_Kinds_Subprogram_Declaration);
Inter := Get_Interface_Declaration_Chain (Decl);
case Get_Identifier (Decl) is
when Name_Stop =>
if Inter = Null_Iir then
Predef := Iir_Predefined_Std_Env_Stop;
else
Predef := Iir_Predefined_Std_Env_Stop_Status;
pragma Assert (Get_Chain (Inter) = Null_Iir);
end if;
when Name_Finish =>
if Inter = Null_Iir then
Predef := Iir_Predefined_Std_Env_Finish;
else
Predef := Iir_Predefined_Std_Env_Finish_Status;
pragma Assert (Get_Chain (Inter) = Null_Iir);
end if;
when Name_Resolution_Limit =>
pragma Assert (Inter = Null_Iir);
Predef := Iir_Predefined_Std_Env_Resolution_Limit;
when others =>
raise Internal_Error;
end case;
Set_Implicit_Definition (Decl, Predef);
Decl := Get_Chain (Decl);
end loop;
end Extract_Declarations;
end Vhdl.Std_Env;
|