aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/simulate
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2016-02-21 06:53:45 +0100
committerTristan Gingold <tgingold@free.fr>2016-03-10 08:01:07 +0100
commitdf18e5968c8dd72dd6e3713ff149f1e352f2a676 (patch)
treeb1f8bb96a7ffc7be46e331cb9527aacb66b0f0b1 /src/vhdl/simulate
parent4f839f02e3cffedac8aa3a6f3a6842b3f9909ae1 (diff)
downloadghdl-df18e5968c8dd72dd6e3713ff149f1e352f2a676.tar.gz
ghdl-df18e5968c8dd72dd6e3713ff149f1e352f2a676.tar.bz2
ghdl-df18e5968c8dd72dd6e3713ff149f1e352f2a676.zip
simul debugger: display packages and configuration.
Diffstat (limited to 'src/vhdl/simulate')
-rw-r--r--src/vhdl/simulate/debugger.adb14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/vhdl/simulate/debugger.adb b/src/vhdl/simulate/debugger.adb
index 3acced4ab..5225bc0ad 100644
--- a/src/vhdl/simulate/debugger.adb
+++ b/src/vhdl/simulate/debugger.adb
@@ -190,7 +190,8 @@ package body Debugger is
| Iir_Kind_Component_Instantiation_Statement
| Iir_Kind_Procedure_Declaration
| Iir_Kinds_Process_Statement
- | Iir_Kind_Package_Declaration =>
+ | Iir_Kind_Package_Declaration
+ | Iir_Kind_Configuration_Declaration =>
return Image_Identifier (Name);
when Iir_Kind_Generate_Statement_Body =>
return Image_Identifier (Get_Parent (Name))
@@ -262,8 +263,12 @@ package body Debugger is
Put ("[process]");
when Iir_Kind_Architecture_Body =>
Put ("[entity]");
+ when Iir_Kind_Package_Declaration =>
+ Put ("[package]");
+ when Iir_Kind_Configuration_Declaration =>
+ Put ("[configuration]");
when others =>
- Error_Kind ("disp_instances_tree1", Inst.Label);
+ Error_Kind ("disp_instances_tree_name", Inst.Label);
end case;
New_Line;
end Disp_Instances_Tree_Name;
@@ -296,6 +301,11 @@ package body Debugger is
procedure Disp_Instances_Tree is
begin
+ for I in Package_Instances'Range loop
+ if Package_Instances (I) /= null then
+ Disp_Instances_Tree_Name (Package_Instances (I));
+ end if;
+ end loop;
Disp_Instances_Tree_Name (Top_Instance);
Disp_Instances_Tree1 (Top_Instance, "");
end Disp_Instances_Tree;