aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2021-12-13 19:09:44 +0100
committerTristan Gingold <tgingold@free.fr>2021-12-13 19:09:44 +0100
commit8d75953b65e81e404ea193b8994c638b5a8c470d (patch)
tree35478e6c539c19c79ae276a134d5ac59ad127667 /src/vhdl
parent6bcba53d0fc8d4e6e168470ecb8216bbb87534ca (diff)
downloadghdl-8d75953b65e81e404ea193b8994c638b5a8c470d.tar.gz
ghdl-8d75953b65e81e404ea193b8994c638b5a8c470d.tar.bz2
ghdl-8d75953b65e81e404ea193b8994c638b5a8c470d.zip
ghdldrv: handle generic overrides on foreign units
Diffstat (limited to 'src/vhdl')
-rw-r--r--src/vhdl/vhdl-configuration.adb69
-rw-r--r--src/vhdl/vhdl-configuration.ads6
2 files changed, 54 insertions, 21 deletions
diff --git a/src/vhdl/vhdl-configuration.adb b/src/vhdl/vhdl-configuration.adb
index aeb737028..64a615bfb 100644
--- a/src/vhdl/vhdl-configuration.adb
+++ b/src/vhdl/vhdl-configuration.adb
@@ -27,6 +27,7 @@ with Vhdl.Sem_Scopes;
with Vhdl.Sem_Lib; use Vhdl.Sem_Lib;
with Vhdl.Canon;
with Vhdl.Evaluation;
+with Vhdl.Scanner;
package body Vhdl.Configuration is
procedure Add_Design_Concurrent_Stmts (Parent : Iir);
@@ -1167,7 +1168,7 @@ package body Vhdl.Configuration is
end Find_Top_Entity;
type Override_Entry is record
- Gen : Name_Id;
+ Gen : String_Acc;
Value : String_Acc;
end record;
@@ -1177,9 +1178,9 @@ package body Vhdl.Configuration is
Table_Low_Bound => 1,
Table_Initial => 16);
- procedure Add_Generic_Override (Id : Name_Id; Value : String) is
+ procedure Add_Generic_Override (Name : String; Value : String) is
begin
- Override_Table.Append (Override_Entry'(Gen => Id,
+ Override_Table.Append (Override_Entry'(Gen => new String'(Name),
Value => new String'(Value)));
end Add_Generic_Override;
@@ -1325,29 +1326,57 @@ package body Vhdl.Configuration is
procedure Apply_Generic_Override (Ent : Iir)
is
- Inter_Chain : constant Iir := Get_Generic_Chain (Ent);
- Inter : Iir;
begin
for I in Override_Table.First .. Override_Table.Last loop
declare
Over : constant Override_Entry := Override_Table.Table (I);
begin
- Inter := Inter_Chain;
- while Inter /= Null_Iir loop
- exit when Get_Identifier (Inter) = Over.Gen;
- Inter := Get_Chain (Inter);
- end loop;
+ case Get_Kind (Ent) is
+ when Iir_Kind_Entity_Declaration =>
+ declare
+ Inter_Chain : constant Iir := Get_Generic_Chain (Ent);
+ Gen_Name : String := Over.Gen.all;
+ Gen_Id : Name_Id;
+ Inter : Iir;
+ Err : Boolean;
+ begin
+ Vhdl.Scanner.Convert_Identifier (Gen_Name, Err);
+ if Err then
+ Error_Msg_Option
+ ("incorrect name in generic override option");
+ Gen_Id := Null_Identifier;
+ else
+ Gen_Id := Name_Table.Get_Identifier (Gen_Name);
- if Inter = Null_Iir then
- Error_Msg_Elab ("no generic %i for -g", +Over.Gen);
- elsif Get_Kind (Inter) /= Iir_Kind_Interface_Constant_Declaration
- then
- Error_Msg_Elab
- ("generic %n cannot be overriden (not a constant)",
- +Over.Gen);
- else
- Override_Generic (Inter, Over.Value);
- end if;
+ Inter := Inter_Chain;
+ while Inter /= Null_Iir loop
+ exit when Get_Identifier (Inter) = Gen_Id;
+ Inter := Get_Chain (Inter);
+ end loop;
+ end if;
+
+ if Gen_Id = Null_Identifier then
+ -- Skip it
+ null;
+ elsif Inter = Null_Iir then
+ Error_Msg_Elab ("no generic %i for -g", +Gen_Id);
+ elsif (Get_Kind (Inter)
+ /= Iir_Kind_Interface_Constant_Declaration)
+ then
+ -- Could be a generic package, a generic type...
+ Error_Msg_Elab
+ ("generic %n cannot be overriden (not a constant)",
+ +Gen_Id);
+ else
+ Override_Generic (Inter, Over.Value);
+ end if;
+ end;
+ when Iir_Kind_Foreign_Module =>
+ Apply_Foreign_Override
+ (Get_Foreign_Node (Ent), Over.Gen.all, Over.Value.all);
+ when others =>
+ raise Internal_Error;
+ end case;
end;
end loop;
end Apply_Generic_Override;
diff --git a/src/vhdl/vhdl-configuration.ads b/src/vhdl/vhdl-configuration.ads
index d272d23e9..dfd59c516 100644
--- a/src/vhdl/vhdl-configuration.ads
+++ b/src/vhdl/vhdl-configuration.ads
@@ -69,8 +69,12 @@ package Vhdl.Configuration is
type Mark_Instantiated_Units_Access is access procedure (N : Int32);
Mark_Foreign_Module : Mark_Instantiated_Units_Access;
+ type Apply_Foreign_Override_Access is access procedure
+ (Top : Int32; Gen : String; Value : String);
+ Apply_Foreign_Override : Apply_Foreign_Override_Access;
+
-- Add an override for generic ID.
- procedure Add_Generic_Override (Id : Name_Id; Value : String);
+ procedure Add_Generic_Override (Name : String; Value : String);
-- Apply generic overrides to entity ENT.
procedure Apply_Generic_Override (Ent : Iir);