aboutsummaryrefslogtreecommitdiffstats
path: root/src/synth/elab-debugger__on.adb
diff options
context:
space:
mode:
Diffstat (limited to 'src/synth/elab-debugger__on.adb')
-rw-r--r--src/synth/elab-debugger__on.adb28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/synth/elab-debugger__on.adb b/src/synth/elab-debugger__on.adb
index 608edbb07..faab400ca 100644
--- a/src/synth/elab-debugger__on.adb
+++ b/src/synth/elab-debugger__on.adb
@@ -1293,4 +1293,32 @@ package body Elab.Debugger is
Debug (Reason_Error);
end if;
end Debug_Error;
+
+ procedure Disp_A_Frame (Inst: Synth_Instance_Acc) is
+ begin
+ if Inst = Root_Instance then
+ Put_Line ("root instance");
+ return;
+ end if;
+
+ Put (Vhdl.Errors.Disp_Node (Get_Source_Scope (Inst)));
+-- if Inst.Stmt /= Null_Iir then
+-- Put (" at ");
+-- Put (Files_Map.Image (Get_Location (Inst.Stmt)));
+-- end if;
+ New_Line;
+ end Disp_A_Frame;
+
+ procedure Debug_Bt (Instance : Synth_Instance_Acc)
+ is
+ Inst : Synth_Instance_Acc;
+ begin
+ Inst := Instance;
+ while Inst /= null loop
+ Disp_A_Frame (Inst);
+ Inst := Get_Caller_Instance (Inst);
+ end loop;
+ end Debug_Bt;
+ pragma Unreferenced (Debug_Bt);
+
end Elab.Debugger;