diff options
author | Tristan Gingold <tgingold@free.fr> | 2016-10-14 04:55:33 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2016-10-14 04:55:33 +0200 |
commit | e7529aba20ec36d9710f9bff6eb18ea3d77b322c (patch) | |
tree | 8208eb8a9ef2f91cc30ffa5988ff20b9f583e13e /src/vhdl | |
parent | 1a1d378dcafeca5a18dfa8862ebe412efa1e9718 (diff) | |
download | ghdl-e7529aba20ec36d9710f9bff6eb18ea3d77b322c.tar.gz ghdl-e7529aba20ec36d9710f9bff6eb18ea3d77b322c.tar.bz2 ghdl-e7529aba20ec36d9710f9bff6eb18ea3d77b322c.zip |
Add --file-to-xml to dump tree as XML.
Diffstat (limited to 'src/vhdl')
-rw-r--r-- | src/vhdl/disp_tree.adb | 1 | ||||
-rw-r--r-- | src/vhdl/disp_tree.ads | 23 |
2 files changed, 23 insertions, 1 deletions
diff --git a/src/vhdl/disp_tree.adb b/src/vhdl/disp_tree.adb index 78a8096a8..e254bb883 100644 --- a/src/vhdl/disp_tree.adb +++ b/src/vhdl/disp_tree.adb @@ -20,7 +20,6 @@ with Ada.Text_IO; use Ada.Text_IO; with Name_Table; -with Tokens; with Files_Map; with PSL.Dump_Tree; with Nodes_Meta; diff --git a/src/vhdl/disp_tree.ads b/src/vhdl/disp_tree.ads index f30c6278f..0ea056a6a 100644 --- a/src/vhdl/disp_tree.ads +++ b/src/vhdl/disp_tree.ads @@ -17,6 +17,7 @@ -- 02111-1307, USA. with Types; use Types; with Iirs; use Iirs; +with Tokens; use Tokens; package Disp_Tree is -- Disp TREE recursively. @@ -24,4 +25,26 @@ package Disp_Tree is procedure Disp_Tree_For_Psl (N : Int32; Indent : Natural; Depth : Natural); + + -- Image for various field types. + function Image_Name_Id (Ident: Name_Id) return String; + function Image_Iir_Staticness (Static: Iir_Staticness) return String; + function Image_Boolean (Bool : Boolean) return String; + function Image_Iir_Delay_Mechanism (Mech : Iir_Delay_Mechanism) + return String; + function Image_Iir_Mode (Mode : Iir_Mode) return String; + function Image_Iir_Signal_Kind (Kind : Iir_Signal_Kind) return String; + function Image_Iir_Pure_State (State : Iir_Pure_State) return String; + function Image_Iir_All_Sensitized (Sig : Iir_All_Sensitized) + return String; + function Image_Iir_Constraint (Const : Iir_Constraint) return String; + function Image_Date_State_Type (State : Date_State_Type) return String; + function Image_Tri_State_Type (State : Tri_State_Type) return String; + function Image_Time_Stamp_Id (Id : Time_Stamp_Id) return String; + function Image_File_Checksum_Id (Id : File_Checksum_Id) return String; + function Image_Iir_Predefined_Functions (F : Iir_Predefined_Functions) + return String; + function Image_Location_Type (Loc : Location_Type) return String; + function Image_Iir_Direction (Dir : Iir_Direction) return String; + function Image_Token_Type (Tok : Tokens.Token_Type) return String; end Disp_Tree; |