aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2017-10-24 19:17:27 +0200
committerTristan Gingold <tgingold@free.fr>2017-10-24 19:17:27 +0200
commit0aba06b92bf72e6870ee690a26eca485c2e74714 (patch)
tree0d297c05692ed72118945197124208aa2ec397ad /src/vhdl
parent1fbf1e9fc8455d8c675cc80818d1a2cdeaccdcb8 (diff)
downloadghdl-0aba06b92bf72e6870ee690a26eca485c2e74714.tar.gz
ghdl-0aba06b92bf72e6870ee690a26eca485c2e74714.tar.bz2
ghdl-0aba06b92bf72e6870ee690a26eca485c2e74714.zip
sem_specs: use architecture body for entity_aspect_entity when loaded.
Diffstat (limited to 'src/vhdl')
-rw-r--r--src/vhdl/iirs.ads6
-rw-r--r--src/vhdl/sem_specs.adb8
2 files changed, 11 insertions, 3 deletions
diff --git a/src/vhdl/iirs.ads b/src/vhdl/iirs.ads
index 52f8b94e2..3ea46ebc0 100644
--- a/src/vhdl/iirs.ads
+++ b/src/vhdl/iirs.ads
@@ -568,8 +568,10 @@ package Iirs is
--
-- Get/Set_Entity_Name (Field2)
--
- -- parse: a simple name.
- -- sem: an architecture declaration or NULL_IIR.
+ -- A simple name for the architecture. The named entity can be:
+ -- * Null_Iir if the architecture is not known.
+ -- * a design unit if the architecture is known but not loaded.
+ -- * an architecture body if the architecture is loaded.
-- Get/Set_Architecture (Field3)
-- Iir_Kind_Entity_Aspect_Open (Short)
diff --git a/src/vhdl/sem_specs.adb b/src/vhdl/sem_specs.adb
index cb7f945f1..8d0eb03a8 100644
--- a/src/vhdl/sem_specs.adb
+++ b/src/vhdl/sem_specs.adb
@@ -1056,6 +1056,7 @@ package body Sem_Specs is
Arch_Name : Iir;
Arch_Unit : Iir;
begin
+ -- The entity.
Entity_Name := Sem_Denoting_Name (Get_Entity_Name (Aspect));
Set_Entity_Name (Aspect, Entity_Name);
Entity := Get_Named_Entity (Entity_Name);
@@ -1073,8 +1074,13 @@ package body Sem_Specs is
if Arch_Name /= Null_Iir then
Arch_Unit := Libraries.Find_Secondary_Unit
(Get_Design_Unit (Entity), Get_Identifier (Arch_Name));
- Set_Named_Entity (Arch_Name, Arch_Unit);
if Arch_Unit /= Null_Iir then
+ -- The architecture is known.
+ if Get_Date_State (Arch_Unit) >= Date_Parse then
+ -- And loaded!
+ Arch_Unit := Get_Library_Unit (Arch_Unit);
+ end if;
+ Set_Named_Entity (Arch_Name, Arch_Unit);
Xref_Ref (Arch_Name, Arch_Unit);
end if;