diff options
author | Tristan Gingold <tgingold@free.fr> | 2022-07-21 21:33:57 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2022-07-21 21:34:44 +0200 |
commit | 162561a5659c6276368fde2fd5eaebd8400c0e57 (patch) | |
tree | 038807d726395a01a6bd7f17bbaf795be3f66c0c /src/synth | |
parent | 341a8698ccb6b795d46b9570bac06e240c7664de (diff) | |
download | ghdl-162561a5659c6276368fde2fd5eaebd8400c0e57.tar.gz ghdl-162561a5659c6276368fde2fd5eaebd8400c0e57.tar.bz2 ghdl-162561a5659c6276368fde2fd5eaebd8400c0e57.zip |
elab-vhdl_decls: elaborate dot attribute
Diffstat (limited to 'src/synth')
-rw-r--r-- | src/synth/elab-vhdl_decls.adb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/synth/elab-vhdl_decls.adb b/src/synth/elab-vhdl_decls.adb index ffa0ee0a7..afeb344aa 100644 --- a/src/synth/elab-vhdl_decls.adb +++ b/src/synth/elab-vhdl_decls.adb @@ -180,6 +180,17 @@ package body Elab.Vhdl_Decls is Create_Signal (Syn_Inst, Decl, Obj_Typ, null); end Elab_Implicit_Signal_Declaration; + procedure Elab_Implicit_Quantity_Declaration (Syn_Inst : Synth_Instance_Acc; + Decl : Node) + is + Obj_Typ : Type_Acc; + Res : Valtyp; + begin + Obj_Typ := Get_Subtype_Object (Syn_Inst, Get_Type (Decl)); + Res := Create_Value_Quantity (Obj_Typ, No_Quantity_Index); + Create_Object (Syn_Inst, Decl, Res); + end Elab_Implicit_Quantity_Declaration; + procedure Elab_Attribute_Specification (Syn_Inst : Synth_Instance_Acc; Spec : Node) is @@ -316,6 +327,8 @@ package body Elab.Vhdl_Decls is Elab_Free_Quantity_Declaration (Syn_Inst, Decl); when Iir_Kind_Above_Attribute => Elab_Implicit_Signal_Declaration (Syn_Inst, Decl); + when Iir_Kind_Dot_Attribute => + Elab_Implicit_Quantity_Declaration (Syn_Inst, Decl); when Iir_Kinds_Signal_Attribute => -- Not supported by synthesis. null; |