aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2022-08-03 06:58:03 +0200
committerTristan Gingold <tgingold@free.fr>2022-08-03 06:58:03 +0200
commitd7bc4dcf7d2fcfa848d61f7f2560fd32f510ce0d (patch)
tree3bd5e5800d08e62f2ddc84b3d7414a0c125e259b
parenta3e05191a62482c385ca5481caa78299fdbad775 (diff)
downloadghdl-d7bc4dcf7d2fcfa848d61f7f2560fd32f510ce0d.tar.gz
ghdl-d7bc4dcf7d2fcfa848d61f7f2560fd32f510ce0d.tar.bz2
ghdl-d7bc4dcf7d2fcfa848d61f7f2560fd32f510ce0d.zip
vhdl-prints: improve output
-rw-r--r--src/vhdl/vhdl-prints.adb24
-rw-r--r--src/vhdl/vhdl-prints.ads1
2 files changed, 23 insertions, 2 deletions
diff --git a/src/vhdl/vhdl-prints.adb b/src/vhdl/vhdl-prints.adb
index 8f54d2b5c..d65df34d2 100644
--- a/src/vhdl/vhdl-prints.adb
+++ b/src/vhdl/vhdl-prints.adb
@@ -1983,7 +1983,9 @@ package body Vhdl.Prints is
Close_Lit (Ctxt);
when N_Not_Bool =>
Disp_Token (Ctxt, Tok_Exclam_Mark);
+ Disp_Token (Ctxt, Tok_Left_Paren);
Print_Expr (Ctxt, Get_Boolean (N), Prio);
+ Disp_Token (Ctxt, Tok_Right_Paren);
when N_And_Bool =>
Disp_Token (Ctxt, Tok_Left_Paren);
Print_Expr (Ctxt, Get_Left (N), Prio);
@@ -3931,8 +3933,12 @@ package body Vhdl.Prints is
procedure Disp_State (S : NFA_State)
is
Str : constant String := Int32'Image (Get_State_Label (S));
+ S1 : constant String := NFA_State'Image (S);
begin
OOB.Put (Str (2 .. Str'Last));
+ OOB.Put ("[");
+ OOB.Put (S1 (2 .. S1'Last));
+ OOB.Put ("]");
end Disp_State;
S : NFA_State;
@@ -3950,6 +3956,9 @@ package body Vhdl.Prints is
else
Disp_State (S);
end if;
+ if Get_Epsilon_NFA (N) then
+ OOB.Put (", epsilon");
+ end if;
OOB.New_Line;
S := Get_First_State (N);
@@ -3960,7 +3969,7 @@ package body Vhdl.Prints is
Disp_State (S);
OOB.Put (" -> ");
Disp_State (Get_Edge_Dest (E));
- OOB.Put (": ");
+ Disp_Token (Ctxt, Tok_Colon); -- To display ": "
Disp_Psl_Expression (Ctxt, Get_Edge_Expr (E));
OOB.New_Line;
E := Get_Next_Src_Edge (E);
@@ -4995,7 +5004,7 @@ package body Vhdl.Prints is
-- A space after a keyword.
if Tok /= Tok_Semi_Colon
and Tok /= Tok_Dot
- and Tok /= Tok_Right_Paren
+ and Tok /= Tok_Right_Paren
then
return True;
end if;
@@ -5032,6 +5041,7 @@ package body Vhdl.Prints is
if Prev_Tok /= Tok_Tick
and Prev_Tok /= Tok_Left_Paren
and Prev_Tok /= Tok_Right_Paren
+ and Prev_Tok /= Tok_Exclam_Mark
then
-- A space before '('.
return True;
@@ -5183,4 +5193,14 @@ package body Vhdl.Prints is
Disp_PSL_NFA (Ctxt, N);
end Disp_PSL_NFA;
+ procedure Disp_PSL_Expr (N : PSL_Node)
+ is
+ use Simple_Disp_Ctxt;
+ Ctxt : Simple_Ctxt;
+ begin
+ Init (Ctxt);
+ Disp_Psl_Expression (Ctxt, N);
+ OOB.New_Line;
+ end Disp_PSL_Expr;
+
end Vhdl.Prints;
diff --git a/src/vhdl/vhdl-prints.ads b/src/vhdl/vhdl-prints.ads
index 657fb83be..44989d401 100644
--- a/src/vhdl/vhdl-prints.ads
+++ b/src/vhdl/vhdl-prints.ads
@@ -66,5 +66,6 @@ package Vhdl.Prints is
procedure Disp_PSL_NFA (N : PSL_NFA);
procedure Disp_Expression (Expr: Iir);
+ procedure Disp_PSL_Expr (N : PSL_Node);
-- Display an expression.
end Vhdl.Prints;