-- Create declarations for synthesis. -- Copyright (C) 2017 Tristan Gingold -- -- This file is part of GHDL. -- -- 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 . with Vhdl.Errors; use Vhdl.Errors; with Vhdl.Utils; use Vhdl.Utils; with Elab.Vhdl_Objtypes; use Elab.Vhdl_Objtypes; with Elab.Vhdl_Values; use Elab.Vhdl_Values; with Elab.Vhdl_Types; use Elab.Vhdl_Types; with Elab.Vhdl_Files; with Elab.Vhdl_Errors; use Elab.Vhdl_Errors; with Elab.Vhdl_Expr; use Elab.Vhdl_Expr; with Elab.Vhdl_Insts; package body Elab.Vhdl_Decls is procedure Elab_Subprogram_Declaration (Syn_Inst : Synth_Instance_Acc; Subprg : Node) is Inter : Node; Typ : Type_Acc; begin if Is_Second_Subprogram_Specification (Subprg) then -- Already handled. return; end if; Inter := Get_Interface_Declaration_Chain (Subprg); while Inter /= Null_Node loop Typ := Elab_Declaration_Type (Syn_Inst, Inter); Inter := Get_Chain (Inter); end loop; pragma Unreferenced (Typ); end Elab_Subprogram_Declaration; procedure Elab_Constant_Declaration (Syn_Inst : Synth_Instance_Acc; Decl : Node; Last_Type : in out Node) is Deferred_Decl : constant Node := Get_Deferred_Declaration (Decl); First_Decl : Node; Decl_Type : Node; Val : Valtyp; Obj_Type : Type_Acc; begin Obj_Type := Elab_Declaration_Type (Syn_Inst, Decl); if Deferred_Decl = Null_Node or else Get_Deferred_Declaration_Flag (Decl) then -- Create the object (except for full declaration of a -- deferred constant). Create_Object (Syn_Inst, Decl, No_Valtyp); end if; -- Initialize the value (except for a deferred declaration). if Get_Deferred_Declaration_Flag (Decl) then return; end if; if Deferred_Decl = Null_Node then -- A normal constant declaration First_Decl := Decl; else -- The full declaration of a deferred constant. First_Decl := Deferred_Decl; end if; pragma Assert (First_Decl /= Null_Node); -- Use the type of the declaration. The type of the constant may -- be derived from the value. -- FIXME: what about multiple declarations ? Decl_Type := Get_Subtype_Indication (Decl); if Decl_Type = Null_Node then Decl_Type := Last_Type; else if Get_Kind (Decl_Type) in Iir_Kinds_Denoting_Name then -- Type mark. Decl_Type := Get_Type (Get_Named_Entity (Decl_Type)); end if; Last_Type := Decl_Type; end if; Val := Exec_Expression_With_Type (Syn_Inst, Get_Default_Value (Decl), Obj_Type); if Val = No_Valtyp then Set_Error (Syn_Inst); return; end if; Val := Exec_Subtype_Conversion (Val, Obj_Type, True, Decl); Create_Object_Force (Syn_Inst, First_Decl, Val); end Elab_Constant_Declaration; procedure Elab_Signal_Declaration (Syn_Inst : Synth_Instance_Acc; Decl : Node) is Def : constant Iir := Get_Default_Value (Decl); Init : Valtyp; Obj_Typ : Type_Acc; begin Obj_Typ := Elab_Declaration_Type (Syn_Inst, Decl); if Is_Valid (Def) then Init := Exec_Expression_With_Type (Syn_Inst, Def, Obj_Typ); Init := Exec_Subtype_Conversion (Init, Obj_Typ, False, Decl); else Init := No_Valtyp; end if; Create_Signal (Syn_Inst, Decl, Obj_Typ, Init.Val); end Elab_Signal_Declaration; procedure Elab_Variable_Declaration (Syn_Inst : Synth_Instance_Acc; Decl : Node; Force_Init : Boolean) is Def : constant Node := Get_Default_Value (Decl); Decl_Type : constant Node := Get_Type (Decl); Init : Valtyp; Obj_Typ : Type_Acc; begin Obj_Typ := Elab_Declaration_Type (Syn_Inst, Decl); if Get_Kind (Decl_Type) = Iir_Kind_Protected_Type_Declaration then Error_Msg_Elab (+Decl, "protected type not supported"); return; end if; if Is_Valid (Def) then Init := Exec_Expression_With_Type (Syn_Inst, Def, Obj_Typ); Init := Exec_Subtype_Conversion (Init, Obj_Typ, False, Decl); else if Force_Init then Init := Create_Value_Default (Obj_Typ); else Init := (Typ => Obj_Typ, Val => null); end if; end if; Create_Object (Syn_Inst, Decl, Init); end Elab_Variable_Declaration; procedure Elab_File_Declaration (Syn_Inst : Synth_Instance_Acc; Decl : Node) is F : File_Index; Res : Valtyp; Obj_Typ : Type_Acc; begin F := Elab.Vhdl_Files.Elaborate_File_Declaration (Syn_Inst, Decl); Obj_Typ := Get_Subtype_Object (Syn_Inst, Get_Type (Decl)); Res := Create_Value_File (Obj_Typ, F); Create_Object (Syn_Inst, Decl, Res); end Elab_File_Declaration; procedure Elab_Free_Quantity_Declaration (Syn_Inst : Synth_Instance_Acc; Decl : Node) is Obj_Typ : Type_Acc; Res : Valtyp; begin Obj_Typ := Elab_Declaration_Type (Syn_Inst, Decl); Res := Create_Value_Quantity (Obj_Typ, No_Quantity_Index); Create_Object (Syn_Inst, Decl, Res); end Elab_Free_Quantity_Declaration; procedure Elab_Implicit_Signal_Declaration (Syn_Inst : Synth_Instance_Acc; Decl : Node) is Obj_Typ : Type_Acc; begin Obj_Typ := Get_Subtype_Object (Syn_Inst, Get_Type (Decl)); 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_Terminal_Declaration (Syn_Inst : Synth_Instance_Acc; Decl : Node) is Res : Valtyp; begin Res := Create_Value_Terminal (null, No_Terminal_Index); Create_Object (Syn_Inst, Decl, Res); end Elab_Terminal_Declaration; procedure Elab_Nature_Definition (Syn_Inst : Synth_Instance_Acc; Def : Node) is pragma Unreferenced (Syn_Inst); begin case Get_Kind (Def) is when Iir_Kind_Scalar_Nature_Definition => null; when others => Error_Kind ("elab_nature_definition", Def); end case; end Elab_Nature_Definition; procedure Elab_Attribute_Specification (Syn_Inst : Synth_Instance_Acc; Spec : Node) is Attr_Decl : constant Node := Get_Named_Entity (Get_Attribute_Designator (Spec)); Value : Node; Val : Valtyp; Val_Type : Type_Acc; begin Val_Type := Get_Subtype_Object (Syn_Inst, Get_Type (Attr_Decl)); Value := Get_Attribute_Value_Spec_Chain (Spec); while Value /= Null_Iir loop -- 2. The expression is evaluated to determine the value -- of the attribute. -- It is an error if the value of the expression does not -- belong to the subtype of the attribute; if the -- attribute is of an array type, then an implicit -- subtype conversion is first performed on the value, -- unless the attribute's subtype indication denotes an -- unconstrained array type. Val := Exec_Expression_With_Type (Syn_Inst, Get_Expression (Spec), Val_Type); -- Check_Constraints (Instance, Val, Attr_Type, Decl); -- 3. A new instance of the designated attribute is created -- and associated with each of the affected items. -- -- 4. Each new attribute instance is assigned the value of -- the expression. Create_Object (Syn_Inst, Value, Val); -- Unshare (Val, Instance_Pool); Value := Get_Spec_Chain (Value); end loop; end Elab_Attribute_Specification; procedure Elab_Object_Alias_Declaration (Syn_Inst : Synth_Instance_Acc; Decl : Node) is Atype : constant Node := Get_Declaration_Type (Decl); Off : Value_Offsets; Res : Valtyp; Obj_Typ : Type_Acc; Base : Valtyp; Typ : Type_Acc; begin -- Subtype indication may not be present. if Atype /= Null_Node then Synth_Subtype_Indication (Syn_Inst, Atype); Obj_Typ := Get_Subtype_Object (Syn_Inst, Atype); else Obj_Typ := null; end if; Exec_Assignment_Prefix (Syn_Inst, Get_Name (Decl), Base, Typ, Off); Res := Create_Value_Alias (Base, Off, Typ); if Obj_Typ /= null then Res := Exec_Subtype_Conversion (Res, Obj_Typ, True, Decl); end if; Create_Object (Syn_Inst, Decl, Res); end Elab_Object_Alias_Declaration; procedure Elab_Declaration (Syn_Inst : Synth_Instance_Acc; Decl : Node; Force_Init : Boolean; Last_Type : in out Node) is begin case Get_Kind (Decl) is when Iir_Kind_Variable_Declaration => Elab_Variable_Declaration (Syn_Inst, Decl, Force_Init); -- when Iir_Kind_Interface_Variable_Declaration => -- -- Ignore default value. -- Create_Wire_Object (Syn_Inst, Wire_Variable, Decl); -- Create_Var_Wire (Syn_Inst, Decl, No_Valtyp); when Iir_Kind_Constant_Declaration => Elab_Constant_Declaration (Syn_Inst, Decl, Last_Type); when Iir_Kind_Signal_Declaration => Elab_Signal_Declaration (Syn_Inst, Decl); when Iir_Kind_Object_Alias_Declaration => Elab_Object_Alias_Declaration (Syn_Inst, Decl); when Iir_Kind_Procedure_Declaration | Iir_Kind_Function_Declaration => Elab_Subprogram_Declaration (Syn_Inst, Decl); when Iir_Kind_Procedure_Body | Iir_Kind_Function_Body => null; when Iir_Kind_Non_Object_Alias_Declaration => null; when Iir_Kind_Attribute_Declaration => -- Nothing to do: the type is a type_mark, not a subtype -- indication. null; when Iir_Kind_Attribute_Specification => Elab_Attribute_Specification (Syn_Inst, Decl); when Iir_Kind_Type_Declaration => Elab_Type_Definition (Syn_Inst, Get_Type_Definition (Decl)); when Iir_Kind_Anonymous_Type_Declaration => Elab_Anonymous_Type_Definition (Syn_Inst, Get_Type_Definition (Decl), Get_Subtype_Definition (Decl)); when Iir_Kind_Subtype_Declaration => declare T : Type_Acc; begin T := Elab_Declaration_Type (Syn_Inst, Decl); pragma Unreferenced (T); end; when Iir_Kind_Component_Declaration => null; when Iir_Kind_File_Declaration => Elab_File_Declaration (Syn_Inst, Decl); when Iir_Kind_Package_Instantiation_Declaration => Vhdl_Insts.Elab_Package_Instantiation (Syn_Inst, Decl); when Iir_Kind_Protected_Type_Body => null; when Iir_Kind_Psl_Default_Clock => -- Ignored; directly used by PSL directives. null; when Iir_Kind_Use_Clause => null; when Iir_Kind_Configuration_Specification => null; when Iir_Kind_Attribute_Implicit_Declaration => declare El : Node; begin El := Get_Attribute_Implicit_Chain (Decl); while El /= Null_Node loop Elab_Declaration (Syn_Inst, El, Force_Init, Last_Type); El := Get_Attr_Chain (El); end loop; end; when Iir_Kind_Nature_Declaration => Elab_Nature_Definition (Syn_Inst, Get_Nature (Decl)); when Iir_Kind_Free_Quantity_Declaration => Elab_Free_Quantity_Declaration (Syn_Inst, Decl); when Iir_Kinds_Branch_Quantity_Declaration => Elab_Implicit_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_Kind_Terminal_Declaration => Elab_Terminal_Declaration (Syn_Inst, Decl); when Iir_Kinds_Signal_Attribute => -- Not supported by synthesis. null; when Iir_Kind_Suspend_State_Declaration => declare Val : Valtyp; begin Val := Create_Value_Memory (Create_Memory_U32 (0)); Create_Object (Syn_Inst, Decl, Val); end; when others => Vhdl.Errors.Error_Kind ("elab_declaration", Decl); end case; end Elab_Declaration; procedure Elab_Declarations (Syn_Inst : Synth_Instance_Acc; Decls : Iir; Force_Init : Boolean := False) is Decl : Node; Last_Type : Node; begin Last_Type := Null_Node; Decl := Decls; while Is_Valid (Decl) loop Elab_Declaration (Syn_Inst, Decl, Force_Init, Last_Type); exit when Is_Error (Syn_Inst); Decl := Get_Chain (Decl); end loop; end Elab_Declarations; procedure Finalize_Declaration (Syn_Inst : Synth_Instance_Acc; Decl : Node; Is_Subprg : Boolean) is pragma Unreferenced (Syn_Inst); begin case Get_Kind (Decl) is when Iir_Kind_Variable_Declaration | Iir_Kind_Interface_Variable_Declaration => null; when Iir_Kind_Constant_Declaration => null; when Iir_Kind_Signal_Declaration | Iir_Kind_Interface_Signal_Declaration => pragma Assert (not Is_Subprg); null; when Iir_Kind_Object_Alias_Declaration => null; when Iir_Kind_Procedure_Declaration | Iir_Kind_Function_Declaration => null; when Iir_Kind_Procedure_Body | Iir_Kind_Function_Body => null; when Iir_Kind_Non_Object_Alias_Declaration => null; when Iir_Kind_Attribute_Declaration => null; when Iir_Kind_Attribute_Specification => null; when Iir_Kind_Type_Declaration => null; when Iir_Kind_Anonymous_Type_Declaration => null; when Iir_Kind_Subtype_Declaration => null; when Iir_Kind_Component_Declaration => null; when Iir_Kind_File_Declaration => null; when Iir_Kind_Configuration_Specification => null; when Iir_Kind_Psl_Default_Clock => -- Ignored; directly used by PSL directives. null; when Iir_Kind_Attribute_Implicit_Declaration => -- Not supported by synthesis. null; when others => Vhdl.Errors.Error_Kind ("finalize_declaration", Decl); end case; end Finalize_Declaration; procedure Finalize_Declarations (Syn_Inst : Synth_Instance_Acc; Decls : Iir; Is_Subprg : Boolean := False) is Decl : Iir; begin Decl := Decls; while Is_Valid (Decl) loop Finalize_Declaration (Syn_Inst, Decl, Is_Subprg); Decl := Get_Chain (Decl); end loop; end Finalize_Declarations; end Elab.Vhdl_Decls;