summaryrefslogtreecommitdiff
path: root/iirs.adb
diff options
context:
space:
mode:
authorTristan Gingold2014-10-22 13:15:33 +0200
committerTristan Gingold2014-10-22 13:15:33 +0200
commite00d31baa0e7190b959cfb03df03b260e402da05 (patch)
tree9ed433cdd9d38d6432e3dc016d1b942fbf97519c /iirs.adb
parent0e199cbea1070c016d29348cd659b9e6ca688afb (diff)
downloadghdl-e00d31baa0e7190b959cfb03df03b260e402da05.tar.gz
ghdl-e00d31baa0e7190b959cfb03df03b260e402da05.tar.bz2
ghdl-e00d31baa0e7190b959cfb03df03b260e402da05.zip
Rework for support of generic packages.
Diffstat (limited to 'iirs.adb')
-rw-r--r--iirs.adb6037
1 files changed, 1252 insertions, 4785 deletions
diff --git a/iirs.adb b/iirs.adb
index 16e1d1c..7feda1f 100644
--- a/iirs.adb
+++ b/iirs.adb
@@ -17,9 +17,9 @@
-- 02111-1307, USA.
with Ada.Unchecked_Conversion;
with Ada.Text_IO;
-with Errorout; use Errorout;
with Nodes; use Nodes;
with Lists; use Lists;
+with Nodes_Meta; use Nodes_Meta;
package body Iirs is
function Is_Null (Node : Iir) return Boolean is
@@ -36,20 +36,6 @@ package body Iirs is
-- General subprograms that operate on every iir --
---------------------------------------------------
- -- This is the procedure to call when an internal consistancy test has
- -- failed.
- -- The main idea is the consistancy test *MUST* have no side effect,
- -- except calling this procedure. To speed up, this procedure could
- -- be a no-op.
- procedure Failed (Func: String := ""; Node : Iir := Null_Iir)
- is
- begin
- if Func /= "" then
- Error_Kind (Func, Node);
- end if;
- raise Internal_Error;
- end Failed;
-
function Get_Format (Kind : Iir_Kind) return Format_Type;
function Create_Iir (Kind : Iir_Kind) return Iir
@@ -271,6 +257,9 @@ package body Iirs is
| Iir_Kind_Aggregate_Info
| Iir_Kind_Procedure_Call
| Iir_Kind_Record_Element_Constraint
+ | Iir_Kind_Array_Element_Resolution
+ | Iir_Kind_Record_Resolution
+ | Iir_Kind_Record_Element_Resolution
| Iir_Kind_Disconnection_Specification
| Iir_Kind_Configuration_Specification
| Iir_Kind_Access_Type_Definition
@@ -485,7547 +474,4025 @@ package body Iirs is
end case;
end Get_Format;
- procedure Check_Kind_For_First_Design_Unit (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Design_File =>
- null;
- when others =>
- Failed ("First_Design_Unit", Target);
- end case;
- end Check_Kind_For_First_Design_Unit;
-
function Get_First_Design_Unit (Design : Iir) return Iir is
begin
- Check_Kind_For_First_Design_Unit (Design);
+ pragma Assert (Design /= Null_Iir);
+ pragma Assert (Has_First_Design_Unit (Get_Kind (Design)));
return Get_Field5 (Design);
end Get_First_Design_Unit;
procedure Set_First_Design_Unit (Design : Iir; Chain : Iir) is
begin
- Check_Kind_For_First_Design_Unit (Design);
+ pragma Assert (Design /= Null_Iir);
+ pragma Assert (Has_First_Design_Unit (Get_Kind (Design)));
Set_Field5 (Design, Chain);
end Set_First_Design_Unit;
- procedure Check_Kind_For_Last_Design_Unit (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Design_File =>
- null;
- when others =>
- Failed ("Last_Design_Unit", Target);
- end case;
- end Check_Kind_For_Last_Design_Unit;
-
function Get_Last_Design_Unit (Design : Iir) return Iir is
begin
- Check_Kind_For_Last_Design_Unit (Design);
+ pragma Assert (Design /= Null_Iir);
+ pragma Assert (Has_Last_Design_Unit (Get_Kind (Design)));
return Get_Field6 (Design);
end Get_Last_Design_Unit;
procedure Set_Last_Design_Unit (Design : Iir; Chain : Iir) is
begin
- Check_Kind_For_Last_Design_Unit (Design);
+ pragma Assert (Design /= Null_Iir);
+ pragma Assert (Has_Last_Design_Unit (Get_Kind (Design)));
Set_Field6 (Design, Chain);
end Set_Last_Design_Unit;
- procedure Check_Kind_For_Library_Declaration (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Library_Clause =>
- null;
- when others =>
- Failed ("Library_Declaration", Target);
- end case;
- end Check_Kind_For_Library_Declaration;
-
function Get_Library_Declaration (Design : Iir) return Iir is
begin
- Check_Kind_For_Library_Declaration (Design);
+ pragma Assert (Design /= Null_Iir);
+ pragma Assert (Has_Library_Declaration (Get_Kind (Design)));
return Get_Field1 (Design);
end Get_Library_Declaration;
procedure Set_Library_Declaration (Design : Iir; Library : Iir) is
begin
- Check_Kind_For_Library_Declaration (Design);
+ pragma Assert (Design /= Null_Iir);
+ pragma Assert (Has_Library_Declaration (Get_Kind (Design)));
Set_Field1 (Design, Library);
end Set_Library_Declaration;
- procedure Check_Kind_For_File_Time_Stamp (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Design_File =>
- null;
- when others =>
- Failed ("File_Time_Stamp", Target);
- end case;
- end Check_Kind_For_File_Time_Stamp;
-
function Get_File_Time_Stamp (Design : Iir) return Time_Stamp_Id is
begin
- Check_Kind_For_File_Time_Stamp (Design);
+ pragma Assert (Design /= Null_Iir);
+ pragma Assert (Has_File_Time_Stamp (Get_Kind (Design)));
return Iir_To_Time_Stamp_Id (Get_Field4 (Design));
end Get_File_Time_Stamp;
procedure Set_File_Time_Stamp (Design : Iir; Stamp : Time_Stamp_Id) is
begin
- Check_Kind_For_File_Time_Stamp (Design);
+ pragma Assert (Design /= Null_Iir);
+ pragma Assert (Has_File_Time_Stamp (Get_Kind (Design)));
Set_Field4 (Design, Time_Stamp_Id_To_Iir (Stamp));
end Set_File_Time_Stamp;
- procedure Check_Kind_For_Analysis_Time_Stamp (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Design_File =>
- null;
- when others =>
- Failed ("Analysis_Time_Stamp", Target);
- end case;
- end Check_Kind_For_Analysis_Time_Stamp;
-
function Get_Analysis_Time_Stamp (Design : Iir) return Time_Stamp_Id is
begin
- Check_Kind_For_Analysis_Time_Stamp (Design);
+ pragma Assert (Design /= Null_Iir);
+ pragma Assert (Has_Analysis_Time_Stamp (Get_Kind (Design)));
return Iir_To_Time_Stamp_Id (Get_Field3 (Design));
end Get_Analysis_Time_Stamp;
procedure Set_Analysis_Time_Stamp (Design : Iir; Stamp : Time_Stamp_Id) is
begin
- Check_Kind_For_Analysis_Time_Stamp (Design);
+ pragma Assert (Design /= Null_Iir);
+ pragma Assert (Has_Analysis_Time_Stamp (Get_Kind (Design)));
Set_Field3 (Design, Time_Stamp_Id_To_Iir (Stamp));
end Set_Analysis_Time_Stamp;
- procedure Check_Kind_For_Library (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Design_File =>
- null;
- when others =>
- Failed ("Library", Target);
- end case;
- end Check_Kind_For_Library;
-
function Get_Library (File : Iir_Design_File) return Iir is
begin
- Check_Kind_For_Library (File);
+ pragma Assert (File /= Null_Iir);
+ pragma Assert (Has_Library (Get_Kind (File)));
return Get_Field0 (File);
end Get_Library;
procedure Set_Library (File : Iir_Design_File; Lib : Iir) is
begin
- Check_Kind_For_Library (File);
+ pragma Assert (File /= Null_Iir);
+ pragma Assert (Has_Library (Get_Kind (File)));
Set_Field0 (File, Lib);
end Set_Library;
- procedure Check_Kind_For_File_Dependence_List (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Design_File =>
- null;
- when others =>
- Failed ("File_Dependence_List", Target);
- end case;
- end Check_Kind_For_File_Dependence_List;
-
function Get_File_Dependence_List (File : Iir_Design_File) return Iir_List
- is
+ is
begin
- Check_Kind_For_File_Dependence_List (File);
+ pragma Assert (File /= Null_Iir);
+ pragma Assert (Has_File_Dependence_List (Get_Kind (File)));
return Iir_To_Iir_List (Get_Field1 (File));
end Get_File_Dependence_List;
procedure Set_File_Dependence_List (File : Iir_Design_File; Lst : Iir_List)
- is
+ is
begin
- Check_Kind_For_File_Dependence_List (File);
+ pragma Assert (File /= Null_Iir);
+ pragma Assert (Has_File_Dependence_List (Get_Kind (File)));
Set_Field1 (File, Iir_List_To_Iir (Lst));
end Set_File_Dependence_List;
- procedure Check_Kind_For_Design_File_Filename (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Design_File =>
- null;
- when others =>
- Failed ("Design_File_Filename", Target);
- end case;
- end Check_Kind_For_Design_File_Filename;
-
function Get_Design_File_Filename (File : Iir_Design_File) return Name_Id
- is
+ is
begin
- Check_Kind_For_Design_File_Filename (File);
+ pragma Assert (File /= Null_Iir);
+ pragma Assert (Has_Design_File_Filename (Get_Kind (File)));
return Name_Id'Val (Get_Field12 (File));
end Get_Design_File_Filename;
procedure Set_Design_File_Filename (File : Iir_Design_File; Name : Name_Id)
- is
+ is
begin
- Check_Kind_For_Design_File_Filename (File);
+ pragma Assert (File /= Null_Iir);
+ pragma Assert (Has_Design_File_Filename (Get_Kind (File)));
Set_Field12 (File, Name_Id'Pos (Name));
end Set_Design_File_Filename;
- procedure Check_Kind_For_Design_File_Directory (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Design_File =>
- null;
- when others =>
- Failed ("Design_File_Directory", Target);
- end case;
- end Check_Kind_For_Design_File_Directory;
-
function Get_Design_File_Directory (File : Iir_Design_File) return Name_Id
- is
+ is
begin
- Check_Kind_For_Design_File_Directory (File);
+ pragma Assert (File /= Null_Iir);
+ pragma Assert (Has_Design_File_Directory (Get_Kind (File)));
return Name_Id'Val (Get_Field11 (File));
end Get_Design_File_Directory;
procedure Set_Design_File_Directory (File : Iir_Design_File; Dir : Name_Id)
- is
+ is
begin
- Check_Kind_For_Design_File_Directory (File);
+ pragma Assert (File /= Null_Iir);
+ pragma Assert (Has_Design_File_Directory (Get_Kind (File)));
Set_Field11 (File, Name_Id'Pos (Dir));
end Set_Design_File_Directory;
- procedure Check_Kind_For_Design_File (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Design_Unit =>
- null;
- when others =>
- Failed ("Design_File", Target);
- end case;
- end Check_Kind_For_Design_File;
-
function Get_Design_File (Unit : Iir_Design_Unit) return Iir is
begin
- Check_Kind_For_Design_File (Unit);
+ pragma Assert (Unit /= Null_Iir);
+ pragma Assert (Has_Design_File (Get_Kind (Unit)));
return Get_Field0 (Unit);
end Get_Design_File;
procedure Set_Design_File (Unit : Iir_Design_Unit; File : Iir) is
begin
- Check_Kind_For_Design_File (Unit);
+ pragma Assert (Unit /= Null_Iir);
+ pragma Assert (Has_Design_File (Get_Kind (Unit)));
Set_Field0 (Unit, File);
end Set_Design_File;
- procedure Check_Kind_For_Design_File_Chain (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Library_Declaration =>
- null;
- when others =>
- Failed ("Design_File_Chain", Target);
- end case;
- end Check_Kind_For_Design_File_Chain;
-
function Get_Design_File_Chain (Library : Iir) return Iir is
begin
- Check_Kind_For_Design_File_Chain (Library);
+ pragma Assert (Library /= Null_Iir);
+ pragma Assert (Has_Design_File_Chain (Get_Kind (Library)));
return Get_Field1 (Library);
end Get_Design_File_Chain;
procedure Set_Design_File_Chain (Library : Iir; Chain : Iir) is
begin
- Check_Kind_For_Design_File_Chain (Library);
+ pragma Assert (Library /= Null_Iir);
+ pragma Assert (Has_Design_File_Chain (Get_Kind (Library)));
Set_Field1 (Library, Chain);
end Set_Design_File_Chain;
- procedure Check_Kind_For_Library_Directory (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Library_Declaration =>
- null;
- when others =>
- Failed ("Library_Directory", Target);
- end case;
- end Check_Kind_For_Library_Directory;
-
function Get_Library_Directory (Library : Iir) return Name_Id is
begin
- Check_Kind_For_Library_Directory (Library);
+ pragma Assert (Library /= Null_Iir);
+ pragma Assert (Has_Library_Directory (Get_Kind (Library)));
return Name_Id'Val (Get_Field11 (Library));
end Get_Library_Directory;
procedure Set_Library_Directory (Library : Iir; Dir : Name_Id) is
begin
- Check_Kind_For_Library_Directory (Library);
+ pragma Assert (Library /= Null_Iir);
+ pragma Assert (Has_Library_Directory (Get_Kind (Library)));
Set_Field11 (Library, Name_Id'Pos (Dir));
end Set_Library_Directory;
- procedure Check_Kind_For_Date (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Design_Unit
- | Iir_Kind_Library_Declaration =>
- null;
- when others =>
- Failed ("Date", Target);
- end case;
- end Check_Kind_For_Date;
-
function Get_Date (Target : Iir) return Date_Type is
begin
- Check_Kind_For_Date (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Date (Get_Kind (Target)));
return Date_Type'Val (Get_Field10 (Target));
end Get_Date;
procedure Set_Date (Target : Iir; Date : Date_Type) is
begin
- Check_Kind_For_Date (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Date (Get_Kind (Target)));
Set_Field10 (Target, Date_Type'Pos (Date));
end Set_Date;
- procedure Check_Kind_For_Context_Items (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Design_Unit =>
- null;
- when others =>
- Failed ("Context_Items", Target);
- end case;
- end Check_Kind_For_Context_Items;
-
function Get_Context_Items (Design_Unit : Iir) return Iir is
begin
- Check_Kind_For_Context_Items (Design_Unit);
+ pragma Assert (Design_Unit /= Null_Iir);
+ pragma Assert (Has_Context_Items (Get_Kind (Design_Unit)));
return Get_Field1 (Design_Unit);
end Get_Context_Items;
procedure Set_Context_Items (Design_Unit : Iir; Items_Chain : Iir) is
begin
- Check_Kind_For_Context_Items (Design_Unit);
+ pragma Assert (Design_Unit /= Null_Iir);
+ pragma Assert (Has_Context_Items (Get_Kind (Design_Unit)));
Set_Field1 (Design_Unit, Items_Chain);
end Set_Context_Items;
- procedure Check_Kind_For_Dependence_List (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Design_Unit =>
- null;
- when others =>
- Failed ("Dependence_List", Target);
- end case;
- end Check_Kind_For_Dependence_List;
-
function Get_Dependence_List (Unit : Iir) return Iir_List is
begin
- Check_Kind_For_Dependence_List (Unit);
+ pragma Assert (Unit /= Null_Iir);
+ pragma Assert (Has_Dependence_List (Get_Kind (Unit)));
return Iir_To_Iir_List (Get_Field8 (Unit));
end Get_Dependence_List;
procedure Set_Dependence_List (Unit : Iir; List : Iir_List) is
begin
- Check_Kind_For_Dependence_List (Unit);
+ pragma Assert (Unit /= Null_Iir);
+ pragma Assert (Has_Dependence_List (Get_Kind (Unit)));
Set_Field8 (Unit, Iir_List_To_Iir (List));
end Set_Dependence_List;
- procedure Check_Kind_For_Analysis_Checks_List (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Design_Unit =>
- null;
- when others =>
- Failed ("Analysis_Checks_List", Target);
- end case;
- end Check_Kind_For_Analysis_Checks_List;
-
function Get_Analysis_Checks_List (Unit : Iir) return Iir_List is
begin
- Check_Kind_For_Analysis_Checks_List (Unit);
+ pragma Assert (Unit /= Null_Iir);
+ pragma Assert (Has_Analysis_Checks_List (Get_Kind (Unit)));
return Iir_To_Iir_List (Get_Field9 (Unit));
end Get_Analysis_Checks_List;
procedure Set_Analysis_Checks_List (Unit : Iir; List : Iir_List) is
begin
- Check_Kind_For_Analysis_Checks_List (Unit);
+ pragma Assert (Unit /= Null_Iir);
+ pragma Assert (Has_Analysis_Checks_List (Get_Kind (Unit)));
Set_Field9 (Unit, Iir_List_To_Iir (List));
end Set_Analysis_Checks_List;
- procedure Check_Kind_For_Date_State (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Design_Unit =>
- null;
- when others =>
- Failed ("Date_State", Target);
- end case;
- end Check_Kind_For_Date_State;
-
function Get_Date_State (Unit : Iir_Design_Unit) return Date_State_Type is
begin
- Check_Kind_For_Date_State (Unit);
+ pragma Assert (Unit /= Null_Iir);
+ pragma Assert (Has_Date_State (Get_Kind (Unit)));
return Date_State_Type'Val (Get_State1 (Unit));
end Get_Date_State;
procedure Set_Date_State (Unit : Iir_Design_Unit; State : Date_State_Type)
- is
+ is
begin
- Check_Kind_For_Date_State (Unit);
+ pragma Assert (Unit /= Null_Iir);
+ pragma Assert (Has_Date_State (Get_Kind (Unit)));
Set_State1 (Unit, Date_State_Type'Pos (State));
end Set_Date_State;
- procedure Check_Kind_For_Guarded_Target_State (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Concurrent_Conditional_Signal_Assignment
- | Iir_Kind_Concurrent_Selected_Signal_Assignment
- | Iir_Kind_Signal_Assignment_Statement =>
- null;
- when others =>
- Failed ("Guarded_Target_State", Target);
- end case;
- end Check_Kind_For_Guarded_Target_State;
-
function Get_Guarded_Target_State (Stmt : Iir) return Tri_State_Type is
begin
- Check_Kind_For_Guarded_Target_State (Stmt);
+ pragma Assert (Stmt /= Null_Iir);
+ pragma Assert (Has_Guarded_Target_State (Get_Kind (Stmt)));
return Tri_State_Type'Val (Get_State3 (Stmt));
end Get_Guarded_Target_State;
procedure Set_Guarded_Target_State (Stmt : Iir; State : Tri_State_Type) is
begin
- Check_Kind_For_Guarded_Target_State (Stmt);
+ pragma Assert (Stmt /= Null_Iir);
+ pragma Assert (Has_Guarded_Target_State (Get_Kind (Stmt)));
Set_State3 (Stmt, Tri_State_Type'Pos (State));
end Set_Guarded_Target_State;
- procedure Check_Kind_For_Library_Unit (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Design_Unit =>
- null;
- when others =>
- Failed ("Library_Unit", Target);
- end case;
- end Check_Kind_For_Library_Unit;
-
function Get_Library_Unit (Design_Unit : Iir_Design_Unit) return Iir is
begin
- Check_Kind_For_Library_Unit (Design_Unit);
+ pragma Assert (Design_Unit /= Null_Iir);
+ pragma Assert (Has_Library_Unit (Get_Kind (Design_Unit)));
return Get_Field5 (Design_Unit);
end Get_Library_Unit;
procedure Set_Library_Unit (Design_Unit : Iir_Design_Unit; Lib_Unit : Iir)
- is
+ is
begin
- Check_Kind_For_Library_Unit (Design_Unit);
+ pragma Assert (Design_Unit /= Null_Iir);
+ pragma Assert (Has_Library_Unit (Get_Kind (Design_Unit)));
Set_Field5 (Design_Unit, Lib_Unit);
end Set_Library_Unit;
- procedure Check_Kind_For_Hash_Chain (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Design_Unit =>
- null;
- when others =>
- Failed ("Hash_Chain", Target);
- end case;
- end Check_Kind_For_Hash_Chain;
-
function Get_Hash_Chain (Design_Unit : Iir_Design_Unit) return Iir is
begin
- Check_Kind_For_Hash_Chain (Design_Unit);
+ pragma Assert (Design_Unit /= Null_Iir);
+ pragma Assert (Has_Hash_Chain (Get_Kind (Design_Unit)));
return Get_Field7 (Design_Unit);
end Get_Hash_Chain;
procedure Set_Hash_Chain (Design_Unit : Iir_Design_Unit; Chain : Iir) is
begin
- Check_Kind_For_Hash_Chain (Design_Unit);
+ pragma Assert (Design_Unit /= Null_Iir);
+ pragma Assert (Has_Hash_Chain (Get_Kind (Design_Unit)));
Set_Field7 (Design_Unit, Chain);
end Set_Hash_Chain;
- procedure Check_Kind_For_Design_Unit_Source_Pos (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Design_Unit =>
- null;
- when others =>
- Failed ("Design_Unit_Source_Pos", Target);
- end case;
- end Check_Kind_For_Design_Unit_Source_Pos;
-
function Get_Design_Unit_Source_Pos (Design_Unit : Iir) return Source_Ptr
- is
+ is
begin
- Check_Kind_For_Design_Unit_Source_Pos (Design_Unit);
+ pragma Assert (Design_Unit /= Null_Iir);
+ pragma Assert (Has_Design_Unit_Source_Pos (Get_Kind (Design_Unit)));
return Iir_To_Source_Ptr (Get_Field4 (Design_Unit));
end Get_Design_Unit_Source_Pos;
procedure Set_Design_Unit_Source_Pos (Design_Unit : Iir; Pos : Source_Ptr)
- is
+ is
begin
- Check_Kind_For_Design_Unit_Source_Pos (Design_Unit);
+ pragma Assert (Design_Unit /= Null_Iir);
+ pragma Assert (Has_Design_Unit_Source_Pos (Get_Kind (Design_Unit)));
Set_Field4 (Design_Unit, Source_Ptr_To_Iir (Pos));
end Set_Design_Unit_Source_Pos;
- procedure Check_Kind_For_Design_Unit_Source_Line (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Design_Unit =>
- null;
- when others =>
- Failed ("Design_Unit_Source_Line", Target);
- end case;
- end Check_Kind_For_Design_Unit_Source_Line;
-
function Get_Design_Unit_Source_Line (Design_Unit : Iir) return Int32 is
begin
- Check_Kind_For_Design_Unit_Source_Line (Design_Unit);
+ pragma Assert (Design_Unit /= Null_Iir);
+ pragma Assert (Has_Design_Unit_Source_Line (Get_Kind (Design_Unit)));
return Iir_To_Int32 (Get_Field11 (Design_Unit));
end Get_Design_Unit_Source_Line;
procedure Set_Design_Unit_Source_Line (Design_Unit : Iir; Line : Int32) is
begin
- Check_Kind_For_Design_Unit_Source_Line (Design_Unit);
+ pragma Assert (Design_Unit /= Null_Iir);
+ pragma Assert (Has_Design_Unit_Source_Line (Get_Kind (Design_Unit)));
Set_Field11 (Design_Unit, Int32_To_Iir (Line));
end Set_Design_Unit_Source_Line;
- procedure Check_Kind_For_Design_Unit_Source_Col (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Design_Unit =>
- null;
- when others =>
- Failed ("Design_Unit_Source_Col", Target);
- end case;
- end Check_Kind_For_Design_Unit_Source_Col;
-
function Get_Design_Unit_Source_Col (Design_Unit : Iir) return Int32 is
begin
- Check_Kind_For_Design_Unit_Source_Col (Design_Unit);
+ pragma Assert (Design_Unit /= Null_Iir);
+ pragma Assert (Has_Design_Unit_Source_Col (Get_Kind (Design_Unit)));
return Iir_To_Int32 (Get_Field12 (Design_Unit));
end Get_Design_Unit_Source_Col;
procedure Set_Design_Unit_Source_Col (Design_Unit : Iir; Line : Int32) is
begin
- Check_Kind_For_Design_Unit_Source_Col (Design_Unit);
+ pragma Assert (Design_Unit /= Null_Iir);
+ pragma Assert (Has_Design_Unit_Source_Col (Get_Kind (Design_Unit)));
Set_Field12 (Design_Unit, Int32_To_Iir (Line));
end Set_Design_Unit_Source_Col;
- procedure Check_Kind_For_Value (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Integer_Literal
- | Iir_Kind_Physical_Int_Literal =>
- null;
- when others =>
- Failed ("Value", Target);
- end case;
- end Check_Kind_For_Value;
-
function Get_Value (Lit : Iir) return Iir_Int64 is
begin
- Check_Kind_For_Value (Lit);
+ pragma Assert (Lit /= Null_Iir);
+ pragma Assert (Has_Value (Get_Kind (Lit)));
return Get_Int64 (Lit);
end Get_Value;
procedure Set_Value (Lit : Iir; Val : Iir_Int64) is
begin
- Check_Kind_For_Value (Lit);
+ pragma Assert (Lit /= Null_Iir);
+ pragma Assert (Has_Value (Get_Kind (Lit)));
Set_Int64 (Lit, Val);
end Set_Value;
- procedure Check_Kind_For_Enum_Pos (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Enumeration_Literal =>
- null;
- when others =>
- Failed ("Enum_Pos", Target);
- end case;
- end Check_Kind_For_Enum_Pos;
-
function Get_Enum_Pos (Lit : Iir) return Iir_Int32 is
begin
- Check_Kind_For_Enum_Pos (Lit);
+ pragma Assert (Lit /= Null_Iir);
+ pragma Assert (Has_Enum_Pos (Get_Kind (Lit)));
return Iir_Int32'Val (Get_Field10 (Lit));
end Get_Enum_Pos;
procedure Set_Enum_Pos (Lit : Iir; Val : Iir_Int32) is
begin
- Check_Kind_For_Enum_Pos (Lit);
+ pragma Assert (Lit /= Null_Iir);
+ pragma Assert (Has_Enum_Pos (Get_Kind (Lit)));
Set_Field10 (Lit, Iir_Int32'Pos (Val));
end Set_Enum_Pos;
- procedure Check_Kind_For_Physical_Literal (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Unit_Declaration =>
- null;
- when others =>
- Failed ("Physical_Literal", Target);
- end case;
- end Check_Kind_For_Physical_Literal;
-
function Get_Physical_Literal (Unit : Iir) return Iir is
begin
- Check_Kind_For_Physical_Literal (Unit);
+ pragma Assert (Unit /= Null_Iir);
+ pragma Assert (Has_Physical_Literal (Get_Kind (Unit)));
return Get_Field6 (Unit);
end Get_Physical_Literal;
procedure Set_Physical_Literal (Unit : Iir; Lit : Iir) is
begin
- Check_Kind_For_Physical_Literal (Unit);
+ pragma Assert (Unit /= Null_Iir);
+ pragma Assert (Has_Physical_Literal (Get_Kind (Unit)));
Set_Field6 (Unit, Lit);
end Set_Physical_Literal;
- procedure Check_Kind_For_Physical_Unit_Value (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Unit_Declaration =>
- null;
- when others =>
- Failed ("Physical_Unit_Value", Target);
- end case;
- end Check_Kind_For_Physical_Unit_Value;
-
function Get_Physical_Unit_Value (Unit : Iir) return Iir is
begin
- Check_Kind_For_Physical_Unit_Value (Unit);
+ pragma Assert (Unit /= Null_Iir);
+ pragma Assert (Has_Physical_Unit_Value (Get_Kind (Unit)));
return Get_Field7 (Unit);
end Get_Physical_Unit_Value;
procedure Set_Physical_Unit_Value (Unit : Iir; Lit : Iir) is
begin
- Check_Kind_For_Physical_Unit_Value (Unit);
+ pragma Assert (Unit /= Null_Iir);
+ pragma Assert (Has_Physical_Unit_Value (Get_Kind (Unit)));
Set_Field7 (Unit, Lit);
end Set_Physical_Unit_Value;
- procedure Check_Kind_For_Fp_Value (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Floating_Point_Literal
- | Iir_Kind_Physical_Fp_Literal =>
- null;
- when others =>
- Failed ("Fp_Value", Target);
- end case;
- end Check_Kind_For_Fp_Value;
-
function Get_Fp_Value (Lit : Iir) return Iir_Fp64 is
begin
- Check_Kind_For_Fp_Value (Lit);
+ pragma Assert (Lit /= Null_Iir);
+ pragma Assert (Has_Fp_Value (Get_Kind (Lit)));
return Get_Fp64 (Lit);
end Get_Fp_Value;
procedure Set_Fp_Value (Lit : Iir; Val : Iir_Fp64) is
begin
- Check_Kind_For_Fp_Value (Lit);
+ pragma Assert (Lit /= Null_Iir);
+ pragma Assert (Has_Fp_Value (Get_Kind (Lit)));
Set_Fp64 (Lit, Val);
end Set_Fp_Value;
- procedure Check_Kind_For_Enumeration_Decl (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Enumeration_Literal =>
- null;
- when others =>
- Failed ("Enumeration_Decl", Target);
- end case;
- end Check_Kind_For_Enumeration_Decl;
-
function Get_Enumeration_Decl (Target : Iir) return Iir is
begin
- Check_Kind_For_Enumeration_Decl (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Enumeration_Decl (Get_Kind (Target)));
return Get_Field6 (Target);
end Get_Enumeration_Decl;
procedure Set_Enumeration_Decl (Target : Iir; Lit : Iir) is
begin
- Check_Kind_For_Enumeration_Decl (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Enumeration_Decl (Get_Kind (Target)));
Set_Field6 (Target, Lit);
end Set_Enumeration_Decl;
- procedure Check_Kind_For_Simple_Aggregate_List (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Simple_Aggregate =>
- null;
- when others =>
- Failed ("Simple_Aggregate_List", Target);
- end case;
- end Check_Kind_For_Simple_Aggregate_List;
-
function Get_Simple_Aggregate_List (Target : Iir) return Iir_List is
begin
- Check_Kind_For_Simple_Aggregate_List (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Simple_Aggregate_List (Get_Kind (Target)));
return Iir_To_Iir_List (Get_Field3 (Target));
end Get_Simple_Aggregate_List;
procedure Set_Simple_Aggregate_List (Target : Iir; List : Iir_List) is
begin
- Check_Kind_For_Simple_Aggregate_List (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Simple_Aggregate_List (Get_Kind (Target)));
Set_Field3 (Target, Iir_List_To_Iir (List));
end Set_Simple_Aggregate_List;
- procedure Check_Kind_For_Bit_String_Base (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Bit_String_Literal =>
- null;
- when others =>
- Failed ("Bit_String_Base", Target);
- end case;
- end Check_Kind_For_Bit_String_Base;
-
function Get_Bit_String_Base (Lit : Iir) return Base_Type is
begin
- Check_Kind_For_Bit_String_Base (Lit);
+ pragma Assert (Lit /= Null_Iir);
+ pragma Assert (Has_Bit_String_Base (Get_Kind (Lit)));
return Base_Type'Val (Get_Field8 (Lit));
end Get_Bit_String_Base;
procedure Set_Bit_String_Base (Lit : Iir; Base : Base_Type) is
begin
- Check_Kind_For_Bit_String_Base (Lit);
+ pragma Assert (Lit /= Null_Iir);
+ pragma Assert (Has_Bit_String_Base (Get_Kind (Lit)));
Set_Field8 (Lit, Base_Type'Pos (Base));
end Set_Bit_String_Base;
- procedure Check_Kind_For_Bit_String_0 (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Bit_String_Literal =>
- null;
- when others =>
- Failed ("Bit_String_0", Target);
- end case;
- end Check_Kind_For_Bit_String_0;
-
function Get_Bit_String_0 (Lit : Iir) return Iir is
begin
- Check_Kind_For_Bit_String_0 (Lit);
+ pragma Assert (Lit /= Null_Iir);
+ pragma Assert (Has_Bit_String_0 (Get_Kind (Lit)));
return Get_Field6 (Lit);
end Get_Bit_String_0;
procedure Set_Bit_String_0 (Lit : Iir; El : Iir) is
begin
- Check_Kind_For_Bit_String_0 (Lit);
+ pragma Assert (Lit /= Null_Iir);
+ pragma Assert (Has_Bit_String_0 (Get_Kind (Lit)));
Set_Field6 (Lit, El);
end Set_Bit_String_0;
- procedure Check_Kind_For_Bit_String_1 (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Bit_String_Literal =>
- null;
- when others =>
- Failed ("Bit_String_1", Target);
- end case;
- end Check_Kind_For_Bit_String_1;
-
function Get_Bit_String_1 (Lit : Iir) return Iir is
begin
- Check_Kind_For_Bit_String_1 (Lit);
+ pragma Assert (Lit /= Null_Iir);
+ pragma Assert (Has_Bit_String_1 (Get_Kind (Lit)));
return Get_Field7 (Lit);
end Get_Bit_String_1;
procedure Set_Bit_String_1 (Lit : Iir; El : Iir) is
begin
- Check_Kind_For_Bit_String_1 (Lit);
+ pragma Assert (Lit /= Null_Iir);
+ pragma Assert (Has_Bit_String_1 (Get_Kind (Lit)));
Set_Field7 (Lit, El);
end Set_Bit_String_1;
- procedure Check_Kind_For_Literal_Origin (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Integer_Literal
- | Iir_Kind_Floating_Point_Literal
- | Iir_Kind_String_Literal
- | Iir_Kind_Physical_Int_Literal
- | Iir_Kind_Physical_Fp_Literal
- | Iir_Kind_Bit_String_Literal
- | Iir_Kind_Simple_Aggregate
- | Iir_Kind_Overflow_Literal
- | Iir_Kind_Enumeration_Literal =>
- null;
- when others =>
- Failed ("Literal_Origin", Target);
- end case;
- end Check_Kind_For_Literal_Origin;
-
function Get_Literal_Origin (Lit : Iir) return Iir is
begin
- Check_Kind_For_Literal_Origin (Lit);
+ pragma Assert (Lit /= Null_Iir);
+ pragma Assert (Has_Literal_Origin (Get_Kind (Lit)));
return Get_Field2 (Lit);
end Get_Literal_Origin;
procedure Set_Literal_Origin (Lit : Iir; Orig : Iir) is
begin
- Check_Kind_For_Literal_Origin (Lit);
+ pragma Assert (Lit /= Null_Iir);
+ pragma Assert (Has_Literal_Origin (Get_Kind (Lit)));
Set_Field2 (Lit, Orig);
end Set_Literal_Origin;
- procedure Check_Kind_For_Range_Origin (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Range_Expression =>
- null;
- when others =>
- Failed ("Range_Origin", Target);
- end case;
- end Check_Kind_For_Range_Origin;
-
function Get_Range_Origin (Lit : Iir) return Iir is
begin
- Check_Kind_For_Range_Origin (Lit);
+ pragma Assert (Lit /= Null_Iir);
+ pragma Assert (Has_Range_Origin (Get_Kind (Lit)));
return Get_Field4 (Lit);
end Get_Range_Origin;
procedure Set_Range_Origin (Lit : Iir; Orig : Iir) is
begin
- Check_Kind_For_Range_Origin (Lit);
+ pragma Assert (Lit /= Null_Iir);
+ pragma Assert (Has_Range_Origin (Get_Kind (Lit)));
Set_Field4 (Lit, Orig);
end Set_Range_Origin;
- procedure Check_Kind_For_Literal_Subtype (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_String_Literal
- | Iir_Kind_Bit_String_Literal
- | Iir_Kind_Simple_Aggregate
- | Iir_Kind_Aggregate =>
- null;
- when others =>
- Failed ("Literal_Subtype", Target);
- end case;
- end Check_Kind_For_Literal_Subtype;
-
function Get_Literal_Subtype (Lit : Iir) return Iir is
begin
- Check_Kind_For_Literal_Subtype (Lit);
+ pragma Assert (Lit /= Null_Iir);
+ pragma Assert (Has_Literal_Subtype (Get_Kind (Lit)));
return Get_Field5 (Lit);
end Get_Literal_Subtype;
procedure Set_Literal_Subtype (Lit : Iir; Atype : Iir) is
begin
- Check_Kind_For_Literal_Subtype (Lit);
+ pragma Assert (Lit /= Null_Iir);
+ pragma Assert (Has_Literal_Subtype (Get_Kind (Lit)));
Set_Field5 (Lit, Atype);
end Set_Literal_Subtype;
- procedure Check_Kind_For_Entity_Class (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Entity_Class
- | Iir_Kind_Attribute_Specification =>
- null;
- when others =>
- Failed ("Entity_Class", Target);
- end case;
- end Check_Kind_For_Entity_Class;
-
function Get_Entity_Class (Target : Iir) return Token_Type is
begin
- Check_Kind_For_Entity_Class (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Entity_Class (Get_Kind (Target)));
return Iir_To_Token_Type (Get_Field3 (Target));
end Get_Entity_Class;
procedure Set_Entity_Class (Target : Iir; Kind : Token_Type) is
begin
- Check_Kind_For_Entity_Class (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Entity_Class (Get_Kind (Target)));
Set_Field3 (Target, Token_Type_To_Iir (Kind));
end Set_Entity_Class;
- procedure Check_Kind_For_Entity_Name_List (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Attribute_Specification =>
- null;
- when others =>
- Failed ("Entity_Name_List", Target);
- end case;
- end Check_Kind_For_Entity_Name_List;
-
function Get_Entity_Name_List (Target : Iir) return Iir_List is
begin
- Check_Kind_For_Entity_Name_List (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Entity_Name_List (Get_Kind (Target)));
return Iir_To_Iir_List (Get_Field1 (Target));
end Get_Entity_Name_List;
procedure Set_Entity_Name_List (Target : Iir; Names : Iir_List) is
begin
- Check_Kind_For_Entity_Name_List (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Entity_Name_List (Get_Kind (Target)));
Set_Field1 (Target, Iir_List_To_Iir (Names));
end Set_Entity_Name_List;
- procedure Check_Kind_For_Attribute_Designator (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Attribute_Specification =>
- null;
- when others =>
- Failed ("Attribute_Designator", Target);
- end case;
- end Check_Kind_For_Attribute_Designator;
-
function Get_Attribute_Designator (Target : Iir) return Iir is
begin
- Check_Kind_For_Attribute_Designator (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Attribute_Designator (Get_Kind (Target)));
return Get_Field6 (Target);
end Get_Attribute_Designator;
procedure Set_Attribute_Designator (Target : Iir; Designator : Iir) is
begin
- Check_Kind_For_Attribute_Designator (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Attribute_Designator (Get_Kind (Target)));
Set_Field6 (Target, Designator);
end Set_Attribute_Designator;
- procedure Check_Kind_For_Attribute_Specification_Chain (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Attribute_Specification =>
- null;
- when others =>
- Failed ("Attribute_Specification_Chain", Target);
- end case;
- end Check_Kind_For_Attribute_Specification_Chain;
-
function Get_Attribute_Specification_Chain (Target : Iir) return Iir is
begin
- Check_Kind_For_Attribute_Specification_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Attribute_Specification_Chain (Get_Kind (Target)));
return Get_Field7 (Target);
end Get_Attribute_Specification_Chain;
procedure Set_Attribute_Specification_Chain (Target : Iir; Chain : Iir) is
begin
- Check_Kind_For_Attribute_Specification_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Attribute_Specification_Chain (Get_Kind (Target)));
Set_Field7 (Target, Chain);
end Set_Attribute_Specification_Chain;
- procedure Check_Kind_For_Attribute_Specification (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Attribute_Value =>
- null;
- when others =>
- Failed ("Attribute_Specification", Target);
- end case;
- end Check_Kind_For_Attribute_Specification;
-
function Get_Attribute_Specification (Val : Iir) return Iir is
begin
- Check_Kind_For_Attribute_Specification (Val);
+ pragma Assert (Val /= Null_Iir);
+ pragma Assert (Has_Attribute_Specification (Get_Kind (Val)));
return Get_Field4 (Val);
end Get_Attribute_Specification;
procedure Set_Attribute_Specification (Val : Iir; Attr : Iir) is
begin
- Check_Kind_For_Attribute_Specification (Val);
+ pragma Assert (Val /= Null_Iir);
+ pragma Assert (Has_Attribute_Specification (Get_Kind (Val)));
Set_Field4 (Val, Attr);
end Set_Attribute_Specification;
- procedure Check_Kind_For_Signal_List (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Disconnection_Specification =>
- null;
- when others =>
- Failed ("Signal_List", Target);
- end case;
- end Check_Kind_For_Signal_List;
-
function Get_Signal_List (Target : Iir) return Iir_List is
begin
- Check_Kind_For_Signal_List (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Signal_List (Get_Kind (Target)));
return Iir_To_Iir_List (Get_Field3 (Target));
end Get_Signal_List;
procedure Set_Signal_List (Target : Iir; List : Iir_List) is
begin
- Check_Kind_For_Signal_List (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Signal_List (Get_Kind (Target)));
Set_Field3 (Target, Iir_List_To_Iir (List));
end Set_Signal_List;
- procedure Check_Kind_For_Designated_Entity (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Attribute_Value =>
- null;
- when others =>
- Failed ("Designated_Entity", Target);
- end case;
- end Check_Kind_For_Designated_Entity;
-
function Get_Designated_Entity (Val : Iir_Attribute_Value) return Iir is
begin
- Check_Kind_For_Designated_Entity (Val);
+ pragma Assert (Val /= Null_Iir);
+ pragma Assert (Has_Designated_Entity (Get_Kind (Val)));
return Get_Field3 (Val);
end Get_Designated_Entity;
procedure Set_Designated_Entity (Val : Iir_Attribute_Value; Entity : Iir)
- is
+ is
begin
- Check_Kind_For_Designated_Entity (Val);
+ pragma Assert (Val /= Null_Iir);
+ pragma Assert (Has_Designated_Entity (Get_Kind (Val)));
Set_Field3 (Val, Entity);
end Set_Designated_Entity;
- procedure Check_Kind_For_Formal (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Association_Element_By_Expression
- | Iir_Kind_Association_Element_By_Individual
- | Iir_Kind_Association_Element_Open =>
- null;
- when others =>
- Failed ("Formal", Target);
- end case;
- end Check_Kind_For_Formal;
-
function Get_Formal (Target : Iir) return Iir is
begin
- Check_Kind_For_Formal (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Formal (Get_Kind (Target)));
return Get_Field1 (Target);
end Get_Formal;
procedure Set_Formal (Target : Iir; Formal : Iir) is
begin
- Check_Kind_For_Formal (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Formal (Get_Kind (Target)));
Set_Field1 (Target, Formal);
end Set_Formal;
- procedure Check_Kind_For_Actual (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Association_Element_By_Expression =>
- null;
- when others =>
- Failed ("Actual", Target);
- end case;
- end Check_Kind_For_Actual;
-
function Get_Actual (Target : Iir) return Iir is
begin
- Check_Kind_For_Actual (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Actual (Get_Kind (Target)));
return Get_Field3 (Target);
end Get_Actual;
procedure Set_Actual (Target : Iir; Actual : Iir) is
begin
- Check_Kind_For_Actual (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Actual (Get_Kind (Target)));
Set_Field3 (Target, Actual);
end Set_Actual;
- procedure Check_Kind_For_In_Conversion (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Association_Element_By_Expression =>
- null;
- when others =>
- Failed ("In_Conversion", Target);
- end case;
- end Check_Kind_For_In_Conversion;
-
function Get_In_Conversion (Target : Iir) return Iir is
begin
- Check_Kind_For_In_Conversion (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_In_Conversion (Get_Kind (Target)));
return Get_Field4 (Target);
end Get_In_Conversion;
procedure Set_In_Conversion (Target : Iir; Conv : Iir) is
begin
- Check_Kind_For_In_Conversion (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_In_Conversion (Get_Kind (Target)));
Set_Field4 (Target, Conv);
end Set_In_Conversion;
- procedure Check_Kind_For_Out_Conversion (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Association_Element_By_Expression =>
- null;
- when others =>
- Failed ("Out_Conversion", Target);
- end case;
- end Check_Kind_For_Out_Conversion;
-
function Get_Out_Conversion (Target : Iir) return Iir is
begin
- Check_Kind_For_Out_Conversion (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Out_Conversion (Get_Kind (Target)));
return Get_Field5 (Target);
end Get_Out_Conversion;
procedure Set_Out_Conversion (Target : Iir; Conv : Iir) is
begin
- Check_Kind_For_Out_Conversion (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Out_Conversion (Get_Kind (Target)));
Set_Field5 (Target, Conv);
end Set_Out_Conversion;
- procedure Check_Kind_For_Whole_Association_Flag (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Association_Element_By_Expression
- | Iir_Kind_Association_Element_By_Individual
- | Iir_Kind_Association_Element_Open =>
- null;
- when others =>
- Failed ("Whole_Association_Flag", Target);
- end case;
- end Check_Kind_For_Whole_Association_Flag;
-
function Get_Whole_Association_Flag (Target : Iir) return Boolean is
begin
- Check_Kind_For_Whole_Association_Flag (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Whole_Association_Flag (Get_Kind (Target)));
return Get_Flag1 (Target);
end Get_Whole_Association_Flag;
procedure Set_Whole_Association_Flag (Target : Iir; Flag : Boolean) is
begin
- Check_Kind_For_Whole_Association_Flag (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Whole_Association_Flag (Get_Kind (Target)));
Set_Flag1 (Target, Flag);
end Set_Whole_Association_Flag;
- procedure Check_Kind_For_Collapse_Signal_Flag (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Association_Element_By_Expression
- | Iir_Kind_Association_Element_By_Individual
- | Iir_Kind_Association_Element_Open =>
- null;
- when others =>
- Failed ("Collapse_Signal_Flag", Target);
- end case;
- end Check_Kind_For_Collapse_Signal_Flag;
-
function Get_Collapse_Signal_Flag (Target : Iir) return Boolean is
begin
- Check_Kind_For_Collapse_Signal_Flag (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Collapse_Signal_Flag (Get_Kind (Target)));
return Get_Flag2 (Target);
end Get_Collapse_Signal_Flag;
procedure Set_Collapse_Signal_Flag (Target : Iir; Flag : Boolean) is
begin
- Check_Kind_For_Collapse_Signal_Flag (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Collapse_Signal_Flag (Get_Kind (Target)));
Set_Flag2 (Target, Flag);
end Set_Collapse_Signal_Flag;
- procedure Check_Kind_For_Artificial_Flag (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Association_Element_Open =>
- null;
- when others =>
- Failed ("Artificial_Flag", Target);
- end case;
- end Check_Kind_For_Artificial_Flag;
-
function Get_Artificial_Flag (Target : Iir) return Boolean is
begin
- Check_Kind_For_Artificial_Flag (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Artificial_Flag (Get_Kind (Target)));
return Get_Flag3 (Target);
end Get_Artificial_Flag;
procedure Set_Artificial_Flag (Target : Iir; Flag : Boolean) is
begin
- Check_Kind_For_Artificial_Flag (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Artificial_Flag (Get_Kind (Target)));
Set_Flag3 (Target, Flag);
end Set_Artificial_Flag;
- procedure Check_Kind_For_Open_Flag (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Signal_Interface_Declaration =>
- null;
- when others =>
- Failed ("Open_Flag", Target);
- end case;
- end Check_Kind_For_Open_Flag;
-
function Get_Open_Flag (Target : Iir) return Boolean is
begin
- Check_Kind_For_Open_Flag (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Open_Flag (Get_Kind (Target)));
return Get_Flag3 (Target);
end Get_Open_Flag;
procedure Set_Open_Flag (Target : Iir; Flag : Boolean) is
begin
- Check_Kind_For_Open_Flag (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Open_Flag (Get_Kind (Target)));
Set_Flag3 (Target, Flag);
end Set_Open_Flag;
- procedure Check_Kind_For_After_Drivers_Flag (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Object_Alias_Declaration
- | Iir_Kind_Signal_Declaration
- | Iir_Kind_Constant_Interface_Declaration
- | Iir_Kind_Variable_Interface_Declaration
- | Iir_Kind_Signal_Interface_Declaration
- | Iir_Kind_File_Interface_Declaration =>
- null;
- when others =>
- Failed ("After_Drivers_Flag", Target);
- end case;
- end Check_Kind_For_After_Drivers_Flag;
-
function Get_After_Drivers_Flag (Target : Iir) return Boolean is
begin
- Check_Kind_For_After_Drivers_Flag (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_After_Drivers_Flag (Get_Kind (Target)));
return Get_Flag5 (Target);
end Get_After_Drivers_Flag;
procedure Set_After_Drivers_Flag (Target : Iir; Flag : Boolean) is
begin
- Check_Kind_For_After_Drivers_Flag (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_After_Drivers_Flag (Get_Kind (Target)));
Set_Flag5 (Target, Flag);
end Set_After_Drivers_Flag;
- procedure Check_Kind_For_We_Value (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Waveform_Element =>
- null;
- when others =>
- Failed ("We_Value", Target);
- end case;
- end Check_Kind_For_We_Value;
-
function Get_We_Value (We : Iir_Waveform_Element) return Iir is
begin
- Check_Kind_For_We_Value (We);
+ pragma Assert (We /= Null_Iir);
+ pragma Assert (Has_We_Value (Get_Kind (We)));
return Get_Field1 (We);
end Get_We_Value;
procedure Set_We_Value (We : Iir_Waveform_Element; An_Iir : Iir) is
begin
- Check_Kind_For_We_Value (We);
+ pragma Assert (We /= Null_Iir);
+ pragma Assert (Has_We_Value (Get_Kind (We)));
Set_Field1 (We, An_Iir);
end Set_We_Value;
- procedure Check_Kind_For_Time (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Waveform_Element =>
- null;
- when others =>
- Failed ("Time", Target);
- end case;
- end Check_Kind_For_Time;
-
function Get_Time (We : Iir_Waveform_Element) return Iir is
begin
- Check_Kind_For_Time (We);
+ pragma Assert (We /= Null_Iir);
+ pragma Assert (Has_Time (Get_Kind (We)));
return Get_Field3 (We);
end Get_Time;
procedure Set_Time (We : Iir_Waveform_Element; An_Iir : Iir) is
begin
- Check_Kind_For_Time (We);
+ pragma Assert (We /= Null_Iir);
+ pragma Assert (Has_Time (Get_Kind (We)));
Set_Field3 (We, An_Iir);
end Set_Time;
- procedure Check_Kind_For_Associated_Expr (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Choice_By_Others
- | Iir_Kind_Choice_By_Expression
- | Iir_Kind_Choice_By_Range
- | Iir_Kind_Choice_By_None
- | Iir_Kind_Choice_By_Name =>
- null;
- when others =>
- Failed ("Associated_Expr", Target);
- end case;
- end Check_Kind_For_Associated_Expr;
-
function Get_Associated_Expr (Target : Iir) return Iir is
begin
- Check_Kind_For_Associated_Expr (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Associated_Expr (Get_Kind (Target)));
return Get_Field3 (Target);
end Get_Associated_Expr;
procedure Set_Associated_Expr (Target : Iir; Associated : Iir) is
begin
- Check_Kind_For_Associated_Expr (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Associated_Expr (Get_Kind (Target)));
Set_Field3 (Target, Associated);
end Set_Associated_Expr;
- procedure Check_Kind_For_Associated_Chain (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Choice_By_Others
- | Iir_Kind_Choice_By_Expression
- | Iir_Kind_Choice_By_Range
- | Iir_Kind_Choice_By_None
- | Iir_Kind_Choice_By_Name =>
- null;
- when others =>
- Failed ("Associated_Chain", Target);
- end case;
- end Check_Kind_For_Associated_Chain;
-
function Get_Associated_Chain (Target : Iir) return Iir is
begin
- Check_Kind_For_Associated_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Associated_Chain (Get_Kind (Target)));
return Get_Field4 (Target);
end Get_Associated_Chain;
procedure Set_Associated_Chain (Target : Iir; Associated : Iir) is
begin
- Check_Kind_For_Associated_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Associated_Chain (Get_Kind (Target)));
Set_Field4 (Target, Associated);
end Set_Associated_Chain;
- procedure Check_Kind_For_Choice_Name (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Choice_By_Name =>
- null;
- when others =>
- Failed ("Choice_Name", Target);
- end case;
- end Check_Kind_For_Choice_Name;
-
function Get_Choice_Name (Choice : Iir) return Iir is
begin
- Check_Kind_For_Choice_Name (Choice);
+ pragma Assert (Choice /= Null_Iir);
+ pragma Assert (Has_Choice_Name (Get_Kind (Choice)));
return Get_Field5 (Choice);
end Get_Choice_Name;
procedure Set_Choice_Name (Choice : Iir; Name : Iir) is
begin
- Check_Kind_For_Choice_Name (Choice);
+ pragma Assert (Choice /= Null_Iir);
+ pragma Assert (Has_Choice_Name (Get_Kind (Choice)));
Set_Field5 (Choice, Name);
end Set_Choice_Name;
- procedure Check_Kind_For_Choice_Expression (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Choice_By_Expression =>
- null;
- when others =>
- Failed ("Choice_Expression", Target);
- end case;
- end Check_Kind_For_Choice_Expression;
-
function Get_Choice_Expression (Choice : Iir) return Iir is
begin
- Check_Kind_For_Choice_Expression (Choice);
+ pragma Assert (Choice /= Null_Iir);
+ pragma Assert (Has_Choice_Expression (Get_Kind (Choice)));
return Get_Field5 (Choice);
end Get_Choice_Expression;
procedure Set_Choice_Expression (Choice : Iir; Name : Iir) is
begin
- Check_Kind_For_Choice_Expression (Choice);
+ pragma Assert (Choice /= Null_Iir);
+ pragma Assert (Has_Choice_Expression (Get_Kind (Choice)));
Set_Field5 (Choice, Name);
end Set_Choice_Expression;
- procedure Check_Kind_For_Choice_Range (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Choice_By_Range =>
- null;
- when others =>
- Failed ("Choice_Range", Target);
- end case;
- end Check_Kind_For_Choice_Range;
-
function Get_Choice_Range (Choice : Iir) return Iir is
begin
- Check_Kind_For_Choice_Range (Choice);
+ pragma Assert (Choice /= Null_Iir);
+ pragma Assert (Has_Choice_Range (Get_Kind (Choice)));
return Get_Field5 (Choice);
end Get_Choice_Range;
procedure Set_Choice_Range (Choice : Iir; Name : Iir) is
begin
- Check_Kind_For_Choice_Range (Choice);
+ pragma Assert (Choice /= Null_Iir);
+ pragma Assert (Has_Choice_Range (Get_Kind (Choice)));
Set_Field5 (Choice, Name);
end Set_Choice_Range;
- procedure Check_Kind_For_Same_Alternative_Flag (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Choice_By_Others
- | Iir_Kind_Choice_By_Expression
- | Iir_Kind_Choice_By_Range
- | Iir_Kind_Choice_By_None
- | Iir_Kind_Choice_By_Name =>
- null;
- when others =>
- Failed ("Same_Alternative_Flag", Target);
- end case;
- end Check_Kind_For_Same_Alternative_Flag;
-
function Get_Same_Alternative_Flag (Target : Iir) return Boolean is
begin
- Check_Kind_For_Same_Alternative_Flag (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Same_Alternative_Flag (Get_Kind (Target)));
return Get_Flag1 (Target);
end Get_Same_Alternative_Flag;
procedure Set_Same_Alternative_Flag (Target : Iir; Val : Boolean) is
begin
- Check_Kind_For_Same_Alternative_Flag (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Same_Alternative_Flag (Get_Kind (Target)));
Set_Flag1 (Target, Val);
end Set_Same_Alternative_Flag;
- procedure Check_Kind_For_Architecture (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Entity_Aspect_Entity =>
- null;
- when others =>
- Failed ("Architecture", Target);
- end case;
- end Check_Kind_For_Architecture;
-
function Get_Architecture (Target : Iir_Entity_Aspect_Entity) return Iir is
begin
- Check_Kind_For_Architecture (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Architecture (Get_Kind (Target)));
return Get_Field3 (Target);
end Get_Architecture;
procedure Set_Architecture (Target : Iir_Entity_Aspect_Entity; Arch : Iir)
- is
+ is
begin
- Check_Kind_For_Architecture (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Architecture (Get_Kind (Target)));
Set_Field3 (Target, Arch);
end Set_Architecture;
- procedure Check_Kind_For_Block_Specification (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Block_Configuration =>
- null;
- when others =>
- Failed ("Block_Specification", Target);
- end case;
- end Check_Kind_For_Block_Specification;
-
function Get_Block_Specification (Target : Iir) return Iir is
begin
- Check_Kind_For_Block_Specification (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Block_Specification (Get_Kind (Target)));
return Get_Field5 (Target);
end Get_Block_Specification;
procedure Set_Block_Specification (Target : Iir; Block : Iir) is
begin
- Check_Kind_For_Block_Specification (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Block_Specification (Get_Kind (Target)));
Set_Field5 (Target, Block);
end Set_Block_Specification;
- procedure Check_Kind_For_Prev_Block_Configuration (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Block_Configuration =>
- null;
- when others =>
- Failed ("Prev_Block_Configuration", Target);
- end case;
- end Check_Kind_For_Prev_Block_Configuration;
-
function Get_Prev_Block_Configuration (Target : Iir) return Iir is
begin
- Check_Kind_For_Prev_Block_Configuration (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Prev_Block_Configuration (Get_Kind (Target)));
return Get_Field4 (Target);
end Get_Prev_Block_Configuration;
procedure Set_Prev_Block_Configuration (Target : Iir; Block : Iir) is
begin
- Check_Kind_For_Prev_Block_Configuration (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Prev_Block_Configuration (Get_Kind (Target)));
Set_Field4 (Target, Block);
end Set_Prev_Block_Configuration;
- procedure Check_Kind_For_Configuration_Item_Chain (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Block_Configuration =>
- null;
- when others =>
- Failed ("Configuration_Item_Chain", Target);
- end case;
- end Check_Kind_For_Configuration_Item_Chain;
-
function Get_Configuration_Item_Chain (Target : Iir) return Iir is
begin
- Check_Kind_For_Configuration_Item_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Configuration_Item_Chain (Get_Kind (Target)));
return Get_Field3 (Target);
end Get_Configuration_Item_Chain;
procedure Set_Configuration_Item_Chain (Target : Iir; Chain : Iir) is
begin
- Check_Kind_For_Configuration_Item_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Configuration_Item_Chain (Get_Kind (Target)));
Set_Field3 (Target, Chain);
end Set_Configuration_Item_Chain;
- procedure Check_Kind_For_Attribute_Value_Chain (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Type_Declaration
- | Iir_Kind_Subtype_Declaration
- | Iir_Kind_Nature_Declaration
- | Iir_Kind_Subnature_Declaration
- | Iir_Kind_Package_Declaration
- | Iir_Kind_Package_Instantiation_Declaration
- | Iir_Kind_Configuration_Declaration
- | Iir_Kind_Entity_Declaration
- | Iir_Kind_Architecture_Body
- | Iir_Kind_Unit_Declaration
- | Iir_Kind_Component_Declaration
- | Iir_Kind_Group_Declaration
- | Iir_Kind_Free_Quantity_Declaration
- | Iir_Kind_Across_Quantity_Declaration
- | Iir_Kind_Through_Quantity_Declaration
- | Iir_Kind_Enumeration_Literal
- | Iir_Kind_Function_Declaration
- | Iir_Kind_Implicit_Function_Declaration
- | Iir_Kind_Implicit_Procedure_Declaration
- | Iir_Kind_Procedure_Declaration
- | Iir_Kind_File_Declaration
- | Iir_Kind_Guard_Signal_Declaration
- | Iir_Kind_Signal_Declaration
- | Iir_Kind_Variable_Declaration
- | Iir_Kind_Constant_Declaration
- | Iir_Kind_Iterator_Declaration
- | Iir_Kind_Constant_Interface_Declaration
- | Iir_Kind_Variable_Interface_Declaration
- | Iir_Kind_Signal_Interface_Declaration
- | Iir_Kind_File_Interface_Declaration
- | Iir_Kind_Sensitized_Process_Statement
- | Iir_Kind_Process_Statement
- | Iir_Kind_Concurrent_Conditional_Signal_Assignment
- | Iir_Kind_Concurrent_Selected_Signal_Assignment
- | Iir_Kind_Concurrent_Assertion_Statement
- | Iir_Kind_Psl_Assert_Statement
- | Iir_Kind_Psl_Cover_Statement
- | Iir_Kind_Concurrent_Procedure_Call_Statement
- | Iir_Kind_Block_Statement
- | Iir_Kind_Generate_Statement
- | Iir_Kind_Component_Instantiation_Statement
- | Iir_Kind_Simple_Simultaneous_Statement
- | Iir_Kind_Signal_Assignment_Statement
- | Iir_Kind_Null_Statement
- | Iir_Kind_Assertion_Statement
- | Iir_Kind_Report_Statement
- | Iir_Kind_Wait_Statement
- | Iir_Kind_Variable_Assignment_Statement
- | Iir_Kind_Return_Statement
- | Iir_Kind_For_Loop_Statement
- | Iir_Kind_While_Loop_Statement
- | Iir_Kind_Next_Statement
- | Iir_Kind_Exit_Statement
- | Iir_Kind_Case_Statement
- | Iir_Kind_Procedure_Call_Statement
- | Iir_Kind_If_Statement =>
- null;
- when others =>
- Failed ("Attribute_Value_Chain", Target);
- end case;
- end Check_Kind_For_Attribute_Value_Chain;
-
function Get_Attribute_Value_Chain (Target : Iir) return Iir is
begin
- Check_Kind_For_Attribute_Value_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Attribute_Value_Chain (Get_Kind (Target)));
return Get_Field4 (Target);
end Get_Attribute_Value_Chain;
procedure Set_Attribute_Value_Chain (Target : Iir; Chain : Iir) is
begin
- Check_Kind_For_Attribute_Value_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Attribute_Value_Chain (Get_Kind (Target)));
Set_Field4 (Target, Chain);
end Set_Attribute_Value_Chain;
- procedure Check_Kind_For_Spec_Chain (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Attribute_Value =>
- null;
- when others =>
- Failed ("Spec_Chain", Target);
- end case;
- end Check_Kind_For_Spec_Chain;
-
function Get_Spec_Chain (Target : Iir) return Iir is
begin
- Check_Kind_For_Spec_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Spec_Chain (Get_Kind (Target)));
return Get_Field0 (Target);
end Get_Spec_Chain;
procedure Set_Spec_Chain (Target : Iir; Chain : Iir) is
begin
- Check_Kind_For_Spec_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Spec_Chain (Get_Kind (Target)));
Set_Field0 (Target, Chain);
end Set_Spec_Chain;
- procedure Check_Kind_For_Attribute_Value_Spec_Chain (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Attribute_Specification =>
- null;
- when others =>
- Failed ("Attribute_Value_Spec_Chain", Target);
- end case;
- end Check_Kind_For_Attribute_Value_Spec_Chain;
-
function Get_Attribute_Value_Spec_Chain (Target : Iir) return Iir is
begin
- Check_Kind_For_Attribute_Value_Spec_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Attribute_Value_Spec_Chain (Get_Kind (Target)));
return Get_Field4 (Target);
end Get_Attribute_Value_Spec_Chain;
procedure Set_Attribute_Value_Spec_Chain (Target : Iir; Chain : Iir) is
begin
- Check_Kind_For_Attribute_Value_Spec_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Attribute_Value_Spec_Chain (Get_Kind (Target)));
Set_Field4 (Target, Chain);
end Set_Attribute_Value_Spec_Chain;
- procedure Check_Kind_For_Entity_Name (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Entity_Aspect_Entity
- | Iir_Kind_Configuration_Declaration
- | Iir_Kind_Architecture_Body =>
- null;
- when others =>
- Failed ("Entity_Name", Target);
- end case;
- end Check_Kind_For_Entity_Name;
-
function Get_Entity_Name (Arch : Iir) return Iir is
begin
- Check_Kind_For_Entity_Name (Arch);
+ pragma Assert (Arch /= Null_Iir);
+ pragma Assert (Has_Entity_Name (Get_Kind (Arch)));
return Get_Field2 (Arch);
end Get_Entity_Name;
procedure Set_Entity_Name (Arch : Iir; Entity : Iir) is
begin
- Check_Kind_For_Entity_Name (Arch);
+ pragma Assert (Arch /= Null_Iir);
+ pragma Assert (Has_Entity_Name (Get_Kind (Arch)));
Set_Field2 (Arch, Entity);
end Set_Entity_Name;
- procedure Check_Kind_For_Package (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Package_Body =>
- null;
- when others =>
- Failed ("Package", Target);
- end case;
- end Check_Kind_For_Package;
-
function Get_Package (Package_Body : Iir) return Iir is
begin
- Check_Kind_For_Package (Package_Body);
+ pragma Assert (Package_Body /= Null_Iir);
+ pragma Assert (Has_Package (Get_Kind (Package_Body)));
return Get_Field4 (Package_Body);
end Get_Package;
procedure Set_Package (Package_Body : Iir; Decl : Iir) is
begin
- Check_Kind_For_Package (Package_Body);
+ pragma Assert (Package_Body /= Null_Iir);
+ pragma Assert (Has_Package (Get_Kind (Package_Body)));
Set_Field4 (Package_Body, Decl);
end Set_Package;
- procedure Check_Kind_For_Package_Body (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Package_Declaration
- | Iir_Kind_Package_Instantiation_Declaration =>
- null;
- when others =>
- Failed ("Package_Body", Target);
- end case;
- end Check_Kind_For_Package_Body;
-
function Get_Package_Body (Pkg : Iir) return Iir is
begin
- Check_Kind_For_Package_Body (Pkg);
+ pragma Assert (Pkg /= Null_Iir);
+ pragma Assert (Has_Package_Body (Get_Kind (Pkg)));
return Get_Field2 (Pkg);
end Get_Package_Body;
procedure Set_Package_Body (Pkg : Iir; Decl : Iir) is
begin
- Check_Kind_For_Package_Body (Pkg);
+ pragma Assert (Pkg /= Null_Iir);
+ pragma Assert (Has_Package_Body (Get_Kind (Pkg)));
Set_Field2 (Pkg, Decl);
end Set_Package_Body;
- procedure Check_Kind_For_Need_Body (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Package_Declaration =>
- null;
- when others =>
- Failed ("Need_Body", Target);
- end case;
- end Check_Kind_For_Need_Body;
-
function Get_Need_Body (Decl : Iir_Package_Declaration) return Boolean is
begin
- Check_Kind_For_Need_Body (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Need_Body (Get_Kind (Decl)));
return Get_Flag1 (Decl);
end Get_Need_Body;
procedure Set_Need_Body (Decl : Iir_Package_Declaration; Flag : Boolean) is
begin
- Check_Kind_For_Need_Body (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Need_Body (Get_Kind (Decl)));
Set_Flag1 (Decl, Flag);
end Set_Need_Body;
- procedure Check_Kind_For_Block_Configuration (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Component_Configuration
- | Iir_Kind_Configuration_Declaration =>
- null;
- when others =>
- Failed ("Block_Configuration", Target);
- end case;
- end Check_Kind_For_Block_Configuration;
-
function Get_Block_Configuration (Target : Iir) return Iir is
begin
- Check_Kind_For_Block_Configuration (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Block_Configuration (Get_Kind (Target)));
return Get_Field5 (Target);
end Get_Block_Configuration;
procedure Set_Block_Configuration (Target : Iir; Block : Iir) is
begin
- Check_Kind_For_Block_Configuration (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Block_Configuration (Get_Kind (Target)));
Set_Field5 (Target, Block);
end Set_Block_Configuration;
- procedure Check_Kind_For_Concurrent_Statement_Chain (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Entity_Declaration
- | Iir_Kind_Architecture_Body
- | Iir_Kind_Block_Statement
- | Iir_Kind_Generate_Statement =>
- null;
- when others =>
- Failed ("Concurrent_Statement_Chain", Target);
- end case;
- end Check_Kind_For_Concurrent_Statement_Chain;
-
function Get_Concurrent_Statement_Chain (Target : Iir) return Iir is
begin
- Check_Kind_For_Concurrent_Statement_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Concurrent_Statement_Chain (Get_Kind (Target)));
return Get_Field5 (Target);
end Get_Concurrent_Statement_Chain;
procedure Set_Concurrent_Statement_Chain (Target : Iir; First : Iir) is
begin
- Check_Kind_For_Concurrent_Statement_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Concurrent_Statement_Chain (Get_Kind (Target)));
Set_Field5 (Target, First);
end Set_Concurrent_Statement_Chain;
- procedure Check_Kind_For_Chain (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Design_File
- | Iir_Kind_Design_Unit
- | Iir_Kind_Library_Clause
- | Iir_Kind_Use_Clause
- | Iir_Kind_Waveform_Element
- | Iir_Kind_Conditional_Waveform
- | Iir_Kind_Association_Element_By_Expression
- | Iir_Kind_Association_Element_By_Individual
- | Iir_Kind_Association_Element_Open
- | Iir_Kind_Choice_By_Others
- | Iir_Kind_Choice_By_Expression
- | Iir_Kind_Choice_By_Range
- | Iir_Kind_Choice_By_None
- | Iir_Kind_Choice_By_Name
- | Iir_Kind_Block_Configuration
- | Iir_Kind_Component_Configuration
- | Iir_Kind_Entity_Class
- | Iir_Kind_Attribute_Value
- | Iir_Kind_Attribute_Specification
- | Iir_Kind_Disconnection_Specification
- | Iir_Kind_Configuration_Specification
- | Iir_Kind_Protected_Type_Body
- | Iir_Kind_Type_Declaration
- | Iir_Kind_Anonymous_Type_Declaration
- | Iir_Kind_Subtype_Declaration
- | Iir_Kind_Nature_Declaration
- | Iir_Kind_Subnature_Declaration
- | Iir_Kind_Unit_Declaration
- | Iir_Kind_Library_Declaration
- | Iir_Kind_Component_Declaration
- | Iir_Kind_Attribute_Declaration
- | Iir_Kind_Group_Template_Declaration
- | Iir_Kind_Group_Declaration
- | Iir_Kind_Non_Object_Alias_Declaration
- | Iir_Kind_Psl_Declaration
- | Iir_Kind_Terminal_Declaration
- | Iir_Kind_Free_Quantity_Declaration
- | Iir_Kind_Across_Quantity_Declaration
- | Iir_Kind_Through_Quantity_Declaration
- | Iir_Kind_Function_Declaration
- | Iir_Kind_Implicit_Function_Declaration
- | Iir_Kind_Implicit_Procedure_Declaration
- | Iir_Kind_Procedure_Declaration
- | Iir_Kind_Function_Body
- | Iir_Kind_Procedure_Body
- | Iir_Kind_Object_Alias_Declaration
- | Iir_Kind_File_Declaration
- | Iir_Kind_Signal_Declaration
- | Iir_Kind_Variable_Declaration
- | Iir_Kind_Constant_Declaration
- | Iir_Kind_Iterator_Declaration
- | Iir_Kind_Constant_Interface_Declaration
- | Iir_Kind_Variable_Interface_Declaration
- | Iir_Kind_Signal_Interface_Declaration
- | Iir_Kind_File_Interface_Declaration
- | Iir_Kind_Sensitized_Process_Statement
- | Iir_Kind_Process_Statement
- | Iir_Kind_Concurrent_Conditional_Signal_Assignment
- | Iir_Kind_Concurrent_Selected_Signal_Assignment
- | Iir_Kind_Concurrent_Assertion_Statement
- | Iir_Kind_Psl_Default_Clock
- | Iir_Kind_Psl_Assert_Statement
- | Iir_Kind_Psl_Cover_Statement
- | Iir_Kind_Concurrent_Procedure_Call_Statement
- | Iir_Kind_Block_Statement
- | Iir_Kind_Generate_Statement
- | Iir_Kind_Component_Instantiation_Statement
- | Iir_Kind_Simple_Simultaneous_Statement
- | Iir_Kind_Signal_Assignment_Statement
- | Iir_Kind_Null_Statement
- | Iir_Kind_Assertion_Statement
- | Iir_Kind_Report_Statement
- | Iir_Kind_Wait_Statement
- | Iir_Kind_Variable_Assignment_Statement
- | Iir_Kind_Return_Statement
- | Iir_Kind_For_Loop_Statement
- | Iir_Kind_While_Loop_Statement
- | Iir_Kind_Next_Statement
- | Iir_Kind_Exit_Statement
- | Iir_Kind_Case_Statement
- | Iir_Kind_Procedure_Call_Statement
- | Iir_Kind_If_Statement
- | Iir_Kind_Delayed_Attribute
- | Iir_Kind_Stable_Attribute
- | Iir_Kind_Quiet_Attribute
- | Iir_Kind_Transaction_Attribute =>
- null;
- when others =>
- Failed ("Chain", Target);
- end case;
- end Check_Kind_For_Chain;
-
function Get_Chain (Target : Iir) return Iir is
begin
- Check_Kind_For_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Chain (Get_Kind (Target)));
return Get_Field2 (Target);
end Get_Chain;
procedure Set_Chain (Target : Iir; Chain : Iir) is
begin
- Check_Kind_For_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Chain (Get_Kind (Target)));
Set_Field2 (Target, Chain);
end Set_Chain;
- procedure Check_Kind_For_Port_Chain (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Block_Header
- | Iir_Kind_Entity_Declaration
- | Iir_Kind_Component_Declaration =>
- null;
- when others =>
- Failed ("Port_Chain", Target);
- end case;
- end Check_Kind_For_Port_Chain;
-
function Get_Port_Chain (Target : Iir) return Iir is
begin
- Check_Kind_For_Port_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Port_Chain (Get_Kind (Target)));
return Get_Field7 (Target);
end Get_Port_Chain;
procedure Set_Port_Chain (Target : Iir; Chain : Iir) is
begin
- Check_Kind_For_Port_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Port_Chain (Get_Kind (Target)));
Set_Field7 (Target, Chain);
end Set_Port_Chain;
- procedure Check_Kind_For_Generic_Chain (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Block_Header
- | Iir_Kind_Package_Instantiation_Declaration
- | Iir_Kind_Entity_Declaration
- | Iir_Kind_Package_Header
- | Iir_Kind_Component_Declaration
- | Iir_Kind_Function_Declaration
- | Iir_Kind_Implicit_Function_Declaration
- | Iir_Kind_Implicit_Procedure_Declaration
- | Iir_Kind_Procedure_Declaration =>
- null;
- when others =>
- Failed ("Generic_Chain", Target);
- end case;
- end Check_Kind_For_Generic_Chain;
-
function Get_Generic_Chain (Target : Iir) return Iir is
begin
- Check_Kind_For_Generic_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Generic_Chain (Get_Kind (Target)));
return Get_Field6 (Target);
end Get_Generic_Chain;
procedure Set_Generic_Chain (Target : Iir; Generics : Iir) is
begin
- Check_Kind_For_Generic_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Generic_Chain (Get_Kind (Target)));
Set_Field6 (Target, Generics);
end Set_Generic_Chain;
- procedure Check_Kind_For_Type (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Error
- | Iir_Kind_Integer_Literal
- | Iir_Kind_Floating_Point_Literal
- | Iir_Kind_Null_Literal
- | Iir_Kind_String_Literal
- | Iir_Kind_Physical_Int_Literal
- | Iir_Kind_Physical_Fp_Literal
- | Iir_Kind_Bit_String_Literal
- | Iir_Kind_Simple_Aggregate
- | Iir_Kind_Overflow_Literal
- | Iir_Kind_Attribute_Value
- | Iir_Kind_Record_Element_Constraint
- | Iir_Kind_Range_Expression
- | Iir_Kind_Type_Declaration
- | Iir_Kind_Subtype_Declaration
- | Iir_Kind_Unit_Declaration
- | Iir_Kind_Attribute_Declaration
- | Iir_Kind_Element_Declaration
- | Iir_Kind_Free_Quantity_Declaration
- | Iir_Kind_Across_Quantity_Declaration
- | Iir_Kind_Through_Quantity_Declaration
- | Iir_Kind_Enumeration_Literal
- | Iir_Kind_Function_Declaration
- | Iir_Kind_Implicit_Function_Declaration
- | Iir_Kind_Object_Alias_Declaration
- | Iir_Kind_File_Declaration
- | Iir_Kind_Guard_Signal_Declaration
- | Iir_Kind_Signal_Declaration
- | Iir_Kind_Variable_Declaration
- | Iir_Kind_Constant_Declaration
- | Iir_Kind_Iterator_Declaration
- | Iir_Kind_Constant_Interface_Declaration
- | Iir_Kind_Variable_Interface_Declaration
- | Iir_Kind_Signal_Interface_Declaration
- | Iir_Kind_File_Interface_Declaration
- | Iir_Kind_Identity_Operator
- | Iir_Kind_Negation_Operator
- | Iir_Kind_Absolute_Operator
- | Iir_Kind_Not_Operator
- | Iir_Kind_Condition_Operator
- | Iir_Kind_Reduction_And_Operator
- | Iir_Kind_Reduction_Or_Operator
- | Iir_Kind_Reduction_Nand_Operator
- | Iir_Kind_Reduction_Nor_Operator
- | Iir_Kind_Reduction_Xor_Operator
- | Iir_Kind_Reduction_Xnor_Operator
- | Iir_Kind_And_Operator
- | Iir_Kind_Or_Operator
- | Iir_Kind_Nand_Operator
- | Iir_Kind_Nor_Operator
- | Iir_Kind_Xor_Operator
- | Iir_Kind_Xnor_Operator
- | Iir_Kind_Equality_Operator
- | Iir_Kind_Inequality_Operator
- | Iir_Kind_Less_Than_Operator
- | Iir_Kind_Less_Than_Or_Equal_Operator
- | Iir_Kind_Greater_Than_Operator
- | Iir_Kind_Greater_Than_Or_Equal_Operator
- | Iir_Kind_Match_Equality_Operator
- | Iir_Kind_Match_Inequality_Operator
- | Iir_Kind_Match_Less_Than_Operator
- | Iir_Kind_Match_Less_Than_Or_Equal_Operator
- | Iir_Kind_Match_Greater_Than_Operator
- | Iir_Kind_Match_Greater_Than_Or_Equal_Operator
- | Iir_Kind_Sll_Operator
- | Iir_Kind_Sla_Operator
- | Iir_Kind_Srl_Operator
- | Iir_Kind_Sra_Operator
- | Iir_Kind_Rol_Operator
- | Iir_Kind_Ror_Operator
- | Iir_Kind_Addition_Operator
- | Iir_Kind_Substraction_Operator
- | Iir_Kind_Concatenation_Operator
- | Iir_Kind_Multiplication_Operator
- | Iir_Kind_Division_Operator
- | Iir_Kind_Modulus_Operator
- | Iir_Kind_Remainder_Operator
- | Iir_Kind_Exponentiation_Operator
- | Iir_Kind_Function_Call
- | Iir_Kind_Aggregate
- | Iir_Kind_Parenthesis_Expression
- | Iir_Kind_Qualified_Expression
- | Iir_Kind_Type_Conversion
- | Iir_Kind_Allocator_By_Expression
- | Iir_Kind_Allocator_By_Subtype
- | Iir_Kind_Selected_Element
- | Iir_Kind_Dereference
- | Iir_Kind_Implicit_Dereference
- | Iir_Kind_Slice_Name
- | Iir_Kind_Indexed_Name
- | Iir_Kind_Psl_Expression
- | Iir_Kind_Return_Statement
- | Iir_Kind_Character_Literal
- | Iir_Kind_Simple_Name
- | Iir_Kind_Selected_Name
- | Iir_Kind_Operator_Symbol
- | Iir_Kind_Selected_By_All_Name
- | Iir_Kind_Parenthesis_Name
- | Iir_Kind_Base_Attribute
- | Iir_Kind_Left_Type_Attribute
- | Iir_Kind_Right_Type_Attribute
- | Iir_Kind_High_Type_Attribute
- | Iir_Kind_Low_Type_Attribute
- | Iir_Kind_Ascending_Type_Attribute
- | Iir_Kind_Image_Attribute
- | Iir_Kind_Value_Attribute
- | Iir_Kind_Pos_Attribute
- | Iir_Kind_Val_Attribute
- | Iir_Kind_Succ_Attribute
- | Iir_Kind_Pred_Attribute
- | Iir_Kind_Leftof_Attribute
- | Iir_Kind_Rightof_Attribute
- | Iir_Kind_Delayed_Attribute
- | Iir_Kind_Stable_Attribute
- | Iir_Kind_Quiet_Attribute
- | Iir_Kind_Transaction_Attribute
- | Iir_Kind_Event_Attribute
- | Iir_Kind_Active_Attribute
- | Iir_Kind_Last_Event_Attribute
- | Iir_Kind_Last_Active_Attribute
- | Iir_Kind_Last_Value_Attribute
- | Iir_Kind_Driving_Attribute
- | Iir_Kind_Driving_Value_Attribute
- | Iir_Kind_Simple_Name_Attribute
- | Iir_Kind_Instance_Name_Attribute
- | Iir_Kind_Path_Name_Attribute
- | Iir_Kind_Left_Array_Attribute
- | Iir_Kind_Right_Array_Attribute
- | Iir_Kind_High_Array_Attribute
- | Iir_Kind_Low_Array_Attribute
- | Iir_Kind_Length_Array_Attribute
- | Iir_Kind_Ascending_Array_Attribute
- | Iir_Kind_Range_Array_Attribute
- | Iir_Kind_Reverse_Range_Array_Attribute
- | Iir_Kind_Attribute_Name =>
- null;
- when others =>
- Failed ("Type", Target);
- end case;
- end Check_Kind_For_Type;
-
function Get_Type (Target : Iir) return Iir is
begin
- Check_Kind_For_Type (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Type (Get_Kind (Target)));
return Get_Field1 (Target);
end Get_Type;
procedure Set_Type (Target : Iir; Atype : Iir) is
begin
- Check_Kind_For_Type (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Type (Get_Kind (Target)));
Set_Field1 (Target, Atype);
end Set_Type;
- procedure Check_Kind_For_Subtype_Indication (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Subtype_Declaration
- | Iir_Kind_Element_Declaration
- | Iir_Kind_Object_Alias_Declaration
- | Iir_Kind_File_Declaration
- | Iir_Kind_Signal_Declaration
- | Iir_Kind_Variable_Declaration
- | Iir_Kind_Constant_Declaration
- | Iir_Kind_Iterator_Declaration
- | Iir_Kind_Constant_Interface_Declaration
- | Iir_Kind_Variable_Interface_Declaration
- | Iir_Kind_Signal_Interface_Declaration
- | Iir_Kind_File_Interface_Declaration
- | Iir_Kind_Allocator_By_Subtype =>
- null;
- when others =>
- Failed ("Subtype_Indication", Target);
- end case;
- end Check_Kind_For_Subtype_Indication;
-
function Get_Subtype_Indication (Target : Iir) return Iir is
begin
- Check_Kind_For_Subtype_Indication (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Subtype_Indication (Get_Kind (Target)));
return Get_Field5 (Target);
end Get_Subtype_Indication;
procedure Set_Subtype_Indication (Target : Iir; Atype : Iir) is
begin
- Check_Kind_For_Subtype_Indication (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Subtype_Indication (Get_Kind (Target)));
Set_Field5 (Target, Atype);
end Set_Subtype_Indication;
- procedure Check_Kind_For_Discrete_Range (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Iterator_Declaration =>
- null;
- when others =>
- Failed ("Discrete_Range", Target);
- end case;
- end Check_Kind_For_Discrete_Range;
-
function Get_Discrete_Range (Target : Iir) return Iir is
begin
- Check_Kind_For_Discrete_Range (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Discrete_Range (Get_Kind (Target)));
return Get_Field6 (Target);
end Get_Discrete_Range;
procedure Set_Discrete_Range (Target : Iir; Rng : Iir) is
begin
- Check_Kind_For_Discrete_Range (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Discrete_Range (Get_Kind (Target)));
Set_Field6 (Target, Rng);
end Set_Discrete_Range;
- procedure Check_Kind_For_Type_Definition (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Type_Declaration
- | Iir_Kind_Anonymous_Type_Declaration =>
- null;
- when others =>
- Failed ("Type_Definition", Target);
- end case;
- end Check_Kind_For_Type_Definition;
-
function Get_Type_Definition (Decl : Iir) return Iir is
begin
- Check_Kind_For_Type_Definition (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Type_Definition (Get_Kind (Decl)));
return Get_Field1 (Decl);
end Get_Type_Definition;
procedure Set_Type_Definition (Decl : Iir; Atype : Iir) is
begin
- Check_Kind_For_Type_Definition (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Type_Definition (Get_Kind (Decl)));
Set_Field1 (Decl, Atype);
end Set_Type_Definition;
- procedure Check_Kind_For_Subtype_Definition (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Anonymous_Type_Declaration =>
- null;
- when others =>
- Failed ("Subtype_Definition", Target);
- end case;
- end Check_Kind_For_Subtype_Definition;
-
function Get_Subtype_Definition (Target : Iir) return Iir is
begin
- Check_Kind_For_Subtype_Definition (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Subtype_Definition (Get_Kind (Target)));
return Get_Field4 (Target);
end Get_Subtype_Definition;
procedure Set_Subtype_Definition (Target : Iir; Def : Iir) is
begin
- Check_Kind_For_Subtype_Definition (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Subtype_Definition (Get_Kind (Target)));
Set_Field4 (Target, Def);
end Set_Subtype_Definition;
- procedure Check_Kind_For_Nature (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Nature_Declaration
- | Iir_Kind_Subnature_Declaration
- | Iir_Kind_Terminal_Declaration =>
- null;
- when others =>
- Failed ("Nature", Target);
- end case;
- end Check_Kind_For_Nature;
-
function Get_Nature (Target : Iir) return Iir is
begin
- Check_Kind_For_Nature (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Nature (Get_Kind (Target)));
return Get_Field1 (Target);
end Get_Nature;
procedure Set_Nature (Target : Iir; Nature : Iir) is
begin
- Check_Kind_For_Nature (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Nature (Get_Kind (Target)));
Set_Field1 (Target, Nature);
end Set_Nature;
- procedure Check_Kind_For_Mode (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_File_Declaration
- | Iir_Kind_Constant_Interface_Declaration
- | Iir_Kind_Variable_Interface_Declaration
- | Iir_Kind_Signal_Interface_Declaration
- | Iir_Kind_File_Interface_Declaration =>
- null;
- when others =>
- Failed ("Mode", Target);
- end case;
- end Check_Kind_For_Mode;
-
function Get_Mode (Target : Iir) return Iir_Mode is
begin
- Check_Kind_For_Mode (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Mode (Get_Kind (Target)));
return Iir_Mode'Val (Get_Odigit1 (Target));
end Get_Mode;
procedure Set_Mode (Target : Iir; Mode : Iir_Mode) is
begin
- Check_Kind_For_Mode (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Mode (Get_Kind (Target)));
Set_Odigit1 (Target, Iir_Mode'Pos (Mode));
end Set_Mode;
- procedure Check_Kind_For_Signal_Kind (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Guard_Signal_Declaration
- | Iir_Kind_Signal_Declaration
- | Iir_Kind_Signal_Interface_Declaration =>
- null;
- when others =>
- Failed ("Signal_Kind", Target);
- end case;
- end Check_Kind_For_Signal_Kind;
-
function Get_Signal_Kind (Target : Iir) return Iir_Signal_Kind is
begin
- Check_Kind_For_Signal_Kind (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Signal_Kind (Get_Kind (Target)));
return Iir_Signal_Kind'Val (Get_State3 (Target));
end Get_Signal_Kind;
procedure Set_Signal_Kind (Target : Iir; Signal_Kind : Iir_Signal_Kind) is
begin
- Check_Kind_For_Signal_Kind (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Signal_Kind (Get_Kind (Target)));
Set_State3 (Target, Iir_Signal_Kind'Pos (Signal_Kind));
end Set_Signal_Kind;
- procedure Check_Kind_For_Base_Name (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Attribute_Value
- | Iir_Kind_Function_Call
- | Iir_Kind_Selected_Element
- | Iir_Kind_Dereference
- | Iir_Kind_Implicit_Dereference
- | Iir_Kind_Slice_Name
- | Iir_Kind_Indexed_Name
- | Iir_Kind_Character_Literal
- | Iir_Kind_Simple_Name
- | Iir_Kind_Selected_Name
- | Iir_Kind_Operator_Symbol
- | Iir_Kind_Selected_By_All_Name
- | Iir_Kind_Left_Type_Attribute
- | Iir_Kind_Right_Type_Attribute
- | Iir_Kind_High_Type_Attribute
- | Iir_Kind_Low_Type_Attribute
- | Iir_Kind_Ascending_Type_Attribute
- | Iir_Kind_Image_Attribute
- | Iir_Kind_Value_Attribute
- | Iir_Kind_Pos_Attribute
- | Iir_Kind_Val_Attribute
- | Iir_Kind_Succ_Attribute
- | Iir_Kind_Pred_Attribute
- | Iir_Kind_Leftof_Attribute
- | Iir_Kind_Rightof_Attribute
- | Iir_Kind_Delayed_Attribute
- | Iir_Kind_Stable_Attribute
- | Iir_Kind_Quiet_Attribute
- | Iir_Kind_Transaction_Attribute
- | Iir_Kind_Simple_Name_Attribute
- | Iir_Kind_Instance_Name_Attribute
- | Iir_Kind_Path_Name_Attribute
- | Iir_Kind_Left_Array_Attribute
- | Iir_Kind_Right_Array_Attribute
- | Iir_Kind_High_Array_Attribute
- | Iir_Kind_Low_Array_Attribute
- | Iir_Kind_Length_Array_Attribute
- | Iir_Kind_Ascending_Array_Attribute
- | Iir_Kind_Range_Array_Attribute
- | Iir_Kind_Reverse_Range_Array_Attribute
- | Iir_Kind_Attribute_Name =>
- null;
- when others =>
- Failed ("Base_Name", Target);
- end case;
- end Check_Kind_For_Base_Name;
-
function Get_Base_Name (Target : Iir) return Iir is
begin
- Check_Kind_For_Base_Name (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Base_Name (Get_Kind (Target)));
return Get_Field5 (Target);
end Get_Base_Name;
procedure Set_Base_Name (Target : Iir; Name : Iir) is
begin
- Check_Kind_For_Base_Name (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Base_Name (Get_Kind (Target)));
Set_Field5 (Target, Name);
end Set_Base_Name;
- procedure Check_Kind_For_Interface_Declaration_Chain (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Function_Declaration
- | Iir_Kind_Implicit_Function_Declaration
- | Iir_Kind_Implicit_Procedure_Declaration
- | Iir_Kind_Procedure_Declaration =>
- null;
- when others =>
- Failed ("Interface_Declaration_Chain", Target);
- end case;
- end Check_Kind_For_Interface_Declaration_Chain;
-
function Get_Interface_Declaration_Chain (Target : Iir) return Iir is
begin
- Check_Kind_For_Interface_Declaration_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Interface_Declaration_Chain (Get_Kind (Target)));
return Get_Field5 (Target);
end Get_Interface_Declaration_Chain;
procedure Set_Interface_Declaration_Chain (Target : Iir; Chain : Iir) is
begin
- Check_Kind_For_Interface_Declaration_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Interface_Declaration_Chain (Get_Kind (Target)));
Set_Field5 (Target, Chain);
end Set_Interface_Declaration_Chain;
- procedure Check_Kind_For_Subprogram_Specification (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Function_Body
- | Iir_Kind_Procedure_Body =>
- null;
- when others =>
- Failed ("Subprogram_Specification", Target);
- end case;
- end Check_Kind_For_Subprogram_Specification;
-
function Get_Subprogram_Specification (Target : Iir) return Iir is
begin
- Check_Kind_For_Subprogram_Specification (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Subprogram_Specification (Get_Kind (Target)));
return Get_Field4 (Target);
end Get_Subprogram_Specification;
procedure Set_Subprogram_Specification (Target : Iir; Spec : Iir) is
begin
- Check_Kind_For_Subprogram_Specification (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Subprogram_Specification (Get_Kind (Target)));
Set_Field4 (Target, Spec);
end Set_Subprogram_Specification;
- procedure Check_Kind_For_Sequential_Statement_Chain (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Function_Body
- | Iir_Kind_Procedure_Body
- | Iir_Kind_Sensitized_Process_Statement
- | Iir_Kind_Process_Statement
- | Iir_Kind_For_Loop_Statement
- | Iir_Kind_While_Loop_Statement
- | Iir_Kind_If_Statement
- | Iir_Kind_Elsif =>
- null;
- when others =>
- Failed ("Sequential_Statement_Chain", Target);
- end case;
- end Check_Kind_For_Sequential_Statement_Chain;
-
function Get_Sequential_Statement_Chain (Target : Iir) return Iir is
begin
- Check_Kind_For_Sequential_Statement_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Sequential_Statement_Chain (Get_Kind (Target)));
return Get_Field5 (Target);
end Get_Sequential_Statement_Chain;
procedure Set_Sequential_Statement_Chain (Target : Iir; Chain : Iir) is
begin
- Check_Kind_For_Sequential_Statement_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Sequential_Statement_Chain (Get_Kind (Target)));
Set_Field5 (Target, Chain);
end Set_Sequential_Statement_Chain;
- procedure Check_Kind_For_Subprogram_Body (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Function_Declaration
- | Iir_Kind_Procedure_Declaration =>
- null;
- when others =>
- Failed ("Subprogram_Body", Target);
- end case;
- end Check_Kind_For_Subprogram_Body;
-
function Get_Subprogram_Body (Target : Iir) return Iir is
begin
- Check_Kind_For_Subprogram_Body (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Subprogram_Body (Get_Kind (Target)));
return Get_Field9 (Target);
end Get_Subprogram_Body;
procedure Set_Subprogram_Body (Target : Iir; A_Body : Iir) is
begin
- Check_Kind_For_Subprogram_Body (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Subprogram_Body (Get_Kind (Target)));
Set_Field9 (Target, A_Body);
end Set_Subprogram_Body;
- procedure Check_Kind_For_Overload_Number (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Function_Declaration
- | Iir_Kind_Implicit_Function_Declaration
- | Iir_Kind_Implicit_Procedure_Declaration
- | Iir_Kind_Procedure_Declaration =>
- null;
- when others =>
- Failed ("Overload_Number", Target);
- end case;
- end Check_Kind_For_Overload_Number;
-
function Get_Overload_Number (Target : Iir) return Iir_Int32 is
begin
- Check_Kind_For_Overload_Number (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Overload_Number (Get_Kind (Target)));
return Iir_Int32'Val (Get_Field12 (Target));
end Get_Overload_Number;
procedure Set_Overload_Number (Target : Iir; Val : Iir_Int32) is
begin
- Check_Kind_For_Overload_Number (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Overload_Number (Get_Kind (Target)));
Set_Field12 (Target, Iir_Int32'Pos (Val));
end Set_Overload_Number;
- procedure Check_Kind_For_Subprogram_Depth (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Function_Declaration
- | Iir_Kind_Procedure_Declaration =>
- null;
- when others =>
- Failed ("Subprogram_Depth", Target);
- end case;
- end Check_Kind_For_Subprogram_Depth;
-
function Get_Subprogram_Depth (Target : Iir) return Iir_Int32 is
begin
- Check_Kind_For_Subprogram_Depth (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Subprogram_Depth (Get_Kind (Target)));
return Iir_Int32'Val (Get_Field10 (Target));
end Get_Subprogram_Depth;
procedure Set_Subprogram_Depth (Target : Iir; Depth : Iir_Int32) is
begin
- Check_Kind_For_Subprogram_Depth (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Subprogram_Depth (Get_Kind (Target)));
Set_Field10 (Target, Iir_Int32'Pos (Depth));
end Set_Subprogram_Depth;
- procedure Check_Kind_For_Subprogram_Hash (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Enumeration_Literal
- | Iir_Kind_Function_Declaration
- | Iir_Kind_Implicit_Function_Declaration
- | Iir_Kind_Implicit_Procedure_Declaration
- | Iir_Kind_Procedure_Declaration =>
- null;
- when others =>
- Failed ("Subprogram_Hash", Target);
- end case;
- end Check_Kind_For_Subprogram_Hash;
-
function Get_Subprogram_Hash (Target : Iir) return Iir_Int32 is
begin
- Check_Kind_For_Subprogram_Hash (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Subprogram_Hash (Get_Kind (Target)));
return Iir_Int32'Val (Get_Field11 (Target));
end Get_Subprogram_Hash;
procedure Set_Subprogram_Hash (Target : Iir; Val : Iir_Int32) is
begin
- Check_Kind_For_Subprogram_Hash (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Subprogram_Hash (Get_Kind (Target)));
Set_Field11 (Target, Iir_Int32'Pos (Val));
end Set_Subprogram_Hash;
- procedure Check_Kind_For_Impure_Depth (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Function_Body
- | Iir_Kind_Procedure_Body =>
- null;
- when others =>
- Failed ("Impure_Depth", Target);
- end case;
- end Check_Kind_For_Impure_Depth;
-
function Get_Impure_Depth (Target : Iir) return Iir_Int32 is
begin
- Check_Kind_For_Impure_Depth (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Impure_Depth (Get_Kind (Target)));
return Iir_To_Iir_Int32 (Get_Field3 (Target));
end Get_Impure_Depth;
procedure Set_Impure_Depth (Target : Iir; Depth : Iir_Int32) is
begin
- Check_Kind_For_Impure_Depth (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Impure_Depth (Get_Kind (Target)));
Set_Field3 (Target, Iir_Int32_To_Iir (Depth));
end Set_Impure_Depth;
- procedure Check_Kind_For_Return_Type (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Enumeration_Literal
- | Iir_Kind_Function_Declaration
- | Iir_Kind_Implicit_Function_Declaration =>
- null;
- when others =>
- Failed ("Return_Type", Target);
- end case;
- end Check_Kind_For_Return_Type;
-
function Get_Return_Type (Target : Iir) return Iir is
begin
- Check_Kind_For_Return_Type (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Return_Type (Get_Kind (Target)));
return Get_Field1 (Target);
end Get_Return_Type;
procedure Set_Return_Type (Target : Iir; Decl : Iir) is
begin
- Check_Kind_For_Return_Type (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Return_Type (Get_Kind (Target)));
Set_Field1 (Target, Decl);
end Set_Return_Type;
- procedure Check_Kind_For_Implicit_Definition (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Implicit_Function_Declaration
- | Iir_Kind_Implicit_Procedure_Declaration =>
- null;
- when others =>
- Failed ("Implicit_Definition", Target);
- end case;
- end Check_Kind_For_Implicit_Definition;
-
function Get_Implicit_Definition (D : Iir) return Iir_Predefined_Functions
- is
+ is
begin
- Check_Kind_For_Implicit_Definition (D);
+ pragma Assert (D /= Null_Iir);
+ pragma Assert (Has_Implicit_Definition (Get_Kind (D)));
return Iir_Predefined_Functions'Val (Get_Field9 (D));
end Get_Implicit_Definition;
procedure Set_Implicit_Definition (D : Iir; Def : Iir_Predefined_Functions)
- is
+ is
begin
- Check_Kind_For_Implicit_Definition (D);
+ pragma Assert (D /= Null_Iir);
+ pragma Assert (Has_Implicit_Definition (Get_Kind (D)));
Set_Field9 (D, Iir_Predefined_Functions'Pos (Def));
end Set_Implicit_Definition;
- procedure Check_Kind_For_Type_Reference (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Implicit_Function_Declaration
- | Iir_Kind_Implicit_Procedure_Declaration =>
- null;
- when others =>
- Failed ("Type_Reference", Target);
- end case;
- end Check_Kind_For_Type_Reference;
-
function Get_Type_Reference (Target : Iir) return Iir is
begin
- Check_Kind_For_Type_Reference (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Type_Reference (Get_Kind (Target)));
return Get_Field10 (Target);
end Get_Type_Reference;
procedure Set_Type_Reference (Target : Iir; Decl : Iir) is
begin
- Check_Kind_For_Type_Reference (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Type_Reference (Get_Kind (Target)));
Set_Field10 (Target, Decl);
end Set_Type_Reference;
- procedure Check_Kind_For_Default_Value (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Free_Quantity_Declaration
- | Iir_Kind_Across_Quantity_Declaration
- | Iir_Kind_Through_Quantity_Declaration
- | Iir_Kind_Signal_Declaration
- | Iir_Kind_Variable_Declaration
- | Iir_Kind_Constant_Declaration
- | Iir_Kind_Constant_Interface_Declaration
- | Iir_Kind_Variable_Interface_Declaration
- | Iir_Kind_Signal_Interface_Declaration
- | Iir_Kind_File_Interface_Declaration =>
- null;
- when others =>
- Failed ("Default_Value", Target);
- end case;
- end Check_Kind_For_Default_Value;
-
function Get_Default_Value (Target : Iir) return Iir is
begin
- Check_Kind_For_Default_Value (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Default_Value (Get_Kind (Target)));
return Get_Field6 (Target);
end Get_Default_Value;
procedure Set_Default_Value (Target : Iir; Value : Iir) is
begin
- Check_Kind_For_Default_Value (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Default_Value (Get_Kind (Target)));
Set_Field6 (Target, Value);
end Set_Default_Value;
- procedure Check_Kind_For_Deferred_Declaration (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Constant_Declaration =>
- null;
- when others =>
- Failed ("Deferred_Declaration", Target);
- end case;
- end Check_Kind_For_Deferred_Declaration;
-
function Get_Deferred_Declaration (Target : Iir) return Iir is
begin
- Check_Kind_For_Deferred_Declaration (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Deferred_Declaration (Get_Kind (Target)));
return Get_Field7 (Target);
end Get_Deferred_Declaration;
procedure Set_Deferred_Declaration (Target : Iir; Decl : Iir) is
begin
- Check_Kind_For_Deferred_Declaration (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Deferred_Declaration (Get_Kind (Target)));
Set_Field7 (Target, Decl);
end Set_Deferred_Declaration;
- procedure Check_Kind_For_Deferred_Declaration_Flag (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Constant_Declaration =>
- null;
- when others =>
- Failed ("Deferred_Declaration_Flag", Target);
- end case;
- end Check_Kind_For_Deferred_Declaration_Flag;
-
function Get_Deferred_Declaration_Flag (Target : Iir) return Boolean is
begin
- Check_Kind_For_Deferred_Declaration_Flag (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Deferred_Declaration_Flag (Get_Kind (Target)));
return Get_Flag1 (Target);
end Get_Deferred_Declaration_Flag;
procedure Set_Deferred_Declaration_Flag (Target : Iir; Flag : Boolean) is
begin
- Check_Kind_For_Deferred_Declaration_Flag (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Deferred_Declaration_Flag (Get_Kind (Target)));
Set_Flag1 (Target, Flag);
end Set_Deferred_Declaration_Flag;
- procedure Check_Kind_For_Shared_Flag (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Variable_Declaration =>
- null;
- when others =>
- Failed ("Shared_Flag", Target);
- end case;
- end Check_Kind_For_Shared_Flag;
-
function Get_Shared_Flag (Target : Iir) return Boolean is
begin
- Check_Kind_For_Shared_Flag (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Shared_Flag (Get_Kind (Target)));
return Get_Flag2 (Target);
end Get_Shared_Flag;
procedure Set_Shared_Flag (Target : Iir; Shared : Boolean) is
begin
- Check_Kind_For_Shared_Flag (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Shared_Flag (Get_Kind (Target)));
Set_Flag2 (Target, Shared);
end Set_Shared_Flag;
- procedure Check_Kind_For_Design_Unit (Target : Iir) is
+ function Get_Design_Unit (Target : Iir) return Iir is
begin
- case Get_Kind (Target) is
- when Iir_Kind_Package_Declaration
- | Iir_Kind_Package_Instantiation_Declaration
- | Iir_Kind_Package_Body
- | Iir_Kind_Configuration_Declaration
- | Iir_Kind_Entity_Declaration
- | Iir_Kind_Architecture_Body =>
- null;
- when others =>
- Failed ("Design_Unit", Target);
- end case;
- end Check_Kind_For_Design_Unit;
-
- function Get_Design_Unit (Target : Iir) return Iir_Design_Unit is
- begin
- Check_Kind_For_Design_Unit (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Design_Unit (Get_Kind (Target)));
return Get_Field0 (Target);
end Get_Design_Unit;
- procedure Set_Design_Unit (Target : Iir; Unit : Iir_Design_Unit) is
+ procedure Set_Design_Unit (Target : Iir; Unit : Iir) is
begin
- Check_Kind_For_Design_Unit (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Design_Unit (Get_Kind (Target)));
Set_Field0 (Target, Unit);
end Set_Design_Unit;
- procedure Check_Kind_For_Block_Statement (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Guard_Signal_Declaration =>
- null;
- when others =>
- Failed ("Block_Statement", Target);
- end case;
- end Check_Kind_For_Block_Statement;
-
function Get_Block_Statement (Target : Iir) return Iir is
begin
- Check_Kind_For_Block_Statement (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Block_Statement (Get_Kind (Target)));
return Get_Field7 (Target);
end Get_Block_Statement;
procedure Set_Block_Statement (Target : Iir; Block : Iir) is
begin
- Check_Kind_For_Block_Statement (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Block_Statement (Get_Kind (Target)));
Set_Field7 (Target, Block);
end Set_Block_Statement;
- procedure Check_Kind_For_Signal_Driver (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Signal_Declaration =>
- null;
- when others =>
- Failed ("Signal_Driver", Target);
- end case;
- end Check_Kind_For_Signal_Driver;
-
function Get_Signal_Driver (Target : Iir_Signal_Declaration) return Iir is
begin
- Check_Kind_For_Signal_Driver (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Signal_Driver (Get_Kind (Target)));
return Get_Field7 (Target);
end Get_Signal_Driver;
procedure Set_Signal_Driver (Target : Iir_Signal_Declaration; Driver : Iir)
- is
+ is
begin
- Check_Kind_For_Signal_Driver (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Signal_Driver (Get_Kind (Target)));
Set_Field7 (Target, Driver);
end Set_Signal_Driver;
- procedure Check_Kind_For_Declaration_Chain (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Block_Configuration
- | Iir_Kind_Protected_Type_Declaration
- | Iir_Kind_Protected_Type_Body
- | Iir_Kind_Package_Declaration
- | Iir_Kind_Package_Instantiation_Declaration
- | Iir_Kind_Package_Body
- | Iir_Kind_Configuration_Declaration
- | Iir_Kind_Entity_Declaration
- | Iir_Kind_Architecture_Body
- | Iir_Kind_Function_Body
- | Iir_Kind_Procedure_Body
- | Iir_Kind_Sensitized_Process_Statement
- | Iir_Kind_Process_Statement
- | Iir_Kind_Block_Statement
- | Iir_Kind_Generate_Statement =>
- null;
- when others =>
- Failed ("Declaration_Chain", Target);
- end case;
- end Check_Kind_For_Declaration_Chain;
-
function Get_Declaration_Chain (Target : Iir) return Iir is
begin
- Check_Kind_For_Declaration_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Declaration_Chain (Get_Kind (Target)));
return Get_Field1 (Target);
end Get_Declaration_Chain;
procedure Set_Declaration_Chain (Target : Iir; Decls : Iir) is
begin
- Check_Kind_For_Declaration_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Declaration_Chain (Get_Kind (Target)));
Set_Field1 (Target, Decls);
end Set_Declaration_Chain;
- procedure Check_Kind_For_File_Logical_Name (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_File_Declaration =>
- null;
- when others =>
- Failed ("File_Logical_Name", Target);
- end case;
- end Check_Kind_For_File_Logical_Name;
-
function Get_File_Logical_Name (Target : Iir_File_Declaration) return Iir
- is
+ is
begin
- Check_Kind_For_File_Logical_Name (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_File_Logical_Name (Get_Kind (Target)));
return Get_Field6 (Target);
end Get_File_Logical_Name;
procedure Set_File_Logical_Name (Target : Iir_File_Declaration; Name : Iir)
- is
+ is
begin
- Check_Kind_For_File_Logical_Name (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_File_Logical_Name (Get_Kind (Target)));
Set_Field6 (Target, Name);
end Set_File_Logical_Name;
- procedure Check_Kind_For_File_Open_Kind (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_File_Declaration =>
- null;
- when others =>
- Failed ("File_Open_Kind", Target);
- end case;
- end Check_Kind_For_File_Open_Kind;
-
function Get_File_Open_Kind (Target : Iir_File_Declaration) return Iir is
begin
- Check_Kind_For_File_Open_Kind (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_File_Open_Kind (Get_Kind (Target)));
return Get_Field7 (Target);
end Get_File_Open_Kind;
procedure Set_File_Open_Kind (Target : Iir_File_Declaration; Kind : Iir) is
begin
- Check_Kind_For_File_Open_Kind (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_File_Open_Kind (Get_Kind (Target)));
Set_Field7 (Target, Kind);
end Set_File_Open_Kind;
- procedure Check_Kind_For_Element_Position (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Record_Element_Constraint
- | Iir_Kind_Element_Declaration =>
- null;
- when others =>
- Failed ("Element_Position", Target);
- end case;
- end Check_Kind_For_Element_Position;
-
function Get_Element_Position (Target : Iir) return Iir_Index32 is
begin
- Check_Kind_For_Element_Position (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Element_Position (Get_Kind (Target)));
return Iir_Index32'Val (Get_Field4 (Target));
end Get_Element_Position;
procedure Set_Element_Position (Target : Iir; Pos : Iir_Index32) is
begin
- Check_Kind_For_Element_Position (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Element_Position (Get_Kind (Target)));
Set_Field4 (Target, Iir_Index32'Pos (Pos));
end Set_Element_Position;
- procedure Check_Kind_For_Element_Declaration (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Record_Element_Constraint =>
- null;
- when others =>
- Failed ("Element_Declaration", Target);
- end case;
- end Check_Kind_For_Element_Declaration;
-
function Get_Element_Declaration (Target : Iir) return Iir is
begin
- Check_Kind_For_Element_Declaration (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Element_Declaration (Get_Kind (Target)));
return Get_Field2 (Target);
end Get_Element_Declaration;
procedure Set_Element_Declaration (Target : Iir; El : Iir) is
begin
- Check_Kind_For_Element_Declaration (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Element_Declaration (Get_Kind (Target)));
Set_Field2 (Target, El);
end Set_Element_Declaration;
- procedure Check_Kind_For_Selected_Element (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Selected_Element =>
- null;
- when others =>
- Failed ("Selected_Element", Target);
- end case;
- end Check_Kind_For_Selected_Element;
-
function Get_Selected_Element (Target : Iir) return Iir is
begin
- Check_Kind_For_Selected_Element (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Selected_Element (Get_Kind (Target)));
return Get_Field2 (Target);
end Get_Selected_Element;
procedure Set_Selected_Element (Target : Iir; El : Iir) is
begin
- Check_Kind_For_Selected_Element (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Selected_Element (Get_Kind (Target)));
Set_Field2 (Target, El);
end Set_Selected_Element;
- procedure Check_Kind_For_Use_Clause_Chain (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Use_Clause =>
- null;
- when others =>
- Failed ("Use_Clause_Chain", Target);
- end case;
- end Check_Kind_For_Use_Clause_Chain;
-
function Get_Use_Clause_Chain (Target : Iir) return Iir is
begin
- Check_Kind_For_Use_Clause_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Use_Clause_Chain (Get_Kind (Target)));
return Get_Field3 (Target);
end Get_Use_Clause_Chain;
procedure Set_Use_Clause_Chain (Target : Iir; Chain : Iir) is
begin
- Check_Kind_For_Use_Clause_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Use_Clause_Chain (Get_Kind (Target)));
Set_Field3 (Target, Chain);
end Set_Use_Clause_Chain;
- procedure Check_Kind_For_Selected_Name (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Use_Clause =>
- null;
- when others =>
- Failed ("Selected_Name", Target);
- end case;
- end Check_Kind_For_Selected_Name;
-
function Get_Selected_Name (Target : Iir_Use_Clause) return Iir is
begin
- Check_Kind_For_Selected_Name (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Selected_Name (Get_Kind (Target)));
return Get_Field1 (Target);
end Get_Selected_Name;
procedure Set_Selected_Name (Target : Iir_Use_Clause; Name : Iir) is
begin
- Check_Kind_For_Selected_Name (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Selected_Name (Get_Kind (Target)));
Set_Field1 (Target, Name);
end Set_Selected_Name;
- procedure Check_Kind_For_Type_Declarator (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Error
- | Iir_Kind_Access_Type_Definition
- | Iir_Kind_Incomplete_Type_Definition
- | Iir_Kind_File_Type_Definition
- | Iir_Kind_Protected_Type_Declaration
- | Iir_Kind_Record_Type_Definition
- | Iir_Kind_Array_Type_Definition
- | Iir_Kind_Array_Subtype_Definition
- | Iir_Kind_Record_Subtype_Definition
- | Iir_Kind_Access_Subtype_Definition
- | Iir_Kind_Physical_Subtype_Definition
- | Iir_Kind_Floating_Subtype_Definition
- | Iir_Kind_Integer_Subtype_Definition
- | Iir_Kind_Enumeration_Subtype_Definition
- | Iir_Kind_Enumeration_Type_Definition
- | Iir_Kind_Integer_Type_Definition
- | Iir_Kind_Floating_Type_Definition
- | Iir_Kind_Physical_Type_Definition =>
- null;
- when others =>
- Failed ("Type_Declarator", Target);
- end case;
- end Check_Kind_For_Type_Declarator;
-
function Get_Type_Declarator (Def : Iir) return Iir is
begin
- Check_Kind_For_Type_Declarator (Def);
+ pragma Assert (Def /= Null_Iir);
+ pragma Assert (Has_Type_Declarator (Get_Kind (Def)));
return Get_Field3 (Def);
end Get_Type_Declarator;
procedure Set_Type_Declarator (Def : Iir; Decl : Iir) is
begin
- Check_Kind_For_Type_Declarator (Def);
+ pragma Assert (Def /= Null_Iir);
+ pragma Assert (Has_Type_Declarator (Get_Kind (Def)));
Set_Field3 (Def, Decl);
end Set_Type_Declarator;
- procedure Check_Kind_For_Enumeration_Literal_List (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Enumeration_Type_Definition =>
- null;
- when others =>
- Failed ("Enumeration_Literal_List", Target);
- end case;
- end Check_Kind_For_Enumeration_Literal_List;
-
function Get_Enumeration_Literal_List (Target : Iir) return Iir_List is
begin
- Check_Kind_For_Enumeration_Literal_List (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Enumeration_Literal_List (Get_Kind (Target)));
return Iir_To_Iir_List (Get_Field2 (Target));
end Get_Enumeration_Literal_List;
procedure Set_Enumeration_Literal_List (Target : Iir; List : Iir_List) is
begin
- Check_Kind_For_Enumeration_Literal_List (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Enumeration_Literal_List (Get_Kind (Target)));
Set_Field2 (Target, Iir_List_To_Iir (List));
end Set_Enumeration_Literal_List;
- procedure Check_Kind_For_Entity_Class_Entry_Chain (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Group_Template_Declaration =>
- null;
- when others =>
- Failed ("Entity_Class_Entry_Chain", Target);
- end case;
- end Check_Kind_For_Entity_Class_Entry_Chain;
-
function Get_Entity_Class_Entry_Chain (Target : Iir) return Iir is
begin
- Check_Kind_For_Entity_Class_Entry_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Entity_Class_Entry_Chain (Get_Kind (Target)));
return Get_Field1 (Target);
end Get_Entity_Class_Entry_Chain;
procedure Set_Entity_Class_Entry_Chain (Target : Iir; Chain : Iir) is
begin
- Check_Kind_For_Entity_Class_Entry_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Entity_Class_Entry_Chain (Get_Kind (Target)));
Set_Field1 (Target, Chain);
end Set_Entity_Class_Entry_Chain;
- procedure Check_Kind_For_Group_Constituent_List (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Group_Declaration =>
- null;
- when others =>
- Failed ("Group_Constituent_List", Target);
- end case;
- end Check_Kind_For_Group_Constituent_List;
-
function Get_Group_Constituent_List (Group : Iir) return Iir_List is
begin
- Check_Kind_For_Group_Constituent_List (Group);
+ pragma Assert (Group /= Null_Iir);
+ pragma Assert (Has_Group_Constituent_List (Get_Kind (Group)));
return Iir_To_Iir_List (Get_Field1 (Group));
end Get_Group_Constituent_List;
procedure Set_Group_Constituent_List (Group : Iir; List : Iir_List) is
begin
- Check_Kind_For_Group_Constituent_List (Group);
+ pragma Assert (Group /= Null_Iir);
+ pragma Assert (Has_Group_Constituent_List (Get_Kind (Group)));
Set_Field1 (Group, Iir_List_To_Iir (List));
end Set_Group_Constituent_List;
- procedure Check_Kind_For_Unit_Chain (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Physical_Type_Definition =>
- null;
- when others =>
- Failed ("Unit_Chain", Target);
- end case;
- end Check_Kind_For_Unit_Chain;
-
function Get_Unit_Chain (Target : Iir) return Iir is
begin
- Check_Kind_For_Unit_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Unit_Chain (Get_Kind (Target)));
return Get_Field1 (Target);
end Get_Unit_Chain;
procedure Set_Unit_Chain (Target : Iir; Chain : Iir) is
begin
- Check_Kind_For_Unit_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Unit_Chain (Get_Kind (Target)));
Set_Field1 (Target, Chain);
end Set_Unit_Chain;
- procedure Check_Kind_For_Primary_Unit (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Physical_Type_Definition =>
- null;
- when others =>
- Failed ("Primary_Unit", Target);
- end case;
- end Check_Kind_For_Primary_Unit;
-
function Get_Primary_Unit (Target : Iir) return Iir is
begin
- Check_Kind_For_Primary_Unit (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Primary_Unit (Get_Kind (Target)));
return Get_Field1 (Target);
end Get_Primary_Unit;
procedure Set_Primary_Unit (Target : Iir; Unit : Iir) is
begin
- Check_Kind_For_Primary_Unit (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Primary_Unit (Get_Kind (Target)));
Set_Field1 (Target, Unit);
end Set_Primary_Unit;
- procedure Check_Kind_For_Identifier (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Design_Unit
- | Iir_Kind_Library_Clause
- | Iir_Kind_Record_Element_Constraint
- | Iir_Kind_Protected_Type_Body
- | Iir_Kind_Type_Declaration
- | Iir_Kind_Anonymous_Type_Declaration
- | Iir_Kind_Subtype_Declaration
- | Iir_Kind_Nature_Declaration
- | Iir_Kind_Subnature_Declaration
- | Iir_Kind_Package_Declaration
- | Iir_Kind_Package_Instantiation_Declaration
- | Iir_Kind_Package_Body
- | Iir_Kind_Configuration_Declaration
- | Iir_Kind_Entity_Declaration
- | Iir_Kind_Architecture_Body
- | Iir_Kind_Unit_Declaration
- | Iir_Kind_Library_Declaration
- | Iir_Kind_Component_Declaration
- | Iir_Kind_Attribute_Declaration
- | Iir_Kind_Group_Template_Declaration
- | Iir_Kind_Group_Declaration
- | Iir_Kind_Element_Declaration
- | Iir_Kind_Non_Object_Alias_Declaration
- | Iir_Kind_Psl_Declaration
- | Iir_Kind_Terminal_Declaration
- | Iir_Kind_Free_Quantity_Declaration
- | Iir_Kind_Across_Quantity_Declaration
- | Iir_Kind_Through_Quantity_Declaration
- | Iir_Kind_Enumeration_Literal
- | Iir_Kind_Function_Declaration
- | Iir_Kind_Implicit_Function_Declaration
- | Iir_Kind_Implicit_Procedure_Declaration
- | Iir_Kind_Procedure_Declaration
- | Iir_Kind_Object_Alias_Declaration
- | Iir_Kind_File_Declaration
- | Iir_Kind_Guard_Signal_Declaration
- | Iir_Kind_Signal_Declaration
- | Iir_Kind_Variable_Declaration
- | Iir_Kind_Constant_Declaration
- | Iir_Kind_Iterator_Declaration
- | Iir_Kind_Constant_Interface_Declaration
- | Iir_Kind_Variable_Interface_Declaration
- | Iir_Kind_Signal_Interface_Declaration
- | Iir_Kind_File_Interface_Declaration
- | Iir_Kind_Sensitized_Process_Statement
- | Iir_Kind_Process_Statement
- | Iir_Kind_Concurrent_Conditional_Signal_Assignment
- | Iir_Kind_Concurrent_Selected_Signal_Assignment
- | Iir_Kind_Concurrent_Assertion_Statement
- | Iir_Kind_Psl_Default_Clock
- | Iir_Kind_Psl_Assert_Statement
- | Iir_Kind_Psl_Cover_Statement
- | Iir_Kind_Concurrent_Procedure_Call_Statement
- | Iir_Kind_Block_Statement
- | Iir_Kind_Generate_Statement
- | Iir_Kind_Component_Instantiation_Statement
- | Iir_Kind_Simple_Simultaneous_Statement
- | Iir_Kind_Signal_Assignment_Statement
- | Iir_Kind_Null_Statement
- | Iir_Kind_Assertion_Statement
- | Iir_Kind_Report_Statement
- | Iir_Kind_Wait_Statement
- | Iir_Kind_Variable_Assignment_Statement
- | Iir_Kind_Return_Statement
- | Iir_Kind_For_Loop_Statement
- | Iir_Kind_While_Loop_Statement
- | Iir_Kind_Next_Statement
- | Iir_Kind_Exit_Statement
- | Iir_Kind_Case_Statement
- | Iir_Kind_Procedure_Call_Statement
- | Iir_Kind_If_Statement
- | Iir_Kind_Character_Literal
- | Iir_Kind_Simple_Name
- | Iir_Kind_Selected_Name
- | Iir_Kind_Operator_Symbol
- | Iir_Kind_Attribute_Name =>
- null;
- when others =>
- Failed ("Identifier", Target);
- end case;
- end Check_Kind_For_Identifier;
-
function Get_Identifier (Target : Iir) return Name_Id is
begin
- Check_Kind_For_Identifier (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Identifier (Get_Kind (Target)));
return Iir_To_Name_Id (Get_Field3 (Target));
end Get_Identifier;
procedure Set_Identifier (Target : Iir; Identifier : Name_Id) is
begin
- Check_Kind_For_Identifier (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Identifier (Get_Kind (Target)));
Set_Field3 (Target, Name_Id_To_Iir (Identifier));
end Set_Identifier;
- procedure Check_Kind_For_Label (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Sensitized_Process_Statement
- | Iir_Kind_Process_Statement
- | Iir_Kind_Concurrent_Conditional_Signal_Assignment
- | Iir_Kind_Concurrent_Selected_Signal_Assignment
- | Iir_Kind_Concurrent_Assertion_Statement
- | Iir_Kind_Psl_Default_Clock
- | Iir_Kind_Psl_Assert_Statement
- | Iir_Kind_Psl_Cover_Statement
- | Iir_Kind_Concurrent_Procedure_Call_Statement
- | Iir_Kind_Block_Statement
- | Iir_Kind_Generate_Statement
- | Iir_Kind_Component_Instantiation_Statement
- | Iir_Kind_Simple_Simultaneous_Statement
- | Iir_Kind_Signal_Assignment_Statement
- | Iir_Kind_Null_Statement
- | Iir_Kind_Assertion_Statement
- | Iir_Kind_Report_Statement
- | Iir_Kind_Wait_Statement
- | Iir_Kind_Variable_Assignment_Statement
- | Iir_Kind_Return_Statement
- | Iir_Kind_For_Loop_Statement
- | Iir_Kind_While_Loop_Statement
- | Iir_Kind_Next_Statement
- | Iir_Kind_Exit_Statement
- | Iir_Kind_Case_Statement
- | Iir_Kind_Procedure_Call_Statement
- | Iir_Kind_If_Statement =>
- null;
- when others =>
- Failed ("Label", Target);
- end case;
- end Check_Kind_For_Label;
-
function Get_Label (Target : Iir) return Name_Id is
begin
- Check_Kind_For_Label (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Label (Get_Kind (Target)));
return Iir_To_Name_Id (Get_Field3 (Target));
end Get_Label;
procedure Set_Label (Target : Iir; Label : Name_Id) is
begin
- Check_Kind_For_Label (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Label (Get_Kind (Target)));
Set_Field3 (Target, Name_Id_To_Iir (Label));
end Set_Label;
- procedure Check_Kind_For_Visible_Flag (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Record_Element_Constraint
- | Iir_Kind_Type_Declaration
- | Iir_Kind_Subtype_Declaration
- | Iir_Kind_Nature_Declaration
- | Iir_Kind_Subnature_Declaration
- | Iir_Kind_Package_Declaration
- | Iir_Kind_Package_Instantiation_Declaration
- | Iir_Kind_Configuration_Declaration
- | Iir_Kind_Entity_Declaration
- | Iir_Kind_Architecture_Body
- | Iir_Kind_Unit_Declaration
- | Iir_Kind_Library_Declaration
- | Iir_Kind_Component_Declaration
- | Iir_Kind_Attribute_Declaration
- | Iir_Kind_Group_Template_Declaration
- | Iir_Kind_Group_Declaration
- | Iir_Kind_Element_Declaration
- | Iir_Kind_Non_Object_Alias_Declaration
- | Iir_Kind_Psl_Declaration
- | Iir_Kind_Terminal_Declaration
- | Iir_Kind_Free_Quantity_Declaration
- | Iir_Kind_Across_Quantity_Declaration
- | Iir_Kind_Through_Quantity_Declaration
- | Iir_Kind_Enumeration_Literal
- | Iir_Kind_Function_Declaration
- | Iir_Kind_Implicit_Function_Declaration
- | Iir_Kind_Implicit_Procedure_Declaration
- | Iir_Kind_Procedure_Declaration
- | Iir_Kind_Object_Alias_Declaration
- | Iir_Kind_File_Declaration
- | Iir_Kind_Guard_Signal_Declaration
- | Iir_Kind_Signal_Declaration
- | Iir_Kind_Variable_Declaration
- | Iir_Kind_Constant_Declaration
- | Iir_Kind_Iterator_Declaration
- | Iir_Kind_Constant_Interface_Declaration
- | Iir_Kind_Variable_Interface_Declaration
- | Iir_Kind_Signal_Interface_Declaration
- | Iir_Kind_File_Interface_Declaration
- | Iir_Kind_Sensitized_Process_Statement
- | Iir_Kind_Process_Statement
- | Iir_Kind_Concurrent_Conditional_Signal_Assignment
- | Iir_Kind_Concurrent_Selected_Signal_Assignment
- | Iir_Kind_Concurrent_Assertion_Statement
- | Iir_Kind_Psl_Assert_Statement
- | Iir_Kind_Psl_Cover_Statement
- | Iir_Kind_Concurrent_Procedure_Call_Statement
- | Iir_Kind_Block_Statement
- | Iir_Kind_Generate_Statement
- | Iir_Kind_Component_Instantiation_Statement
- | Iir_Kind_Simple_Simultaneous_Statement
- | Iir_Kind_Signal_Assignment_Statement
- | Iir_Kind_Null_Statement
- | Iir_Kind_Assertion_Statement
- | Iir_Kind_Report_Statement
- | Iir_Kind_Wait_Statement
- | Iir_Kind_Variable_Assignment_Statement
- | Iir_Kind_Return_Statement
- | Iir_Kind_For_Loop_Statement
- | Iir_Kind_While_Loop_Statement
- | Iir_Kind_Next_Statement
- | Iir_Kind_Exit_Statement
- | Iir_Kind_Case_Statement
- | Iir_Kind_Procedure_Call_Statement
- | Iir_Kind_If_Statement =>
- null;
- when others =>
- Failed ("Visible_Flag", Target);
- end case;
- end Check_Kind_For_Visible_Flag;
-
function Get_Visible_Flag (Target : Iir) return Boolean is
begin
- Check_Kind_For_Visible_Flag (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Visible_Flag (Get_Kind (Target)));
return Get_Flag4 (Target);
end Get_Visible_Flag;
procedure Set_Visible_Flag (Target : Iir; Flag : Boolean) is
begin
- Check_Kind_For_Visible_Flag (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Visible_Flag (Get_Kind (Target)));
Set_Flag4 (Target, Flag);
end Set_Visible_Flag;
- procedure Check_Kind_For_Range_Constraint (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Physical_Subtype_Definition
- | Iir_Kind_Floating_Subtype_Definition
- | Iir_Kind_Integer_Subtype_Definition
- | Iir_Kind_Enumeration_Subtype_Definition
- | Iir_Kind_Enumeration_Type_Definition
- | Iir_Kind_Subtype_Definition =>
- null;
- when others =>
- Failed ("Range_Constraint", Target);
- end case;
- end Check_Kind_For_Range_Constraint;
-
function Get_Range_Constraint (Target : Iir) return Iir is
begin
- Check_Kind_For_Range_Constraint (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Range_Constraint (Get_Kind (Target)));
return Get_Field1 (Target);
end Get_Range_Constraint;
procedure Set_Range_Constraint (Target : Iir; Constraint : Iir) is
begin
- Check_Kind_For_Range_Constraint (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Range_Constraint (Get_Kind (Target)));
Set_Field1 (Target, Constraint);
end Set_Range_Constraint;
- procedure Check_Kind_For_Direction (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Range_Expression =>
- null;
- when others =>
- Failed ("Direction", Target);
- end case;
- end Check_Kind_For_Direction;
-
function Get_Direction (Decl : Iir) return Iir_Direction is
begin
- Check_Kind_For_Direction (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Direction (Get_Kind (Decl)));
return Iir_Direction'Val (Get_State2 (Decl));
end Get_Direction;
procedure Set_Direction (Decl : Iir; Dir : Iir_Direction) is
begin
- Check_Kind_For_Direction (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Direction (Get_Kind (Decl)));
Set_State2 (Decl, Iir_Direction'Pos (Dir));
end Set_Direction;
- procedure Check_Kind_For_Left_Limit (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Range_Expression =>
- null;
- when others =>
- Failed ("Left_Limit", Target);
- end case;
- end Check_Kind_For_Left_Limit;
-
function Get_Left_Limit (Decl : Iir_Range_Expression) return Iir is
begin
- Check_Kind_For_Left_Limit (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Left_Limit (Get_Kind (Decl)));
return Get_Field2 (Decl);
end Get_Left_Limit;
procedure Set_Left_Limit (Decl : Iir_Range_Expression; Limit : Iir) is
begin
- Check_Kind_For_Left_Limit (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Left_Limit (Get_Kind (Decl)));
Set_Field2 (Decl, Limit);
end Set_Left_Limit;
- procedure Check_Kind_For_Right_Limit (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Range_Expression =>
- null;
- when others =>
- Failed ("Right_Limit", Target);
- end case;
- end Check_Kind_For_Right_Limit;
-
function Get_Right_Limit (Decl : Iir_Range_Expression) return Iir is
begin
- Check_Kind_For_Right_Limit (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Right_Limit (Get_Kind (Decl)));
return Get_Field3 (Decl);
end Get_Right_Limit;
procedure Set_Right_Limit (Decl : Iir_Range_Expression; Limit : Iir) is
begin
- Check_Kind_For_Right_Limit (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Right_Limit (Get_Kind (Decl)));
Set_Field3 (Decl, Limit);
end Set_Right_Limit;
- procedure Check_Kind_For_Base_Type (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Error
- | Iir_Kind_Access_Type_Definition
- | Iir_Kind_Incomplete_Type_Definition
- | Iir_Kind_File_Type_Definition
- | Iir_Kind_Protected_Type_Declaration
- | Iir_Kind_Record_Type_Definition
- | Iir_Kind_Array_Type_Definition
- | Iir_Kind_Array_Subtype_Definition
- | Iir_Kind_Record_Subtype_Definition
- | Iir_Kind_Access_Subtype_Definition
- | Iir_Kind_Physical_Subtype_Definition
- | Iir_Kind_Floating_Subtype_Definition
- | Iir_Kind_Integer_Subtype_Definition
- | Iir_Kind_Enumeration_Subtype_Definition
- | Iir_Kind_Enumeration_Type_Definition
- | Iir_Kind_Integer_Type_Definition
- | Iir_Kind_Floating_Type_Definition
- | Iir_Kind_Physical_Type_Definition =>
- null;
- when others =>
- Failed ("Base_Type", Target);
- end case;
- end Check_Kind_For_Base_Type;
-
function Get_Base_Type (Decl : Iir) return Iir is
begin
- Check_Kind_For_Base_Type (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Base_Type (Get_Kind (Decl)));
return Get_Field4 (Decl);
end Get_Base_Type;
procedure Set_Base_Type (Decl : Iir; Base_Type : Iir) is
begin
- Check_Kind_For_Base_Type (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Base_Type (Get_Kind (Decl)));
Set_Field4 (Decl, Base_Type);
end Set_Base_Type;
- procedure Check_Kind_For_Resolution_Function (Target : Iir) is
+ function Get_Resolution_Indication (Decl : Iir) return Iir is
begin
- case Get_Kind (Target) is
- when Iir_Kind_Array_Subtype_Definition
- | Iir_Kind_Record_Subtype_Definition
- | Iir_Kind_Physical_Subtype_Definition
- | Iir_Kind_Floating_Subtype_Definition
- | Iir_Kind_Integer_Subtype_Definition
- | Iir_Kind_Enumeration_Subtype_Definition
- | Iir_Kind_Subtype_Definition =>
- null;
- when others =>
- Failed ("Resolution_Function", Target);
- end case;
- end Check_Kind_For_Resolution_Function;
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Resolution_Indication (Get_Kind (Decl)));
+ return Get_Field5 (Decl);
+ end Get_Resolution_Indication;
- function Get_Resolution_Function (Decl : Iir) return Iir is
+ procedure Set_Resolution_Indication (Decl : Iir; Ind : Iir) is
begin
- Check_Kind_For_Resolution_Function (Decl);
- return Get_Field5 (Decl);
- end Get_Resolution_Function;
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Resolution_Indication (Get_Kind (Decl)));
+ Set_Field5 (Decl, Ind);
+ end Set_Resolution_Indication;
- procedure Set_Resolution_Function (Decl : Iir; Func : Iir) is
+ function Get_Record_Element_Resolution_Chain (Res : Iir) return Iir is
begin
- Check_Kind_For_Resolution_Function (Decl);
- Set_Field5 (Decl, Func);
- end Set_Resolution_Function;
+ pragma Assert (Res /= Null_Iir);
+ pragma Assert (Has_Record_Element_Resolution_Chain (Get_Kind (Res)));
+ return Get_Field1 (Res);
+ end Get_Record_Element_Resolution_Chain;
- procedure Check_Kind_For_Tolerance (Target : Iir) is
+ procedure Set_Record_Element_Resolution_Chain (Res : Iir; Chain : Iir) is
begin
- case Get_Kind (Target) is
- when Iir_Kind_Array_Subtype_Definition
- | Iir_Kind_Record_Subtype_Definition
- | Iir_Kind_Floating_Subtype_Definition
- | Iir_Kind_Subtype_Definition
- | Iir_Kind_Across_Quantity_Declaration
- | Iir_Kind_Through_Quantity_Declaration
- | Iir_Kind_Simple_Simultaneous_Statement =>
- null;
- when others =>
- Failed ("Tolerance", Target);
- end case;
- end Check_Kind_For_Tolerance;
+ pragma Assert (Res /= Null_Iir);
+ pragma Assert (Has_Record_Element_Resolution_Chain (Get_Kind (Res)));
+ Set_Field1 (Res, Chain);
+ end Set_Record_Element_Resolution_Chain;
function Get_Tolerance (Def : Iir) return Iir is
begin
- Check_Kind_For_Tolerance (Def);
+ pragma Assert (Def /= Null_Iir);
+ pragma Assert (Has_Tolerance (Get_Kind (Def)));
return Get_Field7 (Def);
end Get_Tolerance;
procedure Set_Tolerance (Def : Iir; Tol : Iir) is
begin
- Check_Kind_For_Tolerance (Def);
+ pragma Assert (Def /= Null_Iir);
+ pragma Assert (Has_Tolerance (Get_Kind (Def)));
Set_Field7 (Def, Tol);
end Set_Tolerance;
- procedure Check_Kind_For_Plus_Terminal (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Across_Quantity_Declaration
- | Iir_Kind_Through_Quantity_Declaration =>
- null;
- when others =>
- Failed ("Plus_Terminal", Target);
- end case;
- end Check_Kind_For_Plus_Terminal;
-
function Get_Plus_Terminal (Def : Iir) return Iir is
begin
- Check_Kind_For_Plus_Terminal (Def);
+ pragma Assert (Def /= Null_Iir);
+ pragma Assert (Has_Plus_Terminal (Get_Kind (Def)));
return Get_Field8 (Def);
end Get_Plus_Terminal;
procedure Set_Plus_Terminal (Def : Iir; Terminal : Iir) is
begin
- Check_Kind_For_Plus_Terminal (Def);
+ pragma Assert (Def /= Null_Iir);
+ pragma Assert (Has_Plus_Terminal (Get_Kind (Def)));
Set_Field8 (Def, Terminal);
end Set_Plus_Terminal;
- procedure Check_Kind_For_Minus_Terminal (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Across_Quantity_Declaration
- | Iir_Kind_Through_Quantity_Declaration =>
- null;
- when others =>
- Failed ("Minus_Terminal", Target);
- end case;
- end Check_Kind_For_Minus_Terminal;
-
function Get_Minus_Terminal (Def : Iir) return Iir is
begin
- Check_Kind_For_Minus_Terminal (Def);
+ pragma Assert (Def /= Null_Iir);
+ pragma Assert (Has_Minus_Terminal (Get_Kind (Def)));
return Get_Field9 (Def);
end Get_Minus_Terminal;
procedure Set_Minus_Terminal (Def : Iir; Terminal : Iir) is
begin
- Check_Kind_For_Minus_Terminal (Def);
+ pragma Assert (Def /= Null_Iir);
+ pragma Assert (Has_Minus_Terminal (Get_Kind (Def)));
Set_Field9 (Def, Terminal);
end Set_Minus_Terminal;
- procedure Check_Kind_For_Simultaneous_Left (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Simple_Simultaneous_Statement =>
- null;
- when others =>
- Failed ("Simultaneous_Left", Target);
- end case;
- end Check_Kind_For_Simultaneous_Left;
-
function Get_Simultaneous_Left (Def : Iir) return Iir is
begin
- Check_Kind_For_Simultaneous_Left (Def);
+ pragma Assert (Def /= Null_Iir);
+ pragma Assert (Has_Simultaneous_Left (Get_Kind (Def)));
return Get_Field5 (Def);
end Get_Simultaneous_Left;
procedure Set_Simultaneous_Left (Def : Iir; Expr : Iir) is
begin
- Check_Kind_For_Simultaneous_Left (Def);
+ pragma Assert (Def /= Null_Iir);
+ pragma Assert (Has_Simultaneous_Left (Get_Kind (Def)));
Set_Field5 (Def, Expr);
end Set_Simultaneous_Left;
- procedure Check_Kind_For_Simultaneous_Right (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Simple_Simultaneous_Statement =>
- null;
- when others =>
- Failed ("Simultaneous_Right", Target);
- end case;
- end Check_Kind_For_Simultaneous_Right;
-
function Get_Simultaneous_Right (Def : Iir) return Iir is
begin
- Check_Kind_For_Simultaneous_Right (Def);
+ pragma Assert (Def /= Null_Iir);
+ pragma Assert (Has_Simultaneous_Right (Get_Kind (Def)));
return Get_Field6 (Def);
end Get_Simultaneous_Right;
procedure Set_Simultaneous_Right (Def : Iir; Expr : Iir) is
begin
- Check_Kind_For_Simultaneous_Right (Def);
+ pragma Assert (Def /= Null_Iir);
+ pragma Assert (Has_Simultaneous_Right (Get_Kind (Def)));
Set_Field6 (Def, Expr);
end Set_Simultaneous_Right;
- procedure Check_Kind_For_Text_File_Flag (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_File_Type_Definition =>
- null;
- when others =>
- Failed ("Text_File_Flag", Target);
- end case;
- end Check_Kind_For_Text_File_Flag;
-
function Get_Text_File_Flag (Atype : Iir) return Boolean is
begin
- Check_Kind_For_Text_File_Flag (Atype);
+ pragma Assert (Atype /= Null_Iir);
+ pragma Assert (Has_Text_File_Flag (Get_Kind (Atype)));
return Get_Flag4 (Atype);
end Get_Text_File_Flag;
procedure Set_Text_File_Flag (Atype : Iir; Flag : Boolean) is
begin
- Check_Kind_For_Text_File_Flag (Atype);
+ pragma Assert (Atype /= Null_Iir);
+ pragma Assert (Has_Text_File_Flag (Get_Kind (Atype)));
Set_Flag4 (Atype, Flag);
end Set_Text_File_Flag;
- procedure Check_Kind_For_Only_Characters_Flag (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Enumeration_Type_Definition =>
- null;
- when others =>
- Failed ("Only_Characters_Flag", Target);
- end case;
- end Check_Kind_For_Only_Characters_Flag;
-
function Get_Only_Characters_Flag (Atype : Iir) return Boolean is
begin
- Check_Kind_For_Only_Characters_Flag (Atype);
+ pragma Assert (Atype /= Null_Iir);
+ pragma Assert (Has_Only_Characters_Flag (Get_Kind (Atype)));
return Get_Flag4 (Atype);
end Get_Only_Characters_Flag;
procedure Set_Only_Characters_Flag (Atype : Iir; Flag : Boolean) is
begin
- Check_Kind_For_Only_Characters_Flag (Atype);
+ pragma Assert (Atype /= Null_Iir);
+ pragma Assert (Has_Only_Characters_Flag (Get_Kind (Atype)));
Set_Flag4 (Atype, Flag);
end Set_Only_Characters_Flag;
- procedure Check_Kind_For_Type_Staticness (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Error
- | Iir_Kind_Access_Type_Definition
- | Iir_Kind_Incomplete_Type_Definition
- | Iir_Kind_File_Type_Definition
- | Iir_Kind_Protected_Type_Declaration
- | Iir_Kind_Record_Type_Definition
- | Iir_Kind_Array_Type_Definition
- | Iir_Kind_Array_Subtype_Definition
- | Iir_Kind_Record_Subtype_Definition
- | Iir_Kind_Access_Subtype_Definition
- | Iir_Kind_Physical_Subtype_Definition
- | Iir_Kind_Floating_Subtype_Definition
- | Iir_Kind_Integer_Subtype_Definition
- | Iir_Kind_Enumeration_Subtype_Definition
- | Iir_Kind_Enumeration_Type_Definition
- | Iir_Kind_Integer_Type_Definition
- | Iir_Kind_Floating_Type_Definition
- | Iir_Kind_Physical_Type_Definition =>
- null;
- when others =>
- Failed ("Type_Staticness", Target);
- end case;
- end Check_Kind_For_Type_Staticness;
-
function Get_Type_Staticness (Atype : Iir) return Iir_Staticness is
begin
- Check_Kind_For_Type_Staticness (Atype);
+ pragma Assert (Atype /= Null_Iir);
+ pragma Assert (Has_Type_Staticness (Get_Kind (Atype)));
return Iir_Staticness'Val (Get_State1 (Atype));
end Get_Type_Staticness;
procedure Set_Type_Staticness (Atype : Iir; Static : Iir_Staticness) is
begin
- Check_Kind_For_Type_Staticness (Atype);
+ pragma Assert (Atype /= Null_Iir);
+ pragma Assert (Has_Type_Staticness (Get_Kind (Atype)));
Set_State1 (Atype, Iir_Staticness'Pos (Static));
end Set_Type_Staticness;
- procedure Check_Kind_For_Constraint_State (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Record_Type_Definition
- | Iir_Kind_Array_Type_Definition
- | Iir_Kind_Array_Subtype_Definition
- | Iir_Kind_Record_Subtype_Definition =>
- null;
- when others =>
- Failed ("Constraint_State", Target);
- end case;
- end Check_Kind_For_Constraint_State;
-
function Get_Constraint_State (Atype : Iir) return Iir_Constraint is
begin
- Check_Kind_For_Constraint_State (Atype);
+ pragma Assert (Atype /= Null_Iir);
+ pragma Assert (Has_Constraint_State (Get_Kind (Atype)));
return Iir_Constraint'Val (Get_State2 (Atype));
end Get_Constraint_State;
procedure Set_Constraint_State (Atype : Iir; State : Iir_Constraint) is
begin
- Check_Kind_For_Constraint_State (Atype);
+ pragma Assert (Atype /= Null_Iir);
+ pragma Assert (Has_Constraint_State (Get_Kind (Atype)));
Set_State2 (Atype, Iir_Constraint'Pos (State));
end Set_Constraint_State;
- procedure Check_Kind_For_Index_Subtype_List (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Array_Type_Definition
- | Iir_Kind_Array_Subtype_Definition =>
- null;
- when others =>
- Failed ("Index_Subtype_List", Target);
- end case;
- end Check_Kind_For_Index_Subtype_List;
-
function Get_Index_Subtype_List (Decl : Iir) return Iir_List is
begin
- Check_Kind_For_Index_Subtype_List (Decl);
- return Iir_To_Iir_List (Get_Field6 (Decl));
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Index_Subtype_List (Get_Kind (Decl)));
+ return Iir_To_Iir_List (Get_Field9 (Decl));
end Get_Index_Subtype_List;
procedure Set_Index_Subtype_List (Decl : Iir; List : Iir_List) is
begin
- Check_Kind_For_Index_Subtype_List (Decl);
- Set_Field6 (Decl, Iir_List_To_Iir (List));
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Index_Subtype_List (Get_Kind (Decl)));
+ Set_Field9 (Decl, Iir_List_To_Iir (List));
end Set_Index_Subtype_List;
- procedure Check_Kind_For_Index_List (Target : Iir) is
+ function Get_Index_Subtype_Definition_List (Def : Iir) return Iir_List is
begin
- case Get_Kind (Target) is
- when Iir_Kind_Indexed_Name =>
- null;
- when others =>
- Failed ("Index_List", Target);
- end case;
- end Check_Kind_For_Index_List;
+ pragma Assert (Def /= Null_Iir);
+ pragma Assert (Has_Index_Subtype_Definition_List (Get_Kind (Def)));
+ return Iir_To_Iir_List (Get_Field6 (Def));
+ end Get_Index_Subtype_Definition_List;
- function Get_Index_List (Decl : Iir) return Iir_List is
+ procedure Set_Index_Subtype_Definition_List (Def : Iir; Idx : Iir_List) is
begin
- Check_Kind_For_Index_List (Decl);
- return Iir_To_Iir_List (Get_Field2 (Decl));
- end Get_Index_List;
+ pragma Assert (Def /= Null_Iir);
+ pragma Assert (Has_Index_Subtype_Definition_List (Get_Kind (Def)));
+ Set_Field6 (Def, Iir_List_To_Iir (Idx));
+ end Set_Index_Subtype_Definition_List;
- procedure Set_Index_List (Decl : Iir; List : Iir_List) is
+ function Get_Element_Subtype_Indication (Decl : Iir) return Iir is
begin
- Check_Kind_For_Index_List (Decl);
- Set_Field2 (Decl, Iir_List_To_Iir (List));
- end Set_Index_List;
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Element_Subtype_Indication (Get_Kind (Decl)));
+ return Get_Field2 (Decl);
+ end Get_Element_Subtype_Indication;
- procedure Check_Kind_For_Element_Subtype_Indication (Target : Iir) is
+ procedure Set_Element_Subtype_Indication (Decl : Iir; Sub_Type : Iir) is
begin
- case Get_Kind (Target) is
- when Iir_Kind_Array_Type_Definition
- | Iir_Kind_Array_Subtype_Definition =>
- null;
- when others =>
- Failed ("Element_Subtype_Indication", Target);
- end case;
- end Check_Kind_For_Element_Subtype_Indication;
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Element_Subtype_Indication (Get_Kind (Decl)));
+ Set_Field2 (Decl, Sub_Type);
+ end Set_Element_Subtype_Indication;
- function Get_Element_Subtype_Indication (Decl : Iir) return Iir is
+ function Get_Element_Subtype (Decl : Iir) return Iir is
begin
- Check_Kind_For_Element_Subtype_Indication (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Element_Subtype (Get_Kind (Decl)));
return Get_Field1 (Decl);
- end Get_Element_Subtype_Indication;
+ end Get_Element_Subtype;
- procedure Set_Element_Subtype_Indication (Decl : Iir; Sub_Type : Iir) is
+ procedure Set_Element_Subtype (Decl : Iir; Sub_Type : Iir) is
begin
- Check_Kind_For_Element_Subtype_Indication (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Element_Subtype (Get_Kind (Decl)));
Set_Field1 (Decl, Sub_Type);
- end Set_Element_Subtype_Indication;
+ end Set_Element_Subtype;
- procedure Check_Kind_For_Elements_Declaration_List (Target : Iir) is
+ function Get_Index_Constraint_List (Def : Iir) return Iir_List is
begin
- case Get_Kind (Target) is
- when Iir_Kind_Record_Type_Definition
- | Iir_Kind_Record_Subtype_Definition =>
- null;
- when others =>
- Failed ("Elements_Declaration_List", Target);
- end case;
- end Check_Kind_For_Elements_Declaration_List;
+ pragma Assert (Def /= Null_Iir);
+ pragma Assert (Has_Index_Constraint_List (Get_Kind (Def)));
+ return Iir_To_Iir_List (Get_Field6 (Def));
+ end Get_Index_Constraint_List;
+
+ procedure Set_Index_Constraint_List (Def : Iir; List : Iir_List) is
+ begin
+ pragma Assert (Def /= Null_Iir);
+ pragma Assert (Has_Index_Constraint_List (Get_Kind (Def)));
+ Set_Field6 (Def, Iir_List_To_Iir (List));
+ end Set_Index_Constraint_List;
+
+ function Get_Array_Element_Constraint (Def : Iir) return Iir is
+ begin
+ pragma Assert (Def /= Null_Iir);
+ pragma Assert (Has_Array_Element_Constraint (Get_Kind (Def)));
+ return Get_Field8 (Def);
+ end Get_Array_Element_Constraint;
+
+ procedure Set_Array_Element_Constraint (Def : Iir; El : Iir) is
+ begin
+ pragma Assert (Def /= Null_Iir);
+ pragma Assert (Has_Array_Element_Constraint (Get_Kind (Def)));
+ Set_Field8 (Def, El);
+ end Set_Array_Element_Constraint;
function Get_Elements_Declaration_List (Decl : Iir) return Iir_List is
begin
- Check_Kind_For_Elements_Declaration_List (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Elements_Declaration_List (Get_Kind (Decl)));
return Iir_To_Iir_List (Get_Field1 (Decl));
end Get_Elements_Declaration_List;
procedure Set_Elements_Declaration_List (Decl : Iir; List : Iir_List) is
begin
- Check_Kind_For_Elements_Declaration_List (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Elements_Declaration_List (Get_Kind (Decl)));
Set_Field1 (Decl, Iir_List_To_Iir (List));
end Set_Elements_Declaration_List;
- procedure Check_Kind_For_Designated_Type (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Access_Type_Definition
- | Iir_Kind_Access_Subtype_Definition =>
- null;
- when others =>
- Failed ("Designated_Type", Target);
- end case;
- end Check_Kind_For_Designated_Type;
-
function Get_Designated_Type (Target : Iir) return Iir is
begin
- Check_Kind_For_Designated_Type (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Designated_Type (Get_Kind (Target)));
return Get_Field1 (Target);
end Get_Designated_Type;
procedure Set_Designated_Type (Target : Iir; Dtype : Iir) is
begin
- Check_Kind_For_Designated_Type (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Designated_Type (Get_Kind (Target)));
Set_Field1 (Target, Dtype);
end Set_Designated_Type;
- procedure Check_Kind_For_Designated_Subtype_Indication (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Access_Type_Definition
- | Iir_Kind_Access_Subtype_Definition =>
- null;
- when others =>
- Failed ("Designated_Subtype_Indication", Target);
- end case;
- end Check_Kind_For_Designated_Subtype_Indication;
-
function Get_Designated_Subtype_Indication (Target : Iir) return Iir is
begin
- Check_Kind_For_Designated_Subtype_Indication (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Designated_Subtype_Indication (Get_Kind (Target)));
return Get_Field5 (Target);
end Get_Designated_Subtype_Indication;
procedure Set_Designated_Subtype_Indication (Target : Iir; Dtype : Iir) is
begin
- Check_Kind_For_Designated_Subtype_Indication (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Designated_Subtype_Indication (Get_Kind (Target)));
Set_Field5 (Target, Dtype);
end Set_Designated_Subtype_Indication;
- procedure Check_Kind_For_Reference (Target : Iir) is
+ function Get_Index_List (Decl : Iir) return Iir_List is
begin
- case Get_Kind (Target) is
- when Iir_Kind_Scalar_Nature_Definition =>
- null;
- when others =>
- Failed ("Reference", Target);
- end case;
- end Check_Kind_For_Reference;
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Index_List (Get_Kind (Decl)));
+ return Iir_To_Iir_List (Get_Field2 (Decl));
+ end Get_Index_List;
+
+ procedure Set_Index_List (Decl : Iir; List : Iir_List) is
+ begin
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Index_List (Get_Kind (Decl)));
+ Set_Field2 (Decl, Iir_List_To_Iir (List));
+ end Set_Index_List;
function Get_Reference (Def : Iir) return Iir is
begin
- Check_Kind_For_Reference (Def);
+ pragma Assert (Def /= Null_Iir);
+ pragma Assert (Has_Reference (Get_Kind (Def)));
return Get_Field2 (Def);
end Get_Reference;
procedure Set_Reference (Def : Iir; Ref : Iir) is
begin
- Check_Kind_For_Reference (Def);
+ pragma Assert (Def /= Null_Iir);
+ pragma Assert (Has_Reference (Get_Kind (Def)));
Set_Field2 (Def, Ref);
end Set_Reference;
- procedure Check_Kind_For_Nature_Declarator (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Scalar_Nature_Definition =>
- null;
- when others =>
- Failed ("Nature_Declarator", Target);
- end case;
- end Check_Kind_For_Nature_Declarator;
-
function Get_Nature_Declarator (Def : Iir) return Iir is
begin
- Check_Kind_For_Nature_Declarator (Def);
+ pragma Assert (Def /= Null_Iir);
+ pragma Assert (Has_Nature_Declarator (Get_Kind (Def)));
return Get_Field3 (Def);
end Get_Nature_Declarator;
procedure Set_Nature_Declarator (Def : Iir; Decl : Iir) is
begin
- Check_Kind_For_Nature_Declarator (Def);
+ pragma Assert (Def /= Null_Iir);
+ pragma Assert (Has_Nature_Declarator (Get_Kind (Def)));
Set_Field3 (Def, Decl);
end Set_Nature_Declarator;
- procedure Check_Kind_For_Across_Type (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Scalar_Nature_Definition =>
- null;
- when others =>
- Failed ("Across_Type", Target);
- end case;
- end Check_Kind_For_Across_Type;
-
function Get_Across_Type (Def : Iir) return Iir is
begin
- Check_Kind_For_Across_Type (Def);
+ pragma Assert (Def /= Null_Iir);
+ pragma Assert (Has_Across_Type (Get_Kind (Def)));
return Get_Field7 (Def);
end Get_Across_Type;
procedure Set_Across_Type (Def : Iir; Atype : Iir) is
begin
- Check_Kind_For_Across_Type (Def);
+ pragma Assert (Def /= Null_Iir);
+ pragma Assert (Has_Across_Type (Get_Kind (Def)));
Set_Field7 (Def, Atype);
end Set_Across_Type;
- procedure Check_Kind_For_Through_Type (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Scalar_Nature_Definition =>
- null;
- when others =>
- Failed ("Through_Type", Target);
- end case;
- end Check_Kind_For_Through_Type;
-
function Get_Through_Type (Def : Iir) return Iir is
begin
- Check_Kind_For_Through_Type (Def);
+ pragma Assert (Def /= Null_Iir);
+ pragma Assert (Has_Through_Type (Get_Kind (Def)));
return Get_Field8 (Def);
end Get_Through_Type;
procedure Set_Through_Type (Def : Iir; Atype : Iir) is
begin
- Check_Kind_For_Through_Type (Def);
+ pragma Assert (Def /= Null_Iir);
+ pragma Assert (Has_Through_Type (Get_Kind (Def)));
Set_Field8 (Def, Atype);
end Set_Through_Type;
- procedure Check_Kind_For_Target (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Concurrent_Conditional_Signal_Assignment
- | Iir_Kind_Concurrent_Selected_Signal_Assignment
- | Iir_Kind_Signal_Assignment_Statement
- | Iir_Kind_Variable_Assignment_Statement =>
- null;
- when others =>
- Failed ("Target", Target);
- end case;
- end Check_Kind_For_Target;
-
function Get_Target (Target : Iir) return Iir is
begin
- Check_Kind_For_Target (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Target (Get_Kind (Target)));
return Get_Field1 (Target);
end Get_Target;
procedure Set_Target (Target : Iir; Atarget : Iir) is
begin
- Check_Kind_For_Target (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Target (Get_Kind (Target)));
Set_Field1 (Target, Atarget);
end Set_Target;
- procedure Check_Kind_For_Waveform_Chain (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Conditional_Waveform
- | Iir_Kind_Signal_Assignment_Statement =>
- null;
- when others =>
- Failed ("Waveform_Chain", Target);
- end case;
- end Check_Kind_For_Waveform_Chain;
-
function Get_Waveform_Chain (Target : Iir) return Iir is
begin
- Check_Kind_For_Waveform_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Waveform_Chain (Get_Kind (Target)));
return Get_Field5 (Target);
end Get_Waveform_Chain;
procedure Set_Waveform_Chain (Target : Iir; Chain : Iir) is
begin
- Check_Kind_For_Waveform_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Waveform_Chain (Get_Kind (Target)));
Set_Field5 (Target, Chain);
end Set_Waveform_Chain;
- procedure Check_Kind_For_Guard (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Concurrent_Conditional_Signal_Assignment
- | Iir_Kind_Concurrent_Selected_Signal_Assignment =>
- null;
- when others =>
- Failed ("Guard", Target);
- end case;
- end Check_Kind_For_Guard;
-
function Get_Guard (Target : Iir) return Iir is
begin
- Check_Kind_For_Guard (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Guard (Get_Kind (Target)));
return Get_Field8 (Target);
end Get_Guard;
procedure Set_Guard (Target : Iir; Guard : Iir) is
begin
- Check_Kind_For_Guard (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Guard (Get_Kind (Target)));
Set_Field8 (Target, Guard);
end Set_Guard;
- procedure Check_Kind_For_Delay_Mechanism (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Concurrent_Conditional_Signal_Assignment
- | Iir_Kind_Concurrent_Selected_Signal_Assignment
- | Iir_Kind_Signal_Assignment_Statement =>
- null;
- when others =>
- Failed ("Delay_Mechanism", Target);
- end case;
- end Check_Kind_For_Delay_Mechanism;
-
function Get_Delay_Mechanism (Target : Iir) return Iir_Delay_Mechanism is
begin
- Check_Kind_For_Delay_Mechanism (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Delay_Mechanism (Get_Kind (Target)));
return Iir_Delay_Mechanism'Val (Get_Field12 (Target));
end Get_Delay_Mechanism;
procedure Set_Delay_Mechanism (Target : Iir; Kind : Iir_Delay_Mechanism) is
begin
- Check_Kind_For_Delay_Mechanism (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Delay_Mechanism (Get_Kind (Target)));
Set_Field12 (Target, Iir_Delay_Mechanism'Pos (Kind));
end Set_Delay_Mechanism;
- procedure Check_Kind_For_Reject_Time_Expression (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Concurrent_Conditional_Signal_Assignment
- | Iir_Kind_Concurrent_Selected_Signal_Assignment
- | Iir_Kind_Signal_Assignment_Statement =>
- null;
- when others =>
- Failed ("Reject_Time_Expression", Target);
- end case;
- end Check_Kind_For_Reject_Time_Expression;
-
function Get_Reject_Time_Expression (Target : Iir) return Iir is
begin
- Check_Kind_For_Reject_Time_Expression (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Reject_Time_Expression (Get_Kind (Target)));
return Get_Field6 (Target);
end Get_Reject_Time_Expression;
procedure Set_Reject_Time_Expression (Target : Iir; Expr : Iir) is
begin
- Check_Kind_For_Reject_Time_Expression (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Reject_Time_Expression (Get_Kind (Target)));
Set_Field6 (Target, Expr);
end Set_Reject_Time_Expression;
- procedure Check_Kind_For_Sensitivity_List (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Sensitized_Process_Statement
- | Iir_Kind_Wait_Statement =>
- null;
- when others =>
- Failed ("Sensitivity_List", Target);
- end case;
- end Check_Kind_For_Sensitivity_List;
-
function Get_Sensitivity_List (Wait : Iir) return Iir_List is
begin
- Check_Kind_For_Sensitivity_List (Wait);
+ pragma Assert (Wait /= Null_Iir);
+ pragma Assert (Has_Sensitivity_List (Get_Kind (Wait)));
return Iir_To_Iir_List (Get_Field6 (Wait));
end Get_Sensitivity_List;
procedure Set_Sensitivity_List (Wait : Iir; List : Iir_List) is
begin
- Check_Kind_For_Sensitivity_List (Wait);
+ pragma Assert (Wait /= Null_Iir);
+ pragma Assert (Has_Sensitivity_List (Get_Kind (Wait)));
Set_Field6 (Wait, Iir_List_To_Iir (List));
end Set_Sensitivity_List;
- procedure Check_Kind_For_Process_Origin (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Sensitized_Process_Statement
- | Iir_Kind_Process_Statement =>
- null;
- when others =>
- Failed ("Process_Origin", Target);
- end case;
- end Check_Kind_For_Process_Origin;
-
function Get_Process_Origin (Proc : Iir) return Iir is
begin
- Check_Kind_For_Process_Origin (Proc);
+ pragma Assert (Proc /= Null_Iir);
+ pragma Assert (Has_Process_Origin (Get_Kind (Proc)));
return Get_Field8 (Proc);
end Get_Process_Origin;
procedure Set_Process_Origin (Proc : Iir; Orig : Iir) is
begin
- Check_Kind_For_Process_Origin (Proc);
+ pragma Assert (Proc /= Null_Iir);
+ pragma Assert (Has_Process_Origin (Get_Kind (Proc)));
Set_Field8 (Proc, Orig);
end Set_Process_Origin;
- procedure Check_Kind_For_Condition_Clause (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Wait_Statement =>
- null;
- when others =>
- Failed ("Condition_Clause", Target);
- end case;
- end Check_Kind_For_Condition_Clause;
-
function Get_Condition_Clause (Wait : Iir_Wait_Statement) return Iir is
begin
- Check_Kind_For_Condition_Clause (Wait);
+ pragma Assert (Wait /= Null_Iir);
+ pragma Assert (Has_Condition_Clause (Get_Kind (Wait)));
return Get_Field5 (Wait);
end Get_Condition_Clause;
procedure Set_Condition_Clause (Wait : Iir_Wait_Statement; Cond : Iir) is
begin
- Check_Kind_For_Condition_Clause (Wait);
+ pragma Assert (Wait /= Null_Iir);
+ pragma Assert (Has_Condition_Clause (Get_Kind (Wait)));
Set_Field5 (Wait, Cond);
end Set_Condition_Clause;
- procedure Check_Kind_For_Timeout_Clause (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Wait_Statement =>
- null;
- when others =>
- Failed ("Timeout_Clause", Target);
- end case;
- end Check_Kind_For_Timeout_Clause;
-
function Get_Timeout_Clause (Wait : Iir_Wait_Statement) return Iir is
begin
- Check_Kind_For_Timeout_Clause (Wait);
+ pragma Assert (Wait /= Null_Iir);
+ pragma Assert (Has_Timeout_Clause (Get_Kind (Wait)));
return Get_Field1 (Wait);
end Get_Timeout_Clause;
procedure Set_Timeout_Clause (Wait : Iir_Wait_Statement; Timeout : Iir) is
begin
- Check_Kind_For_Timeout_Clause (Wait);
+ pragma Assert (Wait /= Null_Iir);
+ pragma Assert (Has_Timeout_Clause (Get_Kind (Wait)));
Set_Field1 (Wait, Timeout);
end Set_Timeout_Clause;
- procedure Check_Kind_For_Postponed_Flag (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Sensitized_Process_Statement
- | Iir_Kind_Process_Statement
- | Iir_Kind_Concurrent_Conditional_Signal_Assignment
- | Iir_Kind_Concurrent_Selected_Signal_Assignment
- | Iir_Kind_Concurrent_Assertion_Statement
- | Iir_Kind_Concurrent_Procedure_Call_Statement =>
- null;
- when others =>
- Failed ("Postponed_Flag", Target);
- end case;
- end Check_Kind_For_Postponed_Flag;
-
function Get_Postponed_Flag (Target : Iir) return Boolean is
begin
- Check_Kind_For_Postponed_Flag (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Postponed_Flag (Get_Kind (Target)));
return Get_Flag3 (Target);
end Get_Postponed_Flag;
procedure Set_Postponed_Flag (Target : Iir; Value : Boolean) is
begin
- Check_Kind_For_Postponed_Flag (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Postponed_Flag (Get_Kind (Target)));
Set_Flag3 (Target, Value);
end Set_Postponed_Flag;
- procedure Check_Kind_For_Callees_List (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Function_Declaration
- | Iir_Kind_Implicit_Function_Declaration
- | Iir_Kind_Implicit_Procedure_Declaration
- | Iir_Kind_Procedure_Declaration
- | Iir_Kind_Sensitized_Process_Statement
- | Iir_Kind_Process_Statement =>
- null;
- when others =>
- Failed ("Callees_List", Target);
- end case;
- end Check_Kind_For_Callees_List;
-
function Get_Callees_List (Proc : Iir) return Iir_List is
begin
- Check_Kind_For_Callees_List (Proc);
+ pragma Assert (Proc /= Null_Iir);
+ pragma Assert (Has_Callees_List (Get_Kind (Proc)));
return Iir_To_Iir_List (Get_Field7 (Proc));
end Get_Callees_List;
procedure Set_Callees_List (Proc : Iir; List : Iir_List) is
begin
- Check_Kind_For_Callees_List (Proc);
+ pragma Assert (Proc /= Null_Iir);
+ pragma Assert (Has_Callees_List (Get_Kind (Proc)));
Set_Field7 (Proc, Iir_List_To_Iir (List));
end Set_Callees_List;
- procedure Check_Kind_For_Passive_Flag (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Procedure_Declaration
- | Iir_Kind_Sensitized_Process_Statement
- | Iir_Kind_Process_Statement =>
- null;
- when others =>
- Failed ("Passive_Flag", Target);
- end case;
- end Check_Kind_For_Passive_Flag;
-
function Get_Passive_Flag (Proc : Iir) return Boolean is
begin
- Check_Kind_For_Passive_Flag (Proc);
+ pragma Assert (Proc /= Null_Iir);
+ pragma Assert (Has_Passive_Flag (Get_Kind (Proc)));
return Get_Flag2 (Proc);
end Get_Passive_Flag;
procedure Set_Passive_Flag (Proc : Iir; Flag : Boolean) is
begin
- Check_Kind_For_Passive_Flag (Proc);
+ pragma Assert (Proc /= Null_Iir);
+ pragma Assert (Has_Passive_Flag (Get_Kind (Proc)));
Set_Flag2 (Proc, Flag);
end Set_Passive_Flag;
- procedure Check_Kind_For_Resolution_Function_Flag (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Function_Declaration =>
- null;
- when others =>
- Failed ("Resolution_Function_Flag", Target);
- end case;
- end Check_Kind_For_Resolution_Function_Flag;
-
function Get_Resolution_Function_Flag (Func : Iir) return Boolean is
begin
- Check_Kind_For_Resolution_Function_Flag (Func);
+ pragma Assert (Func /= Null_Iir);
+ pragma Assert (Has_Resolution_Function_Flag (Get_Kind (Func)));
return Get_Flag7 (Func);
end Get_Resolution_Function_Flag;
procedure Set_Resolution_Function_Flag (Func : Iir; Flag : Boolean) is
begin
- Check_Kind_For_Resolution_Function_Flag (Func);
+ pragma Assert (Func /= Null_Iir);
+ pragma Assert (Has_Resolution_Function_Flag (Get_Kind (Func)));
Set_Flag7 (Func, Flag);
end Set_Resolution_Function_Flag;
- procedure Check_Kind_For_Wait_State (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Function_Declaration
- | Iir_Kind_Implicit_Function_Declaration
- | Iir_Kind_Implicit_Procedure_Declaration
- | Iir_Kind_Procedure_Declaration
- | Iir_Kind_Sensitized_Process_Statement
- | Iir_Kind_Process_Statement =>
- null;
- when others =>
- Failed ("Wait_State", Target);
- end case;
- end Check_Kind_For_Wait_State;
-
function Get_Wait_State (Proc : Iir) return Tri_State_Type is
begin
- Check_Kind_For_Wait_State (Proc);
+ pragma Assert (Proc /= Null_Iir);
+ pragma Assert (Has_Wait_State (Get_Kind (Proc)));
return Tri_State_Type'Val (Get_State1 (Proc));
end Get_Wait_State;
procedure Set_Wait_State (Proc : Iir; State : Tri_State_Type) is
begin
- Check_Kind_For_Wait_State (Proc);
+ pragma Assert (Proc /= Null_Iir);
+ pragma Assert (Has_Wait_State (Get_Kind (Proc)));
Set_State1 (Proc, Tri_State_Type'Pos (State));
end Set_Wait_State;
- procedure Check_Kind_For_All_Sensitized_State (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Function_Declaration
- | Iir_Kind_Procedure_Declaration =>
- null;
- when others =>
- Failed ("All_Sensitized_State", Target);
- end case;
- end Check_Kind_For_All_Sensitized_State;
-
function Get_All_Sensitized_State (Proc : Iir) return Iir_All_Sensitized is
begin
- Check_Kind_For_All_Sensitized_State (Proc);
+ pragma Assert (Proc /= Null_Iir);
+ pragma Assert (Has_All_Sensitized_State (Get_Kind (Proc)));
return Iir_All_Sensitized'Val (Get_State3 (Proc));
end Get_All_Sensitized_State;
procedure Set_All_Sensitized_State (Proc : Iir; State : Iir_All_Sensitized)
- is
+ is
begin
- Check_Kind_For_All_Sensitized_State (Proc);
+ pragma Assert (Proc /= Null_Iir);
+ pragma Assert (Has_All_Sensitized_State (Get_Kind (Proc)));
Set_State3 (Proc, Iir_All_Sensitized'Pos (State));
end Set_All_Sensitized_State;
- procedure Check_Kind_For_Seen_Flag (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Enumeration_Literal
- | Iir_Kind_Function_Declaration
- | Iir_Kind_Implicit_Function_Declaration
- | Iir_Kind_Implicit_Procedure_Declaration
- | Iir_Kind_Procedure_Declaration
- | Iir_Kind_Sensitized_Process_Statement
- | Iir_Kind_Process_Statement =>
- null;
- when others =>
- Failed ("Seen_Flag", Target);
- end case;
- end Check_Kind_For_Seen_Flag;
-
function Get_Seen_Flag (Proc : Iir) return Boolean is
begin
- Check_Kind_For_Seen_Flag (Proc);
+ pragma Assert (Proc /= Null_Iir);
+ pragma Assert (Has_Seen_Flag (Get_Kind (Proc)));
return Get_Flag1 (Proc);
end Get_Seen_Flag;
procedure Set_Seen_Flag (Proc : Iir; Flag : Boolean) is
begin
- Check_Kind_For_Seen_Flag (Proc);
+ pragma Assert (Proc /= Null_Iir);
+ pragma Assert (Has_Seen_Flag (Get_Kind (Proc)));
Set_Flag1 (Proc, Flag);
end Set_Seen_Flag;
- procedure Check_Kind_For_Pure_Flag (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Function_Declaration
- | Iir_Kind_Implicit_Function_Declaration =>
- null;
- when others =>
- Failed ("Pure_Flag", Target);
- end case;
- end Check_Kind_For_Pure_Flag;
-
function Get_Pure_Flag (Func : Iir) return Boolean is
begin
- Check_Kind_For_Pure_Flag (Func);
+ pragma Assert (Func /= Null_Iir);
+ pragma Assert (Has_Pure_Flag (Get_Kind (Func)));
return Get_Flag2 (Func);
end Get_Pure_Flag;
procedure Set_Pure_Flag (Func : Iir; Flag : Boolean) is
begin
- Check_Kind_For_Pure_Flag (Func);
+ pragma Assert (Func /= Null_Iir);
+ pragma Assert (Has_Pure_Flag (Get_Kind (Func)));
Set_Flag2 (Func, Flag);
end Set_Pure_Flag;
- procedure Check_Kind_For_Foreign_Flag (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Architecture_Body
- | Iir_Kind_Function_Declaration
- | Iir_Kind_Procedure_Declaration =>
- null;
- when others =>
- Failed ("Foreign_Flag", Target);
- end case;
- end Check_Kind_For_Foreign_Flag;
-
function Get_Foreign_Flag (Decl : Iir) return Boolean is
begin
- Check_Kind_For_Foreign_Flag (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Foreign_Flag (Get_Kind (Decl)));
return Get_Flag3 (Decl);
end Get_Foreign_Flag;
procedure Set_Foreign_Flag (Decl : Iir; Flag : Boolean) is
begin
- Check_Kind_For_Foreign_Flag (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Foreign_Flag (Get_Kind (Decl)));
Set_Flag3 (Decl, Flag);
end Set_Foreign_Flag;
- procedure Check_Kind_For_Resolved_Flag (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Error
- | Iir_Kind_Access_Type_Definition
- | Iir_Kind_Incomplete_Type_Definition
- | Iir_Kind_File_Type_Definition
- | Iir_Kind_Protected_Type_Declaration
- | Iir_Kind_Record_Type_Definition
- | Iir_Kind_Array_Type_Definition
- | Iir_Kind_Array_Subtype_Definition
- | Iir_Kind_Record_Subtype_Definition
- | Iir_Kind_Access_Subtype_Definition
- | Iir_Kind_Physical_Subtype_Definition
- | Iir_Kind_Floating_Subtype_Definition
- | Iir_Kind_Integer_Subtype_Definition
- | Iir_Kind_Enumeration_Subtype_Definition
- | Iir_Kind_Enumeration_Type_Definition
- | Iir_Kind_Integer_Type_Definition
- | Iir_Kind_Floating_Type_Definition
- | Iir_Kind_Physical_Type_Definition =>
- null;
- when others =>
- Failed ("Resolved_Flag", Target);
- end case;
- end Check_Kind_For_Resolved_Flag;
-
function Get_Resolved_Flag (Atype : Iir) return Boolean is
begin
- Check_Kind_For_Resolved_Flag (Atype);
+ pragma Assert (Atype /= Null_Iir);
+ pragma Assert (Has_Resolved_Flag (Get_Kind (Atype)));
return Get_Flag1 (Atype);
end Get_Resolved_Flag;
procedure Set_Resolved_Flag (Atype : Iir; Flag : Boolean) is
begin
- Check_Kind_For_Resolved_Flag (Atype);
+ pragma Assert (Atype /= Null_Iir);
+ pragma Assert (Has_Resolved_Flag (Get_Kind (Atype)));
Set_Flag1 (Atype, Flag);
end Set_Resolved_Flag;
- procedure Check_Kind_For_Signal_Type_Flag (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Error
- | Iir_Kind_Access_Type_Definition
- | Iir_Kind_Incomplete_Type_Definition
- | Iir_Kind_File_Type_Definition
- | Iir_Kind_Protected_Type_Declaration
- | Iir_Kind_Record_Type_Definition
- | Iir_Kind_Array_Type_Definition
- | Iir_Kind_Array_Subtype_Definition
- | Iir_Kind_Record_Subtype_Definition
- | Iir_Kind_Access_Subtype_Definition
- | Iir_Kind_Physical_Subtype_Definition
- | Iir_Kind_Floating_Subtype_Definition
- | Iir_Kind_Integer_Subtype_Definition
- | Iir_Kind_Enumeration_Subtype_Definition
- | Iir_Kind_Enumeration_Type_Definition
- | Iir_Kind_Integer_Type_Definition
- | Iir_Kind_Floating_Type_Definition
- | Iir_Kind_Physical_Type_Definition =>
- null;
- when others =>
- Failed ("Signal_Type_Flag", Target);
- end case;
- end Check_Kind_For_Signal_Type_Flag;
-
function Get_Signal_Type_Flag (Atype : Iir) return Boolean is
begin
- Check_Kind_For_Signal_Type_Flag (Atype);
+ pragma Assert (Atype /= Null_Iir);
+ pragma Assert (Has_Signal_Type_Flag (Get_Kind (Atype)));
return Get_Flag2 (Atype);
end Get_Signal_Type_Flag;
procedure Set_Signal_Type_Flag (Atype : Iir; Flag : Boolean) is
begin
- Check_Kind_For_Signal_Type_Flag (Atype);
+ pragma Assert (Atype /= Null_Iir);
+ pragma Assert (Has_Signal_Type_Flag (Get_Kind (Atype)));
Set_Flag2 (Atype, Flag);
end Set_Signal_Type_Flag;
- procedure Check_Kind_For_Has_Signal_Flag (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Error
- | Iir_Kind_Incomplete_Type_Definition
- | Iir_Kind_Record_Type_Definition
- | Iir_Kind_Array_Type_Definition
- | Iir_Kind_Array_Subtype_Definition
- | Iir_Kind_Record_Subtype_Definition
- | Iir_Kind_Physical_Subtype_Definition
- | Iir_Kind_Floating_Subtype_Definition
- | Iir_Kind_Integer_Subtype_Definition
- | Iir_Kind_Enumeration_Subtype_Definition
- | Iir_Kind_Enumeration_Type_Definition
- | Iir_Kind_Integer_Type_Definition
- | Iir_Kind_Floating_Type_Definition
- | Iir_Kind_Physical_Type_Definition =>
- null;
- when others =>
- Failed ("Has_Signal_Flag", Target);
- end case;
- end Check_Kind_For_Has_Signal_Flag;
-
function Get_Has_Signal_Flag (Atype : Iir) return Boolean is
begin
- Check_Kind_For_Has_Signal_Flag (Atype);
+ pragma Assert (Atype /= Null_Iir);
+ pragma Assert (Has_Has_Signal_Flag (Get_Kind (Atype)));
return Get_Flag3 (Atype);
end Get_Has_Signal_Flag;
procedure Set_Has_Signal_Flag (Atype : Iir; Flag : Boolean) is
begin
- Check_Kind_For_Has_Signal_Flag (Atype);
+ pragma Assert (Atype /= Null_Iir);
+ pragma Assert (Has_Has_Signal_Flag (Get_Kind (Atype)));
Set_Flag3 (Atype, Flag);
end Set_Has_Signal_Flag;
- procedure Check_Kind_For_Purity_State (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Procedure_Declaration =>
- null;
- when others =>
- Failed ("Purity_State", Target);
- end case;
- end Check_Kind_For_Purity_State;
-
function Get_Purity_State (Proc : Iir) return Iir_Pure_State is
begin
- Check_Kind_For_Purity_State (Proc);
+ pragma Assert (Proc /= Null_Iir);
+ pragma Assert (Has_Purity_State (Get_Kind (Proc)));
return Iir_Pure_State'Val (Get_State2 (Proc));
end Get_Purity_State;
procedure Set_Purity_State (Proc : Iir; State : Iir_Pure_State) is
begin
- Check_Kind_For_Purity_State (Proc);
+ pragma Assert (Proc /= Null_Iir);
+ pragma Assert (Has_Purity_State (Get_Kind (Proc)));
Set_State2 (Proc, Iir_Pure_State'Pos (State));
end Set_Purity_State;
- procedure Check_Kind_For_Elab_Flag (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Design_File
- | Iir_Kind_Design_Unit =>
- null;
- when others =>
- Failed ("Elab_Flag", Target);
- end case;
- end Check_Kind_For_Elab_Flag;
-
function Get_Elab_Flag (Design : Iir) return Boolean is
begin
- Check_Kind_For_Elab_Flag (Design);
+ pragma Assert (Design /= Null_Iir);
+ pragma Assert (Has_Elab_Flag (Get_Kind (Design)));
return Get_Flag3 (Design);
end Get_Elab_Flag;
procedure Set_Elab_Flag (Design : Iir; Flag : Boolean) is
begin
- Check_Kind_For_Elab_Flag (Design);
+ pragma Assert (Design /= Null_Iir);
+ pragma Assert (Has_Elab_Flag (Get_Kind (Design)));
Set_Flag3 (Design, Flag);
end Set_Elab_Flag;
- procedure Check_Kind_For_Index_Constraint_Flag (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Array_Type_Definition
- | Iir_Kind_Array_Subtype_Definition =>
- null;
- when others =>
- Failed ("Index_Constraint_Flag", Target);
- end case;
- end Check_Kind_For_Index_Constraint_Flag;
-
function Get_Index_Constraint_Flag (Atype : Iir) return Boolean is
begin
- Check_Kind_For_Index_Constraint_Flag (Atype);
+ pragma Assert (Atype /= Null_Iir);
+ pragma Assert (Has_Index_Constraint_Flag (Get_Kind (Atype)));
return Get_Flag4 (Atype);
end Get_Index_Constraint_Flag;
procedure Set_Index_Constraint_Flag (Atype : Iir; Flag : Boolean) is
begin
- Check_Kind_For_Index_Constraint_Flag (Atype);
+ pragma Assert (Atype /= Null_Iir);
+ pragma Assert (Has_Index_Constraint_Flag (Get_Kind (Atype)));
Set_Flag4 (Atype, Flag);
end Set_Index_Constraint_Flag;
- procedure Check_Kind_For_Assertion_Condition (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Concurrent_Assertion_Statement
- | Iir_Kind_Assertion_Statement =>
- null;
- when others =>
- Failed ("Assertion_Condition", Target);
- end case;
- end Check_Kind_For_Assertion_Condition;
-
function Get_Assertion_Condition (Target : Iir) return Iir is
begin
- Check_Kind_For_Assertion_Condition (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Assertion_Condition (Get_Kind (Target)));
return Get_Field1 (Target);
end Get_Assertion_Condition;
procedure Set_Assertion_Condition (Target : Iir; Cond : Iir) is
begin
- Check_Kind_For_Assertion_Condition (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Assertion_Condition (Get_Kind (Target)));
Set_Field1 (Target, Cond);
end Set_Assertion_Condition;
- procedure Check_Kind_For_Report_Expression (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Concurrent_Assertion_Statement
- | Iir_Kind_Psl_Assert_Statement
- | Iir_Kind_Psl_Cover_Statement
- | Iir_Kind_Assertion_Statement
- | Iir_Kind_Report_Statement =>
- null;
- when others =>
- Failed ("Report_Expression", Target);
- end case;
- end Check_Kind_For_Report_Expression;
-
function Get_Report_Expression (Target : Iir) return Iir is
begin
- Check_Kind_For_Report_Expression (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Report_Expression (Get_Kind (Target)));
return Get_Field6 (Target);
end Get_Report_Expression;
procedure Set_Report_Expression (Target : Iir; Expr : Iir) is
begin
- Check_Kind_For_Report_Expression (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Report_Expression (Get_Kind (Target)));
Set_Field6 (Target, Expr);
end Set_Report_Expression;
- procedure Check_Kind_For_Severity_Expression (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Concurrent_Assertion_Statement
- | Iir_Kind_Psl_Assert_Statement
- | Iir_Kind_Psl_Cover_Statement
- | Iir_Kind_Assertion_Statement
- | Iir_Kind_Report_Statement =>
- null;
- when others =>
- Failed ("Severity_Expression", Target);
- end case;
- end Check_Kind_For_Severity_Expression;
-
function Get_Severity_Expression (Target : Iir) return Iir is
begin
- Check_Kind_For_Severity_Expression (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Severity_Expression (Get_Kind (Target)));
return Get_Field5 (Target);
end Get_Severity_Expression;
procedure Set_Severity_Expression (Target : Iir; Expr : Iir) is
begin
- Check_Kind_For_Severity_Expression (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Severity_Expression (Get_Kind (Target)));
Set_Field5 (Target, Expr);
end Set_Severity_Expression;
- procedure Check_Kind_For_Instantiated_Unit (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Component_Instantiation_Statement =>
- null;
- when others =>
- Failed ("Instantiated_Unit", Target);
- end case;
- end Check_Kind_For_Instantiated_Unit;
-
function Get_Instantiated_Unit (Target : Iir) return Iir is
begin
- Check_Kind_For_Instantiated_Unit (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Instantiated_Unit (Get_Kind (Target)));
return Get_Field1 (Target);
end Get_Instantiated_Unit;
procedure Set_Instantiated_Unit (Target : Iir; Unit : Iir) is
begin
- Check_Kind_For_Instantiated_Unit (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Instantiated_Unit (Get_Kind (Target)));
Set_Field1 (Target, Unit);
end Set_Instantiated_Unit;
- procedure Check_Kind_For_Generic_Map_Aspect_Chain (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Block_Header
- | Iir_Kind_Binding_Indication
- | Iir_Kind_Package_Instantiation_Declaration
- | Iir_Kind_Package_Header
- | Iir_Kind_Implicit_Function_Declaration
- | Iir_Kind_Implicit_Procedure_Declaration
- | Iir_Kind_Component_Instantiation_Statement =>
- null;
- when others =>
- Failed ("Generic_Map_Aspect_Chain", Target);
- end case;
- end Check_Kind_For_Generic_Map_Aspect_Chain;
-
function Get_Generic_Map_Aspect_Chain (Target : Iir) return Iir is
begin
- Check_Kind_For_Generic_Map_Aspect_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Generic_Map_Aspect_Chain (Get_Kind (Target)));
return Get_Field8 (Target);
end Get_Generic_Map_Aspect_Chain;
procedure Set_Generic_Map_Aspect_Chain (Target : Iir; Generics : Iir) is
begin
- Check_Kind_For_Generic_Map_Aspect_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Generic_Map_Aspect_Chain (Get_Kind (Target)));
Set_Field8 (Target, Generics);
end Set_Generic_Map_Aspect_Chain;
- procedure Check_Kind_For_Port_Map_Aspect_Chain (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Block_Header
- | Iir_Kind_Binding_Indication
- | Iir_Kind_Component_Instantiation_Statement =>
- null;
- when others =>
- Failed ("Port_Map_Aspect_Chain", Target);
- end case;
- end Check_Kind_For_Port_Map_Aspect_Chain;
-
function Get_Port_Map_Aspect_Chain (Target : Iir) return Iir is
begin
- Check_Kind_For_Port_Map_Aspect_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Port_Map_Aspect_Chain (Get_Kind (Target)));
return Get_Field9 (Target);
end Get_Port_Map_Aspect_Chain;
procedure Set_Port_Map_Aspect_Chain (Target : Iir; Port : Iir) is
begin
- Check_Kind_For_Port_Map_Aspect_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Port_Map_Aspect_Chain (Get_Kind (Target)));
Set_Field9 (Target, Port);
end Set_Port_Map_Aspect_Chain;
- procedure Check_Kind_For_Configuration_Name (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Entity_Aspect_Configuration =>
- null;
- when others =>
- Failed ("Configuration_Name", Target);
- end case;
- end Check_Kind_For_Configuration_Name;
-
function Get_Configuration_Name (Target : Iir) return Iir is
begin
- Check_Kind_For_Configuration_Name (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Configuration_Name (Get_Kind (Target)));
return Get_Field1 (Target);
end Get_Configuration_Name;
procedure Set_Configuration_Name (Target : Iir; Conf : Iir) is
begin
- Check_Kind_For_Configuration_Name (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Configuration_Name (Get_Kind (Target)));
Set_Field1 (Target, Conf);
end Set_Configuration_Name;
- procedure Check_Kind_For_Component_Configuration (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Component_Instantiation_Statement =>
- null;
- when others =>
- Failed ("Component_Configuration", Target);
- end case;
- end Check_Kind_For_Component_Configuration;
-
function Get_Component_Configuration (Target : Iir) return Iir is
begin
- Check_Kind_For_Component_Configuration (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Component_Configuration (Get_Kind (Target)));
return Get_Field6 (Target);
end Get_Component_Configuration;
procedure Set_Component_Configuration (Target : Iir; Conf : Iir) is
begin
- Check_Kind_For_Component_Configuration (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Component_Configuration (Get_Kind (Target)));
Set_Field6 (Target, Conf);
end Set_Component_Configuration;
- procedure Check_Kind_For_Configuration_Specification (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Component_Instantiation_Statement =>
- null;
- when others =>
- Failed ("Configuration_Specification", Target);
- end case;
- end Check_Kind_For_Configuration_Specification;
-
function Get_Configuration_Specification (Target : Iir) return Iir is
begin
- Check_Kind_For_Configuration_Specification (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Configuration_Specification (Get_Kind (Target)));
return Get_Field7 (Target);
end Get_Configuration_Specification;
procedure Set_Configuration_Specification (Target : Iir; Conf : Iir) is
begin
- Check_Kind_For_Configuration_Specification (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Configuration_Specification (Get_Kind (Target)));
Set_Field7 (Target, Conf);
end Set_Configuration_Specification;
- procedure Check_Kind_For_Default_Binding_Indication (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Component_Instantiation_Statement =>
- null;
- when others =>
- Failed ("Default_Binding_Indication", Target);
- end case;
- end Check_Kind_For_Default_Binding_Indication;
-
function Get_Default_Binding_Indication (Target : Iir) return Iir is
begin
- Check_Kind_For_Default_Binding_Indication (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Default_Binding_Indication (Get_Kind (Target)));
return Get_Field5 (Target);
end Get_Default_Binding_Indication;
procedure Set_Default_Binding_Indication (Target : Iir; Conf : Iir) is
begin
- Check_Kind_For_Default_Binding_Indication (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Default_Binding_Indication (Get_Kind (Target)));
Set_Field5 (Target, Conf);
end Set_Default_Binding_Indication;
- procedure Check_Kind_For_Default_Configuration_Declaration (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Architecture_Body =>
- null;
- when others =>
- Failed ("Default_Configuration_Declaration", Target);
- end case;
- end Check_Kind_For_Default_Configuration_Declaration;
-
function Get_Default_Configuration_Declaration (Target : Iir) return Iir is
begin
- Check_Kind_For_Default_Configuration_Declaration (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert
+ (Has_Default_Configuration_Declaration (Get_Kind (Target)));
return Get_Field6 (Target);
end Get_Default_Configuration_Declaration;
procedure Set_Default_Configuration_Declaration (Target : Iir; Conf : Iir)
- is
+ is
begin
- Check_Kind_For_Default_Configuration_Declaration (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert
+ (Has_Default_Configuration_Declaration (Get_Kind (Target)));
Set_Field6 (Target, Conf);
end Set_Default_Configuration_Declaration;
- procedure Check_Kind_For_Expression (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Attribute_Specification
- | Iir_Kind_Disconnection_Specification
- | Iir_Kind_Parenthesis_Expression
- | Iir_Kind_Qualified_Expression
- | Iir_Kind_Type_Conversion
- | Iir_Kind_Allocator_By_Expression
- | Iir_Kind_Concurrent_Selected_Signal_Assignment
- | Iir_Kind_Variable_Assignment_Statement
- | Iir_Kind_Return_Statement
- | Iir_Kind_Case_Statement =>
- null;
- when others =>
- Failed ("Expression", Target);
- end case;
- end Check_Kind_For_Expression;
-
function Get_Expression (Target : Iir) return Iir is
begin
- Check_Kind_For_Expression (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Expression (Get_Kind (Target)));
return Get_Field5 (Target);
end Get_Expression;
procedure Set_Expression (Target : Iir; Expr : Iir) is
begin
- Check_Kind_For_Expression (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Expression (Get_Kind (Target)));
Set_Field5 (Target, Expr);
end Set_Expression;
- procedure Check_Kind_For_Allocator_Designated_Type (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Allocator_By_Expression
- | Iir_Kind_Allocator_By_Subtype =>
- null;
- when others =>
- Failed ("Allocator_Designated_Type", Target);
- end case;
- end Check_Kind_For_Allocator_Designated_Type;
-
function Get_Allocator_Designated_Type (Target : Iir) return Iir is
begin
- Check_Kind_For_Allocator_Designated_Type (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Allocator_Designated_Type (Get_Kind (Target)));
return Get_Field2 (Target);
end Get_Allocator_Designated_Type;
procedure Set_Allocator_Designated_Type (Target : Iir; A_Type : Iir) is
begin
- Check_Kind_For_Allocator_Designated_Type (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Allocator_Designated_Type (Get_Kind (Target)));
Set_Field2 (Target, A_Type);
end Set_Allocator_Designated_Type;
- procedure Check_Kind_For_Selected_Waveform_Chain (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Concurrent_Selected_Signal_Assignment =>
- null;
- when others =>
- Failed ("Selected_Waveform_Chain", Target);
- end case;
- end Check_Kind_For_Selected_Waveform_Chain;
-
function Get_Selected_Waveform_Chain (Target : Iir) return Iir is
begin
- Check_Kind_For_Selected_Waveform_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Selected_Waveform_Chain (Get_Kind (Target)));
return Get_Field7 (Target);
end Get_Selected_Waveform_Chain;
procedure Set_Selected_Waveform_Chain (Target : Iir; Chain : Iir) is
begin
- Check_Kind_For_Selected_Waveform_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Selected_Waveform_Chain (Get_Kind (Target)));
Set_Field7 (Target, Chain);
end Set_Selected_Waveform_Chain;
- procedure Check_Kind_For_Conditional_Waveform_Chain (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Concurrent_Conditional_Signal_Assignment =>
- null;
- when others =>
- Failed ("Conditional_Waveform_Chain", Target);
- end case;
- end Check_Kind_For_Conditional_Waveform_Chain;
-
function Get_Conditional_Waveform_Chain (Target : Iir) return Iir is
begin
- Check_Kind_For_Conditional_Waveform_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Conditional_Waveform_Chain (Get_Kind (Target)));
return Get_Field7 (Target);
end Get_Conditional_Waveform_Chain;
procedure Set_Conditional_Waveform_Chain (Target : Iir; Chain : Iir) is
begin
- Check_Kind_For_Conditional_Waveform_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Conditional_Waveform_Chain (Get_Kind (Target)));
Set_Field7 (Target, Chain);
end Set_Conditional_Waveform_Chain;
- procedure Check_Kind_For_Guard_Expression (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Guard_Signal_Declaration =>
- null;
- when others =>
- Failed ("Guard_Expression", Target);
- end case;
- end Check_Kind_For_Guard_Expression;
-
function Get_Guard_Expression (Target : Iir) return Iir is
begin
- Check_Kind_For_Guard_Expression (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Guard_Expression (Get_Kind (Target)));
return Get_Field2 (Target);
end Get_Guard_Expression;
procedure Set_Guard_Expression (Target : Iir; Expr : Iir) is
begin
- Check_Kind_For_Guard_Expression (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Guard_Expression (Get_Kind (Target)));
Set_Field2 (Target, Expr);
end Set_Guard_Expression;
- procedure Check_Kind_For_Guard_Decl (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Block_Statement =>
- null;
- when others =>
- Failed ("Guard_Decl", Target);
- end case;
- end Check_Kind_For_Guard_Decl;
-
function Get_Guard_Decl (Target : Iir_Block_Statement) return Iir is
begin
- Check_Kind_For_Guard_Decl (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Guard_Decl (Get_Kind (Target)));
return Get_Field8 (Target);
end Get_Guard_Decl;
procedure Set_Guard_Decl (Target : Iir_Block_Statement; Decl : Iir) is
begin
- Check_Kind_For_Guard_Decl (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Guard_Decl (Get_Kind (Target)));
Set_Field8 (Target, Decl);
end Set_Guard_Decl;
- procedure Check_Kind_For_Guard_Sensitivity_List (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Guard_Signal_Declaration =>
- null;
- when others =>
- Failed ("Guard_Sensitivity_List", Target);
- end case;
- end Check_Kind_For_Guard_Sensitivity_List;
-
function Get_Guard_Sensitivity_List (Guard : Iir) return Iir_List is
begin
- Check_Kind_For_Guard_Sensitivity_List (Guard);
+ pragma Assert (Guard /= Null_Iir);
+ pragma Assert (Has_Guard_Sensitivity_List (Get_Kind (Guard)));
return Iir_To_Iir_List (Get_Field6 (Guard));
end Get_Guard_Sensitivity_List;
procedure Set_Guard_Sensitivity_List (Guard : Iir; List : Iir_List) is
begin
- Check_Kind_For_Guard_Sensitivity_List (Guard);
+ pragma Assert (Guard /= Null_Iir);
+ pragma Assert (Has_Guard_Sensitivity_List (Get_Kind (Guard)));
Set_Field6 (Guard, Iir_List_To_Iir (List));
end Set_Guard_Sensitivity_List;
- procedure Check_Kind_For_Block_Block_Configuration (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Block_Statement =>
- null;
- when others =>
- Failed ("Block_Block_Configuration", Target);
- end case;
- end Check_Kind_For_Block_Block_Configuration;
-
function Get_Block_Block_Configuration (Block : Iir) return Iir is
begin
- Check_Kind_For_Block_Block_Configuration (Block);
+ pragma Assert (Block /= Null_Iir);
+ pragma Assert (Has_Block_Block_Configuration (Get_Kind (Block)));
return Get_Field6 (Block);
end Get_Block_Block_Configuration;
procedure Set_Block_Block_Configuration (Block : Iir; Conf : Iir) is
begin
- Check_Kind_For_Block_Block_Configuration (Block);
+ pragma Assert (Block /= Null_Iir);
+ pragma Assert (Has_Block_Block_Configuration (Get_Kind (Block)));
Set_Field6 (Block, Conf);
end Set_Block_Block_Configuration;
- procedure Check_Kind_For_Package_Header (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Package_Declaration =>
- null;
- when others =>
- Failed ("Package_Header", Target);
- end case;
- end Check_Kind_For_Package_Header;
-
function Get_Package_Header (Pkg : Iir) return Iir is
begin
- Check_Kind_For_Package_Header (Pkg);
+ pragma Assert (Pkg /= Null_Iir);
+ pragma Assert (Has_Package_Header (Get_Kind (Pkg)));
return Get_Field5 (Pkg);
end Get_Package_Header;
procedure Set_Package_Header (Pkg : Iir; Header : Iir) is
begin
- Check_Kind_For_Package_Header (Pkg);
+ pragma Assert (Pkg /= Null_Iir);
+ pragma Assert (Has_Package_Header (Get_Kind (Pkg)));
Set_Field5 (Pkg, Header);
end Set_Package_Header;
- procedure Check_Kind_For_Block_Header (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Block_Statement =>
- null;
- when others =>
- Failed ("Block_Header", Target);
- end case;
- end Check_Kind_For_Block_Header;
-
function Get_Block_Header (Target : Iir) return Iir is
begin
- Check_Kind_For_Block_Header (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Block_Header (Get_Kind (Target)));
return Get_Field7 (Target);
end Get_Block_Header;
procedure Set_Block_Header (Target : Iir; Header : Iir) is
begin
- Check_Kind_For_Block_Header (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Block_Header (Get_Kind (Target)));
Set_Field7 (Target, Header);
end Set_Block_Header;
- procedure Check_Kind_For_Uninstantiated_Name (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Package_Instantiation_Declaration =>
- null;
- when others =>
- Failed ("Uninstantiated_Name", Target);
- end case;
- end Check_Kind_For_Uninstantiated_Name;
-
function Get_Uninstantiated_Name (Inst : Iir) return Iir is
begin
- Check_Kind_For_Uninstantiated_Name (Inst);
+ pragma Assert (Inst /= Null_Iir);
+ pragma Assert (Has_Uninstantiated_Name (Get_Kind (Inst)));
return Get_Field5 (Inst);
end Get_Uninstantiated_Name;
procedure Set_Uninstantiated_Name (Inst : Iir; Name : Iir) is
begin
- Check_Kind_For_Uninstantiated_Name (Inst);
+ pragma Assert (Inst /= Null_Iir);
+ pragma Assert (Has_Uninstantiated_Name (Get_Kind (Inst)));
Set_Field5 (Inst, Name);
end Set_Uninstantiated_Name;
- procedure Check_Kind_For_Generate_Block_Configuration (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Generate_Statement =>
- null;
- when others =>
- Failed ("Generate_Block_Configuration", Target);
- end case;
- end Check_Kind_For_Generate_Block_Configuration;
-
function Get_Generate_Block_Configuration (Target : Iir) return Iir is
begin
- Check_Kind_For_Generate_Block_Configuration (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Generate_Block_Configuration (Get_Kind (Target)));
return Get_Field7 (Target);
end Get_Generate_Block_Configuration;
procedure Set_Generate_Block_Configuration (Target : Iir; Conf : Iir) is
begin
- Check_Kind_For_Generate_Block_Configuration (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Generate_Block_Configuration (Get_Kind (Target)));
Set_Field7 (Target, Conf);
end Set_Generate_Block_Configuration;
- procedure Check_Kind_For_Generation_Scheme (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Generate_Statement =>
- null;
- when others =>
- Failed ("Generation_Scheme", Target);
- end case;
- end Check_Kind_For_Generation_Scheme;
-
function Get_Generation_Scheme (Target : Iir) return Iir is
begin
- Check_Kind_For_Generation_Scheme (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Generation_Scheme (Get_Kind (Target)));
return Get_Field6 (Target);
end Get_Generation_Scheme;
procedure Set_Generation_Scheme (Target : Iir; Scheme : Iir) is
begin
- Check_Kind_For_Generation_Scheme (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Generation_Scheme (Get_Kind (Target)));
Set_Field6 (Target, Scheme);
end Set_Generation_Scheme;
- procedure Check_Kind_For_Condition (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Conditional_Waveform
- | Iir_Kind_While_Loop_Statement
- | Iir_Kind_Next_Statement
- | Iir_Kind_Exit_Statement
- | Iir_Kind_If_Statement
- | Iir_Kind_Elsif =>
- null;
- when others =>
- Failed ("Condition", Target);
- end case;
- end Check_Kind_For_Condition;
-
function Get_Condition (Target : Iir) return Iir is
begin
- Check_Kind_For_Condition (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Condition (Get_Kind (Target)));
return Get_Field1 (Target);
end Get_Condition;
procedure Set_Condition (Target : Iir; Condition : Iir) is
begin
- Check_Kind_For_Condition (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Condition (Get_Kind (Target)));
Set_Field1 (Target, Condition);
end Set_Condition;
- procedure Check_Kind_For_Else_Clause (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_If_Statement
- | Iir_Kind_Elsif =>
- null;
- when others =>
- Failed ("Else_Clause", Target);
- end case;
- end Check_Kind_For_Else_Clause;
-
function Get_Else_Clause (Target : Iir) return Iir is
begin
- Check_Kind_For_Else_Clause (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Else_Clause (Get_Kind (Target)));
return Get_Field6 (Target);
end Get_Else_Clause;
procedure Set_Else_Clause (Target : Iir; Clause : Iir) is
begin
- Check_Kind_For_Else_Clause (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Else_Clause (Get_Kind (Target)));
Set_Field6 (Target, Clause);
end Set_Else_Clause;
- procedure Check_Kind_For_Parameter_Specification (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_For_Loop_Statement =>
- null;
- when others =>
- Failed ("Parameter_Specification", Target);
- end case;
- end Check_Kind_For_Parameter_Specification;
-
function Get_Parameter_Specification (Target : Iir) return Iir is
begin
- Check_Kind_For_Parameter_Specification (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Parameter_Specification (Get_Kind (Target)));
return Get_Field1 (Target);
end Get_Parameter_Specification;
procedure Set_Parameter_Specification (Target : Iir; Param : Iir) is
begin
- Check_Kind_For_Parameter_Specification (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Parameter_Specification (Get_Kind (Target)));
Set_Field1 (Target, Param);
end Set_Parameter_Specification;
- procedure Check_Kind_For_Parent (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Design_File
- | Iir_Kind_Design_Unit
- | Iir_Kind_Library_Clause
- | Iir_Kind_Use_Clause
- | Iir_Kind_Choice_By_Others
- | Iir_Kind_Choice_By_Expression
- | Iir_Kind_Choice_By_Range
- | Iir_Kind_Choice_By_None
- | Iir_Kind_Choice_By_Name
- | Iir_Kind_Block_Configuration
- | Iir_Kind_Component_Configuration
- | Iir_Kind_Record_Element_Constraint
- | Iir_Kind_Attribute_Specification
- | Iir_Kind_Disconnection_Specification
- | Iir_Kind_Configuration_Specification
- | Iir_Kind_Protected_Type_Body
- | Iir_Kind_Type_Declaration
- | Iir_Kind_Anonymous_Type_Declaration
- | Iir_Kind_Subtype_Declaration
- | Iir_Kind_Nature_Declaration
- | Iir_Kind_Subnature_Declaration
- | Iir_Kind_Package_Declaration
- | Iir_Kind_Package_Instantiation_Declaration
- | Iir_Kind_Package_Body
- | Iir_Kind_Configuration_Declaration
- | Iir_Kind_Entity_Declaration
- | Iir_Kind_Architecture_Body
- | Iir_Kind_Unit_Declaration
- | Iir_Kind_Component_Declaration
- | Iir_Kind_Attribute_Declaration
- | Iir_Kind_Group_Template_Declaration
- | Iir_Kind_Group_Declaration
- | Iir_Kind_Non_Object_Alias_Declaration
- | Iir_Kind_Psl_Declaration
- | Iir_Kind_Terminal_Declaration
- | Iir_Kind_Free_Quantity_Declaration
- | Iir_Kind_Across_Quantity_Declaration
- | Iir_Kind_Through_Quantity_Declaration
- | Iir_Kind_Enumeration_Literal
- | Iir_Kind_Function_Declaration
- | Iir_Kind_Implicit_Function_Declaration
- | Iir_Kind_Implicit_Procedure_Declaration
- | Iir_Kind_Procedure_Declaration
- | Iir_Kind_Function_Body
- | Iir_Kind_Procedure_Body
- | Iir_Kind_Object_Alias_Declaration
- | Iir_Kind_File_Declaration
- | Iir_Kind_Guard_Signal_Declaration
- | Iir_Kind_Signal_Declaration
- | Iir_Kind_Variable_Declaration
- | Iir_Kind_Constant_Declaration
- | Iir_Kind_Iterator_Declaration
- | Iir_Kind_Constant_Interface_Declaration
- | Iir_Kind_Variable_Interface_Declaration
- | Iir_Kind_Signal_Interface_Declaration
- | Iir_Kind_File_Interface_Declaration
- | Iir_Kind_Sensitized_Process_Statement
- | Iir_Kind_Process_Statement
- | Iir_Kind_Concurrent_Conditional_Signal_Assignment
- | Iir_Kind_Concurrent_Selected_Signal_Assignment
- | Iir_Kind_Concurrent_Assertion_Statement
- | Iir_Kind_Psl_Default_Clock
- | Iir_Kind_Psl_Assert_Statement
- | Iir_Kind_Psl_Cover_Statement
- | Iir_Kind_Concurrent_Procedure_Call_Statement
- | Iir_Kind_Block_Statement
- | Iir_Kind_Generate_Statement
- | Iir_Kind_Component_Instantiation_Statement
- | Iir_Kind_Simple_Simultaneous_Statement
- | Iir_Kind_Signal_Assignment_Statement
- | Iir_Kind_Null_Statement
- | Iir_Kind_Assertion_Statement
- | Iir_Kind_Report_Statement
- | Iir_Kind_Wait_Statement
- | Iir_Kind_Variable_Assignment_Statement
- | Iir_Kind_Return_Statement
- | Iir_Kind_For_Loop_Statement
- | Iir_Kind_While_Loop_Statement
- | Iir_Kind_Next_Statement
- | Iir_Kind_Exit_Statement
- | Iir_Kind_Case_Statement
- | Iir_Kind_Procedure_Call_Statement
- | Iir_Kind_If_Statement
- | Iir_Kind_Elsif =>
- null;
- when others =>
- Failed ("Parent", Target);
- end case;
- end Check_Kind_For_Parent;
-
function Get_Parent (Target : Iir) return Iir is
begin
- Check_Kind_For_Parent (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Parent (Get_Kind (Target)));
return Get_Field0 (Target);
end Get_Parent;
procedure Set_Parent (Target : Iir; Parent : Iir) is
begin
- Check_Kind_For_Parent (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Parent (Get_Kind (Target)));
Set_Field0 (Target, Parent);
end Set_Parent;
- procedure Check_Kind_For_Loop_Label (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Next_Statement
- | Iir_Kind_Exit_Statement =>
- null;
- when others =>
- Failed ("Loop_Label", Target);
- end case;
- end Check_Kind_For_Loop_Label;
-
function Get_Loop_Label (Target : Iir) return Iir is
begin
- Check_Kind_For_Loop_Label (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Loop_Label (Get_Kind (Target)));
return Get_Field5 (Target);
end Get_Loop_Label;
procedure Set_Loop_Label (Target : Iir; Stmt : Iir) is
begin
- Check_Kind_For_Loop_Label (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Loop_Label (Get_Kind (Target)));
Set_Field5 (Target, Stmt);
end Set_Loop_Label;
- procedure Check_Kind_For_Component_Name (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Component_Configuration
- | Iir_Kind_Configuration_Specification =>
- null;
- when others =>
- Failed ("Component_Name", Target);
- end case;
- end Check_Kind_For_Component_Name;
-
function Get_Component_Name (Target : Iir) return Iir is
begin
- Check_Kind_For_Component_Name (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Component_Name (Get_Kind (Target)));
return Get_Field4 (Target);
end Get_Component_Name;
procedure Set_Component_Name (Target : Iir; Name : Iir) is
begin
- Check_Kind_For_Component_Name (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Component_Name (Get_Kind (Target)));
Set_Field4 (Target, Name);
end Set_Component_Name;
- procedure Check_Kind_For_Instantiation_List (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Component_Configuration
- | Iir_Kind_Configuration_Specification =>
- null;
- when others =>
- Failed ("Instantiation_List", Target);
- end case;
- end Check_Kind_For_Instantiation_List;
-
function Get_Instantiation_List (Target : Iir) return Iir_List is
begin
- Check_Kind_For_Instantiation_List (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Instantiation_List (Get_Kind (Target)));
return Iir_To_Iir_List (Get_Field1 (Target));
end Get_Instantiation_List;
procedure Set_Instantiation_List (Target : Iir; List : Iir_List) is
begin
- Check_Kind_For_Instantiation_List (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Instantiation_List (Get_Kind (Target)));
Set_Field1 (Target, Iir_List_To_Iir (List));
end Set_Instantiation_List;
- procedure Check_Kind_For_Entity_Aspect (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Binding_Indication =>
- null;
- when others =>
- Failed ("Entity_Aspect", Target);
- end case;
- end Check_Kind_For_Entity_Aspect;
-
function Get_Entity_Aspect (Target : Iir_Binding_Indication) return Iir is
begin
- Check_Kind_For_Entity_Aspect (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Entity_Aspect (Get_Kind (Target)));
return Get_Field3 (Target);
end Get_Entity_Aspect;
procedure Set_Entity_Aspect (Target : Iir_Binding_Indication; Entity : Iir)
- is
+ is
begin
- Check_Kind_For_Entity_Aspect (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Entity_Aspect (Get_Kind (Target)));
Set_Field3 (Target, Entity);
end Set_Entity_Aspect;
- procedure Check_Kind_For_Default_Entity_Aspect (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Binding_Indication =>
- null;
- when others =>
- Failed ("Default_Entity_Aspect", Target);
- end case;
- end Check_Kind_For_Default_Entity_Aspect;
-
function Get_Default_Entity_Aspect (Target : Iir) return Iir is
begin
- Check_Kind_For_Default_Entity_Aspect (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Default_Entity_Aspect (Get_Kind (Target)));
return Get_Field1 (Target);
end Get_Default_Entity_Aspect;
procedure Set_Default_Entity_Aspect (Target : Iir; Aspect : Iir) is
begin
- Check_Kind_For_Default_Entity_Aspect (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Default_Entity_Aspect (Get_Kind (Target)));
Set_Field1 (Target, Aspect);
end Set_Default_Entity_Aspect;
- procedure Check_Kind_For_Default_Generic_Map_Aspect_Chain (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Binding_Indication =>
- null;
- when others =>
- Failed ("Default_Generic_Map_Aspect_Chain", Target);
- end case;
- end Check_Kind_For_Default_Generic_Map_Aspect_Chain;
-
function Get_Default_Generic_Map_Aspect_Chain (Target : Iir) return Iir is
begin
- Check_Kind_For_Default_Generic_Map_Aspect_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Default_Generic_Map_Aspect_Chain (Get_Kind (Target)));
return Get_Field6 (Target);
end Get_Default_Generic_Map_Aspect_Chain;
procedure Set_Default_Generic_Map_Aspect_Chain (Target : Iir; Chain : Iir)
- is
+ is
begin
- Check_Kind_For_Default_Generic_Map_Aspect_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Default_Generic_Map_Aspect_Chain (Get_Kind (Target)));
Set_Field6 (Target, Chain);
end Set_Default_Generic_Map_Aspect_Chain;
- procedure Check_Kind_For_Default_Port_Map_Aspect_Chain (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Binding_Indication =>
- null;
- when others =>
- Failed ("Default_Port_Map_Aspect_Chain", Target);
- end case;
- end Check_Kind_For_Default_Port_Map_Aspect_Chain;
-
function Get_Default_Port_Map_Aspect_Chain (Target : Iir) return Iir is
begin
- Check_Kind_For_Default_Port_Map_Aspect_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Default_Port_Map_Aspect_Chain (Get_Kind (Target)));
return Get_Field7 (Target);
end Get_Default_Port_Map_Aspect_Chain;
procedure Set_Default_Port_Map_Aspect_Chain (Target : Iir; Chain : Iir) is
begin
- Check_Kind_For_Default_Port_Map_Aspect_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Default_Port_Map_Aspect_Chain (Get_Kind (Target)));
Set_Field7 (Target, Chain);
end Set_Default_Port_Map_Aspect_Chain;
- procedure Check_Kind_For_Binding_Indication (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Component_Configuration
- | Iir_Kind_Configuration_Specification =>
- null;
- when others =>
- Failed ("Binding_Indication", Target);
- end case;
- end Check_Kind_For_Binding_Indication;
-
function Get_Binding_Indication (Target : Iir) return Iir is
begin
- Check_Kind_For_Binding_Indication (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Binding_Indication (Get_Kind (Target)));
return Get_Field3 (Target);
end Get_Binding_Indication;
procedure Set_Binding_Indication (Target : Iir; Binding : Iir) is
begin
- Check_Kind_For_Binding_Indication (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Binding_Indication (Get_Kind (Target)));
Set_Field3 (Target, Binding);
end Set_Binding_Indication;
- procedure Check_Kind_For_Named_Entity (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Character_Literal
- | Iir_Kind_Simple_Name
- | Iir_Kind_Selected_Name
- | Iir_Kind_Operator_Symbol
- | Iir_Kind_Selected_By_All_Name
- | Iir_Kind_Parenthesis_Name
- | Iir_Kind_Attribute_Name =>
- null;
- when others =>
- Failed ("Named_Entity", Target);
- end case;
- end Check_Kind_For_Named_Entity;
-
function Get_Named_Entity (Name : Iir) return Iir is
begin
- Check_Kind_For_Named_Entity (Name);
+ pragma Assert (Name /= Null_Iir);
+ pragma Assert (Has_Named_Entity (Get_Kind (Name)));
return Get_Field4 (Name);
end Get_Named_Entity;
procedure Set_Named_Entity (Name : Iir; Val : Iir) is
begin
- Check_Kind_For_Named_Entity (Name);
+ pragma Assert (Name /= Null_Iir);
+ pragma Assert (Has_Named_Entity (Get_Kind (Name)));
Set_Field4 (Name, Val);
end Set_Named_Entity;
- procedure Check_Kind_For_Alias_Declaration (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Character_Literal
- | Iir_Kind_Simple_Name
- | Iir_Kind_Selected_Name
- | Iir_Kind_Operator_Symbol =>
- null;
- when others =>
- Failed ("Alias_Declaration", Target);
- end case;
- end Check_Kind_For_Alias_Declaration;
-
function Get_Alias_Declaration (Name : Iir) return Iir is
begin
- Check_Kind_For_Alias_Declaration (Name);
+ pragma Assert (Name /= Null_Iir);
+ pragma Assert (Has_Alias_Declaration (Get_Kind (Name)));
return Get_Field2 (Name);
end Get_Alias_Declaration;
procedure Set_Alias_Declaration (Name : Iir; Val : Iir) is
begin
- Check_Kind_For_Alias_Declaration (Name);
+ pragma Assert (Name /= Null_Iir);
+ pragma Assert (Has_Alias_Declaration (Get_Kind (Name)));
Set_Field2 (Name, Val);
end Set_Alias_Declaration;
- procedure Check_Kind_For_Expr_Staticness (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Error
- | Iir_Kind_Integer_Literal
- | Iir_Kind_Floating_Point_Literal
- | Iir_Kind_Null_Literal
- | Iir_Kind_String_Literal
- | Iir_Kind_Physical_Int_Literal
- | Iir_Kind_Physical_Fp_Literal
- | Iir_Kind_Bit_String_Literal
- | Iir_Kind_Simple_Aggregate
- | Iir_Kind_Overflow_Literal
- | Iir_Kind_Attribute_Value
- | Iir_Kind_Range_Expression
- | Iir_Kind_Unit_Declaration
- | Iir_Kind_Free_Quantity_Declaration
- | Iir_Kind_Across_Quantity_Declaration
- | Iir_Kind_Through_Quantity_Declaration
- | Iir_Kind_Enumeration_Literal
- | Iir_Kind_Object_Alias_Declaration
- | Iir_Kind_File_Declaration
- | Iir_Kind_Guard_Signal_Declaration
- | Iir_Kind_Signal_Declaration
- | Iir_Kind_Variable_Declaration
- | Iir_Kind_Constant_Declaration
- | Iir_Kind_Iterator_Declaration
- | Iir_Kind_Constant_Interface_Declaration
- | Iir_Kind_Variable_Interface_Declaration
- | Iir_Kind_Signal_Interface_Declaration
- | Iir_Kind_File_Interface_Declaration
- | Iir_Kind_Identity_Operator
- | Iir_Kind_Negation_Operator
- | Iir_Kind_Absolute_Operator
- | Iir_Kind_Not_Operator
- | Iir_Kind_Condition_Operator
- | Iir_Kind_Reduction_And_Operator
- | Iir_Kind_Reduction_Or_Operator
- | Iir_Kind_Reduction_Nand_Operator
- | Iir_Kind_Reduction_Nor_Operator
- | Iir_Kind_Reduction_Xor_Operator
- | Iir_Kind_Reduction_Xnor_Operator
- | Iir_Kind_And_Operator
- | Iir_Kind_Or_Operator
- | Iir_Kind_Nand_Operator
- | Iir_Kind_Nor_Operator
- | Iir_Kind_Xor_Operator
- | Iir_Kind_Xnor_Operator
- | Iir_Kind_Equality_Operator
- | Iir_Kind_Inequality_Operator
- | Iir_Kind_Less_Than_Operator
- | Iir_Kind_Less_Than_Or_Equal_Operator
- | Iir_Kind_Greater_Than_Operator
- | Iir_Kind_Greater_Than_Or_Equal_Operator
- | Iir_Kind_Match_Equality_Operator
- | Iir_Kind_Match_Inequality_Operator
- | Iir_Kind_Match_Less_Than_Operator
- | Iir_Kind_Match_Less_Than_Or_Equal_Operator
- | Iir_Kind_Match_Greater_Than_Operator
- | Iir_Kind_Match_Greater_Than_Or_Equal_Operator
- | Iir_Kind_Sll_Operator
- | Iir_Kind_Sla_Operator
- | Iir_Kind_Srl_Operator
- | Iir_Kind_Sra_Operator
- | Iir_Kind_Rol_Operator
- | Iir_Kind_Ror_Operator
- | Iir_Kind_Addition_Operator
- | Iir_Kind_Substraction_Operator
- | Iir_Kind_Concatenation_Operator
- | Iir_Kind_Multiplication_Operator
- | Iir_Kind_Division_Operator
- | Iir_Kind_Modulus_Operator
- | Iir_Kind_Remainder_Operator
- | Iir_Kind_Exponentiation_Operator
- | Iir_Kind_Function_Call
- | Iir_Kind_Aggregate
- | Iir_Kind_Parenthesis_Expression
- | Iir_Kind_Qualified_Expression
- | Iir_Kind_Type_Conversion
- | Iir_Kind_Allocator_By_Expression
- | Iir_Kind_Allocator_By_Subtype
- | Iir_Kind_Selected_Element
- | Iir_Kind_Dereference
- | Iir_Kind_Implicit_Dereference
- | Iir_Kind_Slice_Name
- | Iir_Kind_Indexed_Name
- | Iir_Kind_Character_Literal
- | Iir_Kind_Simple_Name
- | Iir_Kind_Selected_Name
- | Iir_Kind_Selected_By_All_Name
- | Iir_Kind_Left_Type_Attribute
- | Iir_Kind_Right_Type_Attribute
- | Iir_Kind_High_Type_Attribute
- | Iir_Kind_Low_Type_Attribute
- | Iir_Kind_Ascending_Type_Attribute
- | Iir_Kind_Image_Attribute
- | Iir_Kind_Value_Attribute
- | Iir_Kind_Pos_Attribute
- | Iir_Kind_Val_Attribute
- | Iir_Kind_Succ_Attribute
- | Iir_Kind_Pred_Attribute
- | Iir_Kind_Leftof_Attribute
- | Iir_Kind_Rightof_Attribute
- | Iir_Kind_Delayed_Attribute
- | Iir_Kind_Stable_Attribute
- | Iir_Kind_Quiet_Attribute
- | Iir_Kind_Transaction_Attribute
- | Iir_Kind_Event_Attribute
- | Iir_Kind_Active_Attribute
- | Iir_Kind_Last_Event_Attribute
- | Iir_Kind_Last_Active_Attribute
- | Iir_Kind_Last_Value_Attribute
- | Iir_Kind_Driving_Attribute
- | Iir_Kind_Driving_Value_Attribute
- | Iir_Kind_Simple_Name_Attribute
- | Iir_Kind_Instance_Name_Attribute
- | Iir_Kind_Path_Name_Attribute
- | Iir_Kind_Left_Array_Attribute
- | Iir_Kind_Right_Array_Attribute
- | Iir_Kind_High_Array_Attribute
- | Iir_Kind_Low_Array_Attribute
- | Iir_Kind_Length_Array_Attribute
- | Iir_Kind_Ascending_Array_Attribute
- | Iir_Kind_Range_Array_Attribute
- | Iir_Kind_Reverse_Range_Array_Attribute
- | Iir_Kind_Attribute_Name =>
- null;
- when others =>
- Failed ("Expr_Staticness", Target);
- end case;
- end Check_Kind_For_Expr_Staticness;
-
function Get_Expr_Staticness (Target : Iir) return Iir_Staticness is
begin
- Check_Kind_For_Expr_Staticness (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Expr_Staticness (Get_Kind (Target)));
return Iir_Staticness'Val (Get_State1 (Target));
end Get_Expr_Staticness;
procedure Set_Expr_Staticness (Target : Iir; Static : Iir_Staticness) is
begin
- Check_Kind_For_Expr_Staticness (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Expr_Staticness (Get_Kind (Target)));
Set_State1 (Target, Iir_Staticness'Pos (Static));
end Set_Expr_Staticness;
- procedure Check_Kind_For_Error_Origin (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Error =>
- null;
- when others =>
- Failed ("Error_Origin", Target);
- end case;
- end Check_Kind_For_Error_Origin;
-
function Get_Error_Origin (Target : Iir) return Iir is
begin
- Check_Kind_For_Error_Origin (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Error_Origin (Get_Kind (Target)));
return Get_Field2 (Target);
end Get_Error_Origin;
procedure Set_Error_Origin (Target : Iir; Origin : Iir) is
begin
- Check_Kind_For_Error_Origin (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Error_Origin (Get_Kind (Target)));
Set_Field2 (Target, Origin);
end Set_Error_Origin;
- procedure Check_Kind_For_Operand (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Identity_Operator
- | Iir_Kind_Negation_Operator
- | Iir_Kind_Absolute_Operator
- | Iir_Kind_Not_Operator
- | Iir_Kind_Condition_Operator
- | Iir_Kind_Reduction_And_Operator
- | Iir_Kind_Reduction_Or_Operator
- | Iir_Kind_Reduction_Nand_Operator
- | Iir_Kind_Reduction_Nor_Operator
- | Iir_Kind_Reduction_Xor_Operator
- | Iir_Kind_Reduction_Xnor_Operator =>
- null;
- when others =>
- Failed ("Operand", Target);
- end case;
- end Check_Kind_For_Operand;
-
function Get_Operand (Target : Iir) return Iir is
begin
- Check_Kind_For_Operand (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Operand (Get_Kind (Target)));
return Get_Field2 (Target);
end Get_Operand;
procedure Set_Operand (Target : Iir; An_Iir : Iir) is
begin
- Check_Kind_For_Operand (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Operand (Get_Kind (Target)));
Set_Field2 (Target, An_Iir);
end Set_Operand;
- procedure Check_Kind_For_Left (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_And_Operator
- | Iir_Kind_Or_Operator
- | Iir_Kind_Nand_Operator
- | Iir_Kind_Nor_Operator
- | Iir_Kind_Xor_Operator
- | Iir_Kind_Xnor_Operator
- | Iir_Kind_Equality_Operator
- | Iir_Kind_Inequality_Operator
- | Iir_Kind_Less_Than_Operator
- | Iir_Kind_Less_Than_Or_Equal_Operator
- | Iir_Kind_Greater_Than_Operator
- | Iir_Kind_Greater_Than_Or_Equal_Operator
- | Iir_Kind_Match_Equality_Operator
- | Iir_Kind_Match_Inequality_Operator
- | Iir_Kind_Match_Less_Than_Operator
- | Iir_Kind_Match_Less_Than_Or_Equal_Operator
- | Iir_Kind_Match_Greater_Than_Operator
- | Iir_Kind_Match_Greater_Than_Or_Equal_Operator
- | Iir_Kind_Sll_Operator
- | Iir_Kind_Sla_Operator
- | Iir_Kind_Srl_Operator
- | Iir_Kind_Sra_Operator
- | Iir_Kind_Rol_Operator
- | Iir_Kind_Ror_Operator
- | Iir_Kind_Addition_Operator
- | Iir_Kind_Substraction_Operator
- | Iir_Kind_Concatenation_Operator
- | Iir_Kind_Multiplication_Operator
- | Iir_Kind_Division_Operator
- | Iir_Kind_Modulus_Operator
- | Iir_Kind_Remainder_Operator
- | Iir_Kind_Exponentiation_Operator =>
- null;
- when others =>
- Failed ("Left", Target);
- end case;
- end Check_Kind_For_Left;
-
function Get_Left (Target : Iir) return Iir is
begin
- Check_Kind_For_Left (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Left (Get_Kind (Target)));
return Get_Field2 (Target);
end Get_Left;
procedure Set_Left (Target : Iir; An_Iir : Iir) is
begin
- Check_Kind_For_Left (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Left (Get_Kind (Target)));
Set_Field2 (Target, An_Iir);
end Set_Left;
- procedure Check_Kind_For_Right (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_And_Operator
- | Iir_Kind_Or_Operator
- | Iir_Kind_Nand_Operator
- | Iir_Kind_Nor_Operator
- | Iir_Kind_Xor_Operator
- | Iir_Kind_Xnor_Operator
- | Iir_Kind_Equality_Operator
- | Iir_Kind_Inequality_Operator
- | Iir_Kind_Less_Than_Operator
- | Iir_Kind_Less_Than_Or_Equal_Operator
- | Iir_Kind_Greater_Than_Operator
- | Iir_Kind_Greater_Than_Or_Equal_Operator
- | Iir_Kind_Match_Equality_Operator
- | Iir_Kind_Match_Inequality_Operator
- | Iir_Kind_Match_Less_Than_Operator
- | Iir_Kind_Match_Less_Than_Or_Equal_Operator
- | Iir_Kind_Match_Greater_Than_Operator
- | Iir_Kind_Match_Greater_Than_Or_Equal_Operator
- | Iir_Kind_Sll_Operator
- | Iir_Kind_Sla_Operator
- | Iir_Kind_Srl_Operator
- | Iir_Kind_Sra_Operator
- | Iir_Kind_Rol_Operator
- | Iir_Kind_Ror_Operator
- | Iir_Kind_Addition_Operator
- | Iir_Kind_Substraction_Operator
- | Iir_Kind_Concatenation_Operator
- | Iir_Kind_Multiplication_Operator
- | Iir_Kind_Division_Operator
- | Iir_Kind_Modulus_Operator
- | Iir_Kind_Remainder_Operator
- | Iir_Kind_Exponentiation_Operator =>
- null;
- when others =>
- Failed ("Right", Target);
- end case;
- end Check_Kind_For_Right;
-
function Get_Right (Target : Iir) return Iir is
begin
- Check_Kind_For_Right (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Right (Get_Kind (Target)));
return Get_Field4 (Target);
end Get_Right;
procedure Set_Right (Target : Iir; An_Iir : Iir) is
begin
- Check_Kind_For_Right (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Right (Get_Kind (Target)));
Set_Field4 (Target, An_Iir);
end Set_Right;
- procedure Check_Kind_For_Unit_Name (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Physical_Int_Literal
- | Iir_Kind_Physical_Fp_Literal =>
- null;
- when others =>
- Failed ("Unit_Name", Target);
- end case;
- end Check_Kind_For_Unit_Name;
-
function Get_Unit_Name (Target : Iir) return Iir is
begin
- Check_Kind_For_Unit_Name (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Unit_Name (Get_Kind (Target)));
return Get_Field3 (Target);
end Get_Unit_Name;
procedure Set_Unit_Name (Target : Iir; Name : Iir) is
begin
- Check_Kind_For_Unit_Name (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Unit_Name (Get_Kind (Target)));
Set_Field3 (Target, Name);
end Set_Unit_Name;
- procedure Check_Kind_For_Name (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Non_Object_Alias_Declaration
- | Iir_Kind_Object_Alias_Declaration =>
- null;
- when others =>
- Failed ("Name", Target);
- end case;
- end Check_Kind_For_Name;
-
function Get_Name (Target : Iir) return Iir is
begin
- Check_Kind_For_Name (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Name (Get_Kind (Target)));
return Get_Field4 (Target);
end Get_Name;
procedure Set_Name (Target : Iir; Name : Iir) is
begin
- Check_Kind_For_Name (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Name (Get_Kind (Target)));
Set_Field4 (Target, Name);
end Set_Name;
- procedure Check_Kind_For_Group_Template_Name (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Group_Declaration =>
- null;
- when others =>
- Failed ("Group_Template_Name", Target);
- end case;
- end Check_Kind_For_Group_Template_Name;
-
function Get_Group_Template_Name (Target : Iir) return Iir is
begin
- Check_Kind_For_Group_Template_Name (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Group_Template_Name (Get_Kind (Target)));
return Get_Field5 (Target);
end Get_Group_Template_Name;
procedure Set_Group_Template_Name (Target : Iir; Name : Iir) is
begin
- Check_Kind_For_Group_Template_Name (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Group_Template_Name (Get_Kind (Target)));
Set_Field5 (Target, Name);
end Set_Group_Template_Name;
- procedure Check_Kind_For_Name_Staticness (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Attribute_Value
- | Iir_Kind_Unit_Declaration
- | Iir_Kind_Free_Quantity_Declaration
- | Iir_Kind_Across_Quantity_Declaration
- | Iir_Kind_Through_Quantity_Declaration
- | Iir_Kind_Enumeration_Literal
- | Iir_Kind_Object_Alias_Declaration
- | Iir_Kind_File_Declaration
- | Iir_Kind_Guard_Signal_Declaration
- | Iir_Kind_Signal_Declaration
- | Iir_Kind_Variable_Declaration
- | Iir_Kind_Constant_Declaration
- | Iir_Kind_Iterator_Declaration
- | Iir_Kind_Constant_Interface_Declaration
- | Iir_Kind_Variable_Interface_Declaration
- | Iir_Kind_Signal_Interface_Declaration
- | Iir_Kind_File_Interface_Declaration
- | Iir_Kind_Function_Call
- | Iir_Kind_Selected_Element
- | Iir_Kind_Dereference
- | Iir_Kind_Implicit_Dereference
- | Iir_Kind_Slice_Name
- | Iir_Kind_Indexed_Name
- | Iir_Kind_Character_Literal
- | Iir_Kind_Simple_Name
- | Iir_Kind_Selected_Name
- | Iir_Kind_Left_Type_Attribute
- | Iir_Kind_Right_Type_Attribute
- | Iir_Kind_High_Type_Attribute
- | Iir_Kind_Low_Type_Attribute
- | Iir_Kind_Ascending_Type_Attribute
- | Iir_Kind_Image_Attribute
- | Iir_Kind_Value_Attribute
- | Iir_Kind_Pos_Attribute
- | Iir_Kind_Val_Attribute
- | Iir_Kind_Succ_Attribute
- | Iir_Kind_Pred_Attribute
- | Iir_Kind_Leftof_Attribute
- | Iir_Kind_Rightof_Attribute
- | Iir_Kind_Delayed_Attribute
- | Iir_Kind_Stable_Attribute
- | Iir_Kind_Quiet_Attribute
- | Iir_Kind_Transaction_Attribute
- | Iir_Kind_Event_Attribute
- | Iir_Kind_Active_Attribute
- | Iir_Kind_Last_Event_Attribute
- | Iir_Kind_Last_Active_Attribute
- | Iir_Kind_Last_Value_Attribute
- | Iir_Kind_Driving_Attribute
- | Iir_Kind_Driving_Value_Attribute
- | Iir_Kind_Simple_Name_Attribute
- | Iir_Kind_Instance_Name_Attribute
- | Iir_Kind_Path_Name_Attribute
- | Iir_Kind_Left_Array_Attribute
- | Iir_Kind_Right_Array_Attribute
- | Iir_Kind_High_Array_Attribute
- | Iir_Kind_Low_Array_Attribute
- | Iir_Kind_Length_Array_Attribute
- | Iir_Kind_Ascending_Array_Attribute
- | Iir_Kind_Range_Array_Attribute
- | Iir_Kind_Reverse_Range_Array_Attribute
- | Iir_Kind_Attribute_Name =>
- null;
- when others =>
- Failed ("Name_Staticness", Target);
- end case;
- end Check_Kind_For_Name_Staticness;
-
function Get_Name_Staticness (Target : Iir) return Iir_Staticness is
begin
- Check_Kind_For_Name_Staticness (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Name_Staticness (Get_Kind (Target)));
return Iir_Staticness'Val (Get_State2 (Target));
end Get_Name_Staticness;
procedure Set_Name_Staticness (Target : Iir; Static : Iir_Staticness) is
begin
- Check_Kind_For_Name_Staticness (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Name_Staticness (Get_Kind (Target)));
Set_State2 (Target, Iir_Staticness'Pos (Static));
end Set_Name_Staticness;
- procedure Check_Kind_For_Prefix (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Signature
- | Iir_Kind_Procedure_Call
- | Iir_Kind_Function_Call
- | Iir_Kind_Selected_Element
- | Iir_Kind_Dereference
- | Iir_Kind_Implicit_Dereference
- | Iir_Kind_Slice_Name
- | Iir_Kind_Indexed_Name
- | Iir_Kind_Selected_Name
- | Iir_Kind_Selected_By_All_Name
- | Iir_Kind_Parenthesis_Name
- | Iir_Kind_Base_Attribute
- | Iir_Kind_Left_Type_Attribute
- | Iir_Kind_Right_Type_Attribute
- | Iir_Kind_High_Type_Attribute
- | Iir_Kind_Low_Type_Attribute
- | Iir_Kind_Ascending_Type_Attribute
- | Iir_Kind_Image_Attribute
- | Iir_Kind_Value_Attribute
- | Iir_Kind_Pos_Attribute
- | Iir_Kind_Val_Attribute
- | Iir_Kind_Succ_Attribute
- | Iir_Kind_Pred_Attribute
- | Iir_Kind_Leftof_Attribute
- | Iir_Kind_Rightof_Attribute
- | Iir_Kind_Delayed_Attribute
- | Iir_Kind_Stable_Attribute
- | Iir_Kind_Quiet_Attribute
- | Iir_Kind_Transaction_Attribute
- | Iir_Kind_Event_Attribute
- | Iir_Kind_Active_Attribute
- | Iir_Kind_Last_Event_Attribute
- | Iir_Kind_Last_Active_Attribute
- | Iir_Kind_Last_Value_Attribute
- | Iir_Kind_Driving_Attribute
- | Iir_Kind_Driving_Value_Attribute
- | Iir_Kind_Simple_Name_Attribute
- | Iir_Kind_Instance_Name_Attribute
- | Iir_Kind_Path_Name_Attribute
- | Iir_Kind_Left_Array_Attribute
- | Iir_Kind_Right_Array_Attribute
- | Iir_Kind_High_Array_Attribute
- | Iir_Kind_Low_Array_Attribute
- | Iir_Kind_Length_Array_Attribute
- | Iir_Kind_Ascending_Array_Attribute
- | Iir_Kind_Range_Array_Attribute
- | Iir_Kind_Reverse_Range_Array_Attribute
- | Iir_Kind_Attribute_Name =>
- null;
- when others =>
- Failed ("Prefix", Target);
- end case;
- end Check_Kind_For_Prefix;
-
function Get_Prefix (Target : Iir) return Iir is
begin
- Check_Kind_For_Prefix (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Prefix (Get_Kind (Target)));
return Get_Field0 (Target);
end Get_Prefix;
procedure Set_Prefix (Target : Iir; Prefix : Iir) is
begin
- Check_Kind_For_Prefix (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Prefix (Get_Kind (Target)));
Set_Field0 (Target, Prefix);
end Set_Prefix;
- procedure Check_Kind_For_Slice_Subtype (Target : Iir) is
+ function Get_Signature_Prefix (Sign : Iir) return Iir is
begin
- case Get_Kind (Target) is
- when Iir_Kind_Slice_Name =>
- null;
- when others =>
- Failed ("Slice_Subtype", Target);
- end case;
- end Check_Kind_For_Slice_Subtype;
+ pragma Assert (Sign /= Null_Iir);
+ pragma Assert (Has_Signature_Prefix (Get_Kind (Sign)));
+ return Get_Field1 (Sign);
+ end Get_Signature_Prefix;
+
+ procedure Set_Signature_Prefix (Sign : Iir; Prefix : Iir) is
+ begin
+ pragma Assert (Sign /= Null_Iir);
+ pragma Assert (Has_Signature_Prefix (Get_Kind (Sign)));
+ Set_Field1 (Sign, Prefix);
+ end Set_Signature_Prefix;
function Get_Slice_Subtype (Slice : Iir) return Iir is
begin
- Check_Kind_For_Slice_Subtype (Slice);
+ pragma Assert (Slice /= Null_Iir);
+ pragma Assert (Has_Slice_Subtype (Get_Kind (Slice)));
return Get_Field3 (Slice);
end Get_Slice_Subtype;
procedure Set_Slice_Subtype (Slice : Iir; Atype : Iir) is
begin
- Check_Kind_For_Slice_Subtype (Slice);
+ pragma Assert (Slice /= Null_Iir);
+ pragma Assert (Has_Slice_Subtype (Get_Kind (Slice)));
Set_Field3 (Slice, Atype);
end Set_Slice_Subtype;
- procedure Check_Kind_For_Suffix (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Slice_Name =>
- null;
- when others =>
- Failed ("Suffix", Target);
- end case;
- end Check_Kind_For_Suffix;
-
function Get_Suffix (Target : Iir) return Iir is
begin
- Check_Kind_For_Suffix (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Suffix (Get_Kind (Target)));
return Get_Field2 (Target);
end Get_Suffix;
procedure Set_Suffix (Target : Iir; Suffix : Iir) is
begin
- Check_Kind_For_Suffix (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Suffix (Get_Kind (Target)));
Set_Field2 (Target, Suffix);
end Set_Suffix;
- procedure Check_Kind_For_Index_Subtype (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Left_Array_Attribute
- | Iir_Kind_Right_Array_Attribute
- | Iir_Kind_High_Array_Attribute
- | Iir_Kind_Low_Array_Attribute
- | Iir_Kind_Length_Array_Attribute
- | Iir_Kind_Ascending_Array_Attribute
- | Iir_Kind_Range_Array_Attribute
- | Iir_Kind_Reverse_Range_Array_Attribute =>
- null;
- when others =>
- Failed ("Index_Subtype", Target);
- end case;
- end Check_Kind_For_Index_Subtype;
-
function Get_Index_Subtype (Attr : Iir) return Iir is
begin
- Check_Kind_For_Index_Subtype (Attr);
+ pragma Assert (Attr /= Null_Iir);
+ pragma Assert (Has_Index_Subtype (Get_Kind (Attr)));
return Get_Field2 (Attr);
end Get_Index_Subtype;
procedure Set_Index_Subtype (Attr : Iir; St : Iir) is
begin
- Check_Kind_For_Index_Subtype (Attr);
+ pragma Assert (Attr /= Null_Iir);
+ pragma Assert (Has_Index_Subtype (Get_Kind (Attr)));
Set_Field2 (Attr, St);
end Set_Index_Subtype;
- procedure Check_Kind_For_Parameter (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Image_Attribute
- | Iir_Kind_Value_Attribute
- | Iir_Kind_Pos_Attribute
- | Iir_Kind_Val_Attribute
- | Iir_Kind_Succ_Attribute
- | Iir_Kind_Pred_Attribute
- | Iir_Kind_Leftof_Attribute
- | Iir_Kind_Rightof_Attribute
- | Iir_Kind_Delayed_Attribute
- | Iir_Kind_Stable_Attribute
- | Iir_Kind_Quiet_Attribute
- | Iir_Kind_Transaction_Attribute
- | Iir_Kind_Left_Array_Attribute
- | Iir_Kind_Right_Array_Attribute
- | Iir_Kind_High_Array_Attribute
- | Iir_Kind_Low_Array_Attribute
- | Iir_Kind_Length_Array_Attribute
- | Iir_Kind_Ascending_Array_Attribute
- | Iir_Kind_Range_Array_Attribute
- | Iir_Kind_Reverse_Range_Array_Attribute =>
- null;
- when others =>
- Failed ("Parameter", Target);
- end case;
- end Check_Kind_For_Parameter;
-
function Get_Parameter (Target : Iir) return Iir is
begin
- Check_Kind_For_Parameter (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Parameter (Get_Kind (Target)));
return Get_Field4 (Target);
end Get_Parameter;
procedure Set_Parameter (Target : Iir; Param : Iir) is
begin
- Check_Kind_For_Parameter (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Parameter (Get_Kind (Target)));
Set_Field4 (Target, Param);
end Set_Parameter;
- procedure Check_Kind_For_Actual_Type (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Association_Element_By_Individual =>
- null;
- when others =>
- Failed ("Actual_Type", Target);
- end case;
- end Check_Kind_For_Actual_Type;
-
function Get_Actual_Type (Target : Iir) return Iir is
begin
- Check_Kind_For_Actual_Type (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Actual_Type (Get_Kind (Target)));
return Get_Field3 (Target);
end Get_Actual_Type;
procedure Set_Actual_Type (Target : Iir; Atype : Iir) is
begin
- Check_Kind_For_Actual_Type (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Actual_Type (Get_Kind (Target)));
Set_Field3 (Target, Atype);
end Set_Actual_Type;
- procedure Check_Kind_For_Association_Chain (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Parenthesis_Name =>
- null;
- when others =>
- Failed ("Association_Chain", Target);
- end case;
- end Check_Kind_For_Association_Chain;
-
function Get_Association_Chain (Target : Iir) return Iir is
begin
- Check_Kind_For_Association_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Association_Chain (Get_Kind (Target)));
return Get_Field2 (Target);
end Get_Association_Chain;
procedure Set_Association_Chain (Target : Iir; Chain : Iir) is
begin
- Check_Kind_For_Association_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Association_Chain (Get_Kind (Target)));
Set_Field2 (Target, Chain);
end Set_Association_Chain;
- procedure Check_Kind_For_Individual_Association_Chain (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Association_Element_By_Individual =>
- null;
- when others =>
- Failed ("Individual_Association_Chain", Target);
- end case;
- end Check_Kind_For_Individual_Association_Chain;
-
function Get_Individual_Association_Chain (Target : Iir) return Iir is
begin
- Check_Kind_For_Individual_Association_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Individual_Association_Chain (Get_Kind (Target)));
return Get_Field4 (Target);
end Get_Individual_Association_Chain;
procedure Set_Individual_Association_Chain (Target : Iir; Chain : Iir) is
begin
- Check_Kind_For_Individual_Association_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Individual_Association_Chain (Get_Kind (Target)));
Set_Field4 (Target, Chain);
end Set_Individual_Association_Chain;
- procedure Check_Kind_For_Aggregate_Info (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Aggregate =>
- null;
- when others =>
- Failed ("Aggregate_Info", Target);
- end case;
- end Check_Kind_For_Aggregate_Info;
-
function Get_Aggregate_Info (Target : Iir) return Iir is
begin
- Check_Kind_For_Aggregate_Info (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Aggregate_Info (Get_Kind (Target)));
return Get_Field2 (Target);
end Get_Aggregate_Info;
procedure Set_Aggregate_Info (Target : Iir; Info : Iir) is
begin
- Check_Kind_For_Aggregate_Info (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Aggregate_Info (Get_Kind (Target)));
Set_Field2 (Target, Info);
end Set_Aggregate_Info;
- procedure Check_Kind_For_Sub_Aggregate_Info (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Aggregate_Info =>
- null;
- when others =>
- Failed ("Sub_Aggregate_Info", Target);
- end case;
- end Check_Kind_For_Sub_Aggregate_Info;
-
function Get_Sub_Aggregate_Info (Target : Iir) return Iir is
begin
- Check_Kind_For_Sub_Aggregate_Info (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Sub_Aggregate_Info (Get_Kind (Target)));
return Get_Field1 (Target);
end Get_Sub_Aggregate_Info;
procedure Set_Sub_Aggregate_Info (Target : Iir; Info : Iir) is
begin
- Check_Kind_For_Sub_Aggregate_Info (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Sub_Aggregate_Info (Get_Kind (Target)));
Set_Field1 (Target, Info);
end Set_Sub_Aggregate_Info;
- procedure Check_Kind_For_Aggr_Dynamic_Flag (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Aggregate_Info =>
- null;
- when others =>
- Failed ("Aggr_Dynamic_Flag", Target);
- end case;
- end Check_Kind_For_Aggr_Dynamic_Flag;
-
function Get_Aggr_Dynamic_Flag (Target : Iir) return Boolean is
begin
- Check_Kind_For_Aggr_Dynamic_Flag (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Aggr_Dynamic_Flag (Get_Kind (Target)));
return Get_Flag3 (Target);
end Get_Aggr_Dynamic_Flag;
procedure Set_Aggr_Dynamic_Flag (Target : Iir; Val : Boolean) is
begin
- Check_Kind_For_Aggr_Dynamic_Flag (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Aggr_Dynamic_Flag (Get_Kind (Target)));
Set_Flag3 (Target, Val);
end Set_Aggr_Dynamic_Flag;
- procedure Check_Kind_For_Aggr_Min_Length (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Aggregate_Info =>
- null;
- when others =>
- Failed ("Aggr_Min_Length", Target);
- end case;
- end Check_Kind_For_Aggr_Min_Length;
-
function Get_Aggr_Min_Length (Info : Iir_Aggregate_Info) return Iir_Int32
- is
+ is
begin
- Check_Kind_For_Aggr_Min_Length (Info);
+ pragma Assert (Info /= Null_Iir);
+ pragma Assert (Has_Aggr_Min_Length (Get_Kind (Info)));
return Iir_To_Iir_Int32 (Get_Field4 (Info));
end Get_Aggr_Min_Length;
procedure Set_Aggr_Min_Length (Info : Iir_Aggregate_Info; Nbr : Iir_Int32)
- is
+ is
begin
- Check_Kind_For_Aggr_Min_Length (Info);
+ pragma Assert (Info /= Null_Iir);
+ pragma Assert (Has_Aggr_Min_Length (Get_Kind (Info)));
Set_Field4 (Info, Iir_Int32_To_Iir (Nbr));
end Set_Aggr_Min_Length;
- procedure Check_Kind_For_Aggr_Low_Limit (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Aggregate_Info =>
- null;
- when others =>
- Failed ("Aggr_Low_Limit", Target);
- end case;
- end Check_Kind_For_Aggr_Low_Limit;
-
function Get_Aggr_Low_Limit (Target : Iir_Aggregate_Info) return Iir is
begin
- Check_Kind_For_Aggr_Low_Limit (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Aggr_Low_Limit (Get_Kind (Target)));
return Get_Field2 (Target);
end Get_Aggr_Low_Limit;
procedure Set_Aggr_Low_Limit (Target : Iir_Aggregate_Info; Limit : Iir) is
begin
- Check_Kind_For_Aggr_Low_Limit (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Aggr_Low_Limit (Get_Kind (Target)));
Set_Field2 (Target, Limit);
end Set_Aggr_Low_Limit;
- procedure Check_Kind_For_Aggr_High_Limit (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Aggregate_Info =>
- null;
- when others =>
- Failed ("Aggr_High_Limit", Target);
- end case;
- end Check_Kind_For_Aggr_High_Limit;
-
function Get_Aggr_High_Limit (Target : Iir_Aggregate_Info) return Iir is
begin
- Check_Kind_For_Aggr_High_Limit (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Aggr_High_Limit (Get_Kind (Target)));
return Get_Field3 (Target);
end Get_Aggr_High_Limit;
procedure Set_Aggr_High_Limit (Target : Iir_Aggregate_Info; Limit : Iir) is
begin
- Check_Kind_For_Aggr_High_Limit (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Aggr_High_Limit (Get_Kind (Target)));
Set_Field3 (Target, Limit);
end Set_Aggr_High_Limit;
- procedure Check_Kind_For_Aggr_Others_Flag (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Aggregate_Info =>
- null;
- when others =>
- Failed ("Aggr_Others_Flag", Target);
- end case;
- end Check_Kind_For_Aggr_Others_Flag;
-
function Get_Aggr_Others_Flag (Target : Iir_Aggregate_Info) return Boolean
- is
+ is
begin
- Check_Kind_For_Aggr_Others_Flag (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Aggr_Others_Flag (Get_Kind (Target)));
return Get_Flag2 (Target);
end Get_Aggr_Others_Flag;
procedure Set_Aggr_Others_Flag (Target : Iir_Aggregate_Info; Val : Boolean)
- is
+ is
begin
- Check_Kind_For_Aggr_Others_Flag (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Aggr_Others_Flag (Get_Kind (Target)));
Set_Flag2 (Target, Val);
end Set_Aggr_Others_Flag;
- procedure Check_Kind_For_Aggr_Named_Flag (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Aggregate_Info =>
- null;
- when others =>
- Failed ("Aggr_Named_Flag", Target);
- end case;
- end Check_Kind_For_Aggr_Named_Flag;
-
function Get_Aggr_Named_Flag (Target : Iir_Aggregate_Info) return Boolean
- is
+ is
begin
- Check_Kind_For_Aggr_Named_Flag (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Aggr_Named_Flag (Get_Kind (Target)));
return Get_Flag4 (Target);
end Get_Aggr_Named_Flag;
procedure Set_Aggr_Named_Flag (Target : Iir_Aggregate_Info; Val : Boolean)
- is
+ is
begin
- Check_Kind_For_Aggr_Named_Flag (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Aggr_Named_Flag (Get_Kind (Target)));
Set_Flag4 (Target, Val);
end Set_Aggr_Named_Flag;
- procedure Check_Kind_For_Value_Staticness (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Aggregate =>
- null;
- when others =>
- Failed ("Value_Staticness", Target);
- end case;
- end Check_Kind_For_Value_Staticness;
-
function Get_Value_Staticness (Target : Iir) return Iir_Staticness is
begin
- Check_Kind_For_Value_Staticness (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Value_Staticness (Get_Kind (Target)));
return Iir_Staticness'Val (Get_State2 (Target));
end Get_Value_Staticness;
procedure Set_Value_Staticness (Target : Iir; Staticness : Iir_Staticness)
- is
+ is
begin
- Check_Kind_For_Value_Staticness (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Value_Staticness (Get_Kind (Target)));
Set_State2 (Target, Iir_Staticness'Pos (Staticness));
end Set_Value_Staticness;
- procedure Check_Kind_For_Association_Choices_Chain (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Aggregate =>
- null;
- when others =>
- Failed ("Association_Choices_Chain", Target);
- end case;
- end Check_Kind_For_Association_Choices_Chain;
-
function Get_Association_Choices_Chain (Target : Iir) return Iir is
begin
- Check_Kind_For_Association_Choices_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Association_Choices_Chain (Get_Kind (Target)));
return Get_Field4 (Target);
end Get_Association_Choices_Chain;
procedure Set_Association_Choices_Chain (Target : Iir; Chain : Iir) is
begin
- Check_Kind_For_Association_Choices_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Association_Choices_Chain (Get_Kind (Target)));
Set_Field4 (Target, Chain);
end Set_Association_Choices_Chain;
- procedure Check_Kind_For_Case_Statement_Alternative_Chain (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Case_Statement =>
- null;
- when others =>
- Failed ("Case_Statement_Alternative_Chain", Target);
- end case;
- end Check_Kind_For_Case_Statement_Alternative_Chain;
-
function Get_Case_Statement_Alternative_Chain (Target : Iir) return Iir is
begin
- Check_Kind_For_Case_Statement_Alternative_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Case_Statement_Alternative_Chain (Get_Kind (Target)));
return Get_Field1 (Target);
end Get_Case_Statement_Alternative_Chain;
procedure Set_Case_Statement_Alternative_Chain (Target : Iir; Chain : Iir)
- is
+ is
begin
- Check_Kind_For_Case_Statement_Alternative_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Case_Statement_Alternative_Chain (Get_Kind (Target)));
Set_Field1 (Target, Chain);
end Set_Case_Statement_Alternative_Chain;
- procedure Check_Kind_For_Choice_Staticness (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Choice_By_Expression
- | Iir_Kind_Choice_By_Range =>
- null;
- when others =>
- Failed ("Choice_Staticness", Target);
- end case;
- end Check_Kind_For_Choice_Staticness;
-
function Get_Choice_Staticness (Target : Iir) return Iir_Staticness is
begin
- Check_Kind_For_Choice_Staticness (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Choice_Staticness (Get_Kind (Target)));
return Iir_Staticness'Val (Get_State2 (Target));
end Get_Choice_Staticness;
procedure Set_Choice_Staticness (Target : Iir; Staticness : Iir_Staticness)
- is
+ is
begin
- Check_Kind_For_Choice_Staticness (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Choice_Staticness (Get_Kind (Target)));
Set_State2 (Target, Iir_Staticness'Pos (Staticness));
end Set_Choice_Staticness;
- procedure Check_Kind_For_Procedure_Call (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Concurrent_Procedure_Call_Statement
- | Iir_Kind_Procedure_Call_Statement =>
- null;
- when others =>
- Failed ("Procedure_Call", Target);
- end case;
- end Check_Kind_For_Procedure_Call;
-
function Get_Procedure_Call (Stmt : Iir) return Iir is
begin
- Check_Kind_For_Procedure_Call (Stmt);
+ pragma Assert (Stmt /= Null_Iir);
+ pragma Assert (Has_Procedure_Call (Get_Kind (Stmt)));
return Get_Field1 (Stmt);
end Get_Procedure_Call;
procedure Set_Procedure_Call (Stmt : Iir; Call : Iir) is
begin
- Check_Kind_For_Procedure_Call (Stmt);
+ pragma Assert (Stmt /= Null_Iir);
+ pragma Assert (Has_Procedure_Call (Get_Kind (Stmt)));
Set_Field1 (Stmt, Call);
end Set_Procedure_Call;
- procedure Check_Kind_For_Implementation (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Procedure_Call
- | Iir_Kind_Identity_Operator
- | Iir_Kind_Negation_Operator
- | Iir_Kind_Absolute_Operator
- | Iir_Kind_Not_Operator
- | Iir_Kind_Condition_Operator
- | Iir_Kind_Reduction_And_Operator
- | Iir_Kind_Reduction_Or_Operator
- | Iir_Kind_Reduction_Nand_Operator
- | Iir_Kind_Reduction_Nor_Operator
- | Iir_Kind_Reduction_Xor_Operator
- | Iir_Kind_Reduction_Xnor_Operator
- | Iir_Kind_And_Operator
- | Iir_Kind_Or_Operator
- | Iir_Kind_Nand_Operator
- | Iir_Kind_Nor_Operator
- | Iir_Kind_Xor_Operator
- | Iir_Kind_Xnor_Operator
- | Iir_Kind_Equality_Operator
- | Iir_Kind_Inequality_Operator
- | Iir_Kind_Less_Than_Operator
- | Iir_Kind_Less_Than_Or_Equal_Operator
- | Iir_Kind_Greater_Than_Operator
- | Iir_Kind_Greater_Than_Or_Equal_Operator
- | Iir_Kind_Match_Equality_Operator
- | Iir_Kind_Match_Inequality_Operator
- | Iir_Kind_Match_Less_Than_Operator
- | Iir_Kind_Match_Less_Than_Or_Equal_Operator
- | Iir_Kind_Match_Greater_Than_Operator
- | Iir_Kind_Match_Greater_Than_Or_Equal_Operator
- | Iir_Kind_Sll_Operator
- | Iir_Kind_Sla_Operator
- | Iir_Kind_Srl_Operator
- | Iir_Kind_Sra_Operator
- | Iir_Kind_Rol_Operator
- | Iir_Kind_Ror_Operator
- | Iir_Kind_Addition_Operator
- | Iir_Kind_Substraction_Operator
- | Iir_Kind_Concatenation_Operator
- | Iir_Kind_Multiplication_Operator
- | Iir_Kind_Division_Operator
- | Iir_Kind_Modulus_Operator
- | Iir_Kind_Remainder_Operator
- | Iir_Kind_Exponentiation_Operator
- | Iir_Kind_Function_Call =>
- null;
- when others =>
- Failed ("Implementation", Target);
- end case;
- end Check_Kind_For_Implementation;
-
function Get_Implementation (Target : Iir) return Iir is
begin
- Check_Kind_For_Implementation (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Implementation (Get_Kind (Target)));
return Get_Field3 (Target);
end Get_Implementation;
procedure Set_Implementation (Target : Iir; Decl : Iir) is
begin
- Check_Kind_For_Implementation (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Implementation (Get_Kind (Target)));
Set_Field3 (Target, Decl);
end Set_Implementation;
- procedure Check_Kind_For_Parameter_Association_Chain (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Procedure_Call
- | Iir_Kind_Function_Call =>
- null;
- when others =>
- Failed ("Parameter_Association_Chain", Target);
- end case;
- end Check_Kind_For_Parameter_Association_Chain;
-
function Get_Parameter_Association_Chain (Target : Iir) return Iir is
begin
- Check_Kind_For_Parameter_Association_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Parameter_Association_Chain (Get_Kind (Target)));
return Get_Field2 (Target);
end Get_Parameter_Association_Chain;
procedure Set_Parameter_Association_Chain (Target : Iir; Chain : Iir) is
begin
- Check_Kind_For_Parameter_Association_Chain (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Parameter_Association_Chain (Get_Kind (Target)));
Set_Field2 (Target, Chain);
end Set_Parameter_Association_Chain;
- procedure Check_Kind_For_Method_Object (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Procedure_Call
- | Iir_Kind_Function_Call =>
- null;
- when others =>
- Failed ("Method_Object", Target);
- end case;
- end Check_Kind_For_Method_Object;
-
function Get_Method_Object (Target : Iir) return Iir is
begin
- Check_Kind_For_Method_Object (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Method_Object (Get_Kind (Target)));
return Get_Field4 (Target);
end Get_Method_Object;
procedure Set_Method_Object (Target : Iir; Object : Iir) is
begin
- Check_Kind_For_Method_Object (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Method_Object (Get_Kind (Target)));
Set_Field4 (Target, Object);
end Set_Method_Object;
- procedure Check_Kind_For_Subtype_Type_Mark (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Array_Subtype_Definition
- | Iir_Kind_Record_Subtype_Definition
- | Iir_Kind_Access_Subtype_Definition
- | Iir_Kind_Physical_Subtype_Definition
- | Iir_Kind_Floating_Subtype_Definition
- | Iir_Kind_Integer_Subtype_Definition
- | Iir_Kind_Enumeration_Subtype_Definition
- | Iir_Kind_Subtype_Definition =>
- null;
- when others =>
- Failed ("Subtype_Type_Mark", Target);
- end case;
- end Check_Kind_For_Subtype_Type_Mark;
-
function Get_Subtype_Type_Mark (Target : Iir) return Iir is
begin
- Check_Kind_For_Subtype_Type_Mark (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Subtype_Type_Mark (Get_Kind (Target)));
return Get_Field2 (Target);
end Get_Subtype_Type_Mark;
procedure Set_Subtype_Type_Mark (Target : Iir; Mark : Iir) is
begin
- Check_Kind_For_Subtype_Type_Mark (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Subtype_Type_Mark (Get_Kind (Target)));
Set_Field2 (Target, Mark);
end Set_Subtype_Type_Mark;
- procedure Check_Kind_For_Type_Conversion_Subtype (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Type_Conversion =>
- null;
- when others =>
- Failed ("Type_Conversion_Subtype", Target);
- end case;
- end Check_Kind_For_Type_Conversion_Subtype;
-
function Get_Type_Conversion_Subtype (Target : Iir) return Iir is
begin
- Check_Kind_For_Type_Conversion_Subtype (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Type_Conversion_Subtype (Get_Kind (Target)));
return Get_Field3 (Target);
end Get_Type_Conversion_Subtype;
procedure Set_Type_Conversion_Subtype (Target : Iir; Atype : Iir) is
begin
- Check_Kind_For_Type_Conversion_Subtype (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Type_Conversion_Subtype (Get_Kind (Target)));
Set_Field3 (Target, Atype);
end Set_Type_Conversion_Subtype;
- procedure Check_Kind_For_Type_Mark (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Disconnection_Specification
- | Iir_Kind_Attribute_Declaration
- | Iir_Kind_Qualified_Expression
- | Iir_Kind_Type_Conversion =>
- null;
- when others =>
- Failed ("Type_Mark", Target);
- end case;
- end Check_Kind_For_Type_Mark;
-
function Get_Type_Mark (Target : Iir) return Iir is
begin
- Check_Kind_For_Type_Mark (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Type_Mark (Get_Kind (Target)));
return Get_Field4 (Target);
end Get_Type_Mark;
procedure Set_Type_Mark (Target : Iir; Mark : Iir) is
begin
- Check_Kind_For_Type_Mark (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Type_Mark (Get_Kind (Target)));
Set_Field4 (Target, Mark);
end Set_Type_Mark;
- procedure Check_Kind_For_File_Type_Mark (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_File_Type_Definition =>
- null;
- when others =>
- Failed ("File_Type_Mark", Target);
- end case;
- end Check_Kind_For_File_Type_Mark;
-
function Get_File_Type_Mark (Target : Iir) return Iir is
begin
- Check_Kind_For_File_Type_Mark (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_File_Type_Mark (Get_Kind (Target)));
return Get_Field2 (Target);
end Get_File_Type_Mark;
procedure Set_File_Type_Mark (Target : Iir; Mark : Iir) is
begin
- Check_Kind_For_File_Type_Mark (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_File_Type_Mark (Get_Kind (Target)));
Set_Field2 (Target, Mark);
end Set_File_Type_Mark;
- procedure Check_Kind_For_Return_Type_Mark (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Signature
- | Iir_Kind_Function_Declaration
- | Iir_Kind_Procedure_Declaration =>
- null;
- when others =>
- Failed ("Return_Type_Mark", Target);
- end case;
- end Check_Kind_For_Return_Type_Mark;
-
function Get_Return_Type_Mark (Target : Iir) return Iir is
begin
- Check_Kind_For_Return_Type_Mark (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Return_Type_Mark (Get_Kind (Target)));
return Get_Field8 (Target);
end Get_Return_Type_Mark;
procedure Set_Return_Type_Mark (Target : Iir; Mark : Iir) is
begin
- Check_Kind_For_Return_Type_Mark (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Return_Type_Mark (Get_Kind (Target)));
Set_Field8 (Target, Mark);
end Set_Return_Type_Mark;
- procedure Check_Kind_For_Lexical_Layout (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Constant_Interface_Declaration
- | Iir_Kind_Variable_Interface_Declaration
- | Iir_Kind_Signal_Interface_Declaration
- | Iir_Kind_File_Interface_Declaration =>
- null;
- when others =>
- Failed ("Lexical_Layout", Target);
- end case;
- end Check_Kind_For_Lexical_Layout;
-
function Get_Lexical_Layout (Decl : Iir) return Iir_Lexical_Layout_Type is
begin
- Check_Kind_For_Lexical_Layout (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Lexical_Layout (Get_Kind (Decl)));
return Iir_Lexical_Layout_Type'Val (Get_Odigit2 (Decl));
end Get_Lexical_Layout;
procedure Set_Lexical_Layout (Decl : Iir; Lay : Iir_Lexical_Layout_Type) is
begin
- Check_Kind_For_Lexical_Layout (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Lexical_Layout (Get_Kind (Decl)));
Set_Odigit2 (Decl, Iir_Lexical_Layout_Type'Pos (Lay));
end Set_Lexical_Layout;
- procedure Check_Kind_For_Incomplete_Type_List (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Incomplete_Type_Definition =>
- null;
- when others =>
- Failed ("Incomplete_Type_List", Target);
- end case;
- end Check_Kind_For_Incomplete_Type_List;
-
function Get_Incomplete_Type_List (Target : Iir) return Iir_List is
begin
- Check_Kind_For_Incomplete_Type_List (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Incomplete_Type_List (Get_Kind (Target)));
return Iir_To_Iir_List (Get_Field2 (Target));
end Get_Incomplete_Type_List;
procedure Set_Incomplete_Type_List (Target : Iir; List : Iir_List) is
begin
- Check_Kind_For_Incomplete_Type_List (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Incomplete_Type_List (Get_Kind (Target)));
Set_Field2 (Target, Iir_List_To_Iir (List));
end Set_Incomplete_Type_List;
- procedure Check_Kind_For_Has_Disconnect_Flag (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Signal_Declaration
- | Iir_Kind_Signal_Interface_Declaration =>
- null;
- when others =>
- Failed ("Has_Disconnect_Flag", Target);
- end case;
- end Check_Kind_For_Has_Disconnect_Flag;
-
function Get_Has_Disconnect_Flag (Target : Iir) return Boolean is
begin
- Check_Kind_For_Has_Disconnect_Flag (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Has_Disconnect_Flag (Get_Kind (Target)));
return Get_Flag1 (Target);
end Get_Has_Disconnect_Flag;
procedure Set_Has_Disconnect_Flag (Target : Iir; Val : Boolean) is
begin
- Check_Kind_For_Has_Disconnect_Flag (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Has_Disconnect_Flag (Get_Kind (Target)));
Set_Flag1 (Target, Val);
end Set_Has_Disconnect_Flag;
- procedure Check_Kind_For_Has_Active_Flag (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Guard_Signal_Declaration
- | Iir_Kind_Signal_Declaration
- | Iir_Kind_Signal_Interface_Declaration
- | Iir_Kind_Delayed_Attribute
- | Iir_Kind_Stable_Attribute
- | Iir_Kind_Quiet_Attribute
- | Iir_Kind_Transaction_Attribute =>
- null;
- when others =>
- Failed ("Has_Active_Flag", Target);
- end case;
- end Check_Kind_For_Has_Active_Flag;
-
function Get_Has_Active_Flag (Target : Iir) return Boolean is
begin
- Check_Kind_For_Has_Active_Flag (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Has_Active_Flag (Get_Kind (Target)));
return Get_Flag2 (Target);
end Get_Has_Active_Flag;
procedure Set_Has_Active_Flag (Target : Iir; Val : Boolean) is
begin
- Check_Kind_For_Has_Active_Flag (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Has_Active_Flag (Get_Kind (Target)));
Set_Flag2 (Target, Val);
end Set_Has_Active_Flag;
- procedure Check_Kind_For_Is_Within_Flag (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Entity_Declaration
- | Iir_Kind_Architecture_Body
- | Iir_Kind_Enumeration_Literal
- | Iir_Kind_Function_Declaration
- | Iir_Kind_Implicit_Function_Declaration
- | Iir_Kind_Implicit_Procedure_Declaration
- | Iir_Kind_Procedure_Declaration
- | Iir_Kind_Sensitized_Process_Statement
- | Iir_Kind_Process_Statement
- | Iir_Kind_Block_Statement
- | Iir_Kind_For_Loop_Statement =>
- null;
- when others =>
- Failed ("Is_Within_Flag", Target);
- end case;
- end Check_Kind_For_Is_Within_Flag;
-
function Get_Is_Within_Flag (Target : Iir) return Boolean is
begin
- Check_Kind_For_Is_Within_Flag (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Is_Within_Flag (Get_Kind (Target)));
return Get_Flag5 (Target);
end Get_Is_Within_Flag;
procedure Set_Is_Within_Flag (Target : Iir; Val : Boolean) is
begin
- Check_Kind_For_Is_Within_Flag (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Is_Within_Flag (Get_Kind (Target)));
Set_Flag5 (Target, Val);
end Set_Is_Within_Flag;
- procedure Check_Kind_For_Type_Marks_List (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Signature =>
- null;
- when others =>
- Failed ("Type_Marks_List", Target);
- end case;
- end Check_Kind_For_Type_Marks_List;
-
function Get_Type_Marks_List (Target : Iir) return Iir_List is
begin
- Check_Kind_For_Type_Marks_List (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Type_Marks_List (Get_Kind (Target)));
return Iir_To_Iir_List (Get_Field2 (Target));
end Get_Type_Marks_List;
procedure Set_Type_Marks_List (Target : Iir; List : Iir_List) is
begin
- Check_Kind_For_Type_Marks_List (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Type_Marks_List (Get_Kind (Target)));
Set_Field2 (Target, Iir_List_To_Iir (List));
end Set_Type_Marks_List;
- procedure Check_Kind_For_Implicit_Alias_Flag (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Non_Object_Alias_Declaration =>
- null;
- when others =>
- Failed ("Implicit_Alias_Flag", Target);
- end case;
- end Check_Kind_For_Implicit_Alias_Flag;
-
function Get_Implicit_Alias_Flag (Decl : Iir) return Boolean is
begin
- Check_Kind_For_Implicit_Alias_Flag (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Implicit_Alias_Flag (Get_Kind (Decl)));
return Get_Flag1 (Decl);
end Get_Implicit_Alias_Flag;
procedure Set_Implicit_Alias_Flag (Decl : Iir; Flag : Boolean) is
begin
- Check_Kind_For_Implicit_Alias_Flag (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Implicit_Alias_Flag (Get_Kind (Decl)));
Set_Flag1 (Decl, Flag);
end Set_Implicit_Alias_Flag;
- procedure Check_Kind_For_Alias_Signature (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Non_Object_Alias_Declaration =>
- null;
- when others =>
- Failed ("Alias_Signature", Target);
- end case;
- end Check_Kind_For_Alias_Signature;
-
function Get_Alias_Signature (Alias : Iir) return Iir is
begin
- Check_Kind_For_Alias_Signature (Alias);
+ pragma Assert (Alias /= Null_Iir);
+ pragma Assert (Has_Alias_Signature (Get_Kind (Alias)));
return Get_Field5 (Alias);
end Get_Alias_Signature;
procedure Set_Alias_Signature (Alias : Iir; Signature : Iir) is
begin
- Check_Kind_For_Alias_Signature (Alias);
+ pragma Assert (Alias /= Null_Iir);
+ pragma Assert (Has_Alias_Signature (Get_Kind (Alias)));
Set_Field5 (Alias, Signature);
end Set_Alias_Signature;
- procedure Check_Kind_For_Attribute_Signature (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Attribute_Name =>
- null;
- when others =>
- Failed ("Attribute_Signature", Target);
- end case;
- end Check_Kind_For_Attribute_Signature;
-
function Get_Attribute_Signature (Attr : Iir) return Iir is
begin
- Check_Kind_For_Attribute_Signature (Attr);
+ pragma Assert (Attr /= Null_Iir);
+ pragma Assert (Has_Attribute_Signature (Get_Kind (Attr)));
return Get_Field2 (Attr);
end Get_Attribute_Signature;
procedure Set_Attribute_Signature (Attr : Iir; Signature : Iir) is
begin
- Check_Kind_For_Attribute_Signature (Attr);
+ pragma Assert (Attr /= Null_Iir);
+ pragma Assert (Has_Attribute_Signature (Get_Kind (Attr)));
Set_Field2 (Attr, Signature);
end Set_Attribute_Signature;
- procedure Check_Kind_For_Overload_List (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Overload_List =>
- null;
- when others =>
- Failed ("Overload_List", Target);
- end case;
- end Check_Kind_For_Overload_List;
-
function Get_Overload_List (Target : Iir) return Iir_List is
begin
- Check_Kind_For_Overload_List (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Overload_List (Get_Kind (Target)));
return Iir_To_Iir_List (Get_Field1 (Target));
end Get_Overload_List;
procedure Set_Overload_List (Target : Iir; List : Iir_List) is
begin
- Check_Kind_For_Overload_List (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Overload_List (Get_Kind (Target)));
Set_Field1 (Target, Iir_List_To_Iir (List));
end Set_Overload_List;
- procedure Check_Kind_For_Simple_Name_Identifier (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Simple_Name_Attribute =>
- null;
- when others =>
- Failed ("Simple_Name_Identifier", Target);
- end case;
- end Check_Kind_For_Simple_Name_Identifier;
-
function Get_Simple_Name_Identifier (Target : Iir) return Name_Id is
begin
- Check_Kind_For_Simple_Name_Identifier (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Simple_Name_Identifier (Get_Kind (Target)));
return Iir_To_Name_Id (Get_Field3 (Target));
end Get_Simple_Name_Identifier;
procedure Set_Simple_Name_Identifier (Target : Iir; Ident : Name_Id) is
begin
- Check_Kind_For_Simple_Name_Identifier (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Simple_Name_Identifier (Get_Kind (Target)));
Set_Field3 (Target, Name_Id_To_Iir (Ident));
end Set_Simple_Name_Identifier;
- procedure Check_Kind_For_Simple_Name_Subtype (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Simple_Name_Attribute =>
- null;
- when others =>
- Failed ("Simple_Name_Subtype", Target);
- end case;
- end Check_Kind_For_Simple_Name_Subtype;
-
function Get_Simple_Name_Subtype (Target : Iir) return Iir is
begin
- Check_Kind_For_Simple_Name_Subtype (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Simple_Name_Subtype (Get_Kind (Target)));
return Get_Field4 (Target);
end Get_Simple_Name_Subtype;
procedure Set_Simple_Name_Subtype (Target : Iir; Atype : Iir) is
begin
- Check_Kind_For_Simple_Name_Subtype (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Simple_Name_Subtype (Get_Kind (Target)));
Set_Field4 (Target, Atype);
end Set_Simple_Name_Subtype;
- procedure Check_Kind_For_Protected_Type_Body (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Protected_Type_Declaration =>
- null;
- when others =>
- Failed ("Protected_Type_Body", Target);
- end case;
- end Check_Kind_For_Protected_Type_Body;
-
function Get_Protected_Type_Body (Target : Iir) return Iir is
begin
- Check_Kind_For_Protected_Type_Body (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Protected_Type_Body (Get_Kind (Target)));
return Get_Field2 (Target);
end Get_Protected_Type_Body;
procedure Set_Protected_Type_Body (Target : Iir; Bod : Iir) is
begin
- Check_Kind_For_Protected_Type_Body (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Protected_Type_Body (Get_Kind (Target)));
Set_Field2 (Target, Bod);
end Set_Protected_Type_Body;
- procedure Check_Kind_For_Protected_Type_Declaration (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Protected_Type_Body =>
- null;
- when others =>
- Failed ("Protected_Type_Declaration", Target);
- end case;
- end Check_Kind_For_Protected_Type_Declaration;
-
function Get_Protected_Type_Declaration (Target : Iir) return Iir is
begin
- Check_Kind_For_Protected_Type_Declaration (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Protected_Type_Declaration (Get_Kind (Target)));
return Get_Field4 (Target);
end Get_Protected_Type_Declaration;
procedure Set_Protected_Type_Declaration (Target : Iir; Decl : Iir) is
begin
- Check_Kind_For_Protected_Type_Declaration (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_Protected_Type_Declaration (Get_Kind (Target)));
Set_Field4 (Target, Decl);
end Set_Protected_Type_Declaration;
- procedure Check_Kind_For_End_Location (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Design_Unit =>
- null;
- when others =>
- Failed ("End_Location", Target);
- end case;
- end Check_Kind_For_End_Location;
-
function Get_End_Location (Target : Iir) return Location_Type is
begin
- Check_Kind_For_End_Location (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_End_Location (Get_Kind (Target)));
return Iir_To_Location_Type (Get_Field6 (Target));
end Get_End_Location;
procedure Set_End_Location (Target : Iir; Loc : Location_Type) is
begin
- Check_Kind_For_End_Location (Target);
+ pragma Assert (Target /= Null_Iir);
+ pragma Assert (Has_End_Location (Get_Kind (Target)));
Set_Field6 (Target, Location_Type_To_Iir (Loc));
end Set_End_Location;
- procedure Check_Kind_For_String_Id (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_String_Literal
- | Iir_Kind_Bit_String_Literal =>
- null;
- when others =>
- Failed ("String_Id", Target);
- end case;
- end Check_Kind_For_String_Id;
-
function Get_String_Id (Lit : Iir) return String_Id is
begin
- Check_Kind_For_String_Id (Lit);
+ pragma Assert (Lit /= Null_Iir);
+ pragma Assert (Has_String_Id (Get_Kind (Lit)));
return Iir_To_String_Id (Get_Field3 (Lit));
end Get_String_Id;
procedure Set_String_Id (Lit : Iir; Id : String_Id) is
begin
- Check_Kind_For_String_Id (Lit);
+ pragma Assert (Lit /= Null_Iir);
+ pragma Assert (Has_String_Id (Get_Kind (Lit)));
Set_Field3 (Lit, String_Id_To_Iir (Id));
end Set_String_Id;
- procedure Check_Kind_For_String_Length (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_String_Literal
- | Iir_Kind_Bit_String_Literal =>
- null;
- when others =>
- Failed ("String_Length", Target);
- end case;
- end Check_Kind_For_String_Length;
-
function Get_String_Length (Lit : Iir) return Int32 is
begin
- Check_Kind_For_String_Length (Lit);
+ pragma Assert (Lit /= Null_Iir);
+ pragma Assert (Has_String_Length (Get_Kind (Lit)));
return Iir_To_Int32 (Get_Field4 (Lit));
end Get_String_Length;
procedure Set_String_Length (Lit : Iir; Len : Int32) is
begin
- Check_Kind_For_String_Length (Lit);
+ pragma Assert (Lit /= Null_Iir);
+ pragma Assert (Has_String_Length (Get_Kind (Lit)));
Set_Field4 (Lit, Int32_To_Iir (Len));
end Set_String_Length;
- procedure Check_Kind_For_Use_Flag (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Type_Declaration
- | Iir_Kind_Subtype_Declaration
- | Iir_Kind_Nature_Declaration
- | Iir_Kind_Subnature_Declaration
- | Iir_Kind_Component_Declaration
- | Iir_Kind_Attribute_Declaration
- | Iir_Kind_Group_Template_Declaration
- | Iir_Kind_Group_Declaration
- | Iir_Kind_Non_Object_Alias_Declaration
- | Iir_Kind_Psl_Declaration
- | Iir_Kind_Terminal_Declaration
- | Iir_Kind_Free_Quantity_Declaration
- | Iir_Kind_Across_Quantity_Declaration
- | Iir_Kind_Through_Quantity_Declaration
- | Iir_Kind_Function_Declaration
- | Iir_Kind_Implicit_Function_Declaration
- | Iir_Kind_Implicit_Procedure_Declaration
- | Iir_Kind_Procedure_Declaration
- | Iir_Kind_Object_Alias_Declaration
- | Iir_Kind_File_Declaration
- | Iir_Kind_Guard_Signal_Declaration
- | Iir_Kind_Signal_Declaration
- | Iir_Kind_Variable_Declaration
- | Iir_Kind_Constant_Declaration
- | Iir_Kind_Iterator_Declaration
- | Iir_Kind_Constant_Interface_Declaration
- | Iir_Kind_Variable_Interface_Declaration
- | Iir_Kind_Signal_Interface_Declaration
- | Iir_Kind_File_Interface_Declaration =>
- null;
- when others =>
- Failed ("Use_Flag", Target);
- end case;
- end Check_Kind_For_Use_Flag;
-
function Get_Use_Flag (Decl : Iir) return Boolean is
begin
- Check_Kind_For_Use_Flag (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Use_Flag (Get_Kind (Decl)));
return Get_Flag6 (Decl);
end Get_Use_Flag;
procedure Set_Use_Flag (Decl : Iir; Val : Boolean) is
begin
- Check_Kind_For_Use_Flag (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Use_Flag (Get_Kind (Decl)));
Set_Flag6 (Decl, Val);
end Set_Use_Flag;
- procedure Check_Kind_For_End_Has_Reserved_Id (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Protected_Type_Declaration
- | Iir_Kind_Record_Type_Definition
- | Iir_Kind_Physical_Type_Definition
- | Iir_Kind_Protected_Type_Body
- | Iir_Kind_Package_Declaration
- | Iir_Kind_Package_Instantiation_Declaration
- | Iir_Kind_Package_Body
- | Iir_Kind_Configuration_Declaration
- | Iir_Kind_Entity_Declaration
- | Iir_Kind_Architecture_Body
- | Iir_Kind_Component_Declaration
- | Iir_Kind_Function_Body
- | Iir_Kind_Procedure_Body
- | Iir_Kind_Sensitized_Process_Statement
- | Iir_Kind_Process_Statement
- | Iir_Kind_Block_Statement
- | Iir_Kind_Generate_Statement =>
- null;
- when others =>
- Failed ("End_Has_Reserved_Id", Target);
- end case;
- end Check_Kind_For_End_Has_Reserved_Id;
-
function Get_End_Has_Reserved_Id (Decl : Iir) return Boolean is
begin
- Check_Kind_For_End_Has_Reserved_Id (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_End_Has_Reserved_Id (Get_Kind (Decl)));
return Get_Flag8 (Decl);
end Get_End_Has_Reserved_Id;
procedure Set_End_Has_Reserved_Id (Decl : Iir; Flag : Boolean) is
begin
- Check_Kind_For_End_Has_Reserved_Id (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_End_Has_Reserved_Id (Get_Kind (Decl)));
Set_Flag8 (Decl, Flag);
end Set_End_Has_Reserved_Id;
- procedure Check_Kind_For_End_Has_Identifier (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Protected_Type_Declaration
- | Iir_Kind_Record_Type_Definition
- | Iir_Kind_Physical_Type_Definition
- | Iir_Kind_Protected_Type_Body
- | Iir_Kind_Package_Declaration
- | Iir_Kind_Package_Instantiation_Declaration
- | Iir_Kind_Package_Body
- | Iir_Kind_Configuration_Declaration
- | Iir_Kind_Entity_Declaration
- | Iir_Kind_Architecture_Body
- | Iir_Kind_Component_Declaration
- | Iir_Kind_Function_Body
- | Iir_Kind_Procedure_Body
- | Iir_Kind_Sensitized_Process_Statement
- | Iir_Kind_Process_Statement
- | Iir_Kind_Block_Statement
- | Iir_Kind_Generate_Statement
- | Iir_Kind_For_Loop_Statement
- | Iir_Kind_While_Loop_Statement
- | Iir_Kind_Case_Statement
- | Iir_Kind_If_Statement
- | Iir_Kind_Elsif =>
- null;
- when others =>
- Failed ("End_Has_Identifier", Target);
- end case;
- end Check_Kind_For_End_Has_Identifier;
-
function Get_End_Has_Identifier (Decl : Iir) return Boolean is
begin
- Check_Kind_For_End_Has_Identifier (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_End_Has_Identifier (Get_Kind (Decl)));
return Get_Flag9 (Decl);
end Get_End_Has_Identifier;
procedure Set_End_Has_Identifier (Decl : Iir; Flag : Boolean) is
begin
- Check_Kind_For_End_Has_Identifier (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_End_Has_Identifier (Get_Kind (Decl)));
Set_Flag9 (Decl, Flag);
end Set_End_Has_Identifier;
- procedure Check_Kind_For_End_Has_Postponed (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Sensitized_Process_Statement
- | Iir_Kind_Process_Statement =>
- null;
- when others =>
- Failed ("End_Has_Postponed", Target);
- end case;
- end Check_Kind_For_End_Has_Postponed;
-
function Get_End_Has_Postponed (Decl : Iir) return Boolean is
begin
- Check_Kind_For_End_Has_Postponed (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_End_Has_Postponed (Get_Kind (Decl)));
return Get_Flag10 (Decl);
end Get_End_Has_Postponed;
procedure Set_End_Has_Postponed (Decl : Iir; Flag : Boolean) is
begin
- Check_Kind_For_End_Has_Postponed (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_End_Has_Postponed (Get_Kind (Decl)));
Set_Flag10 (Decl, Flag);
end Set_End_Has_Postponed;
- procedure Check_Kind_For_Has_Begin (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Entity_Declaration
- | Iir_Kind_Generate_Statement =>
- null;
- when others =>
- Failed ("Has_Begin", Target);
- end case;
- end Check_Kind_For_Has_Begin;
-
function Get_Has_Begin (Decl : Iir) return Boolean is
begin
- Check_Kind_For_Has_Begin (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Has_Begin (Get_Kind (Decl)));
return Get_Flag10 (Decl);
end Get_Has_Begin;
procedure Set_Has_Begin (Decl : Iir; Flag : Boolean) is
begin
- Check_Kind_For_Has_Begin (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Has_Begin (Get_Kind (Decl)));
Set_Flag10 (Decl, Flag);
end Set_Has_Begin;
- procedure Check_Kind_For_Has_Is (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Component_Declaration
- | Iir_Kind_Sensitized_Process_Statement
- | Iir_Kind_Process_Statement =>
- null;
- when others =>
- Failed ("Has_Is", Target);
- end case;
- end Check_Kind_For_Has_Is;
-
function Get_Has_Is (Decl : Iir) return Boolean is
begin
- Check_Kind_For_Has_Is (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Has_Is (Get_Kind (Decl)));
return Get_Flag7 (Decl);
end Get_Has_Is;
procedure Set_Has_Is (Decl : Iir; Flag : Boolean) is
begin
- Check_Kind_For_Has_Is (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Has_Is (Get_Kind (Decl)));
Set_Flag7 (Decl, Flag);
end Set_Has_Is;
- procedure Check_Kind_For_Has_Pure (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Function_Declaration =>
- null;
- when others =>
- Failed ("Has_Pure", Target);
- end case;
- end Check_Kind_For_Has_Pure;
-
function Get_Has_Pure (Decl : Iir) return Boolean is
begin
- Check_Kind_For_Has_Pure (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Has_Pure (Get_Kind (Decl)));
return Get_Flag8 (Decl);
end Get_Has_Pure;
procedure Set_Has_Pure (Decl : Iir; Flag : Boolean) is
begin
- Check_Kind_For_Has_Pure (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Has_Pure (Get_Kind (Decl)));
Set_Flag8 (Decl, Flag);
end Set_Has_Pure;
- procedure Check_Kind_For_Has_Body (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Function_Declaration
- | Iir_Kind_Procedure_Declaration =>
- null;
- when others =>
- Failed ("Has_Body", Target);
- end case;
- end Check_Kind_For_Has_Body;
-
function Get_Has_Body (Decl : Iir) return Boolean is
begin
- Check_Kind_For_Has_Body (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Has_Body (Get_Kind (Decl)));
return Get_Flag9 (Decl);
end Get_Has_Body;
procedure Set_Has_Body (Decl : Iir; Flag : Boolean) is
begin
- Check_Kind_For_Has_Body (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Has_Body (Get_Kind (Decl)));
Set_Flag9 (Decl, Flag);
end Set_Has_Body;
- procedure Check_Kind_For_Has_Identifier_List (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Library_Clause
- | Iir_Kind_Element_Declaration
- | Iir_Kind_File_Declaration
- | Iir_Kind_Signal_Declaration
- | Iir_Kind_Variable_Declaration
- | Iir_Kind_Constant_Declaration
- | Iir_Kind_Iterator_Declaration =>
- null;
- when others =>
- Failed ("Has_Identifier_List", Target);
- end case;
- end Check_Kind_For_Has_Identifier_List;
-
function Get_Has_Identifier_List (Decl : Iir) return Boolean is
begin
- Check_Kind_For_Has_Identifier_List (Decl);
- return Get_Flag7 (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Has_Identifier_List (Get_Kind (Decl)));
+ return Get_Flag3 (Decl);
end Get_Has_Identifier_List;
procedure Set_Has_Identifier_List (Decl : Iir; Flag : Boolean) is
begin
- Check_Kind_For_Has_Identifier_List (Decl);
- Set_Flag7 (Decl, Flag);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Has_Identifier_List (Get_Kind (Decl)));
+ Set_Flag3 (Decl, Flag);
end Set_Has_Identifier_List;
- procedure Check_Kind_For_Has_Mode (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_File_Declaration =>
- null;
- when others =>
- Failed ("Has_Mode", Target);
- end case;
- end Check_Kind_For_Has_Mode;
-
function Get_Has_Mode (Decl : Iir) return Boolean is
begin
- Check_Kind_For_Has_Mode (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Has_Mode (Get_Kind (Decl)));
return Get_Flag8 (Decl);
end Get_Has_Mode;
procedure Set_Has_Mode (Decl : Iir; Flag : Boolean) is
begin
- Check_Kind_For_Has_Mode (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Has_Mode (Get_Kind (Decl)));
Set_Flag8 (Decl, Flag);
end Set_Has_Mode;
- procedure Check_Kind_For_Psl_Property (Target : Iir) is
+ function Get_Is_Ref (N : Iir) return Boolean is
begin
- case Get_Kind (Target) is
- when Iir_Kind_Psl_Assert_Statement
- | Iir_Kind_Psl_Cover_Statement =>
- null;
- when others =>
- Failed ("Psl_Property", Target);
- end case;
- end Check_Kind_For_Psl_Property;
+ pragma Assert (N /= Null_Iir);
+ pragma Assert (Has_Is_Ref (Get_Kind (N)));
+ return Get_Flag7 (N);
+ end Get_Is_Ref;
+
+ procedure Set_Is_Ref (N : Iir; Ref : Boolean) is
+ begin
+ pragma Assert (N /= Null_Iir);
+ pragma Assert (Has_Is_Ref (Get_Kind (N)));
+ Set_Flag7 (N, Ref);
+ end Set_Is_Ref;
function Get_Psl_Property (Decl : Iir) return PSL_Node is
begin
- Check_Kind_For_Psl_Property (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Psl_Property (Get_Kind (Decl)));
return Iir_To_PSL_Node (Get_Field1 (Decl));
end Get_Psl_Property;
procedure Set_Psl_Property (Decl : Iir; Prop : PSL_Node) is
begin
- Check_Kind_For_Psl_Property (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Psl_Property (Get_Kind (Decl)));
Set_Field1 (Decl, PSL_Node_To_Iir (Prop));
end Set_Psl_Property;
- procedure Check_Kind_For_Psl_Declaration (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Psl_Declaration =>
- null;
- when others =>
- Failed ("Psl_Declaration", Target);
- end case;
- end Check_Kind_For_Psl_Declaration;
-
function Get_Psl_Declaration (Decl : Iir) return PSL_Node is
begin
- Check_Kind_For_Psl_Declaration (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Psl_Declaration (Get_Kind (Decl)));
return Iir_To_PSL_Node (Get_Field1 (Decl));
end Get_Psl_Declaration;
procedure Set_Psl_Declaration (Decl : Iir; Prop : PSL_Node) is
begin
- Check_Kind_For_Psl_Declaration (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Psl_Declaration (Get_Kind (Decl)));
Set_Field1 (Decl, PSL_Node_To_Iir (Prop));
end Set_Psl_Declaration;
- procedure Check_Kind_For_Psl_Expression (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Psl_Expression =>
- null;
- when others =>
- Failed ("Psl_Expression", Target);
- end case;
- end Check_Kind_For_Psl_Expression;
-
function Get_Psl_Expression (Decl : Iir) return PSL_Node is
begin
- Check_Kind_For_Psl_Expression (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Psl_Expression (Get_Kind (Decl)));
return Iir_To_PSL_Node (Get_Field3 (Decl));
end Get_Psl_Expression;
procedure Set_Psl_Expression (Decl : Iir; Prop : PSL_Node) is
begin
- Check_Kind_For_Psl_Expression (Decl);
+ pragma Assert (Decl /= Null_Iir);
+ pragma Assert (Has_Psl_Expression (Get_Kind (Decl)));
Set_Field3 (Decl, PSL_Node_To_Iir (Prop));
end Set_Psl_Expression;
- procedure Check_Kind_For_Psl_Boolean (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Psl_Default_Clock =>
- null;
- when others =>
- Failed ("Psl_Boolean", Target);
- end case;
- end Check_Kind_For_Psl_Boolean;
-
function Get_Psl_Boolean (N : Iir) return PSL_Node is
begin
- Check_Kind_For_Psl_Boolean (N);
+ pragma Assert (N /= Null_Iir);
+ pragma Assert (Has_Psl_Boolean (Get_Kind (N)));
return Iir_To_PSL_Node (Get_Field1 (N));
end Get_Psl_Boolean;
procedure Set_Psl_Boolean (N : Iir; Bool : PSL_Node) is
begin
- Check_Kind_For_Psl_Boolean (N);
+ pragma Assert (N /= Null_Iir);
+ pragma Assert (Has_Psl_Boolean (Get_Kind (N)));
Set_Field1 (N, PSL_Node_To_Iir (Bool));
end Set_Psl_Boolean;
- procedure Check_Kind_For_PSL_Clock (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Psl_Declaration
- | Iir_Kind_Psl_Assert_Statement
- | Iir_Kind_Psl_Cover_Statement =>
- null;
- when others =>
- Failed ("PSL_Clock", Target);
- end case;
- end Check_Kind_For_PSL_Clock;
-
function Get_PSL_Clock (N : Iir) return PSL_Node is
begin
- Check_Kind_For_PSL_Clock (N);
+ pragma Assert (N /= Null_Iir);
+ pragma Assert (Has_PSL_Clock (Get_Kind (N)));
return Iir_To_PSL_Node (Get_Field7 (N));
end Get_PSL_Clock;
procedure Set_PSL_Clock (N : Iir; Clock : PSL_Node) is
begin
- Check_Kind_For_PSL_Clock (N);
+ pragma Assert (N /= Null_Iir);
+ pragma Assert (Has_PSL_Clock (Get_Kind (N)));
Set_Field7 (N, PSL_Node_To_Iir (Clock));
end Set_PSL_Clock;
- procedure Check_Kind_For_PSL_NFA (Target : Iir) is
- begin
- case Get_Kind (Target) is
- when Iir_Kind_Psl_Declaration
- | Iir_Kind_Psl_Assert_Statement
- | Iir_Kind_Psl_Cover_Statement =>
- null;
- when others =>
- Failed ("PSL_NFA", Target);
- end case;
- end Check_Kind_For_PSL_NFA;
-
function Get_PSL_NFA (N : Iir) return PSL_NFA is
begin
- Check_Kind_For_PSL_NFA (N);
+ pragma Assert (N /= Null_Iir);
+ pragma Assert (Has_PSL_NFA (Get_Kind (N)));
return Iir_To_PSL_NFA (Get_Field8 (N));
end Get_PSL_NFA;
procedure Set_PSL_NFA (N : Iir; Fa : PSL_NFA) is
begin
- Check_Kind_For_PSL_NFA (N);
+ pragma Assert (N /= Null_Iir);
+ pragma Assert (Has_PSL_NFA (Get_Kind (N)));
Set_Field8 (N, PSL_NFA_To_Iir (Fa));
end Set_PSL_NFA;