hexsha
stringlengths
40
40
size
int64
3
1.05M
ext
stringclasses
163 values
lang
stringclasses
53 values
max_stars_repo_path
stringlengths
3
945
max_stars_repo_name
stringlengths
4
112
max_stars_repo_head_hexsha
stringlengths
40
78
max_stars_repo_licenses
sequencelengths
1
10
max_stars_count
float64
1
191k
max_stars_repo_stars_event_min_datetime
stringlengths
24
24
max_stars_repo_stars_event_max_datetime
stringlengths
24
24
max_issues_repo_path
stringlengths
3
945
max_issues_repo_name
stringlengths
4
113
max_issues_repo_head_hexsha
stringlengths
40
78
max_issues_repo_licenses
sequencelengths
1
10
max_issues_count
float64
1
116k
max_issues_repo_issues_event_min_datetime
stringlengths
24
24
max_issues_repo_issues_event_max_datetime
stringlengths
24
24
max_forks_repo_path
stringlengths
3
945
max_forks_repo_name
stringlengths
4
113
max_forks_repo_head_hexsha
stringlengths
40
78
max_forks_repo_licenses
sequencelengths
1
10
max_forks_count
float64
1
105k
max_forks_repo_forks_event_min_datetime
stringlengths
24
24
max_forks_repo_forks_event_max_datetime
stringlengths
24
24
content
stringlengths
3
1.05M
avg_line_length
float64
1
966k
max_line_length
int64
1
977k
alphanum_fraction
float64
0
1
39a0c1d2db2a553e5f628ab844572d8aa23932a6
15,864
adb
Ada
gtk/akt-callbacks.adb
My-Colaborations/ada-keystore
6ab222c2df81f32309c5a7b4f94a475214ef5ce3
[ "Apache-2.0" ]
25
2019-05-07T20:35:50.000Z
2021-11-30T10:35:47.000Z
gtk/akt-callbacks.adb
My-Colaborations/ada-keystore
6ab222c2df81f32309c5a7b4f94a475214ef5ce3
[ "Apache-2.0" ]
12
2019-12-16T23:30:00.000Z
2021-09-26T18:52:41.000Z
gtk/akt-callbacks.adb
My-Colaborations/ada-keystore
6ab222c2df81f32309c5a7b4f94a475214ef5ce3
[ "Apache-2.0" ]
3
2019-12-18T21:30:04.000Z
2021-01-06T08:30:36.000Z
----------------------------------------------------------------------- -- akt-callbacks -- Callbacks for Ada Keystore GTK application -- Copyright (C) 2019, 2020 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Gtk.Main; with Gtk.Widget; with Gtk.GEntry; with Gtk.File_Filter; with Gtk.File_Chooser; with Gtk.File_Chooser_Dialog; with Gtk.Spin_Button; with Gtk.Window; with Util.Log.Loggers; with Keystore; package body AKT.Callbacks is use type Gtk.Spin_Button.Gtk_Spin_Button; use type Gtk.GEntry.Gtk_Entry; use type Gtk.Widget.Gtk_Widget; -- The logger Log : constant Util.Log.Loggers.Logger := Util.Log.Loggers.Create ("AKT.Callbacks"); App : AKT.Windows.Application_Access; function Get_Widget (Object : access Gtkada.Builder.Gtkada_Builder_Record'Class; Name : in String) return Gtk.Widget.Gtk_Widget is (Gtk.Widget.Gtk_Widget (Object.Get_Object (Name))); function Get_Entry (Object : access Gtkada.Builder.Gtkada_Builder_Record'Class; Name : in String) return Gtk.GEntry.Gtk_Entry is (Gtk.GEntry.Gtk_Entry (Object.Get_Object (Name))); function Get_Spin_Button (Object : access Gtkada.Builder.Gtkada_Builder_Record'Class; Name : in String) return Gtk.Spin_Button.Gtk_Spin_Button is (Gtk.Spin_Button.Gtk_Spin_Button (Object.Get_Object (Name))); -- ------------------------------ -- Initialize and register the callbacks. -- ------------------------------ procedure Initialize (Application : in AKT.Windows.Application_Access; Builder : in Gtkada.Builder.Gtkada_Builder) is begin App := Application; -- AKT.Callbacks.Application := Application; Builder.Register_Handler (Handler_Name => "menu-quit", Handler => AKT.Callbacks.On_Menu_Quit'Access); -- Open file from menu and dialog. Builder.Register_Handler (Handler_Name => "menu-open", Handler => AKT.Callbacks.On_Menu_Open'Access); Builder.Register_Handler (Handler_Name => "open-file", Handler => AKT.Callbacks.On_Open_File'Access); Builder.Register_Handler (Handler_Name => "cancel-open-file", Handler => AKT.Callbacks.On_Cancel_Open_File'Access); -- Create file from menu and dialog. Builder.Register_Handler (Handler_Name => "menu-new", Handler => AKT.Callbacks.On_Menu_New'Access); Builder.Register_Handler (Handler_Name => "create-file", Handler => AKT.Callbacks.On_Create_File'Access); Builder.Register_Handler (Handler_Name => "cancel-create-file", Handler => AKT.Callbacks.On_Cancel_Create_File'Access); Builder.Register_Handler (Handler_Name => "window-close", Handler => AKT.Callbacks.On_Close_Window'Access); Builder.Register_Handler (Handler_Name => "about", Handler => AKT.Callbacks.On_Menu_About'Access); Builder.Register_Handler (Handler_Name => "close-about", Handler => AKT.Callbacks.On_Close_About'Access); Builder.Register_Handler (Handler_Name => "close-password", Handler => AKT.Callbacks.On_Close_Password'Access); Builder.Register_Handler (Handler_Name => "tool-edit", Handler => AKT.Callbacks.On_Tool_Edit'Access); Builder.Register_Handler (Handler_Name => "tool-lock", Handler => AKT.Callbacks.On_Tool_Lock'Access); Builder.Register_Handler (Handler_Name => "tool-unlock", Handler => AKT.Callbacks.On_Tool_Unlock'Access); Builder.Register_Handler (Handler_Name => "tool-save", Handler => AKT.Callbacks.On_Tool_Save'Access); Builder.Register_Handler (Handler_Name => "tool-add", Handler => AKT.Callbacks.On_Tool_Add'Access); Builder.Register_Handler (Handler_Name => "dialog-password-ok", Handler => AKT.Callbacks.On_Dialog_Password_Ok'Access); end Initialize; -- ------------------------------ -- Callback executed when the "quit" action is executed from the menu. -- ------------------------------ procedure On_Menu_Quit (Object : access Gtkada.Builder.Gtkada_Builder_Record'Class) is pragma Unreferenced (Object); begin Gtk.Main.Main_Quit; end On_Menu_Quit; -- ------------------------------ -- Callback executed when the "about" action is executed from the menu. -- ------------------------------ procedure On_Menu_About (Object : access Gtkada.Builder.Gtkada_Builder_Record'Class) is About : constant Gtk.Widget.Gtk_Widget := Get_Widget (Object, "about"); begin About.Show; end On_Menu_About; -- ------------------------------ -- Callback executed when the "menu-new" action is executed from the file menu. -- ------------------------------ procedure On_Menu_New (Object : access Gtkada.Builder.Gtkada_Builder_Record'Class) is Chooser : constant Gtk.Widget.Gtk_Widget := Get_Widget (Object, "create_file_chooser"); Filter : Gtk.File_Filter.Gtk_File_Filter; File_Chooser : Gtk.File_Chooser.Gtk_File_Chooser; begin if Chooser /= null then File_Chooser := Gtk.File_Chooser_Dialog."+" (Gtk.File_Chooser_Dialog.Gtk_File_Chooser_Dialog (Chooser)); Gtk.File_Filter.Gtk_New (Filter); Gtk.File_Filter.Add_Pattern (Filter, "*.akt"); Gtk.File_Filter.Set_Name (Filter, "Keystore Files"); Gtk.File_Chooser.Add_Filter (File_Chooser, Filter); Gtk.File_Filter.Gtk_New (Filter); Gtk.File_Filter.Add_Pattern (Filter, "*"); Gtk.File_Filter.Set_Name (Filter, "All Files"); Gtk.File_Chooser.Add_Filter (File_Chooser, Filter); end if; Chooser.Show; end On_Menu_New; -- ------------------------------ -- Callback executed when the "menu-open" action is executed from the file menu. -- ------------------------------ procedure On_Menu_Open (Object : access Gtkada.Builder.Gtkada_Builder_Record'Class) is Chooser : constant Gtk.Widget.Gtk_Widget := Get_Widget (Object, "open_file_chooser"); Filter : Gtk.File_Filter.Gtk_File_Filter; File_Chooser : Gtk.File_Chooser.Gtk_File_Chooser; begin if Chooser /= null then File_Chooser := Gtk.File_Chooser_Dialog."+" (Gtk.File_Chooser_Dialog.Gtk_File_Chooser_Dialog (Chooser)); Gtk.File_Filter.Gtk_New (Filter); Gtk.File_Filter.Add_Pattern (Filter, "*.akt"); Gtk.File_Filter.Set_Name (Filter, "Keystore Files"); Gtk.File_Chooser.Add_Filter (File_Chooser, Filter); Gtk.File_Filter.Gtk_New (Filter); Gtk.File_Filter.Add_Pattern (Filter, "*"); Gtk.File_Filter.Set_Name (Filter, "All Files"); Gtk.File_Chooser.Add_Filter (File_Chooser, Filter); end if; Chooser.Show; end On_Menu_Open; -- ------------------------------ -- Callback executed when the "tool-add" action is executed from the toolbar. -- ------------------------------ procedure On_Tool_Add (Object : access Gtkada.Builder.Gtkada_Builder_Record'Class) is pragma Unreferenced (Object); begin App.Save_Current; App.Refresh_Toolbar; end On_Tool_Add; -- ------------------------------ -- Callback executed when the "tool-save" action is executed from the toolbar. -- ------------------------------ procedure On_Tool_Save (Object : access Gtkada.Builder.Gtkada_Builder_Record'Class) is pragma Unreferenced (Object); begin App.Save_Current; App.Refresh_Toolbar; end On_Tool_Save; -- ------------------------------ -- Callback executed when the "tool-edit" action is executed from the toolbar. -- ------------------------------ procedure On_Tool_Edit (Object : access Gtkada.Builder.Gtkada_Builder_Record'Class) is pragma Unreferenced (Object); begin App.Edit_Current; App.Refresh_Toolbar; end On_Tool_Edit; -- ------------------------------ -- Callback executed when the "tool-lock" action is executed from the toolbar. -- ------------------------------ procedure On_Tool_Lock (Object : access Gtkada.Builder.Gtkada_Builder_Record'Class) is pragma Unreferenced (Object); begin if not App.Is_Locked then App.Lock; end if; end On_Tool_Lock; -- ------------------------------ -- Callback executed when the "tool-unlock" action is executed from the toolbar. -- ------------------------------ procedure On_Tool_Unlock (Object : access Gtkada.Builder.Gtkada_Builder_Record'Class) is Password_Dialog : constant Gtk.Widget.Gtk_Widget := Get_Widget (Object, "password_dialog"); Widget : constant Gtk.Widget.Gtk_Widget := Get_Widget (Object, "main"); begin if App.Is_Locked and then Password_Dialog /= null then Gtk.Window.Set_Transient_For (Gtk.Window.Gtk_Window (Password_Dialog), Gtk.Window.Gtk_Window (Widget)); Password_Dialog.Show; end if; end On_Tool_Unlock; -- ------------------------------ -- Callback executed when the "open-file" action is executed from the open_file dialog. -- ------------------------------ procedure On_Open_File (Object : access Gtkada.Builder.Gtkada_Builder_Record'Class) is Chooser : constant Gtk.Widget.Gtk_Widget := Get_Widget (Object, "open_file_chooser"); Password : constant Gtk.GEntry.Gtk_Entry := Get_Entry (Object, "open_file_password"); Filename : constant Gtk.GEntry.Gtk_Entry := Get_Entry (Object, "open_file_name"); File_Chooser : Gtk.File_Chooser.Gtk_File_Chooser; begin if Chooser /= null and Password /= null and Filename /= null then if Gtk.GEntry.Get_Text (Password) = "" then App.Message ("Password is empty"); else Chooser.Hide; File_Chooser := Gtk.File_Chooser_Dialog."+" (Gtk.File_Chooser_Dialog.Gtk_File_Chooser_Dialog (Chooser)); Log.Info ("Selected file {0}", Gtk.File_Chooser.Get_Filename (File_Chooser)); App.Open_File (Path => Gtk.File_Chooser.Get_Filename (File_Chooser), Password => Keystore.Create (Gtk.GEntry.Get_Text (Password))); end if; end if; end On_Open_File; -- ------------------------------ -- Callback executed when the "cancel-open-file" action is executed from the open_file dialog. -- ------------------------------ procedure On_Cancel_Open_File (Object : access Gtkada.Builder.Gtkada_Builder_Record'Class) is Chooser : constant Gtk.Widget.Gtk_Widget := Get_Widget (Object, "open_file_chooser"); begin Chooser.Hide; end On_Cancel_Open_File; -- ------------------------------ -- Callback executed when the "create-file" action is executed from the open_file dialog. -- ------------------------------ procedure On_Create_File (Object : access Gtkada.Builder.Gtkada_Builder_Record'Class) is Chooser : constant Gtk.Widget.Gtk_Widget := Get_Widget (Object, "create_file_chooser"); Password : constant Gtk.GEntry.Gtk_Entry := Get_Entry (Object, "create_file_password"); Filename : constant Gtk.GEntry.Gtk_Entry := Get_Entry (Object, "create_file_name"); Count : constant Gtk.Spin_Button.Gtk_Spin_Button := Get_Spin_Button (Object, "split_data_count"); File_Chooser : Gtk.File_Chooser.Gtk_File_Chooser; begin if Chooser /= null and Password /= null then if Gtk.GEntry.Get_Text (Password) = "" then App.Message ("Password is empty"); else Chooser.Hide; File_Chooser := Gtk.File_Chooser_Dialog."+" (Gtk.File_Chooser_Dialog.Gtk_File_Chooser_Dialog (Chooser)); Log.Info ("Selected file {0}", Gtk.File_Chooser.Get_Filename (File_Chooser)); App.Create_File (Path => Gtk.GEntry.Get_Text (Filename), Storage_Count => Natural (Count.Get_Value_As_Int), Password => Keystore.Create (Gtk.GEntry.Get_Text (Password))); end if; end if; end On_Create_File; -- ------------------------------ -- Callback executed when the "cancel-create-file" action is executed -- from the open_file dialog. -- ------------------------------ procedure On_Cancel_Create_File (Object : access Gtkada.Builder.Gtkada_Builder_Record'Class) is Chooser : constant Gtk.Widget.Gtk_Widget := Get_Widget (Object, "create_file_chooser"); begin Chooser.Hide; end On_Cancel_Create_File; -- ------------------------------ -- Callback executed when the "delete-event" action is executed from the main window. -- ------------------------------ function On_Close_Window (Object : access Gtkada.Builder.Gtkada_Builder_Record'Class) return Boolean is pragma Unreferenced (Object); begin Gtk.Main.Main_Quit; return True; end On_Close_Window; -- ------------------------------ -- Callback executed when the "close-about" action is executed from the about box. -- ------------------------------ procedure On_Close_About (Object : access Gtkada.Builder.Gtkada_Builder_Record'Class) is About : constant Gtk.Widget.Gtk_Widget := Get_Widget (Object, "about"); begin About.Hide; end On_Close_About; -- ------------------------------ -- Callback executed when the "close-password" action is executed from the password dialog. -- ------------------------------ procedure On_Close_Password (Object : access Gtkada.Builder.Gtkada_Builder_Record'Class) is Password_Dialog : constant Gtk.Widget.Gtk_Widget := Get_Widget (Object, "password_dialog"); begin if Password_Dialog /= null then Password_Dialog.Hide; end if; end On_Close_Password; -- ------------------------------ -- Callback executed when the "dialog-password-ok" action is executed from the password dialog. -- ------------------------------ procedure On_Dialog_Password_Ok (Object : access Gtkada.Builder.Gtkada_Builder_Record'Class) is Password_Dialog : constant Gtk.Widget.Gtk_Widget := Get_Widget (Object, "password_dialog"); Password : constant Gtk.GEntry.Gtk_Entry := Get_Entry (Object, "password"); begin if Password_Dialog /= null and Password /= null then if Gtk.GEntry.Get_Text (Password) = "" then App.Message ("Password is empty"); else Password_Dialog.Hide; App.Unlock (Password => Keystore.Create (Gtk.GEntry.Get_Text (Password))); end if; end if; end On_Dialog_Password_Ok; end AKT.Callbacks;
45.717579
99
0.605711
fb86fd8153026f4ab21adca596c9b6f97ab6e61c
901
ada
Ada
Task/Semordnilap/Ada/semordnilap-3.ada
mullikine/RosettaCodeData
4f0027c6ce83daa36118ee8b67915a13cd23ab67
[ "Info-ZIP" ]
1
2018-11-09T22:08:38.000Z
2018-11-09T22:08:38.000Z
Task/Semordnilap/Ada/semordnilap-3.ada
mullikine/RosettaCodeData
4f0027c6ce83daa36118ee8b67915a13cd23ab67
[ "Info-ZIP" ]
null
null
null
Task/Semordnilap/Ada/semordnilap-3.ada
mullikine/RosettaCodeData
4f0027c6ce83daa36118ee8b67915a13cd23ab67
[ "Info-ZIP" ]
1
2018-11-09T22:08:40.000Z
2018-11-09T22:08:40.000Z
with String_Vectors, Ada.Text_IO, Ada.Command_Line; procedure Semordnilap is function Backward(S: String) return String is begin if S'Length < 2 then return S; else return (S(S'Last) & Backward(S(S'First+1 .. S'Last-1)) & S(S'First)); end if; end Backward; W: String_Vectors.Vec := String_Vectors.Read(Ada.Command_Line.Argument(1)); Semi_Counter: Natural := 0; begin for I in W.First_Index .. W.Last_Index loop if W.Element(I) /= Backward(W.Element(I)) and then W.Is_In(Backward(W.Element(I)), W.First_Index, I) then Semi_Counter := Semi_Counter + 1; if Semi_Counter <= 5 then Ada.Text_IO.Put_Line(W.Element(I) & " - " & Backward(W.Element(I))); end if; end if; end loop; Ada.Text_IO.New_Line; Ada.Text_IO.Put("pairs found:" & Integer'Image(Semi_Counter)); end Semordnilap;
29.064516
80
0.628191
50a3e6297bd2f655e4ab5b61ffc524db69c66a14
2,098
ads
Ada
.build/ada/asis-gela-parser-tokens.ads
faelys/gela-asis
48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253
[ "BSD-3-Clause" ]
4
2016-02-05T15:51:56.000Z
2022-03-25T20:38:32.000Z
.build/ada/asis-gela-parser-tokens.ads
faelys/gela-asis
48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253
[ "BSD-3-Clause" ]
null
null
null
.build/ada/asis-gela-parser-tokens.ads
faelys/gela-asis
48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253
[ "BSD-3-Clause" ]
null
null
null
package Asis.Gela.Parser.Tokens is subtype YYSTYPE is Asis.Element; subtype T is YYSTYPE; YYLVal, YYVal : YYSType; type Token is (End_Of_Input, Error, New_Line_Token, Separator_Token, Comment_Token, Identifier_Token, Integer_Literal_Token, Real_Literal_Token, Character_Literal_Token, String_Literal_Token, Double_Star_Token, Right_Label_Token, Greater_Or_Equal_Token, Box_Token, Left_Label_Token, Less_Or_Equal_Token, Inequality_Token, Assignment_Token, Arrow_Token, Double_Dot_Token, Ampersand_Token, Greater_Token, Less_Token, Apostrophe_Token, Left_Parenthesis_Token, Right_Parenthesis_Token, Star_Token, Plus_Token, Comma_Token, Hyphen_Token, Dot_Token, Slash_Token, Colon_Token, Semicolon_Token, Equal_Token, Vertical_Line_Token, Abort_Token, Abs_Token, Abstract_Token, Accept_Token, Access_Token, Aliased_Token, All_Token, And_Token, Array_Token, At_Token, Begin_Token, Body_Token, Case_Token, Constant_Token, Declare_Token, Delay_Token, Delta_Token, Digits_Token, Do_Token, Else_Token, Elsif_Token, End_Token, Entry_Token, Exception_Token, Exit_Token, For_Token, Function_Token, Generic_Token, Goto_Token, If_Token, In_Token, Interface_Token, Is_Token, Limited_Token, Loop_Token, Mod_Token, New_Token, Not_Token, Null_Token, Of_Token, Or_Token, Others_Token, Out_Token, Overriding_Token, Package_Token, Pragma_Token, Private_Token, Procedure_Token, Protected_Token, Raise_Token, Range_Token, Record_Token, Rem_Token, Renames_Token, Requeue_Token, Return_Token, Reverse_Token, Select_Token, Separate_Token, Subtype_Token, Synchronized_Token, Tagged_Token, Task_Token, Terminate_Token, Then_Token, Type_Token, Until_Token, Use_Token, When_Token, While_Token, With_Token, Xor_Token ); Syntax_Error : exception; end Asis.Gela.Parser.Tokens;
42.816327
75
0.709247
10895788dfd2d9bf7fba34edaaa033fde1545085
2,896
ada
Ada
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c3/c32108b.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c3/c32108b.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c3/c32108b.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
-- C32108B.ADA -- Grant of Unlimited Rights -- -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687, -- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained -- unlimited rights in the software and documentation contained herein. -- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making -- this public release, the Government intends to confer upon all -- recipients unlimited rights equal to those held by the Government. -- These rights include rights to use, duplicate, release or disclose the -- released technical data and computer software in whole or in part, in -- any manner and for any purpose whatsoever, and to have or permit others -- to do so. -- -- DISCLAIMER -- -- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR -- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED -- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE -- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE -- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A -- PARTICULAR PURPOSE OF SAID MATERIAL. --* -- CHECK THAT IF A DEFAULT EXPRESSION IS EVALUATED FOR A COMPONENT, NO -- DEFAULT EXPRESSIONS ARE EVALUATED FOR ANY SUBCOMPONENTS. -- TBN 3/21/86 WITH REPORT; USE REPORT; PROCEDURE C32108B IS FUNCTION DEFAULT_CHECK (NUMBER : INTEGER) RETURN INTEGER IS BEGIN IF NUMBER /= 0 THEN FAILED ("SUBCOMPONENT DEFAULT EXPRESSIONS ARE " & "EVALUATED -" & INTEGER'IMAGE (NUMBER)); END IF; RETURN (1); END DEFAULT_CHECK; BEGIN TEST ("C32108B", "CHECK THAT IF A DEFAULT EXPRESSION IS " & "EVALUATED FOR A COMPONENT, NO DEFAULT " & "EXPRESSIONS ARE EVALUATED FOR ANY " & "SUBCOMPONENTS"); DECLARE -- (A) TYPE REC_TYP1 IS RECORD AGE : INTEGER := DEFAULT_CHECK (1); END RECORD; TYPE REC_TYP2 (D : INTEGER := DEFAULT_CHECK(2)) IS RECORD NULL; END RECORD; TYPE REC_TYP3 (D : INTEGER := DEFAULT_CHECK(3)) IS RECORD A : INTEGER := DEFAULT_CHECK(4); END RECORD; TYPE REC_TYP4 IS RECORD ONE : REC_TYP1 := (AGE => DEFAULT_CHECK (0)); TWO : REC_TYP2 (DEFAULT_CHECK(0)); THREE : REC_TYP3 := (D => DEFAULT_CHECK (0), A => DEFAULT_CHECK (0)); END RECORD; REC4 : REC_TYP4; BEGIN -- (A) NULL; END; -- (A) RESULT; END C32108B;
35.753086
79
0.565953
18a033afeb5c80d66efead7e6af1eb56edbb6026
794
ads
Ada
Read Only/gdb-7.12.1/gdb/testsuite/gdb.ada/dyn_loc/pack.ads
samyvic/OS-Project
1622bc1641876584964effd91d65ef02e92728e1
[ "Apache-2.0" ]
null
null
null
Read Only/gdb-7.12.1/gdb/testsuite/gdb.ada/dyn_loc/pack.ads
samyvic/OS-Project
1622bc1641876584964effd91d65ef02e92728e1
[ "Apache-2.0" ]
null
null
null
Read Only/gdb-7.12.1/gdb/testsuite/gdb.ada/dyn_loc/pack.ads
samyvic/OS-Project
1622bc1641876584964effd91d65ef02e92728e1
[ "Apache-2.0" ]
null
null
null
-- Copyright 2010-2017 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. package Pack is procedure Print (I1 : Positive; I2 : Positive); end Pack;
37.809524
73
0.732997
50c39cc19267aca6cefb1a2c4e06dad87d446f07
2,409
ads
Ada
disorderly/gamma_1_to_3.ads
jscparker/math_packages
b112a90338014d5c2dfae3f7265ee30841fb6cfd
[ "ISC", "MIT" ]
30
2018-12-09T01:15:04.000Z
2022-03-20T16:14:54.000Z
disorderly/gamma_1_to_3.ads
jscparker/math_packages
b112a90338014d5c2dfae3f7265ee30841fb6cfd
[ "ISC", "MIT" ]
null
null
null
disorderly/gamma_1_to_3.ads
jscparker/math_packages
b112a90338014d5c2dfae3f7265ee30841fb6cfd
[ "ISC", "MIT" ]
null
null
null
-- -- The following is based on John Maddock's extended precision -- (Boost Library) gamma function. It uses the gamma rational -- poly functions (for the range x = 1 to 3) worked out by John Maddock, -- so his Copyright will be retained. -- -------------------------------------------------------------------------- -- (C) Copyright John Maddock 2006. -- Use, modification and distribution are subject to the -- Boost Software License, Version 1.0. (See accompanying file -- LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) -- --Boost Software License - Version 1.0 - August 17th, 2003 -- --Permission is hereby granted, free of charge, to any person or organization --obtaining a copy of the software and accompanying documentation covered by --this license (the "Software") to use, reproduce, display, distribute, --execute, and transmit the Software, and to prepare derivative works of the --Software, and to permit third-parties to whom the Software is furnished to --do so, all subject to the following: -- --The copyright notices in the Software and this entire statement, including --the above license grant, this restriction and the following disclaimer, --must be included in all copies of the Software, in whole or in part, and --all derivative works of the Software, unless such copies or derivative --works are solely in the form of machine-executable object code generated by --a source language processor. -- --THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR --IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, --FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT --SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE --FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, --ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER --DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------- -- -- Natural logarithm of Gamma function for positive real arguments. -- generic type Real is digits <>; package Gamma_1_to_3 is pragma Pure(Gamma_1_to_3); function Log_Gamma_1_to_3 (x : in Real) return Real; -- Only good for 1 < x < 3 private Real_Epsilon : constant Real := (+0.125) * Real'Epsilon; -- have to modify this if Real is abstract end Gamma_1_to_3;
40.830508
77
0.703611
2010927b2dc7020531033bf73d6e239190fd14d9
1,643
ads
Ada
resources/scripts/api/binaryedge.ads
mehrdad-shokri/amass
bf4df987c63d0509bf3e94cba2e4448855fc0805
[ "Apache-2.0" ]
1
2021-03-27T09:57:11.000Z
2021-03-27T09:57:11.000Z
resources/scripts/api/binaryedge.ads
rishuranjanofficial/Amass
a7e3d07febafae6220032121a1b1c4f508e16ec0
[ "Apache-2.0" ]
null
null
null
resources/scripts/api/binaryedge.ads
rishuranjanofficial/Amass
a7e3d07febafae6220032121a1b1c4f508e16ec0
[ "Apache-2.0" ]
null
null
null
-- Copyright 2017 Jeff Foley. All rights reserved. -- Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. local json = require("json") name = "BinaryEdge" type = "api" function start() setratelimit(2) end function vertical(ctx, domain) if (api ~= nil and api.key ~= '') then apiquery(ctx, domain) end end function apiquery(ctx, domain) local hdrs={ ['X-KEY']=api["key"], ['Content-Type']="application/json", } for i=1,500 do local resp local vurl = apiurl(domain, i) -- Check if the response data is in the graph database if (api.ttl ~= nil and api.ttl > 0) then resp = obtain_response(vurl, api.ttl) end if (resp == nil or resp == "") then local err resp, err = request({ url=vurl, headers=hdrs, }) if (err ~= nil and err ~= "") then return end if (api.ttl ~= nil and api.ttl > 0) then cache_response(vurl, resp) end end local d = json.decode(resp) if (d == nil or #(d.events) == 0) then return end for i, v in pairs(d.events) do newname(ctx, v) end if (d.page > 500 or d.page > (d.total / d.pagesize)) then return end active(ctx) checkratelimit() end end function apiurl(domain, pagenum) return "https://api.binaryedge.io/v2/query/domains/subdomain/" .. domain .. "?page=" .. pagenum end
23.471429
99
0.520998
d0af2546bc3b215cba0b9b0df47fedbbab9179fc
4,034
adb
Ada
source/web/tools/a2js/properties-definitions-signed.adb
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
24
2016-11-29T06:59:41.000Z
2021-08-30T11:55:16.000Z
source/web/tools/a2js/properties-definitions-signed.adb
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
2
2019-01-16T05:15:20.000Z
2019-02-03T10:03:32.000Z
source/web/tools/a2js/properties-definitions-signed.adb
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
4
2017-07-18T07:11:05.000Z
2020-06-21T03:02:25.000Z
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Web Framework -- -- -- -- Tools Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2018, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ package body Properties.Definitions.Signed is --------------------------- -- Typed_Array_Item_Type -- --------------------------- function Typed_Array_Item_Type (Engine : access Engines.Contexts.Context; Element : Asis.Definition; Name : Engines.Text_Property) return League.Strings.Universal_String is pragma Unreferenced (Name); Down : League.Strings.Universal_String; Result : League.Strings.Universal_String; begin Down := Engine.Text.Get_Property (Element, Engines.Size); Result.Append ("_s"); Result.Append (Down); return Result; end Typed_Array_Item_Type; end Properties.Definitions.Signed;
59.323529
78
0.426128
df7aaddb4f1e95652833e795c7de26c0172b3375
2,963
ads
Ada
source/oasis/program-elements-single_protected_declarations.ads
optikos/oasis
9f64d46d26d964790d69f9db681c874cfb3bf96d
[ "MIT" ]
null
null
null
source/oasis/program-elements-single_protected_declarations.ads
optikos/oasis
9f64d46d26d964790d69f9db681c874cfb3bf96d
[ "MIT" ]
null
null
null
source/oasis/program-elements-single_protected_declarations.ads
optikos/oasis
9f64d46d26d964790d69f9db681c874cfb3bf96d
[ "MIT" ]
2
2019-09-14T23:18:50.000Z
2019-10-02T10:11:40.000Z
-- Copyright (c) 2019 Maxim Reznik <[email protected]> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- with Program.Elements.Declarations; with Program.Lexical_Elements; with Program.Elements.Defining_Identifiers; with Program.Elements.Aspect_Specifications; with Program.Elements.Expressions; with Program.Elements.Protected_Definitions; package Program.Elements.Single_Protected_Declarations is pragma Pure (Program.Elements.Single_Protected_Declarations); type Single_Protected_Declaration is limited interface and Program.Elements.Declarations.Declaration; type Single_Protected_Declaration_Access is access all Single_Protected_Declaration'Class with Storage_Size => 0; not overriding function Name (Self : Single_Protected_Declaration) return not null Program.Elements.Defining_Identifiers .Defining_Identifier_Access is abstract; not overriding function Aspects (Self : Single_Protected_Declaration) return Program.Elements.Aspect_Specifications .Aspect_Specification_Vector_Access is abstract; not overriding function Progenitors (Self : Single_Protected_Declaration) return Program.Elements.Expressions.Expression_Vector_Access is abstract; not overriding function Definition (Self : Single_Protected_Declaration) return not null Program.Elements.Protected_Definitions .Protected_Definition_Access is abstract; type Single_Protected_Declaration_Text is limited interface; type Single_Protected_Declaration_Text_Access is access all Single_Protected_Declaration_Text'Class with Storage_Size => 0; not overriding function To_Single_Protected_Declaration_Text (Self : aliased in out Single_Protected_Declaration) return Single_Protected_Declaration_Text_Access is abstract; not overriding function Protected_Token (Self : Single_Protected_Declaration_Text) return not null Program.Lexical_Elements.Lexical_Element_Access is abstract; not overriding function With_Token (Self : Single_Protected_Declaration_Text) return Program.Lexical_Elements.Lexical_Element_Access is abstract; not overriding function Is_Token (Self : Single_Protected_Declaration_Text) return not null Program.Lexical_Elements.Lexical_Element_Access is abstract; not overriding function New_Token (Self : Single_Protected_Declaration_Text) return Program.Lexical_Elements.Lexical_Element_Access is abstract; not overriding function With_Token_2 (Self : Single_Protected_Declaration_Text) return Program.Lexical_Elements.Lexical_Element_Access is abstract; not overriding function Semicolon_Token (Self : Single_Protected_Declaration_Text) return not null Program.Lexical_Elements.Lexical_Element_Access is abstract; end Program.Elements.Single_Protected_Declarations;
37.0375
79
0.786703
1c16e87de0eefd8fb419912f23071e04df0befdd
1,878
adb
Ada
src/gen-artifacts.adb
jquorning/dynamo
10d68571476c270b8e45a9c5ef585fa9139b0d05
[ "Apache-2.0" ]
15
2015-01-18T23:04:19.000Z
2022-03-01T20:27:08.000Z
src/gen-artifacts.adb
jquorning/dynamo
10d68571476c270b8e45a9c5ef585fa9139b0d05
[ "Apache-2.0" ]
16
2018-06-10T07:09:30.000Z
2022-03-26T18:28:40.000Z
src/gen-artifacts.adb
jquorning/dynamo
10d68571476c270b8e45a9c5ef585fa9139b0d05
[ "Apache-2.0" ]
3
2015-11-11T18:00:14.000Z
2022-01-30T23:08:45.000Z
----------------------------------------------------------------------- -- gen-artifacts -- Artifacts for Code Generator -- Copyright (C) 2012 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- package body Gen.Artifacts is -- ------------------------------ -- After the configuration file is read, processes the node whose root -- is passed in <b>Node</b> and initializes the <b>Model</b> with the information. -- ------------------------------ procedure Initialize (Handler : in out Artifact; Path : in String; Node : in DOM.Core.Node; Model : in out Gen.Model.Packages.Model_Definition'Class; Context : in out Generator'Class) is pragma Unreferenced (Path, Node, Model, Context); begin Handler.Initialized := True; end Initialize; -- ------------------------------ -- Check whether this artifact has been initialized. -- ------------------------------ function Is_Initialized (Handler : in Artifact) return Boolean is begin return Handler.Initialized; end Is_Initialized; end Gen.Artifacts;
42.681818
87
0.555378
1ceb6e3d31917a61357555f441fe82f39f9a25d2
10,325
adb
Ada
src/smk-smkfiles.adb
LionelDraghi/smk
2ba79048e1d2579bbbdd1004a78c5cff1796261e
[ "Apache-2.0" ]
10
2018-11-27T22:07:50.000Z
2020-04-12T21:00:03.000Z
src/smk-smkfiles.adb
LionelDraghi/smk
2ba79048e1d2579bbbdd1004a78c5cff1796261e
[ "Apache-2.0" ]
18
2018-11-27T22:11:06.000Z
2019-01-25T20:52:49.000Z
src/smk-smkfiles.adb
LionelDraghi/smk
2ba79048e1d2579bbbdd1004a78c5cff1796261e
[ "Apache-2.0" ]
1
2018-12-05T23:05:05.000Z
2018-12-05T23:05:05.000Z
-- ----------------------------------------------------------------------------- -- smk, the smart make (http://lionel.draghi.free.fr/smk/) -- © 2018, 2019 Lionel Draghi <[email protected]> -- SPDX-License-Identifier: APSL-2.0 -- ----------------------------------------------------------------------------- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- http://www.apache.org/licenses/LICENSE-2.0 -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. -- ----------------------------------------------------------------------------- with Smk.IO; with Ada.Characters.Latin_1; with Ada.Directories; with Ada.Strings.Fixed; with Ada.Strings.Maps.Constants; with Ada.Text_IO; use Ada.Text_IO; with Smk.Settings; use Smk.Settings; -- ----------------------------------------------------------------------------- package body Smk.Smkfiles is Debug : constant Boolean := False; Prefix : constant String := ""; -- -------------------------------------------------------------------------- function "+" (Name : Smk_File_Name) return String is (Files."+" (Files.File_Name (Name))); function "+" (Name : String) return Smk_File_Name is (Smk_File_Name (Files."+" (Name))); use Ada.Strings; use Ada.Strings.Fixed; Current_Section : Section_Names := Default_Section; use Ada.Strings.Maps; use Ada.Strings.Maps.Constants; Whitespace_Set : constant Ada.Strings.Maps.Character_Set := Ada.Strings.Maps.To_Set (Ada.Characters.Latin_1.HT & Ada.Characters.Latin_1.Space & '@'); Identifier_Set : constant Ada.Strings.Maps.Character_Set := Alphanumeric_Set or To_Set (".-_"); -- -------------------------------------------------------------------------- function Is_Empty (Line : in String) return Boolean is (Index_Non_Blank (Line) = 0); -- -------------------------------------------------------------------------- function Is_A_Comment (Line : in String) return Boolean is begin return Head (Line, Count => 1) = "#" or else -- Shell style comment Head (Line, Count => 2) = "--" or else -- Ada style comment Head (Line, Count => 2) = "//"; -- Java style comment end Is_A_Comment; -- -------------------------------------------------------------------------- function Is_A_Section (Line : in String) return Boolean is -- A section line starts with an identifier immediatly followed by -- a semicolon, e.g. "mrproper:" -- Warning: this function updates the global Current_Section variable First : Positive; Last : Natural; begin Find_Token (Source => Line, Set => Identifier_Set, Test => Inside, First => First, Last => Last); if Last = 0 then -- The line don't start with an identifier, can't be a section return False; elsif Last = Line'Last then -- There is only an identifier on this line return False; else if Line (Last + 1) = ':' then Current_Section := +(Line (First .. Last)); return True; else return False; end if; end if; end Is_A_Section; -- -------------------------------------------------------------------------- function Load_Smkfile return Smkfile is Make_Fl : Ada.Text_IO.File_Type; Entry_List : Smkfile_Entry_Lists.List; In_A_Multiline : Boolean := False; Multiline : Command_Lines := Null_Command_Line; Line_List : Smkfile; begin Open (Make_Fl, In_File, Smkfile_Name); Analysis : while not End_Of_File (Make_Fl) loop declare -- Line = Get_Line, but heading blanks or tabs character are removed -- If there is not heading blank, First_Non_Blank will be null, -- and Line will start at 1. Line : constant String := Trim (Get_Line (Make_Fl), Left => Whitespace_Set, Right => Whitespace_Set); Line_Nb : constant Integer := Integer (Ada.Text_IO.Line (Make_Fl)); begin if Is_A_Comment (Line) then IO.Put_Debug_Line (Line & "<", Debug => Debug, Prefix => Prefix & "Comment >", File => Smkfile_Name, Line => Line_Nb); elsif Is_Empty (Line) then IO.Put_Debug_Line (Line & "<", Debug => Debug, Prefix => Prefix & "Empty line >", File => Smkfile_Name, Line => Line_Nb); elsif Is_A_Section (Line) then IO.Put_Debug_Line (+Current_Section & "<", Debug => Debug, Prefix => Prefix & "Section >", File => Smkfile_Name, Line => Line_Nb); else -- Last but not least, it's a command line. if Line (Line'Last) = '\' then -- first or continuation line of the multiline declare Last_Non_Blank_Before_Backslash : constant Natural := Index (Source => Line (Line'First .. Line'Last - 1), Set => Whitespace_Set, Test => Outside, Going => Backward); begin -- we replace all all blanks and tab befor '\' with -- a single blank Multiline := Multiline & Line (Line'First .. Last_Non_Blank_Before_Backslash) & " "; In_A_Multiline := True; IO.Put_Debug_Line ((+Multiline) & "<", Debug => Debug, Prefix => Prefix & "First or continuation >", File => Smkfile_Name, Line => Line_Nb); end; else if In_A_Multiline then -- last line of the multiline Multiline := Multiline & Line; Entry_List.Append ((Line => Line_Nb - 1, -- why -1 ??? Section => Current_Section, Command => Multiline, Was_Run => False)); IO.Put_Debug_Line (+Multiline & "<", Debug => Debug, Prefix => Prefix & "Last line >", File => Smkfile_Name, Line => Line_Nb); Multiline := Null_Command_Line; In_A_Multiline := False; else -- single line command Entry_List.Append ((Line => Line_Nb - 1, -- why -1 ??? Section => Current_Section, Command => +(Line), Was_Run => False)); IO.Put_Debug_Line (Line & "<", Debug => Debug, Prefix => Prefix & "Single line >", File => Smkfile_Name, Line => Line_Nb); end if; end if; end if; end; end loop Analysis; if In_A_Multiline then IO.Put_Error (Smkfile_Name & " ends with incomplete multine, last command ignored"); end if; Close (Make_Fl); declare use Ada.Directories; begin Line_List := (Name => +Smkfile_Name, Time_Tag => Modification_Time (Smkfile_Name), Entries => Entry_List); end; return Line_List; end Load_Smkfile; -- -------------------------------------------------------------------------- procedure Dump is The_Smkfile : constant Smkfile := Load_Smkfile; Time_Tag : constant String := IO.Image (The_Smkfile.Time_Tag); begin IO.Put_Line (+The_Smkfile.Name & " (" & Time_Tag & ") :"); for E of The_Smkfile.Entries loop IO.Put_Line (Trim (Positive'Image (E.Line), Left) & ": [" & (+E.Section) & "] " & (+E.Command)); end loop; end Dump; -- -------------------------------------------------------------------------- function Contains (The_Smkfile : in Smkfile; The_Command : in Command_Lines) return Boolean is (for some E of The_Smkfile.Entries => E.Command = The_Command); -- -------------------------------------------------------------------------- procedure Add_To_Smkfile (Cmd_Line : String) is Smk_File : Ada.Text_IO.File_Type; The_Smkfile : Smkfiles.Smkfile; begin if Ada.Directories.Exists (Smkfile_Name) then The_Smkfile := Smkfiles.Load_Smkfile; Open (Smk_File, Mode => Append_File, Name => Smkfile_Name); else Create (Smk_File, Mode => Append_File, Name => Smkfile_Name); end if; if not Smkfiles.Contains (The_Smkfile, +Cmd_Line) then Put_Line (Smk_File, Cmd_Line); end if; Close (Smk_File); end Add_To_Smkfile; end Smk.Smkfiles;
40.175097
80
0.449492
500ada07185e1be2f48082b274cfe2381bcb1b6c
1,307
ads
Ada
tools/scitools/conf/understand/ada/ada95/ada.ads
brucegua/moocos
575c161cfa35e220f10d042e2e5ca18773691695
[ "Apache-2.0" ]
1
2020-01-20T21:26:46.000Z
2020-01-20T21:26:46.000Z
tools/scitools/conf/understand/ada/ada95/ada.ads
brucegua/moocos
575c161cfa35e220f10d042e2e5ca18773691695
[ "Apache-2.0" ]
null
null
null
tools/scitools/conf/understand/ada/ada95/ada.ads
brucegua/moocos
575c161cfa35e220f10d042e2e5ca18773691695
[ "Apache-2.0" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUNTIME COMPONENTS -- -- -- -- A D A -- -- -- -- S p e c -- -- -- -- $Revision: 2 $ -- -- -- -- This specification is adapted from the Ada Reference Manual for use with -- -- GNAT. In accordance with the copyright of that document, you can freely -- -- copy and modify this specification, provided that if you redistribute a -- -- modified version, any changes that you have made are clearly indicated. -- -- -- ------------------------------------------------------------------------------ package Ada is pragma Pure (Ada); end Ada;
59.409091
78
0.234124
df6bdca49fd935f82a09ecfd12f3b348d3cff24e
1,212
ads
Ada
src/botio.ads
Hamster-Furtif/JeremyPlusPlus
fc8ba0cfe0ef2bd1dfb94b6720592649dfb307e2
[ "MIT" ]
null
null
null
src/botio.ads
Hamster-Furtif/JeremyPlusPlus
fc8ba0cfe0ef2bd1dfb94b6720592649dfb307e2
[ "MIT" ]
null
null
null
src/botio.ads
Hamster-Furtif/JeremyPlusPlus
fc8ba0cfe0ef2bd1dfb94b6720592649dfb307e2
[ "MIT" ]
null
null
null
with ada.Strings.Unbounded, utils, montecarlo, ada.Integer_Text_IO, opstrat; use ada.Strings.Unbounded, utils, montecarlo, ada.Integer_Text_IO, opstrat; package botIO is type T_prefix is (settings, update_game, update_hand, action); type T_params is Array(0..7) of Unbounded_String; type T_command is record prefix : T_prefix; pars : T_params; size : Integer; end record; --Decoupe une chaine envoyee par le launcher au niveau des espaces et des guillements, et renvoie une commande function splitLine(line : String; line_length : Integer) return T_command; --Permet d'interpreter des commandes de type settings, update_game et update_hand procedure readSettings(command : T_command; game : in out T_game); procedure readUpdateGame(command : T_command; game : in out T_game); procedure readUpdateHand(command : T_command; game : in out T_game; logic : in out T_logic); --Affiche la valeur et la couleur d'une carte dans la console (sert a debugger) procedure printCard(card : in T_card); --Permet de lire une carte selon le formalisme du launcher function parseCard(str : in String) return T_card; end botIO;
40.4
113
0.722772
502bf6c34c24cebbe6901e7e430c21a743d6f7f9
6,652
adb
Ada
src/arch/socs/stm32f429/Ada/soc-gpio.adb
wookey-project/ewok-legacy
c973752dac3a0ebe3f7cfca062f50744578f051b
[ "Apache-2.0" ]
null
null
null
src/arch/socs/stm32f429/Ada/soc-gpio.adb
wookey-project/ewok-legacy
c973752dac3a0ebe3f7cfca062f50744578f051b
[ "Apache-2.0" ]
null
null
null
src/arch/socs/stm32f429/Ada/soc-gpio.adb
wookey-project/ewok-legacy
c973752dac3a0ebe3f7cfca062f50744578f051b
[ "Apache-2.0" ]
null
null
null
-- -- Copyright 2018 The wookey project team <[email protected]> -- - Ryad Benadjila -- - Arnauld Michelizza -- - Mathieu Renard -- - Philippe Thierry -- - Philippe Trebuchet -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. -- -- with soc.rcc; -- About SPARK: -- In this driver implementation, there is no such -- complex algorithmic requiring effective SPARK prove, -- as the package body is only composed on registers -- fields setters and getters. Using SPARK in this -- package body would be mostly useless in this very -- case package body soc.gpio with spark_mode => off is -- Here we choose to use local accessors instead of -- a full switch case, in order to: -- 1) reduce the generated asm -- 2) avoid writting errors in switch/case write which -- can't be detected through SPARK rules type t_GPIO_port_access is access all t_GPIO_port; GPIOx : constant array (t_gpio_port_index) of t_GPIO_port_access := (GPIOA'access, GPIOB'access, GPIOC'access, GPIOD'access, GPIOE'access, GPIOF'access, GPIOG'access, GPIOH'access, GPIOI'access); -- FIXME - Should be in soc.rcc package procedure enable_clock (port : in t_gpio_port_index) is begin case port is when GPIO_PA => soc.rcc.RCC.AHB1ENR.GPIOAEN := true; when GPIO_PB => soc.rcc.RCC.AHB1ENR.GPIOBEN := true; when GPIO_PC => soc.rcc.RCC.AHB1ENR.GPIOCEN := true; when GPIO_PD => soc.rcc.RCC.AHB1ENR.GPIODEN := true; when GPIO_PE => soc.rcc.RCC.AHB1ENR.GPIOEEN := true; when GPIO_PF => soc.rcc.RCC.AHB1ENR.GPIOFEN := true; when GPIO_PG => soc.rcc.RCC.AHB1ENR.GPIOGEN := true; when GPIO_PH => soc.rcc.RCC.AHB1ENR.GPIOHEN := true; when GPIO_PI => soc.rcc.RCC.AHB1ENR.GPIOIEN := true; end case; end enable_clock; procedure set_mode (port : in t_gpio_port_index; pin : in t_gpio_pin_index; mode : in t_pin_mode) with refined_global => (output => (gpio_a, gpio_b, gpio_c, gpio_d, gpio_e, gpio_f, gpio_g, gpio_h, gpio_i)) is begin GPIOx(port).all.MODER.pin(pin) := mode; end set_mode; procedure set_type (port : in t_gpio_port_index; pin : in t_gpio_pin_index; otype : in t_pin_output_type) with refined_global => (output => (gpio_a, gpio_b, gpio_c, gpio_d, gpio_e, gpio_f, gpio_g, gpio_h, gpio_i)) is begin GPIOx(port).all.OTYPER.pin(pin) := otype; end set_type; procedure set_speed (port : in t_gpio_port_index; pin : in t_gpio_pin_index; ospeed : in t_pin_output_speed) with refined_global => (output => (gpio_a, gpio_b, gpio_c, gpio_d, gpio_e, gpio_f, gpio_g, gpio_h, gpio_i)) is begin GPIOx(port).all.OSPEEDR.pin(pin) := ospeed; end set_speed; procedure set_pupd (port : in t_gpio_port_index; pin : in t_gpio_pin_index; pupd : in t_pin_pupd) with refined_global => (output => (gpio_a, gpio_b, gpio_c, gpio_d, gpio_e, gpio_f, gpio_g, gpio_h, gpio_i)) is begin GPIOx(port).all.PUPDR.pin(pin) := pupd; end set_pupd; procedure set_bsr_r (port : in t_gpio_port_index; pin : in t_gpio_pin_index; bsr_r : in types.bit) with refined_global => (output => (gpio_a, gpio_b, gpio_c, gpio_d, gpio_e, gpio_f, gpio_g, gpio_h, gpio_i)) is begin GPIOx(port).all.BSRR.BR(pin) := bsr_r; end set_bsr_r; procedure set_bsr_s (port : in t_gpio_port_index; pin : in t_gpio_pin_index; bsr_s : in types.bit) with refined_global => (output => (gpio_a, gpio_b, gpio_c, gpio_d, gpio_e, gpio_f, gpio_g, gpio_h, gpio_i)) is begin GPIOx(port).all.BSRR.BS(pin) := bsr_s; end set_bsr_s; procedure set_lck (port : in t_gpio_port_index; pin : in t_gpio_pin_index; lck : in t_pin_lock) with refined_global => (output => (gpio_a, gpio_b, gpio_c, gpio_d, gpio_e, gpio_f, gpio_g, gpio_h, gpio_i)) is begin GPIOx(port).all.LCKR.pin(pin) := lck; end set_lck; procedure set_af (port : in t_gpio_port_index; pin : in t_gpio_pin_index; af : in t_pin_alt_func) with refined_global => (output => (gpio_a, gpio_b, gpio_c, gpio_d, gpio_e, gpio_f, gpio_g, gpio_h, gpio_i)) is begin if pin < 8 then GPIOx(port).all.AFRL.pin(pin) := af; else GPIOx(port).all.AFRH.pin(pin) := af; end if; end set_af; procedure write_pin (port : in t_gpio_port_index; pin : in t_gpio_pin_index; value : in bit) with refined_global => (in_out => (gpio_a, gpio_b, gpio_c, gpio_d, gpio_e, gpio_f, gpio_g, gpio_h, gpio_i)) is begin GPIOx(port).all.ODR.pin (pin) := value; end write_pin; procedure read_pin (port : in t_gpio_port_index; pin : in t_gpio_pin_index; value : out bit) with refined_global => (in_out => (gpio_a, gpio_b, gpio_c, gpio_d, gpio_e, gpio_f, gpio_g, gpio_h, gpio_i)) is begin value := GPIOx(port).all.IDR.pin (pin); end read_pin; end soc.gpio;
31.230047
79
0.552315
501433dc993b5f98fb2159bca9510f7dd11af292
11,349
adb
Ada
source/nodes/program-nodes-function_declarations.adb
reznikmm/gela
20134f1d154fb763812e73860c6f4b04f353df79
[ "MIT" ]
null
null
null
source/nodes/program-nodes-function_declarations.adb
reznikmm/gela
20134f1d154fb763812e73860c6f4b04f353df79
[ "MIT" ]
null
null
null
source/nodes/program-nodes-function_declarations.adb
reznikmm/gela
20134f1d154fb763812e73860c6f4b04f353df79
[ "MIT" ]
1
2019-10-16T09:05:27.000Z
2019-10-16T09:05:27.000Z
-- SPDX-FileCopyrightText: 2019 Max Reznik <[email protected]> -- -- SPDX-License-Identifier: MIT ------------------------------------------------------------- package body Program.Nodes.Function_Declarations is function Create (Not_Token : Program.Lexical_Elements.Lexical_Element_Access; Overriding_Token : Program.Lexical_Elements.Lexical_Element_Access; Function_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Name : not null Program.Elements.Defining_Names .Defining_Name_Access; Left_Bracket_Token : Program.Lexical_Elements.Lexical_Element_Access; Parameters : Program.Elements.Parameter_Specifications .Parameter_Specification_Vector_Access; Right_Bracket_Token : Program.Lexical_Elements.Lexical_Element_Access; Return_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Not_Token_2 : Program.Lexical_Elements.Lexical_Element_Access; Null_Token : Program.Lexical_Elements.Lexical_Element_Access; Result_Subtype : not null Program.Elements.Element_Access; Is_Token : Program.Lexical_Elements.Lexical_Element_Access; Result_Expression : Program.Elements.Parenthesized_Expressions .Parenthesized_Expression_Access; Abstract_Token : Program.Lexical_Elements.Lexical_Element_Access; With_Token : Program.Lexical_Elements.Lexical_Element_Access; Aspects : Program.Elements.Aspect_Specifications .Aspect_Specification_Vector_Access; Semicolon_Token : not null Program.Lexical_Elements .Lexical_Element_Access) return Function_Declaration is begin return Result : Function_Declaration := (Not_Token => Not_Token, Overriding_Token => Overriding_Token, Function_Token => Function_Token, Name => Name, Left_Bracket_Token => Left_Bracket_Token, Parameters => Parameters, Right_Bracket_Token => Right_Bracket_Token, Return_Token => Return_Token, Not_Token_2 => Not_Token_2, Null_Token => Null_Token, Result_Subtype => Result_Subtype, Is_Token => Is_Token, Result_Expression => Result_Expression, Abstract_Token => Abstract_Token, With_Token => With_Token, Aspects => Aspects, Semicolon_Token => Semicolon_Token, Enclosing_Element => null) do Initialize (Result); end return; end Create; function Create (Name : not null Program.Elements.Defining_Names .Defining_Name_Access; Parameters : Program.Elements.Parameter_Specifications .Parameter_Specification_Vector_Access; Result_Subtype : not null Program.Elements.Element_Access; Result_Expression : Program.Elements.Parenthesized_Expressions .Parenthesized_Expression_Access; Aspects : Program.Elements.Aspect_Specifications .Aspect_Specification_Vector_Access; Is_Part_Of_Implicit : Boolean := False; Is_Part_Of_Inherited : Boolean := False; Is_Part_Of_Instance : Boolean := False; Has_Not : Boolean := False; Has_Overriding : Boolean := False; Has_Abstract : Boolean := False; Has_Not_Null : Boolean := False) return Implicit_Function_Declaration is begin return Result : Implicit_Function_Declaration := (Name => Name, Parameters => Parameters, Result_Subtype => Result_Subtype, Result_Expression => Result_Expression, Aspects => Aspects, Is_Part_Of_Implicit => Is_Part_Of_Implicit, Is_Part_Of_Inherited => Is_Part_Of_Inherited, Is_Part_Of_Instance => Is_Part_Of_Instance, Has_Not => Has_Not, Has_Overriding => Has_Overriding, Has_Abstract => Has_Abstract, Has_Not_Null => Has_Not_Null, Enclosing_Element => null) do Initialize (Result); end return; end Create; overriding function Name (Self : Base_Function_Declaration) return not null Program.Elements.Defining_Names.Defining_Name_Access is begin return Self.Name; end Name; overriding function Parameters (Self : Base_Function_Declaration) return Program.Elements.Parameter_Specifications .Parameter_Specification_Vector_Access is begin return Self.Parameters; end Parameters; overriding function Result_Subtype (Self : Base_Function_Declaration) return not null Program.Elements.Element_Access is begin return Self.Result_Subtype; end Result_Subtype; overriding function Result_Expression (Self : Base_Function_Declaration) return Program.Elements.Parenthesized_Expressions .Parenthesized_Expression_Access is begin return Self.Result_Expression; end Result_Expression; overriding function Aspects (Self : Base_Function_Declaration) return Program.Elements.Aspect_Specifications .Aspect_Specification_Vector_Access is begin return Self.Aspects; end Aspects; overriding function Not_Token (Self : Function_Declaration) return Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Not_Token; end Not_Token; overriding function Overriding_Token (Self : Function_Declaration) return Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Overriding_Token; end Overriding_Token; overriding function Function_Token (Self : Function_Declaration) return not null Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Function_Token; end Function_Token; overriding function Left_Bracket_Token (Self : Function_Declaration) return Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Left_Bracket_Token; end Left_Bracket_Token; overriding function Right_Bracket_Token (Self : Function_Declaration) return Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Right_Bracket_Token; end Right_Bracket_Token; overriding function Return_Token (Self : Function_Declaration) return not null Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Return_Token; end Return_Token; overriding function Not_Token_2 (Self : Function_Declaration) return Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Not_Token_2; end Not_Token_2; overriding function Null_Token (Self : Function_Declaration) return Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Null_Token; end Null_Token; overriding function Is_Token (Self : Function_Declaration) return Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Is_Token; end Is_Token; overriding function Abstract_Token (Self : Function_Declaration) return Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Abstract_Token; end Abstract_Token; overriding function With_Token (Self : Function_Declaration) return Program.Lexical_Elements.Lexical_Element_Access is begin return Self.With_Token; end With_Token; overriding function Semicolon_Token (Self : Function_Declaration) return not null Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Semicolon_Token; end Semicolon_Token; overriding function Has_Not (Self : Function_Declaration) return Boolean is begin return Self.Not_Token.Assigned; end Has_Not; overriding function Has_Overriding (Self : Function_Declaration) return Boolean is begin return Self.Overriding_Token.Assigned; end Has_Overriding; overriding function Has_Abstract (Self : Function_Declaration) return Boolean is begin return Self.Abstract_Token.Assigned; end Has_Abstract; overriding function Has_Not_Null (Self : Function_Declaration) return Boolean is begin return Self.Null_Token.Assigned; end Has_Not_Null; overriding function Is_Part_Of_Implicit (Self : Implicit_Function_Declaration) return Boolean is begin return Self.Is_Part_Of_Implicit; end Is_Part_Of_Implicit; overriding function Is_Part_Of_Inherited (Self : Implicit_Function_Declaration) return Boolean is begin return Self.Is_Part_Of_Inherited; end Is_Part_Of_Inherited; overriding function Is_Part_Of_Instance (Self : Implicit_Function_Declaration) return Boolean is begin return Self.Is_Part_Of_Instance; end Is_Part_Of_Instance; overriding function Has_Not (Self : Implicit_Function_Declaration) return Boolean is begin return Self.Has_Not; end Has_Not; overriding function Has_Overriding (Self : Implicit_Function_Declaration) return Boolean is begin return Self.Has_Overriding; end Has_Overriding; overriding function Has_Abstract (Self : Implicit_Function_Declaration) return Boolean is begin return Self.Has_Abstract; end Has_Abstract; overriding function Has_Not_Null (Self : Implicit_Function_Declaration) return Boolean is begin return Self.Has_Not_Null; end Has_Not_Null; procedure Initialize (Self : in out Base_Function_Declaration'Class) is begin Set_Enclosing_Element (Self.Name, Self'Unchecked_Access); for Item in Self.Parameters.Each_Element loop Set_Enclosing_Element (Item.Element, Self'Unchecked_Access); end loop; Set_Enclosing_Element (Self.Result_Subtype, Self'Unchecked_Access); if Self.Result_Expression.Assigned then Set_Enclosing_Element (Self.Result_Expression, Self'Unchecked_Access); end if; for Item in Self.Aspects.Each_Element loop Set_Enclosing_Element (Item.Element, Self'Unchecked_Access); end loop; null; end Initialize; overriding function Is_Function_Declaration (Self : Base_Function_Declaration) return Boolean is pragma Unreferenced (Self); begin return True; end Is_Function_Declaration; overriding function Is_Declaration (Self : Base_Function_Declaration) return Boolean is pragma Unreferenced (Self); begin return True; end Is_Declaration; overriding procedure Visit (Self : not null access Base_Function_Declaration; Visitor : in out Program.Element_Visitors.Element_Visitor'Class) is begin Visitor.Function_Declaration (Self); end Visit; overriding function To_Function_Declaration_Text (Self : in out Function_Declaration) return Program.Elements.Function_Declarations .Function_Declaration_Text_Access is begin return Self'Unchecked_Access; end To_Function_Declaration_Text; overriding function To_Function_Declaration_Text (Self : in out Implicit_Function_Declaration) return Program.Elements.Function_Declarations .Function_Declaration_Text_Access is pragma Unreferenced (Self); begin return null; end To_Function_Declaration_Text; end Program.Nodes.Function_Declarations;
33.576923
79
0.723588
0ec5e2b85bf31b46b5e848444c6149d8dbc93df9
6,130
ads
Ada
bb-runtimes/src/s-bbpara__tms570ls31.ads
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
bb-runtimes/src/s-bbpara__tms570ls31.ads
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
bb-runtimes/src/s-bbpara__tms570ls31.ads
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . B B . P A R A M E T E R S -- -- -- -- S p e c -- -- -- -- Copyright (C) 1999-2002 Universidad Politecnica de Madrid -- -- Copyright (C) 2003-2005 The European Space Agency -- -- Copyright (C) 2003-2020, AdaCore -- -- -- -- GNARL is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNARL is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNARL was developed by the GNARL team at Florida State University. -- -- Extensive contributions were provided by Ada Core Technologies, Inc. -- -- -- -- The port of GNARL to bare board targets was initially developed by the -- -- Real-Time Systems Group at the Technical University of Madrid. -- -- -- ------------------------------------------------------------------------------ -- This package defines basic parameters used by the low level tasking system -- This is the TMS570 (ARMv7) version of this package with System.Board_Parameters; package System.BB.Parameters is pragma No_Elaboration_Code_All; pragma Pure; -------------------- -- Hardware clock -- -------------------- -- see system_tms570ls31.c for clock setup Clock_Frequency : constant := System.Board_Parameters.Clock_Frequency; -- GCLK clock Hz: used by the Cortex-R cores Ticks_Per_Second : constant := Clock_Frequency / 8; -- RTICLK, with PRE1 used as source, and divider set to 2 ** 3 -- RTICLK source can come from VCLK, or from the PLL1 with a divider. -- Here we use the latter. -- RTICLK Value = 22 MHz. ---------------- -- Interrupts -- ---------------- -- These definitions are in this package in order to isolate target -- dependencies. subtype Interrupt_Range is Natural range 0 .. 95; -- Number of interrupts supported by the VIC. For the TMS570 interrupts, -- we really only consider the 95 usable interrupt channels. The run time -- assumes the interrupt source to interrupt channel map is direct (1:1), -- as is the default, but the user can change this as long as the IRQ used -- by the system for alarms stays unchanged. Trap_Vectors : constant := 7; -- ARM in general has these traps: -- 0 (at 16#0000#) Reset -- 1 (at 16#0004#) Undefined Instruction (synchronous) -- 2 (at 16#0008#) Supervisor Call (synchronous) -- 3 (at 16#000C#) Abort - Prefetch (synchronous) -- 4 (at 16#0010#) Abort - Data (asynchronous) -- 5 (at 16#0014#) IRQ Trap (asynchronous) -- 6 (at 16#0018#) FIQ Trap (asynchronous) Interrupt_Unmask_Priority : constant System.Interrupt_Priority := System.Interrupt_Priority'First; -- The priority under which we unmask interrupts. -- Useful when we use FIQ to simulate priorities on ARM. ------------------------ -- Context Management -- ------------------------ -- The run time stores a minimal amount of state in the thread context. -- Most state will be saved on the task's stack when calling a potentially -- blocking operation, or on the interrupt stack when the task is pre- -- empted. Most of the space is currently required for floating point -- state, which is saved lazily. -- The TMS570 processor needs to save: -- * 6 integer registers of 32 bits (r0, r1, PC, CPSR, R12, SP) -- for normal processing -- * 33 floating point registers of 32 bits (s0 .. s31, FPCSR) -- This amounts to 39 registers, rounded up to 40 for alignment. Context_Buffer_Capacity : constant := 40; ------------ -- Stacks -- ------------ Interrupt_Stack_Size : constant := 4096; -- bytes -- Size of each of the interrupt stacks. Each processor has its own -- set of interrupt stacks, one per interrupt priority. Interrupt_Sec_Stack_Size : constant := 128; -- Size of the secondary stack for interrupt handlers ---------- -- CPUS -- ---------- Max_Number_Of_CPUs : constant := 1; -- Maximum number of CPUs Multiprocessor : constant Boolean := Max_Number_Of_CPUs /= 1; -- Are we on a multiprocessor board? end System.BB.Parameters;
45.746269
78
0.521207
391c0ddd2df9f78c29cdfe72ce0e63018f19624f
18,591
adb
Ada
apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b/conv2d_b2b/hls_target/.autopilot/db/call.sched.adb
dillonhuff/Halide-HLS
e9f4c3ac7915e5a52f211ce65004ae17890515a0
[ "MIT" ]
1
2020-06-18T16:51:39.000Z
2020-06-18T16:51:39.000Z
apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b/conv2d_b2b/hls_target/.autopilot/db/call.sched.adb
dillonhuff/Halide-HLS
e9f4c3ac7915e5a52f211ce65004ae17890515a0
[ "MIT" ]
null
null
null
apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b/conv2d_b2b/hls_target/.autopilot/db/call.sched.adb
dillonhuff/Halide-HLS
e9f4c3ac7915e5a52f211ce65004ae17890515a0
[ "MIT" ]
1
2020-03-18T00:43:22.000Z
2020-03-18T00:43:22.000Z
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="14"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName></userIPName> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>call</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>in_stream_V_value_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>in_stream.V.value.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>out_stream_V_value_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>out_stream.V.value.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>72</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_3"> <Value> <Obj> <type>0</type> <id>8</id> <name>slice_stream_V_value</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</fileDirectory> <lineNumber>172</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</first> <second class_id="11" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="12" tracking_level="0" version="0"> <first class_id="13" tracking_level="0" version="0"> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>172</second> </item> </second> </item> </inlineStackInfo> <originalName>slice_stream.V.value.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>24</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>17</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_4"> <Value> <Obj> <type>0</type> <id>12</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>19</item> <item>20</item> <item>21</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_5"> <Value> <Obj> <type>0</type> <id>13</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>23</item> <item>24</item> <item>25</item> <item>135</item> <item>136</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_6"> <Value> <Obj> <type>0</type> <id>14</id> <name></name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</fileDirectory> <lineNumber>219</lineNumber> <contextFuncName>call</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d_b2b</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>call</second> </first> <second>219</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_7"> <Value> <Obj> <type>2</type> <id>16</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_8"> <Value> <Obj> <type>2</type> <id>18</id> <name>call_Loop_LB2D_buf_p</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:call_Loop_LB2D_buf_p&gt;</content> </item> <item class_id_reference="16" object_id="_9"> <Value> <Obj> <type>2</type> <id>22</id> <name>call_Loop_LB2D_shift</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:call_Loop_LB2D_shift&gt;</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_10"> <Obj> <type>3</type> <id>15</id> <name>call</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>8</item> <item>12</item> <item>13</item> <item>14</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>9</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_11"> <id>17</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>8</sink_obj> </item> <item class_id_reference="20" object_id="_12"> <id>19</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_13"> <id>20</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_14"> <id>21</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_15"> <id>23</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_16"> <id>24</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_17"> <id>25</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_18"> <id>135</id> <edge_type>4</edge_type> <source_obj>12</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_19"> <id>136</id> <edge_type>4</edge_type> <source_obj>12</source_obj> <sink_obj>13</sink_obj> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_20"> <mId>1</mId> <mTag>call</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>15</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>2077921</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>1</mIsDfPipe> <mDfPipe class_id="23" tracking_level="1" version="0" object_id="_21"> <port_list class_id="24" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </port_list> <process_list class_id="25" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_22"> <type>0</type> <name>call_Loop_LB2D_buf_p_U0</name> <ssdmobj_id>12</ssdmobj_id> <pins class_id="27" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_23"> <port class_id="29" tracking_level="1" version="0" object_id="_24"> <name>in_stream_V_value_V</name> <dir>0</dir> <type>0</type> </port> <inst class_id="30" tracking_level="1" version="0" object_id="_25"> <type>0</type> <name>call_Loop_LB2D_buf_p_U0</name> <ssdmobj_id>12</ssdmobj_id> </inst> </item> <item class_id_reference="28" object_id="_26"> <port class_id_reference="29" object_id="_27"> <name>slice_stream_V_value_V</name> <dir>0</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_25"></inst> </item> </pins> </item> <item class_id_reference="26" object_id="_28"> <type>0</type> <name>call_Loop_LB2D_shift_U0</name> <ssdmobj_id>13</ssdmobj_id> <pins> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_29"> <port class_id_reference="29" object_id="_30"> <name>slice_stream_V_value_V</name> <dir>0</dir> <type>0</type> </port> <inst class_id_reference="30" object_id="_31"> <type>0</type> <name>call_Loop_LB2D_shift_U0</name> <ssdmobj_id>13</ssdmobj_id> </inst> </item> <item class_id_reference="28" object_id="_32"> <port class_id_reference="29" object_id="_33"> <name>out_stream_V_value_V</name> <dir>0</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_31"></inst> </item> </pins> </item> </process_list> <channel_list class_id="31" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="32" tracking_level="1" version="0" object_id="_34"> <type>1</type> <name>slice_stream_V_value</name> <ssdmobj_id>8</ssdmobj_id> <ctype>0</ctype> <depth>1</depth> <bitwidth>24</bitwidth> <source class_id_reference="28" object_id="_35"> <port class_id_reference="29" object_id="_36"> <name>in</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_25"></inst> </source> <sink class_id_reference="28" object_id="_37"> <port class_id_reference="29" object_id="_38"> <name>out</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_31"></inst> </sink> </item> </channel_list> <net_list class_id="33" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </net_list> </mDfPipe> </item> </cdfg_regions> <fsm class_id="-1"></fsm> <res class_id="-1"></res> <node_label_latency class_id="36" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="37" tracking_level="0" version="0"> <first>8</first> <second class_id="38" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>12</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>13</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>14</first> <second> <first>3</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="39" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="40" tracking_level="0" version="0"> <first>15</first> <second class_id="41" tracking_level="0" version="0"> <first>0</first> <second>3</second> </second> </item> </bblk_ent_exit> <regions class_id="42" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="43" tracking_level="1" version="0" object_id="_39"> <region_name>call</region_name> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>15</item> </basic_blocks> <nodes> <count>12</count> <item_version>0</item_version> <item>3</item> <item>4</item> <item>5</item> <item>6</item> <item>7</item> <item>8</item> <item>9</item> <item>10</item> <item>11</item> <item>12</item> <item>13</item> <item>14</item> </nodes> <anchor_node>-1</anchor_node> <region_type>16</region_type> <interval>0</interval> <pipe_depth>0</pipe_depth> </item> </regions> <dp_fu_nodes class_id="44" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_fu_nodes> <dp_fu_nodes_expression class_id="45" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="46" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>0</count> <item_version>0</item_version> </dp_reg_nodes> <dp_regname_nodes> <count>0</count> <item_version>0</item_version> </dp_regname_nodes> <dp_reg_phi> <count>0</count> <item_version>0</item_version> </dp_reg_phi> <dp_regname_phi> <count>0</count> <item_version>0</item_version> </dp_regname_phi> <dp_port_io_nodes class_id="47" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_port_io_nodes> <port2core class_id="48" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
29.139498
139
0.617127
39cc3900e2746e389305d6ea95b06d2ad1cecba4
18,544
ads
Ada
demo/src/stm32f4-gpio.ads
e3l6/SSMDev
2929757aab3842aefd84debb2d7c3e8b28c2b340
[ "MIT" ]
null
null
null
demo/src/stm32f4-gpio.ads
e3l6/SSMDev
2929757aab3842aefd84debb2d7c3e8b28c2b340
[ "MIT" ]
null
null
null
demo/src/stm32f4-gpio.ads
e3l6/SSMDev
2929757aab3842aefd84debb2d7c3e8b28c2b340
[ "MIT" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT EXAMPLE -- -- -- -- Copyright (C) 2014, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This file provides definitions for the GPIO ports on the STM32F4 (ARM -- Cortex M4F) microcontrollers from ST Microelectronics. pragma Restrictions (No_Elaboration_Code); package STM32F4.GPIO is type GPIO_Port is limited private; function Current_Input (Port : GPIO_Port) return Half_Word with Inline; -- Returns the value of the Port's input data register function Current_Output (Port : GPIO_Port) return Half_Word with Inline; -- Returns the value of the Port's output data register procedure Write_Output (Port : in out GPIO_Port; Data : Half_Word) with Inline; -- Sets the value of the Port's output data register to Data. All bits -- in the register are affected. type GPIO_Pin is (Pin_0, Pin_1, Pin_2, Pin_3, Pin_4, Pin_5, Pin_6, Pin_7, Pin_8, Pin_9, Pin_10, Pin_11, Pin_12, Pin_13, Pin_14, Pin_15); for GPIO_Pin use (Pin_0 => 16#0001#, Pin_1 => 16#0002#, Pin_2 => 16#0004#, Pin_3 => 16#0008#, Pin_4 => 16#0010#, Pin_5 => 16#0020#, Pin_6 => 16#0040#, Pin_7 => 16#0080#, Pin_8 => 16#0100#, Pin_9 => 16#0200#, Pin_10 => 16#0400#, Pin_11 => 16#0800#, Pin_12 => 16#1000#, Pin_13 => 16#2000#, Pin_14 => 16#4000#, Pin_15 => 16#8000#); for GPIO_Pin'Size use 16; -- for compatibility with hardware registers pragma Compile_Time_Error (not (GPIO_Pin'First = Pin_0 and GPIO_Pin'Last = Pin_15 and Pin_0'Enum_Rep = 2 ** 0 and Pin_1'Enum_Rep = 2 ** 1 and Pin_2'Enum_Rep = 2 ** 2 and Pin_3'Enum_Rep = 2 ** 3 and Pin_4'Enum_Rep = 2 ** 4 and Pin_5'Enum_Rep = 2 ** 5 and Pin_6'Enum_Rep = 2 ** 6 and Pin_7'Enum_Rep = 2 ** 7 and Pin_8'Enum_Rep = 2 ** 8 and Pin_9'Enum_Rep = 2 ** 9 and Pin_10'Enum_Rep = 2 ** 10 and Pin_11'Enum_Rep = 2 ** 11 and Pin_12'Enum_Rep = 2 ** 12 and Pin_13'Enum_Rep = 2 ** 13 and Pin_14'Enum_Rep = 2 ** 14 and Pin_15'Enum_Rep = 2 ** 15), "Invalid representation for type GPIO_Pin"); type GPIO_Pins is array (Positive range <>) of GPIO_Pin; -- Note that, in addition to aggregates, the language-defined catenation -- operator "&" is available for types GPIO_Pin and GPIO_Pins, allowing one -- to construct GPIO_Pins values conveniently All_Pins : constant GPIO_Pins := (Pin_0, Pin_1, Pin_2, Pin_3, Pin_4, Pin_5, Pin_6, Pin_7, Pin_8, Pin_9, Pin_10, Pin_11, Pin_12, Pin_13, Pin_14, Pin_15); function Is_Any_Set (Port : GPIO_Port; Pins : GPIO_Pins) return Boolean with Inline; -- Returns True if any one of the bits specified by Pins is set (not zero) -- in the Port input data register; returns False otherwise. function Is_Set (Port : GPIO_Port; Pins : GPIO_Pins) return Boolean renames Is_Any_Set; -- for the sake of readability when only one pin is specified in GPIO_Pins function Is_Set (Port : GPIO_Port; Pin : GPIO_Pin) return Boolean with Inline; function All_Set (Port : GPIO_Port; Pins : GPIO_Pins) return Boolean with Inline; -- Returns True iff all of the bits specified by Pins are set (not zero) in -- the Port input data register; returns False otherwise. procedure Set (Port : in out GPIO_Port; Pin : GPIO_Pin) with Inline, Post => Is_Set (Port, Pin); -- For the given GPIO port, sets the pins specified by Pin to -- one. Other pins are unaffected. procedure Set (Port : in out GPIO_Port; Pins : GPIO_Pins) with Inline, Post => All_Set (Port, Pins); -- For the given GPIO port, sets of all of the pins specified by Pins to -- one. Other pins are unaffected. procedure Clear (Port : in out GPIO_Port; Pin : GPIO_Pin) with Inline, Post => not Is_Set (Port, Pin); -- For the given GPIO port, sets the pin specified by Pin to -- zero. Other pins are unaffected. procedure Clear (Port : in out GPIO_Port; Pins : GPIO_Pins) with Inline, Post => not All_Set (Port, Pins); -- For the given GPIO port, sets of all of the pins specified by Pins to -- zero. Other pins are unaffected. procedure Toggle (Port : in out GPIO_Port; Pin : GPIO_Pin) with Inline, Post => (if Is_Set (Port, Pin)'Old then not Is_Set (Port, Pin) else Is_Set (Port, Pin)); -- For the given GPIO port, negates the pin specified by Pin (ones -- become zeros and vice versa). Other pins are unaffected. procedure Toggle (Port : in out GPIO_Port; Pins : GPIO_Pins) with Inline; -- For the given GPIO port, negates all of the pins specified by Pins (ones -- become zeros and vice versa). Other pins are unaffected. procedure Lock (Port : in out GPIO_Port; Pin : GPIO_Pin) with Pre => not Locked (Port, Pin), Post => Locked (Port, Pin); -- Lock configuration of the given port until the MCU is reset function Locked (Port : GPIO_Port; Pin : GPIO_Pin) return Boolean with Inline; procedure Lock (Port : in out GPIO_Port; Pins : GPIO_Pins) with Pre => (for all Pin of Pins => (not Locked (Port, Pin))), Post => (for all Pin of Pins => (Locked (Port, Pin))); -- Lock configuration of the specified pins on the given port until the MCU -- is reset type Pin_IO_Modes is (Mode_In, Mode_Out, Mode_AF, Mode_Analog); for Pin_IO_Modes use (Mode_In => 0, Mode_Out => 1, Mode_AF => 2, Mode_Analog => 3); for Pin_IO_Modes'Size use 2; type Pin_Output_Types is (Push_Pull, Open_Drain); for Pin_Output_Types use (Push_Pull => 0, Open_Drain => 1); for Pin_Output_Types'Size use 1; type Pin_Output_Speeds is (Speed_2MHz, Speed_25MHz, Speed_50MHz, Speed_100MHz); for Pin_Output_Speeds use (Speed_2MHz => 0, Speed_25MHz => 1, Speed_50MHz => 2, Speed_100MHz => 3); for Pin_Output_Speeds'Size use 2; type Internal_Pin_Resistors is (Floating, Pull_Up, Pull_Down); for Internal_Pin_Resistors use (Floating => 0, Pull_Up => 1, Pull_Down => 2); for Internal_Pin_Resistors'Size use 2; type GPIO_Port_Configuration is record Mode : Pin_IO_Modes; Output_Type : Pin_Output_Types; Speed : Pin_Output_Speeds; Resistors : Internal_Pin_Resistors; Locked : Boolean := False; end record; procedure Configure_IO (Port : in out GPIO_Port; Pin : GPIO_Pin; Config : GPIO_Port_Configuration); -- For Pin on the specified Port, configures the -- characteristics specified by Config procedure Configure_IO (Port : in out GPIO_Port; Pins : GPIO_Pins; Config : GPIO_Port_Configuration); -- For each pin of Pins on the specified Port, configures the -- characteristics specified by Config type External_Triggers is (Interrupt_Rising_Edge, Interrupt_Falling_Edge, Interrupt_Rising_Falling_Edge, Event_Rising_Edge, Event_Falling_Edge, Event_Rising_Falling_Edge); subtype Interrupt_Triggers is External_Triggers range Interrupt_Rising_Edge .. Interrupt_Rising_Falling_Edge; subtype Event_Triggers is External_Triggers range Event_Rising_Edge .. Event_Rising_Falling_Edge; procedure Configure_Trigger (Port : in out GPIO_Port; Pin : GPIO_Pin; Trigger : External_Triggers); -- For Pin on the specified Port, configures the -- characteristics specified by Trigger procedure Configure_Trigger (Port : in out GPIO_Port; Pins : GPIO_Pins; Trigger : External_Triggers); -- For each pin of Pins on the specified Port, configures the -- characteristics specified by Trigger type GPIO_Alternate_Function is private; procedure Configure_Alternate_Function (Port : in out GPIO_Port; Pin : GPIO_Pin; AF : GPIO_Alternate_Function); -- For Pin on the specified Port, sets the alternate function -- specified by AF procedure Configure_Alternate_Function (Port : in out GPIO_Port; Pins : GPIO_Pins; AF : GPIO_Alternate_Function); -- For each pin of Pins on the specified Port, sets the alternate function -- specified by AF GPIO_AF_RTC_50Hz : constant GPIO_Alternate_Function; GPIO_AF_MCO : constant GPIO_Alternate_Function; GPIO_AF_TAMPER : constant GPIO_Alternate_Function; GPIO_AF_SWJ : constant GPIO_Alternate_Function; GPIO_AF_TRACE : constant GPIO_Alternate_Function; GPIO_AF_TIM1 : constant GPIO_Alternate_Function; GPIO_AF_TIM2 : constant GPIO_Alternate_Function; GPIO_AF_TIM3 : constant GPIO_Alternate_Function; GPIO_AF_TIM4 : constant GPIO_Alternate_Function; GPIO_AF_TIM5 : constant GPIO_Alternate_Function; GPIO_AF_TIM8 : constant GPIO_Alternate_Function; GPIO_AF_TIM9 : constant GPIO_Alternate_Function; GPIO_AF_TIM10 : constant GPIO_Alternate_Function; GPIO_AF_TIM11 : constant GPIO_Alternate_Function; GPIO_AF_I2C1 : constant GPIO_Alternate_Function; GPIO_AF_I2C2 : constant GPIO_Alternate_Function; GPIO_AF_I2C3 : constant GPIO_Alternate_Function; GPIO_AF_SPI1 : constant GPIO_Alternate_Function; GPIO_AF_SPI2 : constant GPIO_Alternate_Function; GPIO_AF5_I2S3ext : constant GPIO_Alternate_Function; GPIO_AF_SPI5 : constant GPIO_Alternate_Function; GPIO_AF_SPI3 : constant GPIO_Alternate_Function; GPIO_AF_I2S2ext : constant GPIO_Alternate_Function; GPIO_AF_USART1 : constant GPIO_Alternate_Function; GPIO_AF_USART2 : constant GPIO_Alternate_Function; GPIO_AF_USART3 : constant GPIO_Alternate_Function; GPIO_AF7_I2S3ext : constant GPIO_Alternate_Function; GPIO_AF_USART4 : constant GPIO_Alternate_Function; GPIO_AF_USART5 : constant GPIO_Alternate_Function; GPIO_AF_USART6 : constant GPIO_Alternate_Function; GPIO_AF_CAN1 : constant GPIO_Alternate_Function; GPIO_AF_CAN2 : constant GPIO_Alternate_Function; GPIO_AF_TIM12 : constant GPIO_Alternate_Function; GPIO_AF_TIM13 : constant GPIO_Alternate_Function; GPIO_AF_TIM14 : constant GPIO_Alternate_Function; GPIO_AF_LTDC_2 : constant GPIO_Alternate_Function; GPIO_AF_OTG_FS : constant GPIO_Alternate_Function; GPIO_AF_OTG_HS : constant GPIO_Alternate_Function; GPIO_AF_ETH : constant GPIO_Alternate_Function; GPIO_AF_FSMC : constant GPIO_Alternate_Function; GPIO_AF_OTG_HS_FS : constant GPIO_Alternate_Function; GPIO_AF_SDIO : constant GPIO_Alternate_Function; GPIO_AF_FMC : constant GPIO_Alternate_Function; GPIO_AF_DCMI : constant GPIO_Alternate_Function; GPIO_AF_LTDC : constant GPIO_Alternate_Function; GPIO_AF_EVENTOUT : constant GPIO_Alternate_Function; private type Reserved_246X32 is array (1 .. 246) of Word with Component_Size => 32, Size => 246*32; type Bits_16x4 is array (0 .. 15) of Bits_4 with Component_Size => 4, Size => 64; type Pin_Modes_Register is array (0 .. 15) of Pin_IO_Modes; for Pin_Modes_Register'Component_Size use Pin_IO_Modes'Size; type Output_Types_Register is array (0 .. 31) of Pin_Output_Types; for Output_Types_Register'Component_Size use Pin_Output_Types'Size; type Output_Speeds_Register is array (0 .. 15) of Pin_Output_Speeds; for Output_Speeds_Register'Component_Size use Pin_Output_Speeds'Size; type Resistors_Register is array (0 .. 15) of Internal_Pin_Resistors; for Resistors_Register'Component_Size use Internal_Pin_Resistors'Size; type GPIO_Port is limited record MODER : Pin_Modes_Register; OTYPER : Output_Types_Register; OSPEEDR : Output_Speeds_Register; PUPDR : Resistors_Register; IDR : Half_Word; -- input data register Reserved_1 : Half_Word; ODR : Half_Word; -- output data register Reserved_2 : Half_Word; BSRR_Set : Half_Word; -- bit set register BSRR_Reset : Half_Word; -- bit reset register LCKR : Word; pragma Atomic (LCKR); -- configuration lock register AFR : Bits_16x4; -- alternate function registers Reserved_4 : Reserved_246x32; end record with Volatile, Size => 16#400# * 8; for GPIO_Port use record MODER at 0 range 0 .. 31; OTYPER at 4 range 0 .. 31; OSPEEDR at 8 range 0 .. 31; PUPDR at 12 range 0 .. 31; IDR at 16 range 0 .. 15; Reserved_1 at 18 range 0 .. 15; ODR at 20 range 0 .. 15; Reserved_2 at 22 range 0 .. 15; BSRR_Set at 24 range 0 .. 15; BSRR_Reset at 26 range 0 .. 15; LCKR at 28 range 0 .. 31; AFR at 32 range 0 .. 63; Reserved_4 at 40 range 0 .. 7871; end record; LCCK : constant Word := 16#0001_0000#; -- As per the Reference Manual (RM0090; Doc ID 018909 Rev 6) pg 282, -- this is the "Lock Key" used to control the locking of port/pin -- configurations. It is bit 16 in the lock register (LCKR) of any -- given port, thus the first bit of the upper 16 bits of the word. type GPIO_Alternate_Function is new Bits_4; -- We cannot use an enumeration type because there are duplicate binary -- values GPIO_AF_RTC_50Hz : constant GPIO_Alternate_Function := 0; GPIO_AF_MCO : constant GPIO_Alternate_Function := 0; GPIO_AF_TAMPER : constant GPIO_Alternate_Function := 0; GPIO_AF_SWJ : constant GPIO_Alternate_Function := 0; GPIO_AF_TRACE : constant GPIO_Alternate_Function := 0; GPIO_AF_TIM1 : constant GPIO_Alternate_Function := 1; GPIO_AF_TIM2 : constant GPIO_Alternate_Function := 1; GPIO_AF_TIM3 : constant GPIO_Alternate_Function := 2; GPIO_AF_TIM4 : constant GPIO_Alternate_Function := 2; GPIO_AF_TIM5 : constant GPIO_Alternate_Function := 2; GPIO_AF_TIM8 : constant GPIO_Alternate_Function := 3; GPIO_AF_TIM9 : constant GPIO_Alternate_Function := 3; GPIO_AF_TIM10 : constant GPIO_Alternate_Function := 3; GPIO_AF_TIM11 : constant GPIO_Alternate_Function := 3; GPIO_AF_I2C1 : constant GPIO_Alternate_Function := 4; GPIO_AF_I2C2 : constant GPIO_Alternate_Function := 4; GPIO_AF_I2C3 : constant GPIO_Alternate_Function := 4; GPIO_AF_SPI1 : constant GPIO_Alternate_Function := 5; GPIO_AF_SPI2 : constant GPIO_Alternate_Function := 5; GPIO_AF5_I2S3ext : constant GPIO_Alternate_Function := 5; GPIO_AF_SPI5 : constant GPIO_Alternate_Function := 5; GPIO_AF_SPI3 : constant GPIO_Alternate_Function := 6; GPIO_AF_I2S2ext : constant GPIO_Alternate_Function := 6; GPIO_AF_USART1 : constant GPIO_Alternate_Function := 7; GPIO_AF_USART2 : constant GPIO_Alternate_Function := 7; GPIO_AF_USART3 : constant GPIO_Alternate_Function := 7; GPIO_AF7_I2S3ext : constant GPIO_Alternate_Function := 7; GPIO_AF_USART4 : constant GPIO_Alternate_Function := 8; GPIO_AF_USART5 : constant GPIO_Alternate_Function := 8; GPIO_AF_USART6 : constant GPIO_Alternate_Function := 8; GPIO_AF_CAN1 : constant GPIO_Alternate_Function := 9; GPIO_AF_CAN2 : constant GPIO_Alternate_Function := 9; GPIO_AF_TIM12 : constant GPIO_Alternate_Function := 9; GPIO_AF_TIM13 : constant GPIO_Alternate_Function := 9; GPIO_AF_TIM14 : constant GPIO_Alternate_Function := 9; GPIO_AF_LTDC_2 : constant GPIO_Alternate_Function := 9; GPIO_AF_OTG_FS : constant GPIO_Alternate_Function := 10; GPIO_AF_OTG_HS : constant GPIO_Alternate_Function := 10; GPIO_AF_ETH : constant GPIO_Alternate_Function := 11; GPIO_AF_FSMC : constant GPIO_Alternate_Function := 12; GPIO_AF_OTG_HS_FS : constant GPIO_Alternate_Function := 12; GPIO_AF_SDIO : constant GPIO_Alternate_Function := 12; GPIO_AF_FMC : constant GPIO_Alternate_Function := 12; GPIO_AF_DCMI : constant GPIO_Alternate_Function := 13; GPIO_AF_LTDC : constant GPIO_Alternate_Function := 14; GPIO_AF_EVENTOUT : constant GPIO_Alternate_Function := 15; end STM32F4.GPIO;
42.82679
95
0.648458
105dd3fee21612eb0ac07ea2e171c70e78b69e2c
3,059
ads
Ada
tools-src/gnu/gcc/gcc/ada/s-proinf.ads
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
80
2015-01-02T10:14:04.000Z
2021-06-07T06:29:49.000Z
tools-src/gnu/gcc/gcc/ada/s-proinf.ads
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
9
2015-05-14T11:03:12.000Z
2018-01-04T07:12:58.000Z
tools-src/gnu/gcc/gcc/ada/s-proinf.ads
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
69
2015-01-02T10:45:56.000Z
2021-09-06T07:52:13.000Z
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S Y S T E M . P R O G R A M _ I N F O -- -- -- -- S p e c -- -- -- -- $Revision$ -- -- -- Copyright (C) 1996 Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, -- -- MA 02111-1307, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package contains the definitions and routines used as parameters -- to the run-time system at program startup. package System.Program_Info is function Default_Task_Stack return Integer; -- -- The default stack size for each created thread. This default value -- can be overriden on a per-task basis by the language-defined -- Storage_Size pragma. -- end System.Program_Info;
63.729167
78
0.437725
0b074ad8993d2eb8a47774f4574a8070fc647198
441
ada
Ada
Task/Fork/Ada/fork.ada
mullikine/RosettaCodeData
4f0027c6ce83daa36118ee8b67915a13cd23ab67
[ "Info-ZIP" ]
1
2018-11-09T22:08:38.000Z
2018-11-09T22:08:38.000Z
Task/Fork/Ada/fork.ada
mullikine/RosettaCodeData
4f0027c6ce83daa36118ee8b67915a13cd23ab67
[ "Info-ZIP" ]
null
null
null
Task/Fork/Ada/fork.ada
mullikine/RosettaCodeData
4f0027c6ce83daa36118ee8b67915a13cd23ab67
[ "Info-ZIP" ]
1
2018-11-09T22:08:40.000Z
2018-11-09T22:08:40.000Z
with Ada.Text_IO, POSIX.Process_Identification, POSIX.Unsafe_Process_Primitives; procedure Fork is use Ada.Text_IO, POSIX.Process_Identification, POSIX.Unsafe_Process_Primitives; begin if Fork = Null_Process_ID then Put_Line ("This is the new process."); else Put_Line ("This is the original process."); end if; exception when others => Put_Line ("Something went wrong."); end Fork;
23.210526
49
0.693878
1c21bee9305d7d4dd8490431dda595226acf9920
30
ada
Ada
model/mcada/templates/package/t.typeref.ada
cortlandstarrett/mcada
d1a7a818f91459d53bd5b9354bc7d78e2c5d4518
[ "Apache-2.0" ]
null
null
null
model/mcada/templates/package/t.typeref.ada
cortlandstarrett/mcada
d1a7a818f91459d53bd5b9354bc7d78e2c5d4518
[ "Apache-2.0" ]
null
null
null
model/mcada/templates/package/t.typeref.ada
cortlandstarrett/mcada
d1a7a818f91459d53bd5b9354bc7d78e2c5d4518
[ "Apache-2.0" ]
1
2021-06-08T19:44:04.000Z
2021-06-08T19:44:04.000Z
${package_scope}${self.body}\
15
29
0.7
106af1011db4130bef870c53a8f3f9502476ef2c
10,994
adb
Ada
source/web/spikedog/aws/matreshka-servlet_servers-aws_servers.adb
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
24
2016-11-29T06:59:41.000Z
2021-08-30T11:55:16.000Z
source/web/spikedog/aws/matreshka-servlet_servers-aws_servers.adb
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
2
2019-01-16T05:15:20.000Z
2019-02-03T10:03:32.000Z
source/web/spikedog/aws/matreshka-servlet_servers-aws_servers.adb
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
4
2017-07-18T07:11:05.000Z
2020-06-21T03:02:25.000Z
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Web Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014-2018, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Ada.Synchronous_Task_Control; with GNAT.Ctrl_C; with AWS.Config.Set; with AWS.Default; with AWS.Net.WebSocket.Registry.Control; with AWS.Response; with AWS.Server.Log; with AWS.Status; with League.Holders; with League.Settings; with League.Strings; with Matreshka.Servlet_AWS_Requests; with Matreshka.Servlet_AWS_Responses; with Matreshka.Servlet_Containers; with Servlet.HTTP_Responses; with Servlet.HTTP_Upgrade_Handlers; with Web_Socket.Handlers.AWS_Handlers; package body Matreshka.Servlet_Servers.AWS_Servers is Config : AWS.Config.Object := AWS.Config.Get_Current; -- Initialize config from .ini file Server : AWS.Server.HTTP; Shutdown_Request : Ada.Synchronous_Task_Control.Suspension_Object; Container : Matreshka.Servlet_Containers.Servlet_Container_Access; procedure Shutdown_Request_Handler; -- Interrupt handler to process shutdown request from the operating system. task Shutdown_Controller is entry Start; end Shutdown_Controller; function Request_Callback (Request : AWS.Status.Data) return AWS.Response.Data; -- Handles request. function WebSocket_Callback (Socket : AWS.Net.Socket_Access; Request : AWS.Status.Data) return AWS.Net.WebSocket.Object'Class; -- Handles request of WebSocket connection. procedure Read_Setting (Config : in out AWS.Config.Object; Settings : League.Settings.Settings; Name : Wide_Wide_String; Default : String); -- Read setting with given Name or set Default if no such setting. -------------- -- Finalize -- -------------- procedure Finalize (Self : not null access AWS_Server'Class) is begin Shutdown_Request_Handler; end Finalize; ---------------- -- Initialize -- ---------------- procedure Initialize (Self : not null access AWS_Server'Class) is function "+" (Text : Wide_Wide_String) return League.Strings.Universal_String renames League.Strings.To_Universal_String; Settings : League.Settings.Settings; Holder : League.Holders.Holder; begin AWS.Config.Set.Reuse_Address (Config, True); Read_Setting (Config, Settings, "max_post_parameters", "1_000_000"); -- Default number of POST parameters limited to 100, too small. Read_Setting (Config, Settings, "upload_size_limit", "1_000_000_000"); Read_Setting (Config, Settings, "server_port", "8080"); Read_Setting (Config, Settings, "upload_directory", "."); -- Upload_Directory is required to process files in POST parameters. Read_Setting (Config, Settings, "log_file_directory", "."); AWS.Server.Start (Server, Request_Callback'Access, Config); AWS.Server.Log.Start (Server); AWS.Server.Log.Start_Error (Server); AWS.Net.WebSocket.Registry.Register_Pattern ("/.*", WebSocket_Callback'Access); AWS.Net.WebSocket.Registry.Control.Start; Shutdown_Controller.Start; end Initialize; ------------------ -- Read_Setting -- ------------------ procedure Read_Setting (Config : in out AWS.Config.Object; Settings : League.Settings.Settings; Name : Wide_Wide_String; Default : String) is use type League.Strings.Universal_String; Holder : League.Holders.Holder; Setting : constant League.Strings.Universal_String := League.Strings.To_Universal_String (Name); Key : constant League.Strings.Universal_String := "/aws/" & Setting; begin if Settings.Contains (Key) then Holder := Settings.Value (Key); if League.Holders.Has_Tag (Holder, League.Holders.Universal_Integer_Tag) then AWS.Config.Set.Parameter (Config, Setting.To_UTF_8_String, League.Holders.Universal_Integer'Image (League.Holders.Element (Holder))); else AWS.Config.Set.Parameter (Config, Setting.To_UTF_8_String, League.Holders.Element (Holder).To_UTF_8_String); end if; else AWS.Config.Set.Parameter (Config, Setting.To_UTF_8_String, Default); end if; end Read_Setting; ---------------------- -- Request_Callback -- ---------------------- function Request_Callback (Request : AWS.Status.Data) return AWS.Response.Data is Servlet_Request : aliased Matreshka.Servlet_AWS_Requests.AWS_Servlet_Request; Servlet_Response : aliased Matreshka.Servlet_AWS_Responses.AWS_Servlet_Response; begin Matreshka.Servlet_AWS_Requests.Initialize (Servlet_Request, Request); Matreshka.Servlet_AWS_Responses.Initialize (Servlet_Response, Servlet_Request'Unchecked_Access); Container.Dispatch (Servlet_Request'Unchecked_Access, Servlet_Response'Unchecked_Access); return Result : constant AWS.Response.Data := Servlet_Response.Build do Servlet_Request.Finalize; end return; end Request_Callback; ------------------- -- Set_Container -- ------------------- overriding procedure Set_Container (Self : not null access AWS_Server; Container : Matreshka.Servlet_Containers.Servlet_Container_Access) is begin AWS_Servers.Container := Container; end Set_Container; ------------------------- -- Shutdown_Controller -- ------------------------- task body Shutdown_Controller is begin select accept Start; Ada.Synchronous_Task_Control.Set_False (Shutdown_Request); GNAT.Ctrl_C.Install_Handler (Shutdown_Request_Handler'Access); or terminate; end select; -- Wait till shutdown request was received. Ada.Synchronous_Task_Control.Suspend_Until_True (Shutdown_Request); -- Shutdown AWS server. AWS.Server.Shutdown (Server); end Shutdown_Controller; ------------------------------ -- Shutdown_Request_Handler -- ------------------------------ procedure Shutdown_Request_Handler is begin Ada.Synchronous_Task_Control.Set_True (Shutdown_Request); end Shutdown_Request_Handler; ------------------------ -- WebSocket_Callback -- ------------------------ function WebSocket_Callback (Socket : AWS.Net.Socket_Access; Request : AWS.Status.Data) return AWS.Net.WebSocket.Object'Class is use type Servlet.HTTP_Responses.Status_Code; use type Servlet.HTTP_Upgrade_Handlers.HTTP_Upgrade_Handler_Access; Servlet_Request : aliased Matreshka.Servlet_AWS_Requests.AWS_Servlet_Request; Servlet_Response : aliased Matreshka.Servlet_AWS_Responses.AWS_Servlet_Response; begin Matreshka.Servlet_AWS_Requests.Initialize (Servlet_Request, Request); Matreshka.Servlet_AWS_Responses.Initialize (Servlet_Response, Servlet_Request'Unchecked_Access); Container.Dispatch (Servlet_Request'Unchecked_Access, Servlet_Response'Unchecked_Access); if Servlet_Response.Get_Status = Servlet.HTTP_Responses.Switching_Protocols and then Servlet_Request.Get_Upgrade_Handler /= null then Servlet_Request.Finalize; return Web_Socket.Handlers.AWS_Handlers.Create (Socket, Request, Web_Socket.Handlers.AWS_Handlers.AWS_Web_Socket_Handler_Access (Servlet_Request.Get_Upgrade_Handler)); else Servlet_Request.Finalize; raise Program_Error; end if; end WebSocket_Callback; end Matreshka.Servlet_Servers.AWS_Servers;
37.016835
79
0.57968
1023fc5046446375474f2503dee2498dfb71a584
27,469
ads
Ada
gcc-gcc-7_3_0-release/gcc/ada/a-cbhase.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/ada/a-cbhase.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/ada/a-cbhase.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- A D A . C O N T A I N E R S . B O U N D E D _ H A S H E D _ S E T S -- -- -- -- S p e c -- -- -- -- Copyright (C) 2004-2015, Free Software Foundation, Inc. -- -- -- -- This specification is derived from the Ada Reference Manual for use with -- -- GNAT. The copyright notice above, and the license provisions that follow -- -- apply solely to the contents of the part following the private keyword. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- This unit was originally developed by Matthew J Heaney. -- ------------------------------------------------------------------------------ with Ada.Iterator_Interfaces; private with Ada.Containers.Hash_Tables; with Ada.Containers.Helpers; private with Ada.Streams; private with Ada.Finalization; use Ada.Finalization; generic type Element_Type is private; with function Hash (Element : Element_Type) return Hash_Type; with function Equivalent_Elements (Left, Right : Element_Type) return Boolean; with function "=" (Left, Right : Element_Type) return Boolean is <>; package Ada.Containers.Bounded_Hashed_Sets is pragma Annotate (CodePeer, Skip_Analysis); pragma Pure; pragma Remote_Types; type Set (Capacity : Count_Type; Modulus : Hash_Type) is tagged private with Constant_Indexing => Constant_Reference, Default_Iterator => Iterate, Iterator_Element => Element_Type; pragma Preelaborable_Initialization (Set); type Cursor is private; pragma Preelaborable_Initialization (Cursor); Empty_Set : constant Set; -- Set objects declared without an initialization expression are -- initialized to the value Empty_Set. No_Element : constant Cursor; -- Cursor objects declared without an initialization expression are -- initialized to the value No_Element. function Has_Element (Position : Cursor) return Boolean; -- Equivalent to Position /= No_Element package Set_Iterator_Interfaces is new Ada.Iterator_Interfaces (Cursor, Has_Element); function "=" (Left, Right : Set) return Boolean; -- For each element in Left, set equality attempts to find the equal -- element in Right; if a search fails, then set equality immediately -- returns False. The search works by calling Hash to find the bucket in -- the Right set that corresponds to the Left element. If the bucket is -- non-empty, the search calls the generic formal element equality operator -- to compare the element (in Left) to the element of each node in the -- bucket (in Right); the search terminates when a matching node in the -- bucket is found, or the nodes in the bucket are exhausted. (Note that -- element equality is called here, not Equivalent_Elements. Set equality -- is the only operation in which element equality is used. Compare set -- equality to Equivalent_Sets, which does call Equivalent_Elements.) function Equivalent_Sets (Left, Right : Set) return Boolean; -- Similar to set equality, with the difference that the element in Left is -- compared to the elements in Right using the generic formal -- Equivalent_Elements operation instead of element equality. function To_Set (New_Item : Element_Type) return Set; -- Constructs a singleton set comprising New_Element. To_Set calls Hash to -- determine the bucket for New_Item. function Capacity (Container : Set) return Count_Type; -- Returns the current capacity of the set. Capacity is the maximum length -- before which rehashing in guaranteed not to occur. procedure Reserve_Capacity (Container : in out Set; Capacity : Count_Type); -- If the value of the Capacity actual parameter is less or equal to -- Container.Capacity, then the operation has no effect. Otherwise it -- raises Capacity_Error (as no expansion of capacity is possible for a -- bounded form). function Default_Modulus (Capacity : Count_Type) return Hash_Type; -- Returns a modulus value (hash table size) which is optimal for the -- specified capacity (which corresponds to the maximum number of items). function Length (Container : Set) return Count_Type; -- Returns the number of items in the set function Is_Empty (Container : Set) return Boolean; -- Equivalent to Length (Container) = 0 procedure Clear (Container : in out Set); -- Removes all of the items from the set function Element (Position : Cursor) return Element_Type; -- Returns the element of the node designated by the cursor procedure Replace_Element (Container : in out Set; Position : Cursor; New_Item : Element_Type); -- If New_Item is equivalent (as determined by calling Equivalent_Elements) -- to the element of the node designated by Position, then New_Element is -- assigned to that element. Otherwise, it calls Hash to determine the -- bucket for New_Item. If the bucket is not empty, then it calls -- Equivalent_Elements for each node in that bucket to determine whether -- New_Item is equivalent to an element in that bucket. If -- Equivalent_Elements returns True then Program_Error is raised (because -- an element may appear only once in the set); otherwise, New_Item is -- assigned to the node designated by Position, and the node is moved to -- its new bucket. procedure Query_Element (Position : Cursor; Process : not null access procedure (Element : Element_Type)); -- Calls Process with the element (having only a constant view) of the node -- designated by the cursor. type Constant_Reference_Type (Element : not null access constant Element_Type) is private with Implicit_Dereference => Element; function Constant_Reference (Container : aliased Set; Position : Cursor) return Constant_Reference_Type; procedure Assign (Target : in out Set; Source : Set); -- If Target denotes the same object as Source, then the operation has no -- effect. If the Target capacity is less than the Source length, then -- Assign raises Capacity_Error. Otherwise, Assign clears Target and then -- copies the (active) elements from Source to Target. function Copy (Source : Set; Capacity : Count_Type := 0; Modulus : Hash_Type := 0) return Set; -- Constructs a new set object whose elements correspond to Source. If the -- Capacity parameter is 0, then the capacity of the result is the same as -- the length of Source. If the Capacity parameter is equal or greater than -- the length of Source, then the capacity of the result is the specified -- value. Otherwise, Copy raises Capacity_Error. If the Modulus parameter -- is 0, then the modulus of the result is the value returned by a call to -- Default_Modulus with the capacity parameter determined as above; -- otherwise the modulus of the result is the specified value. procedure Move (Target : in out Set; Source : in out Set); -- Clears Target (if it's not empty), and then moves (not copies) the -- buckets array and nodes from Source to Target. procedure Insert (Container : in out Set; New_Item : Element_Type; Position : out Cursor; Inserted : out Boolean); -- Conditionally inserts New_Item into the set. If New_Item is already in -- the set, then Inserted returns False and Position designates the node -- containing the existing element (which is not modified). If New_Item is -- not already in the set, then Inserted returns True and Position -- designates the newly-inserted node containing New_Item. The search for -- an existing element works as follows. Hash is called to determine -- New_Item's bucket; if the bucket is non-empty, then Equivalent_Elements -- is called to compare New_Item to the element of each node in that -- bucket. If the bucket is empty, or there were no equivalent elements in -- the bucket, the search "fails" and the New_Item is inserted in the set -- (and Inserted returns True); otherwise, the search "succeeds" (and -- Inserted returns False). procedure Insert (Container : in out Set; New_Item : Element_Type); -- Attempts to insert New_Item into the set, performing the usual insertion -- search (which involves calling both Hash and Equivalent_Elements); if -- the search succeeds (New_Item is equivalent to an element already in the -- set, and so was not inserted), then this operation raises -- Constraint_Error. (This version of Insert is similar to Replace, but -- having the opposite exception behavior. It is intended for use when you -- want to assert that the item is not already in the set.) procedure Include (Container : in out Set; New_Item : Element_Type); -- Attempts to insert New_Item into the set. If an element equivalent to -- New_Item is already in the set (the insertion search succeeded, and -- hence New_Item was not inserted), then the value of New_Item is assigned -- to the existing element. (This insertion operation only raises an -- exception if cursor tampering occurs. It is intended for use when you -- want to insert the item in the set, and you don't care whether an -- equivalent element is already present.) procedure Replace (Container : in out Set; New_Item : Element_Type); -- Searches for New_Item in the set; if the search fails (because an -- equivalent element was not in the set), then it raises -- Constraint_Error. Otherwise, the existing element is assigned the value -- New_Item. (This is similar to Insert, but with the opposite exception -- behavior. It is intended for use when you want to assert that the item -- is already in the set.) procedure Exclude (Container : in out Set; Item : Element_Type); -- Searches for Item in the set, and if found, removes its node from the -- set and then deallocates it. The search works as follows. The operation -- calls Hash to determine the item's bucket; if the bucket is not empty, -- it calls Equivalent_Elements to compare Item to the element of each node -- in the bucket. (This is the deletion analog of Include. It is intended -- for use when you want to remove the item from the set, but don't care -- whether the item is already in the set.) procedure Delete (Container : in out Set; Item : Element_Type); -- Searches for Item in the set (which involves calling both Hash and -- Equivalent_Elements). If the search fails, then the operation raises -- Constraint_Error. Otherwise it removes the node from the set and then -- deallocates it. (This is the deletion analog of non-conditional -- Insert. It is intended for use when you want to assert that the item is -- already in the set.) procedure Delete (Container : in out Set; Position : in out Cursor); -- Removes the node designated by Position from the set, and then -- deallocates the node. The operation calls Hash to determine the bucket, -- and then compares Position to each node in the bucket until there's a -- match (it does not call Equivalent_Elements). procedure Union (Target : in out Set; Source : Set); -- Iterates over the Source set, and conditionally inserts each element -- into Target. function Union (Left, Right : Set) return Set; -- The operation first copies the Left set to the result, and then iterates -- over the Right set to conditionally insert each element into the result. function "or" (Left, Right : Set) return Set renames Union; procedure Intersection (Target : in out Set; Source : Set); -- Iterates over the Target set (calling First and Next), calling Find to -- determine whether the element is in Source. If an equivalent element is -- not found in Source, the element is deleted from Target. function Intersection (Left, Right : Set) return Set; -- Iterates over the Left set, calling Find to determine whether the -- element is in Right. If an equivalent element is found, it is inserted -- into the result set. function "and" (Left, Right : Set) return Set renames Intersection; procedure Difference (Target : in out Set; Source : Set); -- Iterates over the Source (calling First and Next), calling Find to -- determine whether the element is in Target. If an equivalent element is -- found, it is deleted from Target. function Difference (Left, Right : Set) return Set; -- Iterates over the Left set, calling Find to determine whether the -- element is in the Right set. If an equivalent element is not found, the -- element is inserted into the result set. function "-" (Left, Right : Set) return Set renames Difference; procedure Symmetric_Difference (Target : in out Set; Source : Set); -- The operation iterates over the Source set, searching for the element -- in Target (calling Hash and Equivalent_Elements). If an equivalent -- element is found, it is removed from Target; otherwise it is inserted -- into Target. function Symmetric_Difference (Left, Right : Set) return Set; -- The operation first iterates over the Left set. It calls Find to -- determine whether the element is in the Right set. If no equivalent -- element is found, the element from Left is inserted into the result. The -- operation then iterates over the Right set, to determine whether the -- element is in the Left set. If no equivalent element is found, the Right -- element is inserted into the result. function "xor" (Left, Right : Set) return Set renames Symmetric_Difference; function Overlap (Left, Right : Set) return Boolean; -- Iterates over the Left set (calling First and Next), calling Find to -- determine whether the element is in the Right set. If an equivalent -- element is found, the operation immediately returns True. The operation -- returns False if the iteration over Left terminates without finding any -- equivalent element in Right. function Is_Subset (Subset : Set; Of_Set : Set) return Boolean; -- Iterates over Subset (calling First and Next), calling Find to determine -- whether the element is in Of_Set. If no equivalent element is found in -- Of_Set, the operation immediately returns False. The operation returns -- True if the iteration over Subset terminates without finding an element -- not in Of_Set (that is, every element in Subset is equivalent to an -- element in Of_Set). function First (Container : Set) return Cursor; -- Returns a cursor that designates the first non-empty bucket, by -- searching from the beginning of the buckets array. function Next (Position : Cursor) return Cursor; -- Returns a cursor that designates the node that follows the current one -- designated by Position. If Position designates the last node in its -- bucket, the operation calls Hash to compute the index of this bucket, -- and searches the buckets array for the first non-empty bucket, starting -- from that index; otherwise, it simply follows the link to the next node -- in the same bucket. procedure Next (Position : in out Cursor); -- Equivalent to Position := Next (Position) function Find (Container : Set; Item : Element_Type) return Cursor; -- Searches for Item in the set. Find calls Hash to determine the item's -- bucket; if the bucket is not empty, it calls Equivalent_Elements to -- compare Item to each element in the bucket. If the search succeeds, Find -- returns a cursor designating the node containing the equivalent element; -- otherwise, it returns No_Element. function Contains (Container : Set; Item : Element_Type) return Boolean; -- Equivalent to Find (Container, Item) /= No_Element function Equivalent_Elements (Left, Right : Cursor) return Boolean; -- Returns the result of calling Equivalent_Elements with the elements of -- the nodes designated by cursors Left and Right. function Equivalent_Elements (Left : Cursor; Right : Element_Type) return Boolean; -- Returns the result of calling Equivalent_Elements with element of the -- node designated by Left and element Right. function Equivalent_Elements (Left : Element_Type; Right : Cursor) return Boolean; -- Returns the result of calling Equivalent_Elements with element Left and -- the element of the node designated by Right. procedure Iterate (Container : Set; Process : not null access procedure (Position : Cursor)); -- Calls Process for each node in the set function Iterate (Container : Set) return Set_Iterator_Interfaces.Forward_Iterator'Class; generic type Key_Type (<>) is private; with function Key (Element : Element_Type) return Key_Type; with function Hash (Key : Key_Type) return Hash_Type; with function Equivalent_Keys (Left, Right : Key_Type) return Boolean; package Generic_Keys is function Key (Position : Cursor) return Key_Type; -- Applies generic formal operation Key to the element of the node -- designated by Position. function Element (Container : Set; Key : Key_Type) return Element_Type; -- Searches (as per the key-based Find) for the node containing Key, and -- returns the associated element. procedure Replace (Container : in out Set; Key : Key_Type; New_Item : Element_Type); -- Searches (as per the key-based Find) for the node containing Key, and -- then replaces the element of that node (as per the element-based -- Replace_Element). procedure Exclude (Container : in out Set; Key : Key_Type); -- Searches for Key in the set, and if found, removes its node from the -- set and then deallocates it. The search works by first calling Hash -- (on Key) to determine the bucket; if the bucket is not empty, it -- calls Equivalent_Keys to compare parameter Key to the value of -- generic formal operation Key applied to element of each node in the -- bucket. procedure Delete (Container : in out Set; Key : Key_Type); -- Deletes the node containing Key as per Exclude, with the difference -- that Constraint_Error is raised if Key is not found. function Find (Container : Set; Key : Key_Type) return Cursor; -- Searches for the node containing Key, and returns a cursor -- designating the node. The search works by first calling Hash (on Key) -- to determine the bucket. If the bucket is not empty, the search -- compares Key to the element of each node in the bucket, and returns -- the matching node. The comparison itself works by applying the -- generic formal Key operation to the element of the node, and then -- calling generic formal operation Equivalent_Keys. function Contains (Container : Set; Key : Key_Type) return Boolean; -- Equivalent to Find (Container, Key) /= No_Element procedure Update_Element_Preserving_Key (Container : in out Set; Position : Cursor; Process : not null access procedure (Element : in out Element_Type)); -- Calls Process with the element of the node designated by Position, -- but with the restriction that the key-value of the element is not -- modified. The operation first makes a copy of the value returned by -- applying generic formal operation Key on the element of the node, and -- then calls Process with the element. The operation verifies that the -- key-part has not been modified by calling generic formal operation -- Equivalent_Keys to compare the saved key-value to the value returned -- by applying generic formal operation Key to the post-Process value of -- element. If the key values compare equal then the operation -- completes. Otherwise, the node is removed from the map and -- Program_Error is raised. type Reference_Type (Element : not null access Element_Type) is private with Implicit_Dereference => Element; function Reference_Preserving_Key (Container : aliased in out Set; Position : Cursor) return Reference_Type; function Constant_Reference (Container : aliased Set; Key : Key_Type) return Constant_Reference_Type; function Reference_Preserving_Key (Container : aliased in out Set; Key : Key_Type) return Reference_Type; private type Set_Access is access all Set; for Set_Access'Storage_Size use 0; package Impl is new Helpers.Generic_Implementation; type Reference_Control_Type is new Impl.Reference_Control_Type with record Container : Set_Access; Index : Hash_Type; Old_Pos : Cursor; Old_Hash : Hash_Type; end record; overriding procedure Finalize (Control : in out Reference_Control_Type); pragma Inline (Finalize); type Reference_Type (Element : not null access Element_Type) is record Control : Reference_Control_Type; end record; use Ada.Streams; procedure Read (Stream : not null access Root_Stream_Type'Class; Item : out Reference_Type); for Reference_Type'Read use Read; procedure Write (Stream : not null access Root_Stream_Type'Class; Item : Reference_Type); for Reference_Type'Write use Write; end Generic_Keys; private pragma Inline (Next); type Node_Type is record Element : aliased Element_Type; Next : Count_Type; end record; package HT_Types is new Hash_Tables.Generic_Bounded_Hash_Table_Types (Node_Type); type Set (Capacity : Count_Type; Modulus : Hash_Type) is new HT_Types.Hash_Table_Type (Capacity, Modulus) with null record; use HT_Types, HT_Types.Implementation; use Ada.Streams; procedure Write (Stream : not null access Root_Stream_Type'Class; Container : Set); for Set'Write use Write; procedure Read (Stream : not null access Root_Stream_Type'Class; Container : out Set); for Set'Read use Read; type Set_Access is access all Set; for Set_Access'Storage_Size use 0; -- Note: If a Cursor object has no explicit initialization expression, -- it must default initialize to the same value as constant No_Element. -- The Node component of type Cursor has scalar type Count_Type, so it -- requires an explicit initialization expression of its own declaration, -- in order for objects of record type Cursor to properly initialize. type Cursor is record Container : Set_Access; Node : Count_Type := 0; end record; procedure Write (Stream : not null access Root_Stream_Type'Class; Item : Cursor); for Cursor'Write use Write; procedure Read (Stream : not null access Root_Stream_Type'Class; Item : out Cursor); for Cursor'Read use Read; subtype Reference_Control_Type is Implementation.Reference_Control_Type; -- It is necessary to rename this here, so that the compiler can find it type Constant_Reference_Type (Element : not null access constant Element_Type) is record Control : Reference_Control_Type := raise Program_Error with "uninitialized reference"; -- The RM says, "The default initialization of an object of -- type Constant_Reference_Type or Reference_Type propagates -- Program_Error." end record; procedure Read (Stream : not null access Root_Stream_Type'Class; Item : out Constant_Reference_Type); for Constant_Reference_Type'Read use Read; procedure Write (Stream : not null access Root_Stream_Type'Class; Item : Constant_Reference_Type); for Constant_Reference_Type'Write use Write; -- Three operations are used to optimize in the expansion of "for ... of" -- loops: the Next(Cursor) procedure in the visible part, and the following -- Pseudo_Reference and Get_Element_Access functions. See Sem_Ch5 for -- details. function Pseudo_Reference (Container : aliased Set'Class) return Reference_Control_Type; pragma Inline (Pseudo_Reference); -- Creates an object of type Reference_Control_Type pointing to the -- container, and increments the Lock. Finalization of this object will -- decrement the Lock. type Element_Access is access all Element_Type with Storage_Size => 0; function Get_Element_Access (Position : Cursor) return not null Element_Access; -- Returns a pointer to the element designated by Position. Empty_Set : constant Set := (Hash_Table_Type with Capacity => 0, Modulus => 0); No_Element : constant Cursor := (Container => null, Node => 0); type Iterator is new Limited_Controlled and Set_Iterator_Interfaces.Forward_Iterator with record Container : Set_Access; end record with Disable_Controlled => not T_Check; overriding procedure Finalize (Object : in out Iterator); overriding function First (Object : Iterator) return Cursor; overriding function Next (Object : Iterator; Position : Cursor) return Cursor; end Ada.Containers.Bounded_Hashed_Sets;
45.328383
79
0.678984
50629f5fb2f635334ab8c928f7d9a6334ed7ef5d
4,017
ads
Ada
source/RASCAL-ToolboxWritableField.ads
bracke/Meaning
709f609df916aa9442f9b75c7dcb62ab807a48e9
[ "MIT" ]
null
null
null
source/RASCAL-ToolboxWritableField.ads
bracke/Meaning
709f609df916aa9442f9b75c7dcb62ab807a48e9
[ "MIT" ]
null
null
null
source/RASCAL-ToolboxWritableField.ads
bracke/Meaning
709f609df916aa9442f9b75c7dcb62ab807a48e9
[ "MIT" ]
null
null
null
-------------------------------------------------------------------------------- -- -- -- Copyright (C) 2004, RISC OS Ada Library (RASCAL) developers. -- -- -- -- This library is free software; you can redistribute it and/or -- -- modify it under the terms of the GNU Lesser General Public -- -- License as published by the Free Software Foundation; either -- -- version 2.1 of the License, or (at your option) any later version. -- -- -- -- This library is distributed in the hope that it will be useful, -- -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -- -- Lesser General Public License for more details. -- -- -- -- You should have received a copy of the GNU Lesser General Public -- -- License along with this library; if not, write to the Free Software -- -- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -- -- -- -------------------------------------------------------------------------------- -- @brief Toolbox WritableField related types and methods. -- $Author$ -- $Date$ -- $Revision$ with Interfaces.C; use Interfaces.C; with System; use System; with System.Unsigned_Types; use System.Unsigned_Types; with RASCAL.Toolbox; use RASCAL.Toolbox; with RASCAL.OS; use RASCAL.OS; package RASCAL.ToolboxWritableField is -- -- This event is raised when the value of a writable field has been changed by the user. -- type Toolbox_WritableField_ValueChanged is record Header : Toolbox_Event_Header; Content : Char_Array (1..208); end record; pragma Convention (C, Toolbox_WritableField_ValueChanged); type Toolbox_WritableField_ValueChanged_Pointer is access Toolbox_WritableField_ValueChanged; type ATEL_Toolbox_WritableField_ValueChanged is abstract new Toolbox_EventListener(Toolbox_Event_WritableField_ValueChanged,-1,-1) with record Event : Toolbox_WritableField_ValueChanged_Pointer; end record; -- -- Returns the value (content) of the writable field. -- function Get_Value (Window : in Object_ID; Component : in Component_ID; Flags : in System.Unsigned_Types.Unsigned := 0) return String; -- -- Sets the list of allowed characters for the writable field. -- procedure Set_Allowable (Window : in Object_ID; Component : in Component_ID; Allowable : in string; Flags : in System.Unsigned_Types.Unsigned := 0); -- -- Sets the font to be used in the writable field. Default is the system font. -- procedure Set_Font (Window : in Object_ID; Component : in Component_ID; Font : in String; Font_Width : in integer := 12; Font_Height : in integer := 12; Flags : in System.Unsigned_Types.Unsigned := 0); -- -- Sets the value (content) of the writable field. -- procedure Set_Value (Window : in Object_ID; Component : in Component_ID; New_Value : in string; Flags : in System.Unsigned_Types.Unsigned := 0); -- -- -- procedure Handle(The : in ATEL_Toolbox_WritableField_ValueChanged) is abstract; end RASCAL.ToolboxWritableField;
44.142857
138
0.525268
df56e481dd04028fda8096ffe1446685ba7a1326
64,723
adb
Ada
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/a-ciorse.adb
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/a-ciorse.adb
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/a-ciorse.adb
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- ADA.CONTAINERS.INDEFINITE_ORDERED_SETS -- -- -- -- B o d y -- -- -- -- Copyright (C) 2004-2020, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- This unit was originally developed by Matthew J Heaney. -- ------------------------------------------------------------------------------ with Ada.Containers.Helpers; use Ada.Containers.Helpers; with Ada.Containers.Red_Black_Trees.Generic_Operations; pragma Elaborate_All (Ada.Containers.Red_Black_Trees.Generic_Operations); with Ada.Containers.Red_Black_Trees.Generic_Keys; pragma Elaborate_All (Ada.Containers.Red_Black_Trees.Generic_Keys); with Ada.Containers.Red_Black_Trees.Generic_Set_Operations; pragma Elaborate_All (Ada.Containers.Red_Black_Trees.Generic_Set_Operations); with Ada.Unchecked_Deallocation; with System; use type System.Address; with System.Put_Images; package body Ada.Containers.Indefinite_Ordered_Sets with SPARK_Mode => Off is pragma Warnings (Off, "variable ""Busy*"" is not referenced"); pragma Warnings (Off, "variable ""Lock*"" is not referenced"); -- See comment in Ada.Containers.Helpers ----------------------- -- Local Subprograms -- ----------------------- function Color (Node : Node_Access) return Color_Type; pragma Inline (Color); function Copy_Node (Source : Node_Access) return Node_Access; pragma Inline (Copy_Node); procedure Free (X : in out Node_Access); procedure Insert_Sans_Hint (Tree : in out Tree_Type; New_Item : Element_Type; Node : out Node_Access; Inserted : out Boolean); procedure Insert_With_Hint (Dst_Tree : in out Tree_Type; Dst_Hint : Node_Access; Src_Node : Node_Access; Dst_Node : out Node_Access); function Is_Greater_Element_Node (Left : Element_Type; Right : Node_Access) return Boolean; pragma Inline (Is_Greater_Element_Node); function Is_Less_Element_Node (Left : Element_Type; Right : Node_Access) return Boolean; pragma Inline (Is_Less_Element_Node); function Is_Less_Node_Node (L, R : Node_Access) return Boolean; pragma Inline (Is_Less_Node_Node); function Left (Node : Node_Access) return Node_Access; pragma Inline (Left); function Parent (Node : Node_Access) return Node_Access; pragma Inline (Parent); procedure Replace_Element (Tree : in out Tree_Type; Node : Node_Access; Item : Element_Type); function Right (Node : Node_Access) return Node_Access; pragma Inline (Right); procedure Set_Color (Node : Node_Access; Color : Color_Type); pragma Inline (Set_Color); procedure Set_Left (Node : Node_Access; Left : Node_Access); pragma Inline (Set_Left); procedure Set_Parent (Node : Node_Access; Parent : Node_Access); pragma Inline (Set_Parent); procedure Set_Right (Node : Node_Access; Right : Node_Access); pragma Inline (Set_Right); -------------------------- -- Local Instantiations -- -------------------------- procedure Free_Element is new Ada.Unchecked_Deallocation (Element_Type, Element_Access); package Tree_Operations is new Red_Black_Trees.Generic_Operations (Tree_Types); procedure Delete_Tree is new Tree_Operations.Generic_Delete_Tree (Free); function Copy_Tree is new Tree_Operations.Generic_Copy_Tree (Copy_Node, Delete_Tree); use Tree_Operations; package Element_Keys is new Red_Black_Trees.Generic_Keys (Tree_Operations => Tree_Operations, Key_Type => Element_Type, Is_Less_Key_Node => Is_Less_Element_Node, Is_Greater_Key_Node => Is_Greater_Element_Node); package Set_Ops is new Generic_Set_Operations (Tree_Operations => Tree_Operations, Insert_With_Hint => Insert_With_Hint, Copy_Tree => Copy_Tree, Delete_Tree => Delete_Tree, Is_Less => Is_Less_Node_Node, Free => Free); --------- -- "<" -- --------- function "<" (Left, Right : Cursor) return Boolean is begin if Checks and then Left.Node = null then raise Constraint_Error with "Left cursor equals No_Element"; end if; if Checks and then Right.Node = null then raise Constraint_Error with "Right cursor equals No_Element"; end if; if Checks and then Left.Node.Element = null then raise Program_Error with "Left cursor is bad"; end if; if Checks and then Right.Node.Element = null then raise Program_Error with "Right cursor is bad"; end if; pragma Assert (Vet (Left.Container.Tree, Left.Node), "bad Left cursor in ""<"""); pragma Assert (Vet (Right.Container.Tree, Right.Node), "bad Right cursor in ""<"""); return Left.Node.Element.all < Right.Node.Element.all; end "<"; function "<" (Left : Cursor; Right : Element_Type) return Boolean is begin if Checks and then Left.Node = null then raise Constraint_Error with "Left cursor equals No_Element"; end if; if Checks and then Left.Node.Element = null then raise Program_Error with "Left cursor is bad"; end if; pragma Assert (Vet (Left.Container.Tree, Left.Node), "bad Left cursor in ""<"""); return Left.Node.Element.all < Right; end "<"; function "<" (Left : Element_Type; Right : Cursor) return Boolean is begin if Checks and then Right.Node = null then raise Constraint_Error with "Right cursor equals No_Element"; end if; if Checks and then Right.Node.Element = null then raise Program_Error with "Right cursor is bad"; end if; pragma Assert (Vet (Right.Container.Tree, Right.Node), "bad Right cursor in ""<"""); return Left < Right.Node.Element.all; end "<"; --------- -- "=" -- --------- function "=" (Left, Right : Set) return Boolean is function Is_Equal_Node_Node (L, R : Node_Access) return Boolean; pragma Inline (Is_Equal_Node_Node); function Is_Equal is new Tree_Operations.Generic_Equal (Is_Equal_Node_Node); ------------------------ -- Is_Equal_Node_Node -- ------------------------ function Is_Equal_Node_Node (L, R : Node_Access) return Boolean is begin return L.Element.all = R.Element.all; end Is_Equal_Node_Node; -- Start of processing for "=" begin return Is_Equal (Left.Tree, Right.Tree); end "="; --------- -- ">" -- --------- function ">" (Left, Right : Cursor) return Boolean is begin if Checks and then Left.Node = null then raise Constraint_Error with "Left cursor equals No_Element"; end if; if Checks and then Right.Node = null then raise Constraint_Error with "Right cursor equals No_Element"; end if; if Checks and then Left.Node.Element = null then raise Program_Error with "Left cursor is bad"; end if; if Checks and then Right.Node.Element = null then raise Program_Error with "Right cursor is bad"; end if; pragma Assert (Vet (Left.Container.Tree, Left.Node), "bad Left cursor in "">"""); pragma Assert (Vet (Right.Container.Tree, Right.Node), "bad Right cursor in "">"""); -- L > R same as R < L return Right.Node.Element.all < Left.Node.Element.all; end ">"; function ">" (Left : Cursor; Right : Element_Type) return Boolean is begin if Checks and then Left.Node = null then raise Constraint_Error with "Left cursor equals No_Element"; end if; if Checks and then Left.Node.Element = null then raise Program_Error with "Left cursor is bad"; end if; pragma Assert (Vet (Left.Container.Tree, Left.Node), "bad Left cursor in "">"""); return Right < Left.Node.Element.all; end ">"; function ">" (Left : Element_Type; Right : Cursor) return Boolean is begin if Checks and then Right.Node = null then raise Constraint_Error with "Right cursor equals No_Element"; end if; if Checks and then Right.Node.Element = null then raise Program_Error with "Right cursor is bad"; end if; pragma Assert (Vet (Right.Container.Tree, Right.Node), "bad Right cursor in "">"""); return Right.Node.Element.all < Left; end ">"; ------------ -- Adjust -- ------------ procedure Adjust is new Tree_Operations.Generic_Adjust (Copy_Tree); procedure Adjust (Container : in out Set) is begin Adjust (Container.Tree); end Adjust; ------------ -- Assign -- ------------ procedure Assign (Target : in out Set; Source : Set) is begin if Target'Address = Source'Address then return; end if; Target.Clear; Target.Union (Source); end Assign; ------------- -- Ceiling -- ------------- function Ceiling (Container : Set; Item : Element_Type) return Cursor is Node : constant Node_Access := Element_Keys.Ceiling (Container.Tree, Item); begin return (if Node = null then No_Element else Cursor'(Container'Unrestricted_Access, Node)); end Ceiling; ----------- -- Clear -- ----------- procedure Clear is new Tree_Operations.Generic_Clear (Delete_Tree); procedure Clear (Container : in out Set) is begin Clear (Container.Tree); end Clear; ----------- -- Color -- ----------- function Color (Node : Node_Access) return Color_Type is begin return Node.Color; end Color; ------------------------ -- Constant_Reference -- ------------------------ function Constant_Reference (Container : aliased Set; Position : Cursor) return Constant_Reference_Type is begin if Checks and then Position.Container = null then raise Constraint_Error with "Position cursor has no element"; end if; if Checks and then Position.Container /= Container'Unrestricted_Access then raise Program_Error with "Position cursor designates wrong container"; end if; if Checks and then Position.Node.Element = null then raise Program_Error with "Node has no element"; end if; pragma Assert (Vet (Container.Tree, Position.Node), "bad cursor in Constant_Reference"); declare Tree : Tree_Type renames Position.Container.all.Tree; TC : constant Tamper_Counts_Access := Tree.TC'Unrestricted_Access; begin return R : constant Constant_Reference_Type := (Element => Position.Node.Element.all'Access, Control => (Controlled with TC)) do Busy (TC.all); end return; end; end Constant_Reference; -------------- -- Contains -- -------------- function Contains (Container : Set; Item : Element_Type) return Boolean is begin return Find (Container, Item) /= No_Element; end Contains; ---------- -- Copy -- ---------- function Copy (Source : Set) return Set is begin return Target : Set do Target.Assign (Source); end return; end Copy; --------------- -- Copy_Node -- --------------- function Copy_Node (Source : Node_Access) return Node_Access is Element : Element_Access := new Element_Type'(Source.Element.all); begin return new Node_Type'(Parent => null, Left => null, Right => null, Color => Source.Color, Element => Element); exception when others => Free_Element (Element); raise; end Copy_Node; ------------ -- Delete -- ------------ procedure Delete (Container : in out Set; Position : in out Cursor) is begin if Checks and then Position.Node = null then raise Constraint_Error with "Position cursor equals No_Element"; end if; if Checks and then Position.Node.Element = null then raise Program_Error with "Position cursor is bad"; end if; if Checks and then Position.Container /= Container'Unrestricted_Access then raise Program_Error with "Position cursor designates wrong set"; end if; pragma Assert (Vet (Container.Tree, Position.Node), "bad cursor in Delete"); Tree_Operations.Delete_Node_Sans_Free (Container.Tree, Position.Node); Free (Position.Node); Position.Container := null; end Delete; procedure Delete (Container : in out Set; Item : Element_Type) is X : Node_Access := Element_Keys.Find (Container.Tree, Item); begin if Checks and then X = null then raise Constraint_Error with "attempt to delete element not in set"; end if; Tree_Operations.Delete_Node_Sans_Free (Container.Tree, X); Free (X); end Delete; ------------------ -- Delete_First -- ------------------ procedure Delete_First (Container : in out Set) is Tree : Tree_Type renames Container.Tree; X : Node_Access := Tree.First; begin if X /= null then Tree_Operations.Delete_Node_Sans_Free (Tree, X); Free (X); end if; end Delete_First; ----------------- -- Delete_Last -- ----------------- procedure Delete_Last (Container : in out Set) is Tree : Tree_Type renames Container.Tree; X : Node_Access := Tree.Last; begin if X /= null then Tree_Operations.Delete_Node_Sans_Free (Tree, X); Free (X); end if; end Delete_Last; ---------------- -- Difference -- ---------------- procedure Difference (Target : in out Set; Source : Set) is begin Set_Ops.Difference (Target.Tree, Source.Tree); end Difference; function Difference (Left, Right : Set) return Set is Tree : constant Tree_Type := Set_Ops.Difference (Left.Tree, Right.Tree); begin return Set'(Controlled with Tree); end Difference; ------------- -- Element -- ------------- function Element (Position : Cursor) return Element_Type is begin if Checks and then Position.Node = null then raise Constraint_Error with "Position cursor equals No_Element"; end if; if Checks and then Position.Node.Element = null then raise Program_Error with "Position cursor is bad"; end if; if Checks and then (Left (Position.Node) = Position.Node or else Right (Position.Node) = Position.Node) then raise Program_Error with "dangling cursor"; end if; pragma Assert (Vet (Position.Container.Tree, Position.Node), "bad cursor in Element"); return Position.Node.Element.all; end Element; ------------------------- -- Equivalent_Elements -- ------------------------- function Equivalent_Elements (Left, Right : Element_Type) return Boolean is begin if Left < Right or else Right < Left then return False; else return True; end if; end Equivalent_Elements; --------------------- -- Equivalent_Sets -- --------------------- function Equivalent_Sets (Left, Right : Set) return Boolean is function Is_Equivalent_Node_Node (L, R : Node_Access) return Boolean; pragma Inline (Is_Equivalent_Node_Node); function Is_Equivalent is new Tree_Operations.Generic_Equal (Is_Equivalent_Node_Node); ----------------------------- -- Is_Equivalent_Node_Node -- ----------------------------- function Is_Equivalent_Node_Node (L, R : Node_Access) return Boolean is begin if L.Element.all < R.Element.all then return False; elsif R.Element.all < L.Element.all then return False; else return True; end if; end Is_Equivalent_Node_Node; -- Start of processing for Equivalent_Sets begin return Is_Equivalent (Left.Tree, Right.Tree); end Equivalent_Sets; ------------- -- Exclude -- ------------- procedure Exclude (Container : in out Set; Item : Element_Type) is X : Node_Access := Element_Keys.Find (Container.Tree, Item); begin if X /= null then Tree_Operations.Delete_Node_Sans_Free (Container.Tree, X); Free (X); end if; end Exclude; -------------- -- Finalize -- -------------- procedure Finalize (Object : in out Iterator) is begin if Object.Container /= null then Unbusy (Object.Container.Tree.TC); end if; end Finalize; ---------- -- Find -- ---------- function Find (Container : Set; Item : Element_Type) return Cursor is Node : constant Node_Access := Element_Keys.Find (Container.Tree, Item); begin if Node = null then return No_Element; else return Cursor'(Container'Unrestricted_Access, Node); end if; end Find; ----------- -- First -- ----------- function First (Container : Set) return Cursor is begin return (if Container.Tree.First = null then No_Element else Cursor'(Container'Unrestricted_Access, Container.Tree.First)); end First; function First (Object : Iterator) return Cursor is begin -- The value of the iterator object's Node component influences the -- behavior of the First (and Last) selector function. -- When the Node component is null, this means the iterator object was -- constructed without a start expression, in which case the (forward) -- iteration starts from the (logical) beginning of the entire sequence -- of items (corresponding to Container.First, for a forward iterator). -- Otherwise, this is iteration over a partial sequence of items. When -- the Node component is non-null, the iterator object was constructed -- with a start expression, that specifies the position from which the -- (forward) partial iteration begins. if Object.Node = null then return Object.Container.First; else return Cursor'(Object.Container, Object.Node); end if; end First; ------------------- -- First_Element -- ------------------- function First_Element (Container : Set) return Element_Type is begin if Checks and then Container.Tree.First = null then raise Constraint_Error with "set is empty"; end if; return Container.Tree.First.Element.all; end First_Element; ----------- -- Floor -- ----------- function Floor (Container : Set; Item : Element_Type) return Cursor is Node : constant Node_Access := Element_Keys.Floor (Container.Tree, Item); begin return (if Node = null then No_Element else Cursor'(Container'Unrestricted_Access, Node)); end Floor; ---------- -- Free -- ---------- procedure Free (X : in out Node_Access) is procedure Deallocate is new Ada.Unchecked_Deallocation (Node_Type, Node_Access); begin if X = null then return; end if; X.Parent := X; X.Left := X; X.Right := X; begin Free_Element (X.Element); exception when others => X.Element := null; Deallocate (X); raise; end; Deallocate (X); end Free; ------------------ -- Generic_Keys -- ------------------ package body Generic_Keys is ----------------------- -- Local Subprograms -- ----------------------- function Is_Greater_Key_Node (Left : Key_Type; Right : Node_Access) return Boolean; pragma Inline (Is_Greater_Key_Node); function Is_Less_Key_Node (Left : Key_Type; Right : Node_Access) return Boolean; pragma Inline (Is_Less_Key_Node); -------------------------- -- Local Instantiations -- -------------------------- package Key_Keys is new Red_Black_Trees.Generic_Keys (Tree_Operations => Tree_Operations, Key_Type => Key_Type, Is_Less_Key_Node => Is_Less_Key_Node, Is_Greater_Key_Node => Is_Greater_Key_Node); ------------- -- Ceiling -- ------------- function Ceiling (Container : Set; Key : Key_Type) return Cursor is Node : constant Node_Access := Key_Keys.Ceiling (Container.Tree, Key); begin return (if Node = null then No_Element else Cursor'(Container'Unrestricted_Access, Node)); end Ceiling; ------------------------ -- Constant_Reference -- ------------------------ function Constant_Reference (Container : aliased Set; Key : Key_Type) return Constant_Reference_Type is Node : constant Node_Access := Key_Keys.Find (Container.Tree, Key); begin if Checks and then Node = null then raise Constraint_Error with "Key not in set"; end if; if Checks and then Node.Element = null then raise Program_Error with "Node has no element"; end if; declare Tree : Tree_Type renames Container'Unrestricted_Access.all.Tree; TC : constant Tamper_Counts_Access := Tree.TC'Unrestricted_Access; begin return R : constant Constant_Reference_Type := (Element => Node.Element.all'Access, Control => (Controlled with TC)) do Busy (TC.all); end return; end; end Constant_Reference; -------------- -- Contains -- -------------- function Contains (Container : Set; Key : Key_Type) return Boolean is begin return Find (Container, Key) /= No_Element; end Contains; ------------ -- Delete -- ------------ procedure Delete (Container : in out Set; Key : Key_Type) is X : Node_Access := Key_Keys.Find (Container.Tree, Key); begin if Checks and then X = null then raise Constraint_Error with "attempt to delete key not in set"; end if; Tree_Operations.Delete_Node_Sans_Free (Container.Tree, X); Free (X); end Delete; ------------- -- Element -- ------------- function Element (Container : Set; Key : Key_Type) return Element_Type is Node : constant Node_Access := Key_Keys.Find (Container.Tree, Key); begin if Checks and then Node = null then raise Constraint_Error with "key not in set"; end if; return Node.Element.all; end Element; --------------------- -- Equivalent_Keys -- --------------------- function Equivalent_Keys (Left, Right : Key_Type) return Boolean is begin if Left < Right or else Right < Left then return False; else return True; end if; end Equivalent_Keys; ------------- -- Exclude -- ------------- procedure Exclude (Container : in out Set; Key : Key_Type) is X : Node_Access := Key_Keys.Find (Container.Tree, Key); begin if X /= null then Tree_Operations.Delete_Node_Sans_Free (Container.Tree, X); Free (X); end if; end Exclude; -------------- -- Finalize -- -------------- procedure Finalize (Control : in out Reference_Control_Type) is begin if Control.Container /= null then Impl.Reference_Control_Type (Control).Finalize; if Checks and then not (Key (Control.Pos) = Control.Old_Key.all) then Delete (Control.Container.all, Key (Control.Pos)); raise Program_Error; end if; Control.Container := null; Control.Old_Key := null; end if; end Finalize; ---------- -- Find -- ---------- function Find (Container : Set; Key : Key_Type) return Cursor is Node : constant Node_Access := Key_Keys.Find (Container.Tree, Key); begin return (if Node = null then No_Element else Cursor'(Container'Unrestricted_Access, Node)); end Find; ----------- -- Floor -- ----------- function Floor (Container : Set; Key : Key_Type) return Cursor is Node : constant Node_Access := Key_Keys.Floor (Container.Tree, Key); begin return (if Node = null then No_Element else Cursor'(Container'Unrestricted_Access, Node)); end Floor; ------------------------- -- Is_Greater_Key_Node -- ------------------------- function Is_Greater_Key_Node (Left : Key_Type; Right : Node_Access) return Boolean is begin return Key (Right.Element.all) < Left; end Is_Greater_Key_Node; ---------------------- -- Is_Less_Key_Node -- ---------------------- function Is_Less_Key_Node (Left : Key_Type; Right : Node_Access) return Boolean is begin return Left < Key (Right.Element.all); end Is_Less_Key_Node; --------- -- Key -- --------- function Key (Position : Cursor) return Key_Type is begin if Checks and then Position.Node = null then raise Constraint_Error with "Position cursor equals No_Element"; end if; if Checks and then Position.Node.Element = null then raise Program_Error with "Position cursor is bad"; end if; pragma Assert (Vet (Position.Container.Tree, Position.Node), "bad cursor in Key"); return Key (Position.Node.Element.all); end Key; ------------- -- Replace -- ------------- procedure Replace (Container : in out Set; Key : Key_Type; New_Item : Element_Type) is Node : constant Node_Access := Key_Keys.Find (Container.Tree, Key); begin if Checks and then Node = null then raise Constraint_Error with "attempt to replace key not in set"; end if; Replace_Element (Container.Tree, Node, New_Item); end Replace; ---------- -- Read -- ---------- procedure Read (Stream : not null access Root_Stream_Type'Class; Item : out Reference_Type) is begin raise Program_Error with "attempt to stream reference"; end Read; ------------------------------ -- Reference_Preserving_Key -- ------------------------------ function Reference_Preserving_Key (Container : aliased in out Set; Position : Cursor) return Reference_Type is begin if Checks and then Position.Container = null then raise Constraint_Error with "Position cursor has no element"; end if; if Checks and then Position.Container /= Container'Unrestricted_Access then raise Program_Error with "Position cursor designates wrong container"; end if; if Checks and then Position.Node.Element = null then raise Program_Error with "Node has no element"; end if; pragma Assert (Vet (Container.Tree, Position.Node), "bad cursor in function Reference_Preserving_Key"); declare Tree : Tree_Type renames Container.Tree; begin return R : constant Reference_Type := (Element => Position.Node.Element.all'Unchecked_Access, Control => (Controlled with Tree.TC'Unrestricted_Access, Container => Container'Unchecked_Access, Pos => Position, Old_Key => new Key_Type'(Key (Position)))) do Busy (Tree.TC); end return; end; end Reference_Preserving_Key; function Reference_Preserving_Key (Container : aliased in out Set; Key : Key_Type) return Reference_Type is Node : constant Node_Access := Key_Keys.Find (Container.Tree, Key); begin if Checks and then Node = null then raise Constraint_Error with "Key not in set"; end if; if Checks and then Node.Element = null then raise Program_Error with "Node has no element"; end if; declare Tree : Tree_Type renames Container.Tree; begin return R : constant Reference_Type := (Element => Node.Element.all'Unchecked_Access, Control => (Controlled with Tree.TC'Unrestricted_Access, Container => Container'Unchecked_Access, Pos => Find (Container, Key), Old_Key => new Key_Type'(Key))) do Busy (Tree.TC); end return; end; end Reference_Preserving_Key; ----------------------------------- -- Update_Element_Preserving_Key -- ----------------------------------- procedure Update_Element_Preserving_Key (Container : in out Set; Position : Cursor; Process : not null access procedure (Element : in out Element_Type)) is Tree : Tree_Type renames Container.Tree; begin if Checks and then Position.Node = null then raise Constraint_Error with "Position cursor equals No_Element"; end if; if Checks and then Position.Node.Element = null then raise Program_Error with "Position cursor is bad"; end if; if Checks and then Position.Container /= Container'Unrestricted_Access then raise Program_Error with "Position cursor designates wrong set"; end if; pragma Assert (Vet (Container.Tree, Position.Node), "bad cursor in Update_Element_Preserving_Key"); declare E : Element_Type renames Position.Node.Element.all; K : constant Key_Type := Key (E); Lock : With_Lock (Tree.TC'Unrestricted_Access); begin Process (E); if Equivalent_Keys (K, Key (E)) then return; end if; end; declare X : Node_Access := Position.Node; begin Tree_Operations.Delete_Node_Sans_Free (Tree, X); Free (X); end; raise Program_Error with "key was modified"; end Update_Element_Preserving_Key; ----------- -- Write -- ----------- procedure Write (Stream : not null access Root_Stream_Type'Class; Item : Reference_Type) is begin raise Program_Error with "attempt to stream reference"; end Write; end Generic_Keys; ------------------------ -- Get_Element_Access -- ------------------------ function Get_Element_Access (Position : Cursor) return not null Element_Access is begin return Position.Node.Element; end Get_Element_Access; ----------------- -- Has_Element -- ----------------- function Has_Element (Position : Cursor) return Boolean is begin return Position /= No_Element; end Has_Element; ------------- -- Include -- ------------- procedure Include (Container : in out Set; New_Item : Element_Type) is Position : Cursor; Inserted : Boolean; X : Element_Access; begin Insert (Container, New_Item, Position, Inserted); if not Inserted then TE_Check (Container.Tree.TC); declare -- The element allocator may need an accessibility check in the -- case the actual type is class-wide or has access discriminants -- (see RM 4.8(10.1) and AI12-0035). pragma Unsuppress (Accessibility_Check); begin X := Position.Node.Element; Position.Node.Element := new Element_Type'(New_Item); Free_Element (X); end; end if; end Include; ------------ -- Insert -- ------------ procedure Insert (Container : in out Set; New_Item : Element_Type; Position : out Cursor; Inserted : out Boolean) is begin Insert_Sans_Hint (Container.Tree, New_Item, Position.Node, Inserted); Position.Container := Container'Unrestricted_Access; end Insert; procedure Insert (Container : in out Set; New_Item : Element_Type) is Position : Cursor; pragma Unreferenced (Position); Inserted : Boolean; begin Insert (Container, New_Item, Position, Inserted); if Checks and then not Inserted then raise Constraint_Error with "attempt to insert element already in set"; end if; end Insert; ---------------------- -- Insert_Sans_Hint -- ---------------------- procedure Insert_Sans_Hint (Tree : in out Tree_Type; New_Item : Element_Type; Node : out Node_Access; Inserted : out Boolean) is function New_Node return Node_Access; pragma Inline (New_Node); procedure Insert_Post is new Element_Keys.Generic_Insert_Post (New_Node); procedure Conditional_Insert_Sans_Hint is new Element_Keys.Generic_Conditional_Insert (Insert_Post); -------------- -- New_Node -- -------------- function New_Node return Node_Access is -- The element allocator may need an accessibility check in the case -- the actual type is class-wide or has access discriminants (see -- RM 4.8(10.1) and AI12-0035). pragma Unsuppress (Accessibility_Check); Element : Element_Access := new Element_Type'(New_Item); begin return new Node_Type'(Parent => null, Left => null, Right => null, Color => Red_Black_Trees.Red, Element => Element); exception when others => Free_Element (Element); raise; end New_Node; -- Start of processing for Insert_Sans_Hint begin Conditional_Insert_Sans_Hint (Tree, New_Item, Node, Inserted); end Insert_Sans_Hint; ---------------------- -- Insert_With_Hint -- ---------------------- procedure Insert_With_Hint (Dst_Tree : in out Tree_Type; Dst_Hint : Node_Access; Src_Node : Node_Access; Dst_Node : out Node_Access) is Success : Boolean; pragma Unreferenced (Success); function New_Node return Node_Access; procedure Insert_Post is new Element_Keys.Generic_Insert_Post (New_Node); procedure Insert_Sans_Hint is new Element_Keys.Generic_Conditional_Insert (Insert_Post); procedure Insert_With_Hint is new Element_Keys.Generic_Conditional_Insert_With_Hint (Insert_Post, Insert_Sans_Hint); -------------- -- New_Node -- -------------- function New_Node return Node_Access is Element : Element_Access := new Element_Type'(Src_Node.Element.all); Node : Node_Access; begin begin Node := new Node_Type; exception when others => Free_Element (Element); raise; end; Node.Element := Element; return Node; end New_Node; -- Start of processing for Insert_With_Hint begin Insert_With_Hint (Dst_Tree, Dst_Hint, Src_Node.Element.all, Dst_Node, Success); end Insert_With_Hint; ------------------ -- Intersection -- ------------------ procedure Intersection (Target : in out Set; Source : Set) is begin Set_Ops.Intersection (Target.Tree, Source.Tree); end Intersection; function Intersection (Left, Right : Set) return Set is Tree : constant Tree_Type := Set_Ops.Intersection (Left.Tree, Right.Tree); begin return Set'(Controlled with Tree); end Intersection; -------------- -- Is_Empty -- -------------- function Is_Empty (Container : Set) return Boolean is begin return Container.Tree.Length = 0; end Is_Empty; ----------------------------- -- Is_Greater_Element_Node -- ----------------------------- function Is_Greater_Element_Node (Left : Element_Type; Right : Node_Access) return Boolean is begin -- e > node same as node < e return Right.Element.all < Left; end Is_Greater_Element_Node; -------------------------- -- Is_Less_Element_Node -- -------------------------- function Is_Less_Element_Node (Left : Element_Type; Right : Node_Access) return Boolean is begin return Left < Right.Element.all; end Is_Less_Element_Node; ----------------------- -- Is_Less_Node_Node -- ----------------------- function Is_Less_Node_Node (L, R : Node_Access) return Boolean is begin return L.Element.all < R.Element.all; end Is_Less_Node_Node; --------------- -- Is_Subset -- --------------- function Is_Subset (Subset : Set; Of_Set : Set) return Boolean is begin return Set_Ops.Is_Subset (Subset => Subset.Tree, Of_Set => Of_Set.Tree); end Is_Subset; ------------- -- Iterate -- ------------- procedure Iterate (Container : Set; Process : not null access procedure (Position : Cursor)) is procedure Process_Node (Node : Node_Access); pragma Inline (Process_Node); procedure Local_Iterate is new Tree_Operations.Generic_Iteration (Process_Node); ------------------ -- Process_Node -- ------------------ procedure Process_Node (Node : Node_Access) is begin Process (Cursor'(Container'Unrestricted_Access, Node)); end Process_Node; T : Tree_Type renames Container'Unrestricted_Access.all.Tree; Busy : With_Busy (T.TC'Unrestricted_Access); -- Start of processing for Iterate begin Local_Iterate (T); end Iterate; function Iterate (Container : Set) return Set_Iterator_Interfaces.Reversible_Iterator'class is begin -- The value of the Node component influences the behavior of the First -- and Last selector functions of the iterator object. When the Node -- component is null (as is the case here), this means the iterator -- object was constructed without a start expression. This is a complete -- iterator, meaning that the iteration starts from the (logical) -- beginning of the sequence of items. -- Note: For a forward iterator, Container.First is the beginning, and -- for a reverse iterator, Container.Last is the beginning. return It : constant Iterator := Iterator'(Limited_Controlled with Container => Container'Unrestricted_Access, Node => null) do Busy (Container.Tree.TC'Unrestricted_Access.all); end return; end Iterate; function Iterate (Container : Set; Start : Cursor) return Set_Iterator_Interfaces.Reversible_Iterator'class is begin -- It was formerly the case that when Start = No_Element, the partial -- iterator was defined to behave the same as for a complete iterator, -- and iterate over the entire sequence of items. However, those -- semantics were unintuitive and arguably error-prone (it is too easy -- to accidentally create an endless loop), and so they were changed, -- per the ARG meeting in Denver on 2011/11. However, there was no -- consensus about what positive meaning this corner case should have, -- and so it was decided to simply raise an exception. This does imply, -- however, that it is not possible to use a partial iterator to specify -- an empty sequence of items. if Checks and then Start = No_Element then raise Constraint_Error with "Start position for iterator equals No_Element"; end if; if Checks and then Start.Container /= Container'Unrestricted_Access then raise Program_Error with "Start cursor of Iterate designates wrong set"; end if; pragma Assert (Vet (Container.Tree, Start.Node), "Start cursor of Iterate is bad"); -- The value of the Node component influences the behavior of the First -- and Last selector functions of the iterator object. When the Node -- component is non-null (as is the case here), it means that this is a -- partial iteration, over a subset of the complete sequence of -- items. The iterator object was constructed with a start expression, -- indicating the position from which the iteration begins. Note that -- the start position has the same value irrespective of whether this is -- a forward or reverse iteration. return It : constant Iterator := (Limited_Controlled with Container => Container'Unrestricted_Access, Node => Start.Node) do Busy (Container.Tree.TC'Unrestricted_Access.all); end return; end Iterate; ---------- -- Last -- ---------- function Last (Container : Set) return Cursor is begin return (if Container.Tree.Last = null then No_Element else Cursor'(Container'Unrestricted_Access, Container.Tree.Last)); end Last; function Last (Object : Iterator) return Cursor is begin -- The value of the iterator object's Node component influences the -- behavior of the Last (and First) selector function. -- When the Node component is null, this means the iterator object was -- constructed without a start expression, in which case the (reverse) -- iteration starts from the (logical) beginning of the entire sequence -- (corresponding to Container.Last, for a reverse iterator). -- Otherwise, this is iteration over a partial sequence of items. When -- the Node component is non-null, the iterator object was constructed -- with a start expression, that specifies the position from which the -- (reverse) partial iteration begins. if Object.Node = null then return Object.Container.Last; else return Cursor'(Object.Container, Object.Node); end if; end Last; ------------------ -- Last_Element -- ------------------ function Last_Element (Container : Set) return Element_Type is begin if Checks and then Container.Tree.Last = null then raise Constraint_Error with "set is empty"; end if; return Container.Tree.Last.Element.all; end Last_Element; ---------- -- Left -- ---------- function Left (Node : Node_Access) return Node_Access is begin return Node.Left; end Left; ------------ -- Length -- ------------ function Length (Container : Set) return Count_Type is begin return Container.Tree.Length; end Length; ---------- -- Move -- ---------- procedure Move is new Tree_Operations.Generic_Move (Clear); procedure Move (Target : in out Set; Source : in out Set) is begin Move (Target => Target.Tree, Source => Source.Tree); end Move; ---------- -- Next -- ---------- procedure Next (Position : in out Cursor) is begin Position := Next (Position); end Next; function Next (Position : Cursor) return Cursor is begin if Position = No_Element then return No_Element; end if; if Checks and then Position.Node.Element = null then raise Program_Error with "Position cursor is bad"; end if; pragma Assert (Vet (Position.Container.Tree, Position.Node), "bad cursor in Next"); declare Node : constant Node_Access := Tree_Operations.Next (Position.Node); begin return (if Node = null then No_Element else Cursor'(Position.Container, Node)); end; end Next; function Next (Object : Iterator; Position : Cursor) return Cursor is begin if Position.Container = null then return No_Element; end if; if Checks and then Position.Container /= Object.Container then raise Program_Error with "Position cursor of Next designates wrong set"; end if; return Next (Position); end Next; ------------- -- Overlap -- ------------- function Overlap (Left, Right : Set) return Boolean is begin return Set_Ops.Overlap (Left.Tree, Right.Tree); end Overlap; ------------ -- Parent -- ------------ function Parent (Node : Node_Access) return Node_Access is begin return Node.Parent; end Parent; -------------- -- Previous -- -------------- procedure Previous (Position : in out Cursor) is begin Position := Previous (Position); end Previous; function Previous (Position : Cursor) return Cursor is begin if Position = No_Element then return No_Element; end if; if Checks and then Position.Node.Element = null then raise Program_Error with "Position cursor is bad"; end if; pragma Assert (Vet (Position.Container.Tree, Position.Node), "bad cursor in Previous"); declare Node : constant Node_Access := Tree_Operations.Previous (Position.Node); begin return (if Node = null then No_Element else Cursor'(Position.Container, Node)); end; end Previous; function Previous (Object : Iterator; Position : Cursor) return Cursor is begin if Position.Container = null then return No_Element; end if; if Checks and then Position.Container /= Object.Container then raise Program_Error with "Position cursor of Previous designates wrong set"; end if; return Previous (Position); end Previous; ---------------------- -- Pseudo_Reference -- ---------------------- function Pseudo_Reference (Container : aliased Set'Class) return Reference_Control_Type is TC : constant Tamper_Counts_Access := Container.Tree.TC'Unrestricted_Access; begin return R : constant Reference_Control_Type := (Controlled with TC) do Busy (TC.all); end return; end Pseudo_Reference; ------------------- -- Query_Element -- ------------------- procedure Query_Element (Position : Cursor; Process : not null access procedure (Element : Element_Type)) is begin if Checks and then Position.Node = null then raise Constraint_Error with "Position cursor equals No_Element"; end if; if Checks and then Position.Node.Element = null then raise Program_Error with "Position cursor is bad"; end if; pragma Assert (Vet (Position.Container.Tree, Position.Node), "bad cursor in Query_Element"); declare T : Tree_Type renames Position.Container.Tree; Lock : With_Lock (T.TC'Unrestricted_Access); begin Process (Position.Node.Element.all); end; end Query_Element; --------------- -- Put_Image -- --------------- procedure Put_Image (S : in out Ada.Strings.Text_Output.Sink'Class; V : Set) is First_Time : Boolean := True; use System.Put_Images; begin Array_Before (S); for X of V loop if First_Time then First_Time := False; else Simple_Array_Between (S); end if; Element_Type'Put_Image (S, X); end loop; Array_After (S); end Put_Image; ---------- -- Read -- ---------- procedure Read (Stream : not null access Root_Stream_Type'Class; Container : out Set) is function Read_Node (Stream : not null access Root_Stream_Type'Class) return Node_Access; pragma Inline (Read_Node); procedure Read is new Tree_Operations.Generic_Read (Clear, Read_Node); --------------- -- Read_Node -- --------------- function Read_Node (Stream : not null access Root_Stream_Type'Class) return Node_Access is Node : Node_Access := new Node_Type; begin Node.Element := new Element_Type'(Element_Type'Input (Stream)); return Node; exception when others => Free (Node); -- Note that Free deallocates elem too raise; end Read_Node; -- Start of processing for Read begin Read (Stream, Container.Tree); end Read; procedure Read (Stream : not null access Root_Stream_Type'Class; Item : out Cursor) is begin raise Program_Error with "attempt to stream set cursor"; end Read; procedure Read (Stream : not null access Root_Stream_Type'Class; Item : out Constant_Reference_Type) is begin raise Program_Error with "attempt to stream reference"; end Read; ------------- -- Replace -- ------------- procedure Replace (Container : in out Set; New_Item : Element_Type) is Node : constant Node_Access := Element_Keys.Find (Container.Tree, New_Item); X : Element_Access; pragma Warnings (Off, X); begin TE_Check (Container.Tree.TC); if Checks and then Node = null then raise Constraint_Error with "attempt to replace element not in set"; end if; declare -- The element allocator may need an accessibility check in the case -- the actual type is class-wide or has access discriminants (see -- RM 4.8(10.1) and AI12-0035). pragma Unsuppress (Accessibility_Check); begin X := Node.Element; Node.Element := new Element_Type'(New_Item); Free_Element (X); end; end Replace; --------------------- -- Replace_Element -- --------------------- procedure Replace_Element (Tree : in out Tree_Type; Node : Node_Access; Item : Element_Type) is pragma Assert (Node /= null); pragma Assert (Node.Element /= null); function New_Node return Node_Access; pragma Inline (New_Node); procedure Local_Insert_Post is new Element_Keys.Generic_Insert_Post (New_Node); procedure Local_Insert_Sans_Hint is new Element_Keys.Generic_Conditional_Insert (Local_Insert_Post); procedure Local_Insert_With_Hint is new Element_Keys.Generic_Conditional_Insert_With_Hint (Local_Insert_Post, Local_Insert_Sans_Hint); -------------- -- New_Node -- -------------- function New_Node return Node_Access is -- The element allocator may need an accessibility check in the case -- the actual type is class-wide or has access discriminants (see -- RM 4.8(10.1) and AI12-0035). pragma Unsuppress (Accessibility_Check); begin Node.Element := new Element_Type'(Item); -- OK if fails Node.Color := Red; Node.Parent := null; Node.Right := null; Node.Left := null; return Node; end New_Node; Hint : Node_Access; Result : Node_Access; Inserted : Boolean; Compare : Boolean; X : Element_Access := Node.Element; -- Start of processing for Replace_Element begin -- Replace_Element assigns value Item to the element designated by Node, -- per certain semantic constraints, described as follows. -- If Item is equivalent to the element, then element is replaced and -- there's nothing else to do. This is the easy case. -- If Item is not equivalent, then the node will (possibly) have to move -- to some other place in the tree. This is slighly more complicated, -- because we must ensure that Item is not equivalent to some other -- element in the tree (in which case, the replacement is not allowed). -- Determine whether Item is equivalent to element on the specified -- node. declare Lock : With_Lock (Tree.TC'Unrestricted_Access); begin Compare := (if Item < Node.Element.all then False elsif Node.Element.all < Item then False else True); end; if Compare then -- Item is equivalent to the node's element, so we will not have to -- move the node. TE_Check (Tree.TC); declare -- The element allocator may need an accessibility check in the -- case the actual type is class-wide or has access discriminants -- (see RM 4.8(10.1) and AI12-0035). pragma Unsuppress (Accessibility_Check); begin Node.Element := new Element_Type'(Item); Free_Element (X); end; return; end if; -- The replacement Item is not equivalent to the element on the -- specified node, which means that it will need to be re-inserted in a -- different position in the tree. We must now determine whether Item is -- equivalent to some other element in the tree (which would prohibit -- the assignment and hence the move). -- Ceiling returns the smallest element equivalent or greater than the -- specified Item; if there is no such element, then it returns null. Hint := Element_Keys.Ceiling (Tree, Item); if Hint /= null then declare Lock : With_Lock (Tree.TC'Unrestricted_Access); begin Compare := Item < Hint.Element.all; end; -- Item >= Hint.Element if Checks and then not Compare then -- Ceiling returns an element that is equivalent or greater -- than Item. If Item is "not less than" the element, then -- by elimination we know that Item is equivalent to the element. -- But this means that it is not possible to assign the value of -- Item to the specified element (on Node), because a different -- element (on Hint) equivalent to Item already exsits. (Were we -- to change Node's element value, we would have to move Node, but -- we would be unable to move the Node, because its new position -- in the tree is already occupied by an equivalent element.) raise Program_Error with "attempt to replace existing element"; end if; -- Item is not equivalent to any other element in the tree, so it is -- safe to assign the value of Item to Node.Element. This means that -- the node will have to move to a different position in the tree -- (because its element will have a different value). -- The nearest (greater) neighbor of Item is Hint. This will be the -- insertion position of Node (because its element will have Item as -- its new value). -- If Node equals Hint, the relative position of Node does not -- change. This allows us to perform an optimization: we need not -- remove Node from the tree and then reinsert it with its new value, -- because it would only be placed in the exact same position. if Hint = Node then TE_Check (Tree.TC); declare -- The element allocator may need an accessibility check in the -- case actual type is class-wide or has access discriminants -- (see RM 4.8(10.1) and AI12-0035). pragma Unsuppress (Accessibility_Check); begin Node.Element := new Element_Type'(Item); Free_Element (X); end; return; end if; end if; -- If we get here, it is because Item was greater than all elements in -- the tree (Hint = null), or because Item was less than some element at -- a different place in the tree (Item < Hint.Element.all). In either -- case, we remove Node from the tree (without actually deallocating -- it), and then insert Item into the tree, onto the same Node (so no -- new node is actually allocated). Tree_Operations.Delete_Node_Sans_Free (Tree, Node); -- Checks busy-bit Local_Insert_With_Hint (Tree => Tree, Position => Hint, Key => Item, Node => Result, Inserted => Inserted); pragma Assert (Inserted); pragma Assert (Result = Node); Free_Element (X); end Replace_Element; procedure Replace_Element (Container : in out Set; Position : Cursor; New_Item : Element_Type) is begin if Checks and then Position.Node = null then raise Constraint_Error with "Position cursor equals No_Element"; end if; if Checks and then Position.Node.Element = null then raise Program_Error with "Position cursor is bad"; end if; if Checks and then Position.Container /= Container'Unrestricted_Access then raise Program_Error with "Position cursor designates wrong set"; end if; pragma Assert (Vet (Container.Tree, Position.Node), "bad cursor in Replace_Element"); Replace_Element (Container.Tree, Position.Node, New_Item); end Replace_Element; --------------------- -- Reverse_Iterate -- --------------------- procedure Reverse_Iterate (Container : Set; Process : not null access procedure (Position : Cursor)) is procedure Process_Node (Node : Node_Access); pragma Inline (Process_Node); procedure Local_Reverse_Iterate is new Tree_Operations.Generic_Reverse_Iteration (Process_Node); ------------------ -- Process_Node -- ------------------ procedure Process_Node (Node : Node_Access) is begin Process (Cursor'(Container'Unrestricted_Access, Node)); end Process_Node; T : Tree_Type renames Container.Tree'Unrestricted_Access.all; Busy : With_Busy (T.TC'Unrestricted_Access); -- Start of processing for Reverse_Iterate begin Local_Reverse_Iterate (T); end Reverse_Iterate; ----------- -- Right -- ----------- function Right (Node : Node_Access) return Node_Access is begin return Node.Right; end Right; --------------- -- Set_Color -- --------------- procedure Set_Color (Node : Node_Access; Color : Color_Type) is begin Node.Color := Color; end Set_Color; -------------- -- Set_Left -- -------------- procedure Set_Left (Node : Node_Access; Left : Node_Access) is begin Node.Left := Left; end Set_Left; ---------------- -- Set_Parent -- ---------------- procedure Set_Parent (Node : Node_Access; Parent : Node_Access) is begin Node.Parent := Parent; end Set_Parent; --------------- -- Set_Right -- --------------- procedure Set_Right (Node : Node_Access; Right : Node_Access) is begin Node.Right := Right; end Set_Right; -------------------------- -- Symmetric_Difference -- -------------------------- procedure Symmetric_Difference (Target : in out Set; Source : Set) is begin Set_Ops.Symmetric_Difference (Target.Tree, Source.Tree); end Symmetric_Difference; function Symmetric_Difference (Left, Right : Set) return Set is Tree : constant Tree_Type := Set_Ops.Symmetric_Difference (Left.Tree, Right.Tree); begin return Set'(Controlled with Tree); end Symmetric_Difference; ------------ -- To_Set -- ------------ function To_Set (New_Item : Element_Type) return Set is Tree : Tree_Type; Node : Node_Access; Inserted : Boolean; pragma Unreferenced (Node, Inserted); begin Insert_Sans_Hint (Tree, New_Item, Node, Inserted); return Set'(Controlled with Tree); end To_Set; ----------- -- Union -- ----------- procedure Union (Target : in out Set; Source : Set) is begin Set_Ops.Union (Target.Tree, Source.Tree); end Union; function Union (Left, Right : Set) return Set is Tree : constant Tree_Type := Set_Ops.Union (Left.Tree, Right.Tree); begin return Set'(Controlled with Tree); end Union; ----------- -- Write -- ----------- procedure Write (Stream : not null access Root_Stream_Type'Class; Container : Set) is procedure Write_Node (Stream : not null access Root_Stream_Type'Class; Node : Node_Access); pragma Inline (Write_Node); procedure Write is new Tree_Operations.Generic_Write (Write_Node); ---------------- -- Write_Node -- ---------------- procedure Write_Node (Stream : not null access Root_Stream_Type'Class; Node : Node_Access) is begin Element_Type'Output (Stream, Node.Element.all); end Write_Node; -- Start of processing for Write begin Write (Stream, Container.Tree); end Write; procedure Write (Stream : not null access Root_Stream_Type'Class; Item : Cursor) is begin raise Program_Error with "attempt to stream set cursor"; end Write; procedure Write (Stream : not null access Root_Stream_Type'Class; Item : Constant_Reference_Type) is begin raise Program_Error with "attempt to stream reference"; end Write; end Ada.Containers.Indefinite_Ordered_Sets;
29.04982
79
0.576565
1c65d59cc887f7e34fc288982fa6c0fceaf07d5d
3,464
adb
Ada
source/slim-messages-grfe.adb
reznikmm/slimp
acbbb895ba9c2a2dfb28e5065e630326ce958502
[ "MIT" ]
null
null
null
source/slim-messages-grfe.adb
reznikmm/slimp
acbbb895ba9c2a2dfb28e5065e630326ce958502
[ "MIT" ]
null
null
null
source/slim-messages-grfe.adb
reznikmm/slimp
acbbb895ba9c2a2dfb28e5065e630326ce958502
[ "MIT" ]
null
null
null
-- Copyright (c) 2019 Maxim Reznik <[email protected]> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- with Slim.Message_Visiters; package body Slim.Messages.grfe is List : constant Field_Description_Array := ((Uint_16_Field, 1), -- Offset (Uint_8_Field, 1), -- Transition (Uint_8_Field, 1), -- Param (Custom_Field, 1)); -- Data ---------- -- Data -- ---------- not overriding function Data (Self : Grfe_Message) return Ada.Streams.Stream_Element_Array is begin return Self.Data.To_Stream_Element_Array; end Data; ---------- -- Read -- ---------- overriding function Read (Data : not null access League.Stream_Element_Vectors.Stream_Element_Vector) return Grfe_Message is begin return Result : Grfe_Message do Read_Fields (Result, List, Data.all); end return; end Read; ----------------------- -- Read_Custom_Field -- ----------------------- overriding procedure Read_Custom_Field (Self : in out Grfe_Message; Index : Positive; Input : in out Ada.Streams.Stream_Element_Offset; Data : League.Stream_Element_Vectors.Stream_Element_Vector) is use type Ada.Streams.Stream_Element_Offset; Content : constant Ada.Streams.Stream_Element_Array (1 .. Data.Length) := Data.To_Stream_Element_Array; begin pragma Assert (Index = 1); Self.Data.Clear; Self.Data.Append (Content (Input .. Content'Last)); Input := Content'Last + 1; end Read_Custom_Field; ---------------- -- Initialize -- ---------------- not overriding procedure Initialize (Self : in out Grfe_Message; Value : Ada.Streams.Stream_Element_Array; Transition : Slim.Players.Displays.Transition_Kind := Slim.Players.Displays.None; Offset : Natural := 0) is use Slim.Players.Displays; Map : constant array (Transition_Kind) of Interfaces.Unsigned_8 := (None => Character'Pos ('c'), Left => Character'Pos ('l'), Right => Character'Pos ('r'), Up => Character'Pos ('u'), Down => Character'Pos ('d')); begin Self.Data_16 (1) := Interfaces.Unsigned_16 (Offset); Self.Data_8 (1) := Map (Transition); -- Transition Self.Data_8 (2) := Interfaces.Unsigned_8 (Offset); -- Param Self.Data.Clear; Self.Data.Append (Value); end Initialize; ----------- -- Visit -- ----------- overriding procedure Visit (Self : not null access Grfe_Message; Visiter : in out Slim.Message_Visiters.Visiter'Class) is begin Visiter.grfe (Self); end Visit; ----------- -- Write -- ----------- overriding procedure Write (Self : Grfe_Message; Tag : out Message_Tag; Data : out League.Stream_Element_Vectors.Stream_Element_Vector) is begin Tag := "grfe"; Write_Fields (Self, List, Data); end Write; ------------------------ -- Write_Custom_Field -- ------------------------ overriding procedure Write_Custom_Field (Self : Grfe_Message; Index : Positive; Data : in out League.Stream_Element_Vectors.Stream_Element_Vector) is begin pragma Assert (Index = 1); Data.Append (Self.Data); end Write_Custom_Field; end Slim.Messages.grfe;
27.0625
79
0.580831
50863edbcfed1bb24434750ccc66dea8b634c8bd
902
ads
Ada
3-mid/physics/implement/box2d/source/thin/box2d_c.ads
charlie5/lace
e9b7dc751d500ff3f559617a6fc3089ace9dc134
[ "0BSD" ]
20
2015-11-04T09:23:59.000Z
2022-01-14T10:21:42.000Z
3-mid/physics/implement/box2d/source/thin/box2d_c.ads
charlie5/lace-alire
9ace9682cf4daac7adb9f980c2868d6225b8111c
[ "0BSD" ]
2
2015-11-04T17:05:56.000Z
2015-12-08T03:16:13.000Z
3-mid/physics/implement/box2d/source/thin/box2d_c.ads
charlie5/lace-alire
9ace9682cf4daac7adb9f980c2868d6225b8111c
[ "0BSD" ]
1
2015-12-07T12:53:52.000Z
2015-12-07T12:53:52.000Z
-- This file is generated by SWIG. Please do *not* modify by hand. -- with swig; with interfaces.C; package box2d_c is -- Shape -- subtype Shape is swig.opaque_structure; type Shape_array is array (interfaces.C.Size_t range <>) of aliased box2d_c.Shape; -- Object -- subtype Object is swig.opaque_structure; type Object_array is array (interfaces.C.Size_t range <>) of aliased box2d_c.Object; -- Joint -- subtype Joint is swig.opaque_structure; type Joint_array is array (interfaces.C.Size_t range <>) of aliased box2d_c.Joint; -- Space -- subtype Space is swig.opaque_structure; type Space_array is array (interfaces.C.Size_t range <>) of aliased box2d_c.Space; -- b2Joint -- subtype b2Joint is swig.opaque_structure; type b2Joint_array is array (interfaces.C.Size_t range <>) of aliased box2d_c.b2Joint; end box2d_c;
18.04
89
0.697339
106d2e8e94e1f32207cc9fdee57c6bcef3d15c65
1,583
ads
Ada
firmware/coreboot/3rdparty/libgfxinit/common/hw-gfx-gma-pch.ads
fabiojna02/OpenCellular
45b6a202d6b2e2485c89955b9a6da920c4d56ddb
[ "CC-BY-4.0", "BSD-3-Clause" ]
1
2019-02-05T09:50:07.000Z
2019-02-05T09:50:07.000Z
firmware/coreboot/3rdparty/libgfxinit/common/hw-gfx-gma-pch.ads
aimin-wang/OpenCellular
5308146bf7edf43cc81c0e4d15305b711117070a
[ "CC-BY-4.0", "BSD-3-Clause" ]
13
2018-10-12T21:29:09.000Z
2018-10-25T20:06:51.000Z
firmware/coreboot/3rdparty/libgfxinit/common/hw-gfx-gma-pch.ads
aimin-wang/OpenCellular
5308146bf7edf43cc81c0e4d15305b711117070a
[ "CC-BY-4.0", "BSD-3-Clause" ]
null
null
null
-- -- Copyright (C) 2015-2016 secunet Security Networks AG -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 2 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- with HW.GFX.GMA.Config; private package HW.GFX.GMA.PCH is type FDI_Port_Type is (FDI_A, FDI_B, FDI_C); ---------------------------------------------------------------------------- -- common to all PCH outputs PCH_TRANSCODER_SELECT_SHIFT : constant := (case Config.CPU is when Ironlake => 30, when Sandybridge | Ivybridge => 29, when others => 0); PCH_TRANSCODER_SELECT_MASK : constant := (case Config.CPU is when Ironlake => 1 * 2 ** 30, when Sandybridge | Ivybridge => 3 * 2 ** 29, when others => 0); type PCH_TRANSCODER_SELECT_Array is array (FDI_Port_Type) of Word32; PCH_TRANSCODER_SELECT : constant PCH_TRANSCODER_SELECT_Array := (FDI_A => 0 * 2 ** PCH_TRANSCODER_SELECT_SHIFT, FDI_B => 1 * 2 ** PCH_TRANSCODER_SELECT_SHIFT, FDI_C => 2 * 2 ** PCH_TRANSCODER_SELECT_SHIFT); end HW.GFX.GMA.PCH;
35.977273
79
0.607707
502850bb6e5572544083c7de5f35246bce76892f
3,635
ads
Ada
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/g-tty.ads
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/g-tty.ads
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/g-tty.ads
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- G N A T . T T Y -- -- -- -- S p e c -- -- -- -- Copyright (C) 2002-2020, AdaCore -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package provides control over pseudo terminals (ttys) -- This package is only supported on unix systems. See function TTY_Supported -- to test dynamically whether other functions of this package can be called. with System; with GNAT.OS_Lib; package GNAT.TTY is type TTY_Handle is private; -- Handle for a tty descriptor function TTY_Supported return Boolean; -- If True, the other functions of this package can be called. Otherwise, -- all functions in this package will raise Program_Error if called. procedure Allocate_TTY (Handle : out TTY_Handle); -- Allocate a new tty procedure Reset_TTY (Handle : TTY_Handle); -- Reset settings of a given tty procedure Close_TTY (Handle : in out TTY_Handle); -- Close a given tty function TTY_Name (Handle : TTY_Handle) return String; -- Return the external name of a tty. The name depends on the tty handling -- on the given target. It will typically look like: "/dev/ptya1" function TTY_Descriptor (Handle : TTY_Handle) return GNAT.OS_Lib.File_Descriptor; -- Return the low level descriptor associated with Handle private type TTY_Handle is record Handle : System.Address := System.Null_Address; end record; end GNAT.TTY;
49.121622
78
0.484182
c512c51aeae52b681237f200020d76a2e4369803
214,586
adb
Ada
HLS/lab3/dct.prj/solution7/.autopilot/db/Loop_Xpose_Row_Outer.adb
lfVelez/ISPR
840f41c2053a48642a7b287feecfea79c6f389b3
[ "MIT" ]
1
2021-03-03T16:53:52.000Z
2021-03-03T16:53:52.000Z
HLS/lab3/dct.prj/solution7/.autopilot/db/Loop_Xpose_Row_Outer.adb
lfVelez/ISPR
840f41c2053a48642a7b287feecfea79c6f389b3
[ "MIT" ]
null
null
null
HLS/lab3/dct.prj/solution7/.autopilot/db/Loop_Xpose_Row_Outer.adb
lfVelez/ISPR
840f41c2053a48642a7b287feecfea79c6f389b3
[ "MIT" ]
null
null
null
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="14"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName/> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>Loop_Xpose_Row_Outer</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>row_outbuf_i</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>0</direction> <if_type>1</if_type> <array_size>64</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>col_inbuf</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName>RAM</coreName> </Obj> <bitwidth>128</bitwidth> </Value> <direction>2</direction> <if_type>1</if_type> <array_size>8</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>50</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_3"> <Value> <Obj> <type>0</type> <id>3</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>63</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_4"> <Value> <Obj> <type>0</type> <id>5</id> <name>indvar_flatten</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>160</item> <item>161</item> <item>162</item> <item>163</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_5"> <Value> <Obj> <type>0</type> <id>6</id> <name>j_0_i</name> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="11" tracking_level="0" version="0"> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second class_id="12" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="13" tracking_level="0" version="0"> <first class_id="14" tracking_level="0" version="0"> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>40</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>164</item> <item>165</item> <item>166</item> <item>167</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_6"> <Value> <Obj> <type>0</type> <id>7</id> <name>i_1_i</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>i</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>168</item> <item>169</item> <item>170</item> <item>171</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_7"> <Value> <Obj> <type>0</type> <id>8</id> <name>exitcond_flatten</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName>exitcond_flatten_fu_116_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>172</item> <item>174</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_8"> <Value> <Obj> <type>0</type> <id>9</id> <name>indvar_flatten_next</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName>indvar_flatten_next_fu_122_p2</rtlName> <coreName/> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>175</item> <item>177</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_9"> <Value> <Obj> <type>0</type> <id>10</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>178</item> <item>179</item> <item>180</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>12</id> <name>j</name> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>37</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>37</second> </item> </second> </item> </inlineStackInfo> <originalName>j</originalName> <rtlName>j_fu_128_p2</rtlName> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>65</item> <item>66</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>15</id> <name>tmp_s</name> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>39</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>39</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_s_fu_134_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>67</item> <item>69</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>16</id> <name>i_1_i_mid2</name> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>39</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>39</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>i_1_i_mid2_fu_140_p3</rtlName> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>70</item> <item>72</item> <item>73</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>17</id> <name>tmp_3_mid2_v</name> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>40</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_3_mid2_v_fu_148_p3</rtlName> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>74</item> <item>75</item> <item>76</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>18</id> <name>tmp_3_mid2</name> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>40</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_3_mid2_fu_160_p1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>77</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>19</id> <name>tmp_3_mid2_cast</name> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>40</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_3_mid2_cast_fu_164_p1</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>78</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>23</id> <name>tmp</name> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>39</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>39</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_fu_167_p3</rtlName> <coreName/> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>80</item> <item>81</item> <item>83</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>24</id> <name>tmp_9_cast</name> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>40</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_9_cast_fu_174_p1</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>84</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>25</id> <name>tmp_1</name> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>40</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_1_fu_178_p2</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>85</item> <item>86</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>26</id> <name>tmp_10_cast</name> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>40</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_10_cast_fu_184_p1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>87</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>27</id> <name>row_outbuf_i_addr</name> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>40</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>88</item> <item>90</item> <item>91</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>28</id> <name>row_outbuf_i_load</name> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>40</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>92</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>29</id> <name>col_inbuf_addr</name> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>40</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>93</item> <item>94</item> <item>95</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>30</id> <name>col_inbuf_load</name> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>40</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>128</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>96</item> </oprand_edges> <opcode>load</opcode> <m_Display>2</m_Display> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>31</id> <name>tmp_27</name> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>39</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>39</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_27_fu_156_p1</rtlName> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>97</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>32</id> <name>tmp_4</name> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>40</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_4_fu_194_p3</rtlName> <coreName/> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>99</item> <item>100</item> <item>101</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>33</id> <name>tmp_5</name> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>40</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_5_fu_201_p2</rtlName> <coreName/> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>102</item> <item>104</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>34</id> <name>tmp_28</name> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>40</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_28_fu_207_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>105</item> <item>106</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>35</id> <name>tmp_29</name> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>40</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_29_fu_213_p1</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>107</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>36</id> <name>tmp_30</name> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>40</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_30_fu_217_p1</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>108</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>37</id> <name>tmp_31</name> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>40</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_31_fu_269_p1</rtlName> <coreName/> </Obj> <bitwidth>128</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>109</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>38</id> <name>tmp_32</name> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>40</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_32_fu_272_p2</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>110</item> <item>112</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>39</id> <name>tmp_33</name> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>40</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_33_fu_221_p3</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>113</item> <item>114</item> <item>115</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>40</id> <name>tmp_34</name> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>40</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_34_fu_229_p3</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>116</item> <item>117</item> <item>118</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>41</id> <name>tmp_35</name> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>40</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_35_fu_277_p3</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>119</item> <item>120</item> <item>121</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>42</id> <name>tmp_36</name> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>40</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_36_fu_237_p2</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>122</item> <item>123</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>43</id> <name>tmp_37</name> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>40</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_37_fu_283_p1</rtlName> <coreName/> </Obj> <bitwidth>128</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>124</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>44</id> <name>tmp_38</name> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>40</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_38_fu_243_p1</rtlName> <coreName/> </Obj> <bitwidth>128</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>125</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>45</id> <name>tmp_39</name> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>40</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_39_fu_247_p1</rtlName> <coreName/> </Obj> <bitwidth>128</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>126</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>46</id> <name>tmp_40</name> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>40</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_40_fu_287_p2</rtlName> <coreName/> </Obj> <bitwidth>128</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>127</item> <item>128</item> </oprand_edges> <opcode>shl</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>47</id> <name>tmp_41</name> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>40</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_41_fu_293_p4</rtlName> <coreName/> </Obj> <bitwidth>128</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>130</item> <item>131</item> <item>133</item> <item>135</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>48</id> <name>tmp_42</name> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>40</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_42_fu_302_p3</rtlName> <coreName/> </Obj> <bitwidth>128</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>136</item> <item>137</item> <item>138</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>49</id> <name>tmp_43</name> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>40</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_43_fu_251_p2</rtlName> <coreName/> </Obj> <bitwidth>128</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>140</item> <item>141</item> </oprand_edges> <opcode>shl</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>50</id> <name>tmp_44</name> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>40</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_44_fu_257_p2</rtlName> <coreName/> </Obj> <bitwidth>128</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>142</item> <item>143</item> </oprand_edges> <opcode>lshr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>51</id> <name>p_demorgan</name> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>40</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_demorgan_fu_263_p2</rtlName> <coreName/> </Obj> <bitwidth>128</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>144</item> <item>145</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>52</id> <name>tmp_45</name> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>40</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_45_fu_308_p2</rtlName> <coreName/> </Obj> <bitwidth>128</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>146</item> <item>147</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>53</id> <name>tmp_46</name> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>40</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_46_fu_313_p2</rtlName> <coreName/> </Obj> <bitwidth>128</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>148</item> <item>149</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>54</id> <name>tmp_47</name> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>40</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_47_fu_319_p2</rtlName> <coreName/> </Obj> <bitwidth>128</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>150</item> <item>151</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>55</id> <name>tmp_48</name> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>40</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>col_inbuf_d0</rtlName> <coreName/> </Obj> <bitwidth>128</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>152</item> <item>153</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>56</id> <name/> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>40</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>154</item> <item>155</item> <item>215</item> </oprand_edges> <opcode>store</opcode> <m_Display>2</m_Display> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>58</id> <name>i</name> <fileName>dct.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>39</lineNumber> <contextFuncName>dct_2d</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/lfvelez/Documentos/ISPR/HLS/labsource/labs/lab3</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.c</first> <second>dct</second> </first> <second>87</second> </item> <item> <first> <first>dct.c</first> <second>dct_2d</second> </first> <second>39</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName>i_fu_189_p2</rtlName> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>156</item> <item>157</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>59</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>158</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>61</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>13</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_53"> <Value> <Obj> <type>2</type> <id>64</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_54"> <Value> <Obj> <type>2</type> <id>68</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>8</content> </item> <item class_id_reference="16" object_id="_55"> <Value> <Obj> <type>2</type> <id>71</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_56"> <Value> <Obj> <type>2</type> <id>82</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_57"> <Value> <Obj> <type>2</type> <id>89</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_58"> <Value> <Obj> <type>2</type> <id>103</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>7</bitwidth> </Value> <const_type>0</const_type> <content>15</content> </item> <item class_id_reference="16" object_id="_59"> <Value> <Obj> <type>2</type> <id>111</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <const_type>0</const_type> <content>127</content> </item> <item class_id_reference="16" object_id="_60"> <Value> <Obj> <type>2</type> <id>132</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>127</content> </item> <item class_id_reference="16" object_id="_61"> <Value> <Obj> <type>2</type> <id>134</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_62"> <Value> <Obj> <type>2</type> <id>139</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>128</bitwidth> </Value> <const_type>0</const_type> <content>340282366920938463463374607431768211455</content> </item> <item class_id_reference="16" object_id="_63"> <Value> <Obj> <type>2</type> <id>159</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>7</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_64"> <Value> <Obj> <type>2</type> <id>173</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>7</bitwidth> </Value> <const_type>0</const_type> <content>64</content> </item> <item class_id_reference="16" object_id="_65"> <Value> <Obj> <type>2</type> <id>176</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>7</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_66"> <Obj> <type>3</type> <id>4</id> <name>newFuncRoot</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>3</item> </node_objs> </item> <item class_id_reference="18" object_id="_67"> <Obj> <type>3</type> <id>11</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>6</count> <item_version>0</item_version> <item>5</item> <item>6</item> <item>7</item> <item>8</item> <item>9</item> <item>10</item> </node_objs> </item> <item class_id_reference="18" object_id="_68"> <Obj> <type>3</type> <id>60</id> <name>.preheader2.i</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>42</count> <item_version>0</item_version> <item>12</item> <item>15</item> <item>16</item> <item>17</item> <item>18</item> <item>19</item> <item>23</item> <item>24</item> <item>25</item> <item>26</item> <item>27</item> <item>28</item> <item>29</item> <item>30</item> <item>31</item> <item>32</item> <item>33</item> <item>34</item> <item>35</item> <item>36</item> <item>37</item> <item>38</item> <item>39</item> <item>40</item> <item>41</item> <item>42</item> <item>43</item> <item>44</item> <item>45</item> <item>46</item> <item>47</item> <item>48</item> <item>49</item> <item>50</item> <item>51</item> <item>52</item> <item>53</item> <item>54</item> <item>55</item> <item>56</item> <item>58</item> <item>59</item> </node_objs> </item> <item class_id_reference="18" object_id="_69"> <Obj> <type>3</type> <id>62</id> <name>.preheader1.i.exitStub</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>61</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>104</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_70"> <id>63</id> <edge_type>2</edge_type> <source_obj>11</source_obj> <sink_obj>3</sink_obj> </item> <item class_id_reference="20" object_id="_71"> <id>65</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_72"> <id>66</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_73"> <id>67</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>15</sink_obj> </item> <item class_id_reference="20" object_id="_74"> <id>69</id> <edge_type>1</edge_type> <source_obj>68</source_obj> <sink_obj>15</sink_obj> </item> <item class_id_reference="20" object_id="_75"> <id>70</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_76"> <id>72</id> <edge_type>1</edge_type> <source_obj>71</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_77"> <id>73</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_78"> <id>74</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_79"> <id>75</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_80"> <id>76</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_81"> <id>77</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>18</sink_obj> </item> <item class_id_reference="20" object_id="_82"> <id>78</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>19</sink_obj> </item> <item class_id_reference="20" object_id="_83"> <id>81</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_84"> <id>83</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_85"> <id>84</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_86"> <id>85</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_87"> <id>86</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_88"> <id>87</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_89"> <id>88</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_90"> <id>90</id> <edge_type>1</edge_type> <source_obj>89</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_91"> <id>91</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_92"> <id>92</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_93"> <id>93</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_94"> <id>94</id> <edge_type>1</edge_type> <source_obj>89</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_95"> <id>95</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_96"> <id>96</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_97"> <id>97</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_98"> <id>100</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_99"> <id>101</id> <edge_type>1</edge_type> <source_obj>71</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_100"> <id>102</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_101"> <id>104</id> <edge_type>1</edge_type> <source_obj>103</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_102"> <id>105</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_103"> <id>106</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_104"> <id>107</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>35</sink_obj> </item> <item class_id_reference="20" object_id="_105"> <id>108</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_106"> <id>109</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_107"> <id>110</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>38</sink_obj> </item> <item class_id_reference="20" object_id="_108"> <id>112</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>38</sink_obj> </item> <item class_id_reference="20" object_id="_109"> <id>113</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_110"> <id>114</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_111"> <id>115</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_112"> <id>116</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>40</sink_obj> </item> <item class_id_reference="20" object_id="_113"> <id>117</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>40</sink_obj> </item> <item class_id_reference="20" object_id="_114"> <id>118</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>40</sink_obj> </item> <item class_id_reference="20" object_id="_115"> <id>119</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>41</sink_obj> </item> <item class_id_reference="20" object_id="_116"> <id>120</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>41</sink_obj> </item> <item class_id_reference="20" object_id="_117"> <id>121</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>41</sink_obj> </item> <item class_id_reference="20" object_id="_118"> <id>122</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_119"> <id>123</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_120"> <id>124</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_121"> <id>125</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_122"> <id>126</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_123"> <id>127</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_124"> <id>128</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_125"> <id>131</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>47</sink_obj> </item> <item class_id_reference="20" object_id="_126"> <id>133</id> <edge_type>1</edge_type> <source_obj>132</source_obj> <sink_obj>47</sink_obj> </item> <item class_id_reference="20" object_id="_127"> <id>135</id> <edge_type>1</edge_type> <source_obj>134</source_obj> <sink_obj>47</sink_obj> </item> <item class_id_reference="20" object_id="_128"> <id>136</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_129"> <id>137</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_130"> <id>138</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_131"> <id>140</id> <edge_type>1</edge_type> <source_obj>139</source_obj> <sink_obj>49</sink_obj> </item> <item class_id_reference="20" object_id="_132"> <id>141</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>49</sink_obj> </item> <item class_id_reference="20" object_id="_133"> <id>142</id> <edge_type>1</edge_type> <source_obj>139</source_obj> <sink_obj>50</sink_obj> </item> <item class_id_reference="20" object_id="_134"> <id>143</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>50</sink_obj> </item> <item class_id_reference="20" object_id="_135"> <id>144</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>51</sink_obj> </item> <item class_id_reference="20" object_id="_136"> <id>145</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>51</sink_obj> </item> <item class_id_reference="20" object_id="_137"> <id>146</id> <edge_type>1</edge_type> <source_obj>51</source_obj> <sink_obj>52</sink_obj> </item> <item class_id_reference="20" object_id="_138"> <id>147</id> <edge_type>1</edge_type> <source_obj>139</source_obj> <sink_obj>52</sink_obj> </item> <item class_id_reference="20" object_id="_139"> <id>148</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_140"> <id>149</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_141"> <id>150</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>54</sink_obj> </item> <item class_id_reference="20" object_id="_142"> <id>151</id> <edge_type>1</edge_type> <source_obj>51</source_obj> <sink_obj>54</sink_obj> </item> <item class_id_reference="20" object_id="_143"> <id>152</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>55</sink_obj> </item> <item class_id_reference="20" object_id="_144"> <id>153</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>55</sink_obj> </item> <item class_id_reference="20" object_id="_145"> <id>154</id> <edge_type>1</edge_type> <source_obj>55</source_obj> <sink_obj>56</sink_obj> </item> <item class_id_reference="20" object_id="_146"> <id>155</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>56</sink_obj> </item> <item class_id_reference="20" object_id="_147"> <id>156</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>58</sink_obj> </item> <item class_id_reference="20" object_id="_148"> <id>157</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>58</sink_obj> </item> <item class_id_reference="20" object_id="_149"> <id>158</id> <edge_type>2</edge_type> <source_obj>11</source_obj> <sink_obj>59</sink_obj> </item> <item class_id_reference="20" object_id="_150"> <id>160</id> <edge_type>1</edge_type> <source_obj>159</source_obj> <sink_obj>5</sink_obj> </item> <item class_id_reference="20" object_id="_151"> <id>161</id> <edge_type>2</edge_type> <source_obj>4</source_obj> <sink_obj>5</sink_obj> </item> <item class_id_reference="20" object_id="_152"> <id>162</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>5</sink_obj> </item> <item class_id_reference="20" object_id="_153"> <id>163</id> <edge_type>2</edge_type> <source_obj>60</source_obj> <sink_obj>5</sink_obj> </item> <item class_id_reference="20" object_id="_154"> <id>164</id> <edge_type>1</edge_type> <source_obj>71</source_obj> <sink_obj>6</sink_obj> </item> <item class_id_reference="20" object_id="_155"> <id>165</id> <edge_type>2</edge_type> <source_obj>4</source_obj> <sink_obj>6</sink_obj> </item> <item class_id_reference="20" object_id="_156"> <id>166</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>6</sink_obj> </item> <item class_id_reference="20" object_id="_157"> <id>167</id> <edge_type>2</edge_type> <source_obj>60</source_obj> <sink_obj>6</sink_obj> </item> <item class_id_reference="20" object_id="_158"> <id>168</id> <edge_type>1</edge_type> <source_obj>71</source_obj> <sink_obj>7</sink_obj> </item> <item class_id_reference="20" object_id="_159"> <id>169</id> <edge_type>2</edge_type> <source_obj>4</source_obj> <sink_obj>7</sink_obj> </item> <item class_id_reference="20" object_id="_160"> <id>170</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>7</sink_obj> </item> <item class_id_reference="20" object_id="_161"> <id>171</id> <edge_type>2</edge_type> <source_obj>60</source_obj> <sink_obj>7</sink_obj> </item> <item class_id_reference="20" object_id="_162"> <id>172</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>8</sink_obj> </item> <item class_id_reference="20" object_id="_163"> <id>174</id> <edge_type>1</edge_type> <source_obj>173</source_obj> <sink_obj>8</sink_obj> </item> <item class_id_reference="20" object_id="_164"> <id>175</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>9</sink_obj> </item> <item class_id_reference="20" object_id="_165"> <id>177</id> <edge_type>1</edge_type> <source_obj>176</source_obj> <sink_obj>9</sink_obj> </item> <item class_id_reference="20" object_id="_166"> <id>178</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>10</sink_obj> </item> <item class_id_reference="20" object_id="_167"> <id>179</id> <edge_type>2</edge_type> <source_obj>60</source_obj> <sink_obj>10</sink_obj> </item> <item class_id_reference="20" object_id="_168"> <id>180</id> <edge_type>2</edge_type> <source_obj>62</source_obj> <sink_obj>10</sink_obj> </item> <item class_id_reference="20" object_id="_169"> <id>211</id> <edge_type>2</edge_type> <source_obj>4</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_170"> <id>212</id> <edge_type>2</edge_type> <source_obj>11</source_obj> <sink_obj>62</sink_obj> </item> <item class_id_reference="20" object_id="_171"> <id>213</id> <edge_type>2</edge_type> <source_obj>11</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_172"> <id>214</id> <edge_type>2</edge_type> <source_obj>60</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_173"> <id>215</id> <edge_type>4</edge_type> <source_obj>30</source_obj> <sink_obj>56</sink_obj> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_174"> <mId>1</mId> <mTag>Loop_Xpose_Row_Outer</mTag> <mType>0</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>2</item> <item>3</item> <item>4</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>133</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_175"> <mId>2</mId> <mTag>Entry</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>4</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_176"> <mId>3</mId> <mTag>Xpose_Row_Outer_Loop_Xpose_Row_Inner_Loop</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>11</item> <item>60</item> </basic_blocks> <mII>2</mII> <mDepth>6</mDepth> <mMinTripCount>64</mMinTripCount> <mMaxTripCount>64</mMaxTripCount> <mMinLatency>131</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_177"> <mId>4</mId> <mTag>Return</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>62</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> </cdfg_regions> <fsm class_id="24" tracking_level="1" version="0" object_id="_178"> <states class_id="25" tracking_level="0" version="0"> <count>8</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_179"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_180"> <id>3</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_181"> <id>2</id> <operations> <count>6</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_182"> <id>5</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_183"> <id>6</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_184"> <id>7</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_185"> <id>8</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_186"> <id>9</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_187"> <id>10</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_188"> <id>3</id> <operations> <count>5</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_189"> <id>12</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_190"> <id>15</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_191"> <id>16</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_192"> <id>17</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_193"> <id>31</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_194"> <id>4</id> <operations> <count>10</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_195"> <id>18</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_196"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_197"> <id>23</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_198"> <id>24</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_199"> <id>25</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_200"> <id>26</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_201"> <id>27</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_202"> <id>28</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_203"> <id>29</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_204"> <id>58</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_205"> <id>5</id> <operations> <count>14</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_206"> <id>28</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_207"> <id>32</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_208"> <id>33</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_209"> <id>34</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_210"> <id>35</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_211"> <id>36</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_212"> <id>39</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_213"> <id>40</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_214"> <id>42</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_215"> <id>44</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_216"> <id>45</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_217"> <id>49</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_218"> <id>50</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_219"> <id>51</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_220"> <id>6</id> <operations> <count>6</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_221"> <id>30</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_222"> <id>37</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_223"> <id>38</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_224"> <id>41</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_225"> <id>43</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_226"> <id>46</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_227"> <id>7</id> <operations> <count>15</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_228"> <id>13</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_229"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_230"> <id>20</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_231"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_232"> <id>22</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_233"> <id>30</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_234"> <id>47</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_235"> <id>48</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_236"> <id>52</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_237"> <id>53</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_238"> <id>54</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_239"> <id>55</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_240"> <id>56</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_241"> <id>57</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_242"> <id>59</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_243"> <id>8</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_244"> <id>61</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>8</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_245"> <inState>1</inState> <outState>2</outState> <condition class_id="31" tracking_level="0" version="0"> <id>47</id> <sop class_id="32" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="33" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_246"> <inState>3</inState> <outState>4</outState> <condition> <id>58</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_247"> <inState>4</inState> <outState>5</outState> <condition> <id>59</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_248"> <inState>5</inState> <outState>6</outState> <condition> <id>60</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_249"> <inState>6</inState> <outState>7</outState> <condition> <id>61</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_250"> <inState>7</inState> <outState>2</outState> <condition> <id>62</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_251"> <inState>2</inState> <outState>8</outState> <condition> <id>57</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item class_id="34" tracking_level="0" version="0"> <first class_id="35" tracking_level="0" version="0"> <first>8</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_252"> <inState>2</inState> <outState>3</outState> <condition> <id>63</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>8</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="36" tracking_level="1" version="0" object_id="_253"> <dp_component_resource class_id="37" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_component_resource> <dp_expression_resource> <count>27</count> <item_version>0</item_version> <item class_id="38" tracking_level="0" version="0"> <first>ap_block_state1 ( or ) </first> <second class_id="39" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="40" tracking_level="0" version="0"> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_enable_pp0 ( xor ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>2</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter1 ( xor ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>2</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>col_inbuf_d0 ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>128</second> </item> <item> <first>(1P1)</first> <second>128</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>128</second> </item> </second> </item> <item> <first>exitcond_flatten_fu_116_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>7</second> </item> <item> <first>(1P1)</first> <second>8</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>4</second> </item> </second> </item> <item> <first>i_1_i_mid2_fu_140_p3 ( select ) </first> <second> <count>5</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>(2P2)</first> <second>4</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>4</second> </item> </second> </item> <item> <first>i_fu_189_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>4</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>13</second> </item> </second> </item> <item> <first>indvar_flatten_next_fu_122_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>7</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>j_fu_128_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>4</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>13</second> </item> </second> </item> <item> <first>p_demorgan_fu_263_p2 ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>128</second> </item> <item> <first>(1P1)</first> <second>128</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>128</second> </item> </second> </item> <item> <first>tmp_1_fu_178_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>8</second> </item> <item> <first>(1P1)</first> <second>8</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>tmp_28_fu_207_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>7</second> </item> <item> <first>(1P1)</first> <second>7</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>4</second> </item> </second> </item> <item> <first>tmp_32_fu_272_p2 ( xor ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>8</second> </item> <item> <first>(1P1)</first> <second>7</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>8</second> </item> </second> </item> <item> <first>tmp_33_fu_221_p3 ( select ) </first> <second> <count>5</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>8</second> </item> <item> <first>(2P2)</first> <second>8</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>8</second> </item> </second> </item> <item> <first>tmp_34_fu_229_p3 ( select ) </first> <second> <count>5</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>8</second> </item> <item> <first>(2P2)</first> <second>8</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>8</second> </item> </second> </item> <item> <first>tmp_35_fu_277_p3 ( select ) </first> <second> <count>5</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>8</second> </item> <item> <first>(2P2)</first> <second>8</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>8</second> </item> </second> </item> <item> <first>tmp_36_fu_237_p2 ( xor ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>8</second> </item> <item> <first>(1P1)</first> <second>7</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>8</second> </item> </second> </item> <item> <first>tmp_3_mid2_v_fu_148_p3 ( select ) </first> <second> <count>5</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>4</second> </item> <item> <first>(2P2)</first> <second>4</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>4</second> </item> </second> </item> <item> <first>tmp_40_fu_287_p2 ( shl ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>128</second> </item> <item> <first>(1P1)</first> <second>128</second> </item> <item> <first>FF</first> <second>291</second> </item> <item> <first>LUT</first> <second>423</second> </item> </second> </item> <item> <first>tmp_42_fu_302_p3 ( select ) </first> <second> <count>5</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>128</second> </item> <item> <first>(2P2)</first> <second>128</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>128</second> </item> </second> </item> <item> <first>tmp_43_fu_251_p2 ( shl ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>2</second> </item> <item> <first>(1P1)</first> <second>128</second> </item> <item> <first>FF</first> <second>291</second> </item> <item> <first>LUT</first> <second>423</second> </item> </second> </item> <item> <first>tmp_44_fu_257_p2 ( lshr ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>2</second> </item> <item> <first>(1P1)</first> <second>128</second> </item> <item> <first>FF</first> <second>291</second> </item> <item> <first>LUT</first> <second>423</second> </item> </second> </item> <item> <first>tmp_45_fu_308_p2 ( xor ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>128</second> </item> <item> <first>(1P1)</first> <second>2</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>128</second> </item> </second> </item> <item> <first>tmp_46_fu_313_p2 ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>128</second> </item> <item> <first>(1P1)</first> <second>128</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>128</second> </item> </second> </item> <item> <first>tmp_47_fu_319_p2 ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>128</second> </item> <item> <first>(1P1)</first> <second>128</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>128</second> </item> </second> </item> <item> <first>tmp_5_fu_201_p2 ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>7</second> </item> <item> <first>(1P1)</first> <second>4</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>7</second> </item> </second> </item> <item> <first>tmp_s_fu_134_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>4</second> </item> <item> <first>(1P1)</first> <second>5</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> </dp_expression_resource> <dp_fifo_resource> <count>0</count> <item_version>0</item_version> </dp_fifo_resource> <dp_memory_resource> <count>0</count> <item_version>0</item_version> </dp_memory_resource> <dp_multiplexer_resource> <count>11</count> <item_version>0</item_version> <item> <first>ap_NS_fsm</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>5</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>5</second> </item> <item> <first>LUT</first> <second>27</second> </item> </second> </item> <item> <first>ap_done</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter1</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter2</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>col_inbuf_address0</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>3</second> </item> <item> <first>(2Count)</first> <second>9</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>i_1_i_phi_fu_108_p4</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>4</second> </item> <item> <first>(2Count)</first> <second>8</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>i_1_i_reg_104</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>4</second> </item> <item> <first>(2Count)</first> <second>8</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>indvar_flatten_phi_fu_85_p4</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>7</second> </item> <item> <first>(2Count)</first> <second>14</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>indvar_flatten_reg_81</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>7</second> </item> <item> <first>(2Count)</first> <second>14</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>j_0_i_phi_fu_96_p4</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>4</second> </item> <item> <first>(2Count)</first> <second>8</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>j_0_i_reg_92</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>4</second> </item> <item> <first>(2Count)</first> <second>8</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> </dp_multiplexer_resource> <dp_register_resource> <count>21</count> <item_version>0</item_version> <item> <first>ap_CS_fsm</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>4</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>4</second> </item> </second> </item> <item> <first>ap_done_reg</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter0</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter1</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter2</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_reg_pp0_iter2_col_inbuf_addr_reg_363</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>3</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>3</second> </item> </second> </item> <item> <first>col_inbuf_addr_reg_363</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>3</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>3</second> </item> </second> </item> <item> <first>exitcond_flatten_reg_331</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>i_1_i_mid2_reg_340</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>4</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>4</second> </item> </second> </item> <item> <first>i_1_i_reg_104</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>4</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>4</second> </item> </second> </item> <item> <first>i_reg_368</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>4</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>4</second> </item> </second> </item> <item> <first>indvar_flatten_next_reg_335</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>7</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>7</second> </item> </second> </item> <item> <first>indvar_flatten_reg_81</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>7</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>7</second> </item> </second> </item> <item> <first>j_0_i_reg_92</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>4</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>4</second> </item> </second> </item> <item> <first>p_demorgan_reg_390</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>128</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>128</second> </item> </second> </item> <item> <first>row_outbuf_i_load_reg_373</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>16</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>16</second> </item> </second> </item> <item> <first>tmp_27_reg_353</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>3</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>3</second> </item> </second> </item> <item> <first>tmp_28_reg_378</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>tmp_29_reg_384</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>8</second> </item> <item> <first>(Consts)</first> <second>5</second> </item> <item> <first>FF</first> <second>3</second> </item> </second> </item> <item> <first>tmp_3_mid2_v_reg_346</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>4</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>4</second> </item> </second> </item> <item> <first>tmp_40_reg_396</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>128</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>128</second> </item> </second> </item> </dp_register_resource> <dp_component_map class_id="41" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_component_map> <dp_expression_map> <count>24</count> <item_version>0</item_version> <item class_id="42" tracking_level="0" version="0"> <first>col_inbuf_d0 ( or ) </first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>exitcond_flatten_fu_116_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>i_1_i_mid2_fu_140_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>i_fu_189_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>indvar_flatten_next_fu_122_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>j_fu_128_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>p_demorgan_fu_263_p2 ( and ) </first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>tmp_1_fu_178_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>tmp_28_fu_207_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>tmp_32_fu_272_p2 ( xor ) </first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>tmp_33_fu_221_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>tmp_34_fu_229_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>tmp_35_fu_277_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>tmp_36_fu_237_p2 ( xor ) </first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>tmp_3_mid2_v_fu_148_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>tmp_40_fu_287_p2 ( shl ) </first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>tmp_42_fu_302_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>tmp_43_fu_251_p2 ( shl ) </first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>tmp_44_fu_257_p2 ( lshr ) </first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>tmp_45_fu_308_p2 ( xor ) </first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>tmp_46_fu_313_p2 ( and ) </first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>tmp_47_fu_319_p2 ( and ) </first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>tmp_5_fu_201_p2 ( or ) </first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>tmp_s_fu_134_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> </dp_expression_map> <dp_fifo_map> <count>0</count> <item_version>0</item_version> </dp_fifo_map> <dp_memory_map> <count>0</count> <item_version>0</item_version> </dp_memory_map> </res> <node_label_latency class_id="43" tracking_level="0" version="0"> <count>50</count> <item_version>0</item_version> <item class_id="44" tracking_level="0" version="0"> <first>3</first> <second class_id="45" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>5</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>6</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>7</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>8</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>9</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>10</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>12</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>15</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>16</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>17</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>18</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>19</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>23</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>24</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>25</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>26</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>27</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>28</first> <second> <first>3</first> <second>1</second> </second> </item> <item> <first>29</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>30</first> <second> <first>5</first> <second>1</second> </second> </item> <item> <first>31</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>32</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>33</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>34</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>35</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>36</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>38</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>39</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>40</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>41</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>42</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>43</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>44</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>45</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>46</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>47</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>48</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>49</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>50</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>51</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>52</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>53</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>54</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>55</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>56</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>58</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>59</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>61</first> <second> <first>2</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="46" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="47" tracking_level="0" version="0"> <first>4</first> <second class_id="48" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>11</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>60</first> <second> <first>2</first> <second>6</second> </second> </item> <item> <first>62</first> <second> <first>2</first> <second>2</second> </second> </item> </bblk_ent_exit> <regions class_id="49" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="50" tracking_level="1" version="0" object_id="_254"> <region_name>Xpose_Row_Outer_Loop_Xpose_Row_Inner_Loop</region_name> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>11</item> <item>60</item> </basic_blocks> <nodes> <count>0</count> <item_version>0</item_version> </nodes> <anchor_node>-1</anchor_node> <region_type>8</region_type> <interval>2</interval> <pipe_depth>6</pipe_depth> </item> </regions> <dp_fu_nodes class_id="51" tracking_level="0" version="0"> <count>45</count> <item_version>0</item_version> <item class_id="52" tracking_level="0" version="0"> <first>58</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>65</first> <second> <count>2</count> <item_version>0</item_version> <item>28</item> <item>28</item> </second> </item> <item> <first>70</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>77</first> <second> <count>3</count> <item_version>0</item_version> <item>30</item> <item>30</item> <item>56</item> </second> </item> <item> <first>85</first> <second> <count>1</count> <item_version>0</item_version> <item>5</item> </second> </item> <item> <first>96</first> <second> <count>1</count> <item_version>0</item_version> <item>6</item> </second> </item> <item> <first>108</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> <item> <first>116</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>122</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>128</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>134</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>140</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>148</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>156</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>160</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>164</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>167</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>174</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>178</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>184</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>189</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>194</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>201</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>207</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>213</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>217</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>221</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>229</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>237</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>243</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>247</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>251</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>257</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>263</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>269</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>272</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>277</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>283</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>287</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>293</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>302</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>308</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>313</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>319</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>324</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="54" tracking_level="0" version="0"> <count>43</count> <item_version>0</item_version> <item class_id="55" tracking_level="0" version="0"> <first>col_inbuf_addr_gep_fu_70</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>exitcond_flatten_fu_116</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>i_1_i_mid2_fu_140</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>i_1_i_phi_fu_108</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> <item> <first>i_fu_189</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>indvar_flatten_next_fu_122</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>indvar_flatten_phi_fu_85</first> <second> <count>1</count> <item_version>0</item_version> <item>5</item> </second> </item> <item> <first>j_0_i_phi_fu_96</first> <second> <count>1</count> <item_version>0</item_version> <item>6</item> </second> </item> <item> <first>j_fu_128</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>p_demorgan_fu_263</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>row_outbuf_i_addr_gep_fu_58</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>tmp_10_cast_fu_184</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>tmp_1_fu_178</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>tmp_27_fu_156</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>tmp_28_fu_207</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>tmp_29_fu_213</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>tmp_30_fu_217</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>tmp_31_fu_269</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>tmp_32_fu_272</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>tmp_33_fu_221</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>tmp_34_fu_229</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>tmp_35_fu_277</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>tmp_36_fu_237</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>tmp_37_fu_283</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>tmp_38_fu_243</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>tmp_39_fu_247</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>tmp_3_mid2_cast_fu_164</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>tmp_3_mid2_fu_160</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>tmp_3_mid2_v_fu_148</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>tmp_40_fu_287</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>tmp_41_fu_293</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>tmp_42_fu_302</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>tmp_43_fu_251</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>tmp_44_fu_257</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>tmp_45_fu_308</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>tmp_46_fu_313</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>tmp_47_fu_319</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>tmp_48_fu_324</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>tmp_4_fu_194</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>tmp_5_fu_201</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>tmp_9_cast_fu_174</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>tmp_fu_167</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>tmp_s_fu_134</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="56" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="57" tracking_level="0" version="0"> <first class_id="58" tracking_level="0" version="0"> <first>col_inbuf</first> <second>0</second> </first> <second> <count>3</count> <item_version>0</item_version> <item>30</item> <item>30</item> <item>56</item> </second> </item> <item> <first> <first>row_outbuf_i</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>28</item> <item>28</item> </second> </item> </dp_mem_port_nodes> <dp_reg_nodes> <count>16</count> <item_version>0</item_version> <item> <first>81</first> <second> <count>1</count> <item_version>0</item_version> <item>5</item> </second> </item> <item> <first>92</first> <second> <count>1</count> <item_version>0</item_version> <item>6</item> </second> </item> <item> <first>104</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> <item> <first>331</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>335</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>340</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>346</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>353</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>358</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>363</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>368</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>373</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>378</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>384</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>390</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>396</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>16</count> <item_version>0</item_version> <item> <first>col_inbuf_addr_reg_363</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>exitcond_flatten_reg_331</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>i_1_i_mid2_reg_340</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>i_1_i_reg_104</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> <item> <first>i_reg_368</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>indvar_flatten_next_reg_335</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>indvar_flatten_reg_81</first> <second> <count>1</count> <item_version>0</item_version> <item>5</item> </second> </item> <item> <first>j_0_i_reg_92</first> <second> <count>1</count> <item_version>0</item_version> <item>6</item> </second> </item> <item> <first>p_demorgan_reg_390</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>row_outbuf_i_addr_reg_358</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>row_outbuf_i_load_reg_373</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>tmp_27_reg_353</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>tmp_28_reg_378</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>tmp_29_reg_384</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>tmp_3_mid2_v_reg_346</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>tmp_40_reg_396</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>3</count> <item_version>0</item_version> <item> <first>81</first> <second> <count>1</count> <item_version>0</item_version> <item>5</item> </second> </item> <item> <first>92</first> <second> <count>1</count> <item_version>0</item_version> <item>6</item> </second> </item> <item> <first>104</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> </dp_reg_phi> <dp_regname_phi> <count>3</count> <item_version>0</item_version> <item> <first>i_1_i_reg_104</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> <item> <first>indvar_flatten_reg_81</first> <second> <count>1</count> <item_version>0</item_version> <item>5</item> </second> </item> <item> <first>j_0_i_reg_92</first> <second> <count>1</count> <item_version>0</item_version> <item>6</item> </second> </item> </dp_regname_phi> <dp_port_io_nodes class_id="59" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="60" tracking_level="0" version="0"> <first>col_inbuf(p0)</first> <second> <count>2</count> <item_version>0</item_version> <item> <first>load</first> <second> <count>2</count> <item_version>0</item_version> <item>30</item> <item>30</item> </second> </item> <item> <first>store</first> <second> <count>1</count> <item_version>0</item_version> <item>56</item> </second> </item> </second> </item> <item> <first>row_outbuf_i(p0)</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>load</first> <second> <count>2</count> <item_version>0</item_version> <item>28</item> <item>28</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="61" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="62" tracking_level="0" version="0"> <first>1</first> <second>RAM</second> </item> <item> <first>2</first> <second>RAM</second> </item> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
30.037234
86
0.42267
232217cb924339fafcfeb99ea43d50ea69f71b1f
1,402
ads
Ada
tier-1/xcb/source/thin/xcb-xcb_glx_get_histogram_cookie_t.ads
charlie5/cBound
741be08197a61ad9c72553e3302f3b669902216d
[ "0BSD" ]
2
2015-11-12T11:16:20.000Z
2021-08-24T22:32:04.000Z
tier-1/xcb/source/thin/xcb-xcb_glx_get_histogram_cookie_t.ads
charlie5/cBound
741be08197a61ad9c72553e3302f3b669902216d
[ "0BSD" ]
1
2018-06-05T05:19:35.000Z
2021-11-20T01:13:23.000Z
tier-1/xcb/source/thin/xcb-xcb_glx_get_histogram_cookie_t.ads
charlie5/cBound
741be08197a61ad9c72553e3302f3b669902216d
[ "0BSD" ]
null
null
null
-- This file is generated by SWIG. Please do not modify by hand. -- with Interfaces.C; with Interfaces.C; with Interfaces.C.Pointers; package xcb.xcb_glx_get_histogram_cookie_t is -- Item -- type Item is record sequence : aliased Interfaces.C.unsigned; end record; -- Item_Array -- type Item_Array is array (Interfaces.C .size_t range <>) of aliased xcb.xcb_glx_get_histogram_cookie_t .Item; -- Pointer -- package C_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_glx_get_histogram_cookie_t.Item, Element_Array => xcb.xcb_glx_get_histogram_cookie_t.Item_Array, Default_Terminator => (others => <>)); subtype Pointer is C_Pointers.Pointer; -- Pointer_Array -- type Pointer_Array is array (Interfaces.C .size_t range <>) of aliased xcb.xcb_glx_get_histogram_cookie_t .Pointer; -- Pointer_Pointer -- package C_Pointer_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_glx_get_histogram_cookie_t.Pointer, Element_Array => xcb.xcb_glx_get_histogram_cookie_t.Pointer_Array, Default_Terminator => null); subtype Pointer_Pointer is C_Pointer_Pointers.Pointer; end xcb.xcb_glx_get_histogram_cookie_t;
26.45283
77
0.669757
1cd4df069281bbb24662a4b5709ddf5ffe101e71
3,267
adb
Ada
3-mid/opengl/applet/demo/renderer/render_models/launch_render_models.adb
charlie5/lace-alire
9ace9682cf4daac7adb9f980c2868d6225b8111c
[ "0BSD" ]
1
2022-01-20T07:13:42.000Z
2022-01-20T07:13:42.000Z
3-mid/opengl/applet/demo/renderer/render_models/launch_render_models.adb
charlie5/lace-alire
9ace9682cf4daac7adb9f980c2868d6225b8111c
[ "0BSD" ]
null
null
null
3-mid/opengl/applet/demo/renderer/render_models/launch_render_models.adb
charlie5/lace-alire
9ace9682cf4daac7adb9f980c2868d6225b8111c
[ "0BSD" ]
null
null
null
with openGL.Model, openGL.Visual, openGL.Light, openGL.Palette, openGL.Demo; procedure launch_render_Models -- -- Exercise the renderer with an example of all the models. -- is use openGL, openGL.Math, openGL.linear_Algebra_3D, openGL.Palette; begin Demo.print_Usage ("Use space ' ' to cycle through models."); Demo.define ("openGL 'Render Models' Demo"); Demo.Camera.Position_is ((0.0, 2.0, 10.0), y_Rotation_from (to_Radians (0.0))); declare use openGL.Light; the_Light : openGL.Light.item := Demo.Renderer.new_Light; begin -- the_Light.Kind_is (Diffuse); -- the_Light.Site_is ((0.0, 0.0, 5.0)); the_Light.Site_is ((5_000.0, 2_000.0, 5_000.0)); -- the_Light.Site_is ((000.0, 5_000.0, 000.0)); the_Light.Color_is (White); -- the_Light.ambient_Coefficient_is (0.91); Demo.Renderer.set (the_Light); end; -- Set the lights initial position to far behind and far to the left. -- -- declare -- use openGL.Palette; -- -- initial_Site : constant openGL.Vector_3 := (0.0, 0.0, 15.0); -- cone_Direction : constant openGL.Vector_3 := (0.0, 0.0, -1.0); -- -- Light : openGL.Light.diffuse.item := Demo.Renderer.Light (Id => 1); -- begin -- Light.Color_is (Ambient => (Grey, Opaque), -- Diffuse => (White, Opaque)); -- -- Specular => (White, Opaque)); -- -- Light.Position_is (initial_Site); -- Light.cone_Direction_is (cone_Direction); -- -- Demo.Renderer.Light_is (Id => 1, Now => Light); -- end; declare -- The models. -- the_Models : constant openGL.Model.views := openGL.Demo.Models; -- The visuals. -- use openGL.Visual.Forge; the_Visuals : openGL.Visual.views (the_Models'Range); Current : Integer := the_Visuals'First; begin for i in the_Visuals'Range loop the_Visuals (i) := new_Visual (the_Models (i)); end loop; the_Visuals (3).Site_is ((0.0, 0.0, -50.0)); -- Main loop. -- while not Demo.Done loop Demo.Dolly.evolve; Demo.Done := Demo.Dolly.quit_Requested; declare Command : Character; Avail : Boolean; begin Demo.Dolly.get_last_Character (Command, Avail); if Avail then case Command is when ' ' => if Current = the_Visuals'Last then Current := the_Visuals'First; else Current := Current + 1; end if; when others => null; end case; end if; end; -- Render all visuals. -- Demo.Camera.render ((1 => the_Visuals (Current))); while not Demo.Camera.cull_Completed loop delay Duration'Small; end loop; Demo.Renderer.render; Demo.FPS_Counter.increment; -- Frames per second display. delay 1.0 / 60.0; end loop; end; Demo.destroy; end launch_render_Models;
25.130769
77
0.535047
1cc9d109318ca5b8d5377e7200f50986a72ab4a2
605
adb
Ada
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/array6.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/array6.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/array6.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
-- { dg-do run } with Interfaces; use Interfaces; procedure Array6 is type buf_t is array (unsigned_32 range <>) of character; type v_str_t (first, last : unsigned_32) is record buf : buf_t (first .. last) := (others => ' '); end record; type v_str_ptr_t is access all v_str_t; v_str : v_str_ptr_t; function build_v_str (f, l : unsigned_32) return v_str_ptr_t is vp : v_str_ptr_t := new v_str_t (f, l); begin return vp; end; begin v_str := build_v_str (unsigned_32'last/2 - 256, unsigned_32'last/2 + 1024*1024); end;
23.269231
66
0.616529
4a5b1b8ccd9ace5db210932cec67b4ecc8d38dcf
3,559
ads
Ada
tools-src/gnu/gcc/gcc/ada/s-exngen.ads
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
80
2015-01-02T10:14:04.000Z
2021-06-07T06:29:49.000Z
tools-src/gnu/gcc/gcc/ada/s-exngen.ads
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
9
2015-05-14T11:03:12.000Z
2018-01-04T07:12:58.000Z
tools-src/gnu/gcc/gcc/ada/s-exngen.ads
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
69
2015-01-02T10:45:56.000Z
2021-09-06T07:52:13.000Z
------------------------------------------------------------------------------ -- -- -- GNAT RUNTIME COMPONENTS -- -- -- -- S Y S T E M . E X N _ G E N -- -- -- -- S p e c -- -- -- -- $Revision$ -- -- -- Copyright (C) 1992,1993,1994,1995 Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, -- -- MA 02111-1307, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package contains the generic functions which are instantiated with -- predefined integer and real types to generate the runtime exponentiation -- functions called by expanded code generated by Expand_Op_Expon. This -- version of the package contains routines that are compiled with overflow -- checks suppressed, so they are called for exponentiation operations which -- do not require overflow checking package System.Exn_Gen is pragma Pure (System.Exn_Gen); -- Exponentiation for float types (checks off) generic type Type_Of_Base is digits <>; function Exn_Float_Type (Left : Type_Of_Base; Right : Integer) return Type_Of_Base; -- Exponentiation for signed integer base generic type Type_Of_Base is range <>; function Exn_Integer_Type (Left : Type_Of_Base; Right : Natural) return Type_Of_Base; end System.Exn_Gen;
53.119403
78
0.480191
239da4aea20f8cc586b7c2f548f6a8b6881128a5
1,705
adb
Ada
Exemplos ADA/Determinante/Determinante.adb
wildeee/safADA
6aebd2e9e8d3ba50063cd154317d446399d8f04a
[ "MIT" ]
null
null
null
Exemplos ADA/Determinante/Determinante.adb
wildeee/safADA
6aebd2e9e8d3ba50063cd154317d446399d8f04a
[ "MIT" ]
null
null
null
Exemplos ADA/Determinante/Determinante.adb
wildeee/safADA
6aebd2e9e8d3ba50063cd154317d446399d8f04a
[ "MIT" ]
null
null
null
With Ada.Text_IO; Use Ada.Text_IO; Procedure Determinante is type Real_Matrix is array (Integer range <>, Integer range <>) of Integer'Base; matriz: Real_Matrix(1..3, 1..3); diagonalPrincipal1: Integer; diagonalPrincipal2: Integer; diagonalPrincipal3: Integer; diagonalPrincipalSoma: Integer; diagonalSecundaria1: Integer; diagonalSecundaria2: Integer; diagonalSecundaria3: Integer; diagonalSecundariaSoma: Integer; det : Integer; -- Leitura String function Get_String return String is Line : String (1 .. 1_000); Last : Natural; begin Get_Line (Line, Last); return Line (1 .. Last); end Get_String; -- Leitura Integer function Get_Integer return Integer is S : constant String := Get_String; begin return Integer'Value (S); end Get_Integer; -- Lê 15 elementos do array procedure Faz_Leitura is begin for L in Integer range 1 .. 3 loop for C in Integer range 1 .. 3 loop matriz(L, C) := Get_Integer; end loop; end loop; end Faz_Leitura; begin Faz_Leitura; diagonalPrincipal1 := matriz(1, 1) * matriz(2, 2) * matriz(3, 3); diagonalPrincipal2 := matriz(1, 2) * matriz(2, 3) * matriz(3, 1); diagonalPrincipal3 := matriz(1, 3) * matriz(2, 1) * matriz(3, 2); diagonalSecundaria1 := matriz(1, 3) * matriz(2, 2) * matriz(3, 1); diagonalSecundaria2 := matriz(1, 1) * matriz(2, 3) * matriz(3, 2); diagonalSecundaria3 := matriz(1, 2) * matriz(2, 1) * matriz(3, 3); diagonalPrincipalSoma := diagonalPrincipal1 + diagonalPrincipal2 + diagonalPrincipal3; diagonalSecundariaSoma := diagonalSecundaria1 + diagonalSecundaria2 + diagonalSecundaria3; det := diagonalPrincipalSoma - diagonalSecundariaSoma; Put_Line(Integer'Image(det)); end Determinante;
28.898305
91
0.723167
50b729ca1dbd643857c5e7bfd4d109747c01a077
2,241
ads
Ada
gcc-gcc-7_3_0-release/gcc/ada/sinput-c.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
15
2015-01-18T23:04:19.000Z
2022-03-01T20:27:08.000Z
gcc-gcc-7_3_0-release/gcc/ada/sinput-c.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
16
2018-06-10T07:09:30.000Z
2022-03-26T18:28:40.000Z
gcc-gcc-7_3_0-release/gcc/ada/sinput-c.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
3
2015-11-11T18:00:14.000Z
2022-01-30T23:08:45.000Z
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S I N P U T . C -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2007, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING3. If not, go to -- -- http://www.gnu.org/licenses for a complete copy of the license. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This child package contains a procedure to load files -- It is used by Sinput.P to load project files, and by GPrep to load -- preprocessor definition files and input files. package Sinput.C is function Load_File (Path : String) return Source_File_Index; -- Load a file into memory and Initialize the Scans state end Sinput.C;
60.567568
78
0.423472
fb9ae5d2e79bfc311f1be44670e2dde275722bd3
2,598
ads
Ada
src/asf-validators-texts.ads
Letractively/ada-asf
da9f85f85666eba7e23fefea661160863b74154d
[ "Apache-2.0" ]
null
null
null
src/asf-validators-texts.ads
Letractively/ada-asf
da9f85f85666eba7e23fefea661160863b74154d
[ "Apache-2.0" ]
null
null
null
src/asf-validators-texts.ads
Letractively/ada-asf
da9f85f85666eba7e23fefea661160863b74154d
[ "Apache-2.0" ]
null
null
null
----------------------------------------------------------------------- -- asf-validators-texts -- ASF Texts Validators -- Copyright (C) 2011 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with EL.Objects; with ASF.Components.Base; with ASF.Contexts.Faces; -- The <b>ASF.Validators.Texts</b> defines various text oriented validators. package ASF.Validators.Texts is MAXIMUM_MESSAGE_ID : constant String := "asf.validators.length.maximum"; MINIMUM_MESSAGE_ID : constant String := "asf.validators.length.minimum"; -- ------------------------------ -- Length_Validator -- ------------------------------ -- The <b>Length_Validator</b> implements the length validator whereby the given -- value must have a minimum length and a maximum length. type Length_Validator is new Validator with private; type Length_Validator_Access is access all Length_Validator'Class; -- Create a length validator. function Create_Length_Validator (Minimum : in Natural; Maximum : in Natural) return Validator_Access; -- Verify that the value's length is between the validator minimum and maximum -- boundaries. -- If some error are found, the procedure should create a <b>FacesMessage</b> -- describing the problem and add that message to the current faces context. -- The procedure can examine the state and modify the component tree. -- It must raise the <b>Invalid_Value</b> exception if the value is not valid. procedure Validate (Valid : in Length_Validator; Context : in out ASF.Contexts.Faces.Faces_Context'Class; Component : in out ASF.Components.Base.UIComponent'Class; Value : in EL.Objects.Object); private type Length_Validator is new Validator with record Minimum : Natural; Maximum : Natural; end record; end ASF.Validators.Texts;
44.033898
84
0.648576
0e4fa72e7722417187ed4683fdd130d7b1bc11cd
769
adb
Ada
examples/ada/default.adb
tonyyzy/compiler-explorer
dccca2560f63dfd13a175a0863dabf4e6f9ec336
[ "BSD-2-Clause" ]
2
2017-06-30T07:47:05.000Z
2018-08-01T09:07:54.000Z
examples/ada/default.adb
tonyyzy/compiler-explorer
dccca2560f63dfd13a175a0863dabf4e6f9ec336
[ "BSD-2-Clause" ]
5
2017-06-11T05:51:10.000Z
2017-12-15T16:42:17.000Z
examples/ada/default.adb
tonyyzy/compiler-explorer
dccca2560f63dfd13a175a0863dabf4e6f9ec336
[ "BSD-2-Clause" ]
1
2021-07-31T13:15:21.000Z
2021-07-31T13:15:21.000Z
-- This pragma will remove the warning produced by the default -- CE filename and the procedure name differing, -- see : https://gcc.gnu.org/onlinedocs/gcc-8.2.0/gnat_rm/Pragma-Source_005fFile_005fName.html#Pragma-Source_005fFile_005fName pragma Source_File_Name (Square, Body_File_Name => "example.adb"); -- Type your code here, or load an example. function Square(num : Integer) return Integer is begin return num**2; end Square; -- Ada 2012 also provides Expression Functions -- (http://www.ada-auth.org/standards/12rm/html/RM-6-8.html) -- as a short hand for functions whose body consists of a -- single return statement. However they cannot be used as a -- complication unit. -- function Square(num : Integer) return Integer is (num**2);
42.722222
127
0.738622
dfb2efd835966e7a557cb7738d4c10d1bb652c11
4,274
ads
Ada
include/sf-system-thread.ads
Fabien-Chouteau/ASFML
52a013554bcfb6150e0d6391871356c1443a6b93
[ "Zlib" ]
null
null
null
include/sf-system-thread.ads
Fabien-Chouteau/ASFML
52a013554bcfb6150e0d6391871356c1443a6b93
[ "Zlib" ]
null
null
null
include/sf-system-thread.ads
Fabien-Chouteau/ASFML
52a013554bcfb6150e0d6391871356c1443a6b93
[ "Zlib" ]
null
null
null
--////////////////////////////////////////////////////////// -- SFML - Simple and Fast Multimedia Library -- Copyright (C) 2007-2015 Laurent Gomila ([email protected]) -- This software is provided 'as-is', without any express or implied warranty. -- In no event will the authors be held liable for any damages arising from the use of this software. -- Permission is granted to anyone to use this software for any purpose, -- including commercial applications, and to alter it and redistribute it freely, -- subject to the following restrictions: -- 1. The origin of this software must not be misrepresented; -- you must not claim that you wrote the original software. -- If you use this software in a product, an acknowledgment -- in the product documentation would be appreciated but is not required. -- 2. Altered source versions must be plainly marked as such, -- and must not be misrepresented as being the original software. -- 3. This notice may not be removed or altered from any source distribution. --////////////////////////////////////////////////////////// --////////////////////////////////////////////////////////// with System; package Sf.System.Thread is type sfThreadFunc_Ptr is access procedure (arg : Standard.System.Address); --////////////////////////////////////////////////////////// --////////////////////////////////////////////////////////// --/ @brief Create a new thread from a function pointer --/ --/ Note: this does *not* run the thread, use sfThread_launch. --/ --/ @param func Entry point of the thread --/ @param userData Custom data to pass to the thread function --/ --/ @return A new sfThread object --/ --////////////////////////////////////////////////////////// function create (func : sfThreadFunc_Ptr; userData : Standard.System.Address) return sfThread_Ptr; --////////////////////////////////////////////////////////// --/ @brief Destroy a thread --/ --/ This function calls sfThread_wait, so that the internal thread --/ cannot survive after the sfThread object is destroyed. --/ --/ @param thread Thread to destroy --/ --////////////////////////////////////////////////////////// procedure destroy (thread : sfThread_Ptr); --////////////////////////////////////////////////////////// --/ @brief Run a thread --/ --/ This function starts the entry point passed to the --/ thread's constructor, and returns immediately. --/ After this function returns, the thread's function is --/ running in parallel to the calling code. --/ --/ @param thread Thread object --/ --////////////////////////////////////////////////////////// procedure launch (thread : sfThread_Ptr); --////////////////////////////////////////////////////////// --/ @brief Wait until a thread finishes --/ --/ This function will block the execution until the --/ thread's function ends. --/ Warning: if the thread function never ends, the calling --/ thread will block forever. --/ If this function is called from its owner thread, it --/ returns without doing anything. --/ --/ @param thread Thread object --/ --////////////////////////////////////////////////////////// procedure wait (thread : sfThread_Ptr); --////////////////////////////////////////////////////////// --/ @brief Terminate a thread --/ --/ This function immediately stops the thread, without waiting --/ for its function to finish. --/ Terminating a thread with this function is not safe, --/ and can lead to local variables not being destroyed --/ on some operating systems. You should rather try to make --/ the thread function terminate by itself. --/ --/ @param thread Thread object --/ --////////////////////////////////////////////////////////// procedure sfThread_terminate (thread : sfThread_Ptr); private pragma Convention (C, sfThreadFunc_Ptr); pragma Import (C, create, "sfThread_create"); pragma Import (C, destroy, "sfThread_destroy"); pragma Import (C, launch, "sfThread_launch"); pragma Import (C, wait, "sfThread_wait"); pragma Import (C, sfThread_terminate, "sfThread_terminate"); end Sf.System.Thread;
40.320755
101
0.55007
3959217bdc00e728fa1e6a7a4c759ac89d847ecf
153,706
adb
Ada
tools-src/gnu/gcc/gcc/ada/sinfo.adb
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
80
2015-01-02T10:14:04.000Z
2021-06-07T06:29:49.000Z
tools-src/gnu/gcc/gcc/ada/sinfo.adb
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
9
2015-05-14T11:03:12.000Z
2018-01-04T07:12:58.000Z
tools-src/gnu/gcc/gcc/ada/sinfo.adb
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
69
2015-01-02T10:45:56.000Z
2021-09-06T07:52:13.000Z
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S I N F O -- -- -- -- B o d y -- -- -- -- $Revision$ -- -- -- Copyright (C) 1992-2001, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, -- -- MA 02111-1307, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ pragma Style_Checks (All_Checks); -- No subprogram ordering check, due to logical grouping with Atree; use Atree; package body Sinfo is use Atree.Unchecked_Access; -- This package is one of the few packages which is allowed to make direct -- references to tree nodes (since it is in the business of providing a -- higher level of tree access which other clients are expected to use and -- which implements checks). use Atree_Private_Part; -- The only reason that we ask for direct access to the private part of -- the tree package is so that we can directly reference the Nkind field -- of nodes table entries. We do this since it helps the efficiency of -- the Sinfo debugging checks considerably (note that when we are checking -- Nkind values, we don't need to check for a valid node reference, because -- we will check that anyway when we reference the field). NT : Nodes.Table_Ptr renames Nodes.Table; -- A short hand abbreviation, useful for the debugging checks ---------------------------- -- Field Access Functions -- ---------------------------- function ABE_Is_Certain (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Formal_Package_Declaration or else NT (N).Nkind = N_Function_Call or else NT (N).Nkind = N_Function_Instantiation or else NT (N).Nkind = N_Package_Instantiation or else NT (N).Nkind = N_Procedure_Call_Statement or else NT (N).Nkind = N_Procedure_Instantiation); return Flag18 (N); end ABE_Is_Certain; function Abort_Present (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Requeue_Statement); return Flag15 (N); end Abort_Present; function Abortable_Part (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Asynchronous_Select); return Node2 (N); end Abortable_Part; function Abstract_Present (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Derived_Type_Definition or else NT (N).Nkind = N_Formal_Derived_Type_Definition or else NT (N).Nkind = N_Formal_Private_Type_Definition or else NT (N).Nkind = N_Private_Extension_Declaration or else NT (N).Nkind = N_Private_Type_Declaration or else NT (N).Nkind = N_Record_Definition); return Flag4 (N); end Abstract_Present; function Accept_Handler_Records (N : Node_Id) return List_Id is begin pragma Assert (False or else NT (N).Nkind = N_Accept_Alternative); return List5 (N); end Accept_Handler_Records; function Accept_Statement (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Accept_Alternative); return Node2 (N); end Accept_Statement; function Access_Types_To_Process (N : Node_Id) return Elist_Id is begin pragma Assert (False or else NT (N).Nkind = N_Freeze_Entity); return Elist2 (N); end Access_Types_To_Process; function Actions (N : Node_Id) return List_Id is begin pragma Assert (False or else NT (N).Nkind = N_And_Then or else NT (N).Nkind = N_Compilation_Unit_Aux or else NT (N).Nkind = N_Freeze_Entity or else NT (N).Nkind = N_Or_Else); return List1 (N); end Actions; function Activation_Chain_Entity (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Block_Statement or else NT (N).Nkind = N_Entry_Body or else NT (N).Nkind = N_Generic_Package_Declaration or else NT (N).Nkind = N_Package_Declaration or else NT (N).Nkind = N_Subprogram_Body or else NT (N).Nkind = N_Task_Body); return Node3 (N); end Activation_Chain_Entity; function Acts_As_Spec (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Compilation_Unit or else NT (N).Nkind = N_Subprogram_Body); return Flag4 (N); end Acts_As_Spec; function Aggregate_Bounds (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Aggregate); return Node3 (N); end Aggregate_Bounds; function Aliased_Present (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Component_Declaration or else NT (N).Nkind = N_Constrained_Array_Definition or else NT (N).Nkind = N_Object_Declaration or else NT (N).Nkind = N_Unconstrained_Array_Definition); return Flag4 (N); end Aliased_Present; function All_Others (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Others_Choice); return Flag11 (N); end All_Others; function All_Present (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Access_To_Object_Definition); return Flag15 (N); end All_Present; function Alternatives (N : Node_Id) return List_Id is begin pragma Assert (False or else NT (N).Nkind = N_Case_Statement); return List4 (N); end Alternatives; function Ancestor_Part (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Extension_Aggregate); return Node3 (N); end Ancestor_Part; function Array_Aggregate (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Enumeration_Representation_Clause); return Node3 (N); end Array_Aggregate; function Assignment_OK (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Object_Declaration or else NT (N).Nkind in N_Subexpr); return Flag15 (N); end Assignment_OK; function Associated_Node (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind in N_Has_Entity or else NT (N).Nkind = N_Aggregate or else NT (N).Nkind = N_Extension_Aggregate or else NT (N).Nkind = N_Selected_Component); return Node4 (N); end Associated_Node; function At_End_Proc (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Handled_Sequence_Of_Statements); return Node1 (N); end At_End_Proc; function Attribute_Name (N : Node_Id) return Name_Id is begin pragma Assert (False or else NT (N).Nkind = N_Attribute_Reference); return Name2 (N); end Attribute_Name; function Aux_Decls_Node (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Compilation_Unit); return Node5 (N); end Aux_Decls_Node; function Backwards_OK (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Assignment_Statement); return Flag6 (N); end Backwards_OK; function Bad_Is_Detected (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Subprogram_Body); return Flag15 (N); end Bad_Is_Detected; function Body_Required (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Compilation_Unit); return Flag13 (N); end Body_Required; function Body_To_Inline (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Subprogram_Declaration); return Node3 (N); end Body_To_Inline; function Box_Present (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Formal_Package_Declaration or else NT (N).Nkind = N_Formal_Subprogram_Declaration); return Flag15 (N); end Box_Present; function By_Ref (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Return_Statement); return Flag5 (N); end By_Ref; function Char_Literal_Value (N : Node_Id) return Char_Code is begin pragma Assert (False or else NT (N).Nkind = N_Character_Literal); return Char_Code2 (N); end Char_Literal_Value; function Chars (N : Node_Id) return Name_Id is begin pragma Assert (False or else NT (N).Nkind in N_Has_Chars); return Name1 (N); end Chars; function Choice_Parameter (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Exception_Handler); return Node2 (N); end Choice_Parameter; function Choices (N : Node_Id) return List_Id is begin pragma Assert (False or else NT (N).Nkind = N_Component_Association); return List1 (N); end Choices; function Compile_Time_Known_Aggregate (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Aggregate); return Flag18 (N); end Compile_Time_Known_Aggregate; function Component_Associations (N : Node_Id) return List_Id is begin pragma Assert (False or else NT (N).Nkind = N_Aggregate or else NT (N).Nkind = N_Extension_Aggregate); return List2 (N); end Component_Associations; function Component_Clauses (N : Node_Id) return List_Id is begin pragma Assert (False or else NT (N).Nkind = N_Record_Representation_Clause); return List3 (N); end Component_Clauses; function Component_Items (N : Node_Id) return List_Id is begin pragma Assert (False or else NT (N).Nkind = N_Component_List); return List3 (N); end Component_Items; function Component_List (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Record_Definition or else NT (N).Nkind = N_Variant); return Node1 (N); end Component_List; function Component_Name (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Component_Clause); return Node1 (N); end Component_Name; function Condition (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Accept_Alternative or else NT (N).Nkind = N_Delay_Alternative or else NT (N).Nkind = N_Elsif_Part or else NT (N).Nkind = N_Entry_Body_Formal_Part or else NT (N).Nkind = N_Exit_Statement or else NT (N).Nkind = N_If_Statement or else NT (N).Nkind = N_Iteration_Scheme or else NT (N).Nkind = N_Raise_Constraint_Error or else NT (N).Nkind = N_Raise_Program_Error or else NT (N).Nkind = N_Raise_Storage_Error or else NT (N).Nkind = N_Terminate_Alternative); return Node1 (N); end Condition; function Condition_Actions (N : Node_Id) return List_Id is begin pragma Assert (False or else NT (N).Nkind = N_Elsif_Part or else NT (N).Nkind = N_Iteration_Scheme); return List3 (N); end Condition_Actions; function Constant_Present (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Access_To_Object_Definition or else NT (N).Nkind = N_Object_Declaration); return Flag17 (N); end Constant_Present; function Constraint (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Subtype_Indication); return Node3 (N); end Constraint; function Constraints (N : Node_Id) return List_Id is begin pragma Assert (False or else NT (N).Nkind = N_Index_Or_Discriminant_Constraint); return List1 (N); end Constraints; function Context_Installed (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_With_Clause); return Flag13 (N); end Context_Installed; function Context_Items (N : Node_Id) return List_Id is begin pragma Assert (False or else NT (N).Nkind = N_Compilation_Unit); return List1 (N); end Context_Items; function Controlling_Argument (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Function_Call or else NT (N).Nkind = N_Procedure_Call_Statement); return Node1 (N); end Controlling_Argument; function Conversion_OK (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Type_Conversion); return Flag14 (N); end Conversion_OK; function Corresponding_Body (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Generic_Package_Declaration or else NT (N).Nkind = N_Generic_Subprogram_Declaration or else NT (N).Nkind = N_Package_Body_Stub or else NT (N).Nkind = N_Package_Declaration or else NT (N).Nkind = N_Protected_Body_Stub or else NT (N).Nkind = N_Protected_Type_Declaration or else NT (N).Nkind = N_Subprogram_Body_Stub or else NT (N).Nkind = N_Subprogram_Declaration or else NT (N).Nkind = N_Task_Body_Stub or else NT (N).Nkind = N_Task_Type_Declaration); return Node5 (N); end Corresponding_Body; function Corresponding_Generic_Association (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Object_Declaration or else NT (N).Nkind = N_Object_Renaming_Declaration); return Node5 (N); end Corresponding_Generic_Association; function Corresponding_Integer_Value (N : Node_Id) return Uint is begin pragma Assert (False or else NT (N).Nkind = N_Real_Literal); return Uint4 (N); end Corresponding_Integer_Value; function Corresponding_Spec (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Package_Body or else NT (N).Nkind = N_Protected_Body or else NT (N).Nkind = N_Subprogram_Body or else NT (N).Nkind = N_Subprogram_Renaming_Declaration or else NT (N).Nkind = N_Task_Body or else NT (N).Nkind = N_With_Clause); return Node5 (N); end Corresponding_Spec; function Corresponding_Stub (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Subunit); return Node3 (N); end Corresponding_Stub; function Dcheck_Function (N : Node_Id) return Entity_Id is begin pragma Assert (False or else NT (N).Nkind = N_Variant); return Node5 (N); end Dcheck_Function; function Debug_Statement (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Pragma); return Node3 (N); end Debug_Statement; function Declarations (N : Node_Id) return List_Id is begin pragma Assert (False or else NT (N).Nkind = N_Accept_Statement or else NT (N).Nkind = N_Block_Statement or else NT (N).Nkind = N_Compilation_Unit_Aux or else NT (N).Nkind = N_Entry_Body or else NT (N).Nkind = N_Package_Body or else NT (N).Nkind = N_Protected_Body or else NT (N).Nkind = N_Subprogram_Body or else NT (N).Nkind = N_Task_Body); return List2 (N); end Declarations; function Default_Expression (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Parameter_Specification); return Node5 (N); end Default_Expression; function Default_Name (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Formal_Subprogram_Declaration); return Node2 (N); end Default_Name; function Defining_Identifier (N : Node_Id) return Entity_Id is begin pragma Assert (False or else NT (N).Nkind = N_Component_Declaration or else NT (N).Nkind = N_Defining_Program_Unit_Name or else NT (N).Nkind = N_Discriminant_Specification or else NT (N).Nkind = N_Entry_Body or else NT (N).Nkind = N_Entry_Declaration or else NT (N).Nkind = N_Entry_Index_Specification or else NT (N).Nkind = N_Exception_Declaration or else NT (N).Nkind = N_Exception_Renaming_Declaration or else NT (N).Nkind = N_Formal_Object_Declaration or else NT (N).Nkind = N_Formal_Package_Declaration or else NT (N).Nkind = N_Formal_Type_Declaration or else NT (N).Nkind = N_Full_Type_Declaration or else NT (N).Nkind = N_Implicit_Label_Declaration or else NT (N).Nkind = N_Incomplete_Type_Declaration or else NT (N).Nkind = N_Loop_Parameter_Specification or else NT (N).Nkind = N_Number_Declaration or else NT (N).Nkind = N_Object_Declaration or else NT (N).Nkind = N_Object_Renaming_Declaration or else NT (N).Nkind = N_Package_Body_Stub or else NT (N).Nkind = N_Parameter_Specification or else NT (N).Nkind = N_Private_Extension_Declaration or else NT (N).Nkind = N_Private_Type_Declaration or else NT (N).Nkind = N_Protected_Body or else NT (N).Nkind = N_Protected_Body_Stub or else NT (N).Nkind = N_Protected_Type_Declaration or else NT (N).Nkind = N_Single_Protected_Declaration or else NT (N).Nkind = N_Single_Task_Declaration or else NT (N).Nkind = N_Subtype_Declaration or else NT (N).Nkind = N_Task_Body or else NT (N).Nkind = N_Task_Body_Stub or else NT (N).Nkind = N_Task_Type_Declaration); return Node1 (N); end Defining_Identifier; function Defining_Unit_Name (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Function_Instantiation or else NT (N).Nkind = N_Function_Specification or else NT (N).Nkind = N_Generic_Function_Renaming_Declaration or else NT (N).Nkind = N_Generic_Package_Renaming_Declaration or else NT (N).Nkind = N_Generic_Procedure_Renaming_Declaration or else NT (N).Nkind = N_Package_Body or else NT (N).Nkind = N_Package_Instantiation or else NT (N).Nkind = N_Package_Renaming_Declaration or else NT (N).Nkind = N_Package_Specification or else NT (N).Nkind = N_Procedure_Instantiation or else NT (N).Nkind = N_Procedure_Specification); return Node1 (N); end Defining_Unit_Name; function Delay_Alternative (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Timed_Entry_Call); return Node4 (N); end Delay_Alternative; function Delay_Finalize_Attach (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Object_Declaration); return Flag14 (N); end Delay_Finalize_Attach; function Delay_Statement (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Delay_Alternative); return Node2 (N); end Delay_Statement; function Delta_Expression (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Decimal_Fixed_Point_Definition or else NT (N).Nkind = N_Delta_Constraint or else NT (N).Nkind = N_Ordinary_Fixed_Point_Definition); return Node3 (N); end Delta_Expression; function Digits_Expression (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Decimal_Fixed_Point_Definition or else NT (N).Nkind = N_Digits_Constraint or else NT (N).Nkind = N_Floating_Point_Definition); return Node2 (N); end Digits_Expression; function Discr_Check_Funcs_Built (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Full_Type_Declaration); return Flag11 (N); end Discr_Check_Funcs_Built; function Discrete_Choices (N : Node_Id) return List_Id is begin pragma Assert (False or else NT (N).Nkind = N_Case_Statement_Alternative or else NT (N).Nkind = N_Variant); return List4 (N); end Discrete_Choices; function Discrete_Range (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Slice); return Node4 (N); end Discrete_Range; function Discrete_Subtype_Definition (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Entry_Declaration or else NT (N).Nkind = N_Entry_Index_Specification or else NT (N).Nkind = N_Loop_Parameter_Specification); return Node4 (N); end Discrete_Subtype_Definition; function Discrete_Subtype_Definitions (N : Node_Id) return List_Id is begin pragma Assert (False or else NT (N).Nkind = N_Constrained_Array_Definition); return List2 (N); end Discrete_Subtype_Definitions; function Discriminant_Specifications (N : Node_Id) return List_Id is begin pragma Assert (False or else NT (N).Nkind = N_Formal_Type_Declaration or else NT (N).Nkind = N_Full_Type_Declaration or else NT (N).Nkind = N_Incomplete_Type_Declaration or else NT (N).Nkind = N_Private_Extension_Declaration or else NT (N).Nkind = N_Private_Type_Declaration or else NT (N).Nkind = N_Protected_Type_Declaration or else NT (N).Nkind = N_Task_Type_Declaration); return List4 (N); end Discriminant_Specifications; function Discriminant_Type (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Discriminant_Specification); return Node5 (N); end Discriminant_Type; function Do_Access_Check (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Attribute_Reference or else NT (N).Nkind = N_Explicit_Dereference or else NT (N).Nkind = N_Indexed_Component or else NT (N).Nkind = N_Selected_Component or else NT (N).Nkind = N_Slice); return Flag11 (N); end Do_Access_Check; function Do_Accessibility_Check (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Parameter_Specification); return Flag13 (N); end Do_Accessibility_Check; function Do_Discriminant_Check (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Selected_Component); return Flag13 (N); end Do_Discriminant_Check; function Do_Division_Check (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Op_Divide or else NT (N).Nkind = N_Op_Mod or else NT (N).Nkind = N_Op_Rem); return Flag13 (N); end Do_Division_Check; function Do_Length_Check (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Assignment_Statement or else NT (N).Nkind = N_Op_And or else NT (N).Nkind = N_Op_Or or else NT (N).Nkind = N_Op_Xor or else NT (N).Nkind = N_Type_Conversion); return Flag4 (N); end Do_Length_Check; function Do_Overflow_Check (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind in N_Op or else NT (N).Nkind = N_Attribute_Reference or else NT (N).Nkind = N_Type_Conversion); return Flag17 (N); end Do_Overflow_Check; function Do_Range_Check (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind in N_Subexpr); return Flag9 (N); end Do_Range_Check; function Do_Storage_Check (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Allocator or else NT (N).Nkind = N_Subprogram_Body); return Flag17 (N); end Do_Storage_Check; function Do_Tag_Check (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Assignment_Statement or else NT (N).Nkind = N_Function_Call or else NT (N).Nkind = N_Procedure_Call_Statement or else NT (N).Nkind = N_Return_Statement or else NT (N).Nkind = N_Type_Conversion); return Flag13 (N); end Do_Tag_Check; function Elaborate_All_Present (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_With_Clause); return Flag15 (N); end Elaborate_All_Present; function Elaborate_Present (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_With_Clause); return Flag4 (N); end Elaborate_Present; function Elaboration_Boolean (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Function_Specification or else NT (N).Nkind = N_Procedure_Specification); return Node2 (N); end Elaboration_Boolean; function Else_Actions (N : Node_Id) return List_Id is begin pragma Assert (False or else NT (N).Nkind = N_Conditional_Expression); return List3 (N); end Else_Actions; function Else_Statements (N : Node_Id) return List_Id is begin pragma Assert (False or else NT (N).Nkind = N_Conditional_Entry_Call or else NT (N).Nkind = N_If_Statement or else NT (N).Nkind = N_Selective_Accept); return List4 (N); end Else_Statements; function Elsif_Parts (N : Node_Id) return List_Id is begin pragma Assert (False or else NT (N).Nkind = N_If_Statement); return List3 (N); end Elsif_Parts; function Enclosing_Variant (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Variant); return Node2 (N); end Enclosing_Variant; function End_Label (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Handled_Sequence_Of_Statements or else NT (N).Nkind = N_Loop_Statement or else NT (N).Nkind = N_Package_Specification or else NT (N).Nkind = N_Protected_Body or else NT (N).Nkind = N_Protected_Definition or else NT (N).Nkind = N_Record_Definition or else NT (N).Nkind = N_Task_Definition); return Node4 (N); end End_Label; function End_Span (N : Node_Id) return Uint is begin pragma Assert (False or else NT (N).Nkind = N_Case_Statement or else NT (N).Nkind = N_If_Statement); return Uint5 (N); end End_Span; function Entity (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind in N_Has_Entity or else NT (N).Nkind = N_Freeze_Entity); return Node4 (N); end Entity; function Entry_Body_Formal_Part (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Entry_Body); return Node5 (N); end Entry_Body_Formal_Part; function Entry_Call_Alternative (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Conditional_Entry_Call or else NT (N).Nkind = N_Timed_Entry_Call); return Node1 (N); end Entry_Call_Alternative; function Entry_Call_Statement (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Entry_Call_Alternative); return Node1 (N); end Entry_Call_Statement; function Entry_Direct_Name (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Accept_Statement); return Node1 (N); end Entry_Direct_Name; function Entry_Index (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Accept_Statement); return Node5 (N); end Entry_Index; function Entry_Index_Specification (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Entry_Body_Formal_Part); return Node4 (N); end Entry_Index_Specification; function Etype (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind in N_Has_Etype); return Node5 (N); end Etype; function Exception_Choices (N : Node_Id) return List_Id is begin pragma Assert (False or else NT (N).Nkind = N_Exception_Handler); return List4 (N); end Exception_Choices; function Exception_Handlers (N : Node_Id) return List_Id is begin pragma Assert (False or else NT (N).Nkind = N_Handled_Sequence_Of_Statements); return List5 (N); end Exception_Handlers; function Exception_Junk (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Goto_Statement or else NT (N).Nkind = N_Label or else NT (N).Nkind = N_Object_Declaration or else NT (N).Nkind = N_Subtype_Declaration); return Flag11 (N); end Exception_Junk; function Expansion_Delayed (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Aggregate or else NT (N).Nkind = N_Extension_Aggregate); return Flag11 (N); end Expansion_Delayed; function Explicit_Actual_Parameter (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Parameter_Association); return Node3 (N); end Explicit_Actual_Parameter; function Explicit_Generic_Actual_Parameter (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Generic_Association); return Node1 (N); end Explicit_Generic_Actual_Parameter; function Expression (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Allocator or else NT (N).Nkind = N_Assignment_Statement or else NT (N).Nkind = N_At_Clause or else NT (N).Nkind = N_Attribute_Definition_Clause or else NT (N).Nkind = N_Case_Statement or else NT (N).Nkind = N_Code_Statement or else NT (N).Nkind = N_Component_Association or else NT (N).Nkind = N_Component_Declaration or else NT (N).Nkind = N_Delay_Relative_Statement or else NT (N).Nkind = N_Delay_Until_Statement or else NT (N).Nkind = N_Discriminant_Association or else NT (N).Nkind = N_Discriminant_Specification or else NT (N).Nkind = N_Exception_Declaration or else NT (N).Nkind = N_Formal_Object_Declaration or else NT (N).Nkind = N_Free_Statement or else NT (N).Nkind = N_Mod_Clause or else NT (N).Nkind = N_Modular_Type_Definition or else NT (N).Nkind = N_Number_Declaration or else NT (N).Nkind = N_Object_Declaration or else NT (N).Nkind = N_Parameter_Specification or else NT (N).Nkind = N_Pragma_Argument_Association or else NT (N).Nkind = N_Qualified_Expression or else NT (N).Nkind = N_Return_Statement or else NT (N).Nkind = N_Type_Conversion or else NT (N).Nkind = N_Unchecked_Expression or else NT (N).Nkind = N_Unchecked_Type_Conversion); return Node3 (N); end Expression; function Expressions (N : Node_Id) return List_Id is begin pragma Assert (False or else NT (N).Nkind = N_Aggregate or else NT (N).Nkind = N_Attribute_Reference or else NT (N).Nkind = N_Conditional_Expression or else NT (N).Nkind = N_Extension_Aggregate or else NT (N).Nkind = N_Indexed_Component); return List1 (N); end Expressions; function First_Bit (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Component_Clause); return Node3 (N); end First_Bit; function First_Inlined_Subprogram (N : Node_Id) return Entity_Id is begin pragma Assert (False or else NT (N).Nkind = N_Compilation_Unit); return Node3 (N); end First_Inlined_Subprogram; function First_Name (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_With_Clause); return Flag5 (N); end First_Name; function First_Named_Actual (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Entry_Call_Statement or else NT (N).Nkind = N_Function_Call or else NT (N).Nkind = N_Procedure_Call_Statement); return Node4 (N); end First_Named_Actual; function First_Real_Statement (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Handled_Sequence_Of_Statements); return Node2 (N); end First_Real_Statement; function First_Subtype_Link (N : Node_Id) return Entity_Id is begin pragma Assert (False or else NT (N).Nkind = N_Freeze_Entity); return Node5 (N); end First_Subtype_Link; function Float_Truncate (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Type_Conversion); return Flag11 (N); end Float_Truncate; function Formal_Type_Definition (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Formal_Type_Declaration); return Node3 (N); end Formal_Type_Definition; function Forwards_OK (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Assignment_Statement); return Flag5 (N); end Forwards_OK; function From_At_Mod (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Attribute_Definition_Clause); return Flag4 (N); end From_At_Mod; function Generic_Associations (N : Node_Id) return List_Id is begin pragma Assert (False or else NT (N).Nkind = N_Formal_Package_Declaration or else NT (N).Nkind = N_Function_Instantiation or else NT (N).Nkind = N_Package_Instantiation or else NT (N).Nkind = N_Procedure_Instantiation); return List3 (N); end Generic_Associations; function Generic_Formal_Declarations (N : Node_Id) return List_Id is begin pragma Assert (False or else NT (N).Nkind = N_Generic_Package_Declaration or else NT (N).Nkind = N_Generic_Subprogram_Declaration); return List2 (N); end Generic_Formal_Declarations; function Generic_Parent (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Function_Specification or else NT (N).Nkind = N_Package_Specification or else NT (N).Nkind = N_Procedure_Specification); return Node5 (N); end Generic_Parent; function Generic_Parent_Type (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Subtype_Declaration); return Node4 (N); end Generic_Parent_Type; function Handled_Statement_Sequence (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Accept_Statement or else NT (N).Nkind = N_Block_Statement or else NT (N).Nkind = N_Entry_Body or else NT (N).Nkind = N_Package_Body or else NT (N).Nkind = N_Subprogram_Body or else NT (N).Nkind = N_Task_Body); return Node4 (N); end Handled_Statement_Sequence; function Handler_List_Entry (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Object_Declaration); return Node2 (N); end Handler_List_Entry; function Has_Created_Identifier (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Block_Statement or else NT (N).Nkind = N_Loop_Statement); return Flag15 (N); end Has_Created_Identifier; function Has_Dynamic_Length_Check (N : Node_Id) return Boolean is begin return Flag10 (N); end Has_Dynamic_Length_Check; function Has_Dynamic_Range_Check (N : Node_Id) return Boolean is begin return Flag12 (N); end Has_Dynamic_Range_Check; function Has_No_Elaboration_Code (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Compilation_Unit); return Flag17 (N); end Has_No_Elaboration_Code; function Has_Priority_Pragma (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Protected_Definition or else NT (N).Nkind = N_Subprogram_Body or else NT (N).Nkind = N_Task_Definition); return Flag6 (N); end Has_Priority_Pragma; function Has_Private_View (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind in N_Op or else NT (N).Nkind = N_Character_Literal or else NT (N).Nkind = N_Expanded_Name or else NT (N).Nkind = N_Identifier or else NT (N).Nkind = N_Operator_Symbol); return Flag11 (N); end Has_Private_View; function Has_Storage_Size_Pragma (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Task_Definition); return Flag5 (N); end Has_Storage_Size_Pragma; function Has_Task_Info_Pragma (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Task_Definition); return Flag7 (N); end Has_Task_Info_Pragma; function Has_Task_Name_Pragma (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Task_Definition); return Flag8 (N); end Has_Task_Name_Pragma; function Has_Wide_Character (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_String_Literal); return Flag11 (N); end Has_Wide_Character; function Hidden_By_Use_Clause (N : Node_Id) return Elist_Id is begin pragma Assert (False or else NT (N).Nkind = N_Use_Package_Clause or else NT (N).Nkind = N_Use_Type_Clause); return Elist4 (N); end Hidden_By_Use_Clause; function High_Bound (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Range or else NT (N).Nkind = N_Real_Range_Specification or else NT (N).Nkind = N_Signed_Integer_Type_Definition); return Node2 (N); end High_Bound; function Identifier (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_At_Clause or else NT (N).Nkind = N_Block_Statement or else NT (N).Nkind = N_Designator or else NT (N).Nkind = N_Enumeration_Representation_Clause or else NT (N).Nkind = N_Label or else NT (N).Nkind = N_Loop_Statement or else NT (N).Nkind = N_Record_Representation_Clause or else NT (N).Nkind = N_Subprogram_Info); return Node1 (N); end Identifier; function Implicit_With (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_With_Clause); return Flag17 (N); end Implicit_With; function In_Present (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Formal_Object_Declaration or else NT (N).Nkind = N_Parameter_Specification); return Flag15 (N); end In_Present; function Includes_Infinities (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Range); return Flag11 (N); end Includes_Infinities; function Instance_Spec (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Formal_Package_Declaration or else NT (N).Nkind = N_Function_Instantiation or else NT (N).Nkind = N_Package_Instantiation or else NT (N).Nkind = N_Procedure_Instantiation); return Node5 (N); end Instance_Spec; function Intval (N : Node_Id) return Uint is begin pragma Assert (False or else NT (N).Nkind = N_Integer_Literal); return Uint3 (N); end Intval; function Is_Asynchronous_Call_Block (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Block_Statement); return Flag7 (N); end Is_Asynchronous_Call_Block; function Is_Component_Left_Opnd (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Op_Concat); return Flag13 (N); end Is_Component_Left_Opnd; function Is_Component_Right_Opnd (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Op_Concat); return Flag14 (N); end Is_Component_Right_Opnd; function Is_Controlling_Actual (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind in N_Subexpr); return Flag16 (N); end Is_Controlling_Actual; function Is_Machine_Number (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Real_Literal); return Flag11 (N); end Is_Machine_Number; function Is_Overloaded (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind in N_Subexpr); return Flag5 (N); end Is_Overloaded; function Is_Power_Of_2_For_Shift (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Op_Expon); return Flag13 (N); end Is_Power_Of_2_For_Shift; function Is_Protected_Subprogram_Body (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Subprogram_Body); return Flag7 (N); end Is_Protected_Subprogram_Body; function Is_Static_Expression (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind in N_Subexpr); return Flag6 (N); end Is_Static_Expression; function Is_Subprogram_Descriptor (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Object_Declaration); return Flag16 (N); end Is_Subprogram_Descriptor; function Is_Task_Allocation_Block (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Block_Statement); return Flag6 (N); end Is_Task_Allocation_Block; function Is_Task_Master (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Block_Statement or else NT (N).Nkind = N_Subprogram_Body or else NT (N).Nkind = N_Task_Body); return Flag5 (N); end Is_Task_Master; function Iteration_Scheme (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Loop_Statement); return Node2 (N); end Iteration_Scheme; function Itype (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Itype_Reference); return Node1 (N); end Itype; function Kill_Range_Check (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Unchecked_Type_Conversion); return Flag11 (N); end Kill_Range_Check; function Label_Construct (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Implicit_Label_Declaration); return Node2 (N); end Label_Construct; function Last_Bit (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Component_Clause); return Node4 (N); end Last_Bit; function Last_Name (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_With_Clause); return Flag6 (N); end Last_Name; function Left_Opnd (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_And_Then or else NT (N).Nkind = N_In or else NT (N).Nkind = N_Not_In or else NT (N).Nkind = N_Or_Else or else NT (N).Nkind in N_Binary_Op); return Node2 (N); end Left_Opnd; function Library_Unit (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Compilation_Unit or else NT (N).Nkind = N_Package_Body_Stub or else NT (N).Nkind = N_Protected_Body_Stub or else NT (N).Nkind = N_Subprogram_Body_Stub or else NT (N).Nkind = N_Task_Body_Stub or else NT (N).Nkind = N_With_Clause); return Node4 (N); end Library_Unit; function Limited_Present (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Formal_Private_Type_Definition or else NT (N).Nkind = N_Private_Type_Declaration or else NT (N).Nkind = N_Record_Definition); return Flag17 (N); end Limited_Present; function Literals (N : Node_Id) return List_Id is begin pragma Assert (False or else NT (N).Nkind = N_Enumeration_Type_Definition); return List1 (N); end Literals; function Loop_Actions (N : Node_Id) return List_Id is begin pragma Assert (False or else NT (N).Nkind = N_Component_Association); return List2 (N); end Loop_Actions; function Loop_Parameter_Specification (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Iteration_Scheme); return Node4 (N); end Loop_Parameter_Specification; function Low_Bound (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Range or else NT (N).Nkind = N_Real_Range_Specification or else NT (N).Nkind = N_Signed_Integer_Type_Definition); return Node1 (N); end Low_Bound; function Mod_Clause (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Record_Representation_Clause); return Node2 (N); end Mod_Clause; function More_Ids (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Component_Declaration or else NT (N).Nkind = N_Discriminant_Specification or else NT (N).Nkind = N_Exception_Declaration or else NT (N).Nkind = N_Formal_Object_Declaration or else NT (N).Nkind = N_Number_Declaration or else NT (N).Nkind = N_Object_Declaration or else NT (N).Nkind = N_Parameter_Specification); return Flag5 (N); end More_Ids; function Must_Not_Freeze (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Subtype_Indication or else NT (N).Nkind in N_Subexpr); return Flag8 (N); end Must_Not_Freeze; function Name (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Assignment_Statement or else NT (N).Nkind = N_Attribute_Definition_Clause or else NT (N).Nkind = N_Defining_Program_Unit_Name or else NT (N).Nkind = N_Designator or else NT (N).Nkind = N_Entry_Call_Statement or else NT (N).Nkind = N_Exception_Renaming_Declaration or else NT (N).Nkind = N_Exit_Statement or else NT (N).Nkind = N_Formal_Package_Declaration or else NT (N).Nkind = N_Function_Call or else NT (N).Nkind = N_Function_Instantiation or else NT (N).Nkind = N_Generic_Function_Renaming_Declaration or else NT (N).Nkind = N_Generic_Package_Renaming_Declaration or else NT (N).Nkind = N_Generic_Procedure_Renaming_Declaration or else NT (N).Nkind = N_Goto_Statement or else NT (N).Nkind = N_Object_Renaming_Declaration or else NT (N).Nkind = N_Package_Instantiation or else NT (N).Nkind = N_Package_Renaming_Declaration or else NT (N).Nkind = N_Procedure_Call_Statement or else NT (N).Nkind = N_Procedure_Instantiation or else NT (N).Nkind = N_Raise_Statement or else NT (N).Nkind = N_Requeue_Statement or else NT (N).Nkind = N_Subprogram_Renaming_Declaration or else NT (N).Nkind = N_Subunit or else NT (N).Nkind = N_Variant_Part or else NT (N).Nkind = N_With_Clause or else NT (N).Nkind = N_With_Type_Clause); return Node2 (N); end Name; function Names (N : Node_Id) return List_Id is begin pragma Assert (False or else NT (N).Nkind = N_Abort_Statement or else NT (N).Nkind = N_Use_Package_Clause); return List2 (N); end Names; function Next_Entity (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Defining_Character_Literal or else NT (N).Nkind = N_Defining_Identifier or else NT (N).Nkind = N_Defining_Operator_Symbol); return Node2 (N); end Next_Entity; function Next_Named_Actual (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Parameter_Association); return Node4 (N); end Next_Named_Actual; function Next_Rep_Item (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Attribute_Definition_Clause or else NT (N).Nkind = N_Enumeration_Representation_Clause or else NT (N).Nkind = N_Pragma or else NT (N).Nkind = N_Record_Representation_Clause); return Node4 (N); end Next_Rep_Item; function Next_Use_Clause (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Use_Package_Clause or else NT (N).Nkind = N_Use_Type_Clause); return Node3 (N); end Next_Use_Clause; function No_Ctrl_Actions (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Assignment_Statement); return Flag7 (N); end No_Ctrl_Actions; function No_Entities_Ref_In_Spec (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_With_Clause); return Flag8 (N); end No_Entities_Ref_In_Spec; function No_Initialization (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Allocator or else NT (N).Nkind = N_Object_Declaration); return Flag13 (N); end No_Initialization; function Null_Present (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Component_List or else NT (N).Nkind = N_Record_Definition); return Flag13 (N); end Null_Present; function Null_Record_Present (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Aggregate or else NT (N).Nkind = N_Extension_Aggregate); return Flag17 (N); end Null_Record_Present; function Object_Definition (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Object_Declaration); return Node4 (N); end Object_Definition; function OK_For_Stream (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Attribute_Reference); return Flag4 (N); end OK_For_Stream; function Original_Discriminant (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Identifier); return Node2 (N); end Original_Discriminant; function Others_Discrete_Choices (N : Node_Id) return List_Id is begin pragma Assert (False or else NT (N).Nkind = N_Others_Choice); return List1 (N); end Others_Discrete_Choices; function Out_Present (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Formal_Object_Declaration or else NT (N).Nkind = N_Parameter_Specification); return Flag17 (N); end Out_Present; function Parameter_Associations (N : Node_Id) return List_Id is begin pragma Assert (False or else NT (N).Nkind = N_Entry_Call_Statement or else NT (N).Nkind = N_Function_Call or else NT (N).Nkind = N_Procedure_Call_Statement); return List3 (N); end Parameter_Associations; function Parameter_List_Truncated (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Function_Call or else NT (N).Nkind = N_Procedure_Call_Statement); return Flag17 (N); end Parameter_List_Truncated; function Parameter_Specifications (N : Node_Id) return List_Id is begin pragma Assert (False or else NT (N).Nkind = N_Accept_Statement or else NT (N).Nkind = N_Access_Function_Definition or else NT (N).Nkind = N_Access_Procedure_Definition or else NT (N).Nkind = N_Entry_Body_Formal_Part or else NT (N).Nkind = N_Entry_Declaration or else NT (N).Nkind = N_Function_Specification or else NT (N).Nkind = N_Procedure_Specification); return List3 (N); end Parameter_Specifications; function Parameter_Type (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Parameter_Specification); return Node2 (N); end Parameter_Type; function Parent_Spec (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Function_Instantiation or else NT (N).Nkind = N_Generic_Function_Renaming_Declaration or else NT (N).Nkind = N_Generic_Package_Declaration or else NT (N).Nkind = N_Generic_Package_Renaming_Declaration or else NT (N).Nkind = N_Generic_Procedure_Renaming_Declaration or else NT (N).Nkind = N_Generic_Subprogram_Declaration or else NT (N).Nkind = N_Package_Declaration or else NT (N).Nkind = N_Package_Instantiation or else NT (N).Nkind = N_Package_Renaming_Declaration or else NT (N).Nkind = N_Procedure_Instantiation or else NT (N).Nkind = N_Subprogram_Declaration or else NT (N).Nkind = N_Subprogram_Renaming_Declaration); return Node4 (N); end Parent_Spec; function Position (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Component_Clause); return Node2 (N); end Position; function Pragma_Argument_Associations (N : Node_Id) return List_Id is begin pragma Assert (False or else NT (N).Nkind = N_Pragma); return List2 (N); end Pragma_Argument_Associations; function Pragmas_After (N : Node_Id) return List_Id is begin pragma Assert (False or else NT (N).Nkind = N_Compilation_Unit_Aux or else NT (N).Nkind = N_Terminate_Alternative); return List5 (N); end Pragmas_After; function Pragmas_Before (N : Node_Id) return List_Id is begin pragma Assert (False or else NT (N).Nkind = N_Accept_Alternative or else NT (N).Nkind = N_Delay_Alternative or else NT (N).Nkind = N_Entry_Call_Alternative or else NT (N).Nkind = N_Mod_Clause or else NT (N).Nkind = N_Terminate_Alternative or else NT (N).Nkind = N_Triggering_Alternative); return List4 (N); end Pragmas_Before; function Prefix (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Attribute_Reference or else NT (N).Nkind = N_Expanded_Name or else NT (N).Nkind = N_Explicit_Dereference or else NT (N).Nkind = N_Indexed_Component or else NT (N).Nkind = N_Reference or else NT (N).Nkind = N_Selected_Component or else NT (N).Nkind = N_Slice); return Node3 (N); end Prefix; function Present_Expr (N : Node_Id) return Uint is begin pragma Assert (False or else NT (N).Nkind = N_Variant); return Uint3 (N); end Present_Expr; function Prev_Ids (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Component_Declaration or else NT (N).Nkind = N_Discriminant_Specification or else NT (N).Nkind = N_Exception_Declaration or else NT (N).Nkind = N_Formal_Object_Declaration or else NT (N).Nkind = N_Number_Declaration or else NT (N).Nkind = N_Object_Declaration or else NT (N).Nkind = N_Parameter_Specification); return Flag6 (N); end Prev_Ids; function Print_In_Hex (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Integer_Literal); return Flag13 (N); end Print_In_Hex; function Private_Declarations (N : Node_Id) return List_Id is begin pragma Assert (False or else NT (N).Nkind = N_Package_Specification or else NT (N).Nkind = N_Protected_Definition or else NT (N).Nkind = N_Task_Definition); return List3 (N); end Private_Declarations; function Private_Present (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Compilation_Unit or else NT (N).Nkind = N_Formal_Derived_Type_Definition); return Flag15 (N); end Private_Present; function Procedure_To_Call (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Allocator or else NT (N).Nkind = N_Free_Statement or else NT (N).Nkind = N_Return_Statement); return Node4 (N); end Procedure_To_Call; function Proper_Body (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Subunit); return Node1 (N); end Proper_Body; function Protected_Definition (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Protected_Type_Declaration or else NT (N).Nkind = N_Single_Protected_Declaration); return Node3 (N); end Protected_Definition; function Protected_Present (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Access_Function_Definition or else NT (N).Nkind = N_Access_Procedure_Definition); return Flag15 (N); end Protected_Present; function Raises_Constraint_Error (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind in N_Subexpr); return Flag7 (N); end Raises_Constraint_Error; function Range_Constraint (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Delta_Constraint or else NT (N).Nkind = N_Digits_Constraint); return Node4 (N); end Range_Constraint; function Range_Expression (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Range_Constraint); return Node4 (N); end Range_Expression; function Real_Range_Specification (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Decimal_Fixed_Point_Definition or else NT (N).Nkind = N_Floating_Point_Definition or else NT (N).Nkind = N_Ordinary_Fixed_Point_Definition); return Node4 (N); end Real_Range_Specification; function Realval (N : Node_Id) return Ureal is begin pragma Assert (False or else NT (N).Nkind = N_Real_Literal); return Ureal3 (N); end Realval; function Record_Extension_Part (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Derived_Type_Definition); return Node3 (N); end Record_Extension_Part; function Redundant_Use (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Attribute_Reference or else NT (N).Nkind = N_Expanded_Name or else NT (N).Nkind = N_Identifier); return Flag13 (N); end Redundant_Use; function Return_Type (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Return_Statement); return Node2 (N); end Return_Type; function Reverse_Present (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Loop_Parameter_Specification); return Flag15 (N); end Reverse_Present; function Right_Opnd (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind in N_Op or else NT (N).Nkind = N_And_Then or else NT (N).Nkind = N_In or else NT (N).Nkind = N_Not_In or else NT (N).Nkind = N_Or_Else); return Node3 (N); end Right_Opnd; function Rounded_Result (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Op_Divide or else NT (N).Nkind = N_Op_Multiply or else NT (N).Nkind = N_Type_Conversion); return Flag18 (N); end Rounded_Result; function Scope (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Defining_Character_Literal or else NT (N).Nkind = N_Defining_Identifier or else NT (N).Nkind = N_Defining_Operator_Symbol); return Node3 (N); end Scope; function Select_Alternatives (N : Node_Id) return List_Id is begin pragma Assert (False or else NT (N).Nkind = N_Selective_Accept); return List1 (N); end Select_Alternatives; function Selector_Name (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Expanded_Name or else NT (N).Nkind = N_Generic_Association or else NT (N).Nkind = N_Parameter_Association or else NT (N).Nkind = N_Selected_Component); return Node2 (N); end Selector_Name; function Selector_Names (N : Node_Id) return List_Id is begin pragma Assert (False or else NT (N).Nkind = N_Discriminant_Association); return List1 (N); end Selector_Names; function Shift_Count_OK (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Op_Rotate_Left or else NT (N).Nkind = N_Op_Rotate_Right or else NT (N).Nkind = N_Op_Shift_Left or else NT (N).Nkind = N_Op_Shift_Right or else NT (N).Nkind = N_Op_Shift_Right_Arithmetic); return Flag4 (N); end Shift_Count_OK; function Source_Type (N : Node_Id) return Entity_Id is begin pragma Assert (False or else NT (N).Nkind = N_Validate_Unchecked_Conversion); return Node1 (N); end Source_Type; function Specification (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Abstract_Subprogram_Declaration or else NT (N).Nkind = N_Formal_Subprogram_Declaration or else NT (N).Nkind = N_Generic_Package_Declaration or else NT (N).Nkind = N_Generic_Subprogram_Declaration or else NT (N).Nkind = N_Package_Declaration or else NT (N).Nkind = N_Subprogram_Body or else NT (N).Nkind = N_Subprogram_Body_Stub or else NT (N).Nkind = N_Subprogram_Declaration or else NT (N).Nkind = N_Subprogram_Renaming_Declaration); return Node1 (N); end Specification; function Statements (N : Node_Id) return List_Id is begin pragma Assert (False or else NT (N).Nkind = N_Abortable_Part or else NT (N).Nkind = N_Accept_Alternative or else NT (N).Nkind = N_Case_Statement_Alternative or else NT (N).Nkind = N_Delay_Alternative or else NT (N).Nkind = N_Entry_Call_Alternative or else NT (N).Nkind = N_Exception_Handler or else NT (N).Nkind = N_Handled_Sequence_Of_Statements or else NT (N).Nkind = N_Loop_Statement or else NT (N).Nkind = N_Triggering_Alternative); return List3 (N); end Statements; function Static_Processing_OK (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Aggregate); return Flag4 (N); end Static_Processing_OK; function Storage_Pool (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Allocator or else NT (N).Nkind = N_Free_Statement or else NT (N).Nkind = N_Return_Statement); return Node1 (N); end Storage_Pool; function Strval (N : Node_Id) return String_Id is begin pragma Assert (False or else NT (N).Nkind = N_Operator_Symbol or else NT (N).Nkind = N_String_Literal); return Str3 (N); end Strval; function Subtype_Indication (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Access_To_Object_Definition or else NT (N).Nkind = N_Component_Declaration or else NT (N).Nkind = N_Constrained_Array_Definition or else NT (N).Nkind = N_Derived_Type_Definition or else NT (N).Nkind = N_Private_Extension_Declaration or else NT (N).Nkind = N_Subtype_Declaration or else NT (N).Nkind = N_Unconstrained_Array_Definition); return Node5 (N); end Subtype_Indication; function Subtype_Mark (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Access_Definition or else NT (N).Nkind = N_Access_Function_Definition or else NT (N).Nkind = N_Formal_Derived_Type_Definition or else NT (N).Nkind = N_Formal_Object_Declaration or else NT (N).Nkind = N_Function_Specification or else NT (N).Nkind = N_Object_Renaming_Declaration or else NT (N).Nkind = N_Qualified_Expression or else NT (N).Nkind = N_Subtype_Indication or else NT (N).Nkind = N_Type_Conversion or else NT (N).Nkind = N_Unchecked_Type_Conversion); return Node4 (N); end Subtype_Mark; function Subtype_Marks (N : Node_Id) return List_Id is begin pragma Assert (False or else NT (N).Nkind = N_Unconstrained_Array_Definition or else NT (N).Nkind = N_Use_Type_Clause); return List2 (N); end Subtype_Marks; function Tagged_Present (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Formal_Private_Type_Definition or else NT (N).Nkind = N_Private_Type_Declaration or else NT (N).Nkind = N_Record_Definition or else NT (N).Nkind = N_With_Type_Clause); return Flag15 (N); end Tagged_Present; function Target_Type (N : Node_Id) return Entity_Id is begin pragma Assert (False or else NT (N).Nkind = N_Validate_Unchecked_Conversion); return Node2 (N); end Target_Type; function Task_Body_Procedure (N : Node_Id) return Entity_Id is begin pragma Assert (False or else NT (N).Nkind = N_Task_Type_Declaration); return Node2 (N); end Task_Body_Procedure; function Task_Definition (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Single_Task_Declaration or else NT (N).Nkind = N_Task_Type_Declaration); return Node3 (N); end Task_Definition; function Then_Actions (N : Node_Id) return List_Id is begin pragma Assert (False or else NT (N).Nkind = N_Conditional_Expression); return List2 (N); end Then_Actions; function Then_Statements (N : Node_Id) return List_Id is begin pragma Assert (False or else NT (N).Nkind = N_Elsif_Part or else NT (N).Nkind = N_If_Statement); return List2 (N); end Then_Statements; function Treat_Fixed_As_Integer (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Op_Divide or else NT (N).Nkind = N_Op_Mod or else NT (N).Nkind = N_Op_Multiply or else NT (N).Nkind = N_Op_Rem); return Flag14 (N); end Treat_Fixed_As_Integer; function Triggering_Alternative (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Asynchronous_Select); return Node1 (N); end Triggering_Alternative; function Triggering_Statement (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Triggering_Alternative); return Node1 (N); end Triggering_Statement; function TSS_Elist (N : Node_Id) return Elist_Id is begin pragma Assert (False or else NT (N).Nkind = N_Freeze_Entity); return Elist3 (N); end TSS_Elist; function Type_Definition (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Full_Type_Declaration); return Node3 (N); end Type_Definition; function Unit (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Compilation_Unit); return Node2 (N); end Unit; function Unknown_Discriminants_Present (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Formal_Type_Declaration or else NT (N).Nkind = N_Incomplete_Type_Declaration or else NT (N).Nkind = N_Private_Extension_Declaration or else NT (N).Nkind = N_Private_Type_Declaration); return Flag13 (N); end Unknown_Discriminants_Present; function Unreferenced_In_Spec (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_With_Clause); return Flag7 (N); end Unreferenced_In_Spec; function Variant_Part (N : Node_Id) return Node_Id is begin pragma Assert (False or else NT (N).Nkind = N_Component_List); return Node4 (N); end Variant_Part; function Variants (N : Node_Id) return List_Id is begin pragma Assert (False or else NT (N).Nkind = N_Variant_Part); return List1 (N); end Variants; function Visible_Declarations (N : Node_Id) return List_Id is begin pragma Assert (False or else NT (N).Nkind = N_Package_Specification or else NT (N).Nkind = N_Protected_Definition or else NT (N).Nkind = N_Task_Definition); return List2 (N); end Visible_Declarations; function Was_Originally_Stub (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Package_Body or else NT (N).Nkind = N_Protected_Body or else NT (N).Nkind = N_Subprogram_Body or else NT (N).Nkind = N_Task_Body); return Flag13 (N); end Was_Originally_Stub; function Zero_Cost_Handling (N : Node_Id) return Boolean is begin pragma Assert (False or else NT (N).Nkind = N_Exception_Handler or else NT (N).Nkind = N_Handled_Sequence_Of_Statements); return Flag5 (N); end Zero_Cost_Handling; -------------------------- -- Field Set Procedures -- -------------------------- procedure Set_ABE_Is_Certain (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Formal_Package_Declaration or else NT (N).Nkind = N_Function_Call or else NT (N).Nkind = N_Function_Instantiation or else NT (N).Nkind = N_Package_Instantiation or else NT (N).Nkind = N_Procedure_Call_Statement or else NT (N).Nkind = N_Procedure_Instantiation); Set_Flag18 (N, Val); end Set_ABE_Is_Certain; procedure Set_Abort_Present (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Requeue_Statement); Set_Flag15 (N, Val); end Set_Abort_Present; procedure Set_Abortable_Part (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Asynchronous_Select); Set_Node2_With_Parent (N, Val); end Set_Abortable_Part; procedure Set_Abstract_Present (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Derived_Type_Definition or else NT (N).Nkind = N_Formal_Derived_Type_Definition or else NT (N).Nkind = N_Formal_Private_Type_Definition or else NT (N).Nkind = N_Private_Extension_Declaration or else NT (N).Nkind = N_Private_Type_Declaration or else NT (N).Nkind = N_Record_Definition); Set_Flag4 (N, Val); end Set_Abstract_Present; procedure Set_Accept_Handler_Records (N : Node_Id; Val : List_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Accept_Alternative); Set_List5 (N, Val); -- semantic field, no parent set end Set_Accept_Handler_Records; procedure Set_Accept_Statement (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Accept_Alternative); Set_Node2_With_Parent (N, Val); end Set_Accept_Statement; procedure Set_Access_Types_To_Process (N : Node_Id; Val : Elist_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Freeze_Entity); Set_Elist2 (N, Val); -- semantic field, no parent set end Set_Access_Types_To_Process; procedure Set_Actions (N : Node_Id; Val : List_Id) is begin pragma Assert (False or else NT (N).Nkind = N_And_Then or else NT (N).Nkind = N_Compilation_Unit_Aux or else NT (N).Nkind = N_Freeze_Entity or else NT (N).Nkind = N_Or_Else); Set_List1_With_Parent (N, Val); end Set_Actions; procedure Set_Activation_Chain_Entity (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Block_Statement or else NT (N).Nkind = N_Entry_Body or else NT (N).Nkind = N_Generic_Package_Declaration or else NT (N).Nkind = N_Package_Declaration or else NT (N).Nkind = N_Subprogram_Body or else NT (N).Nkind = N_Task_Body); Set_Node3 (N, Val); -- semantic field, no parent set end Set_Activation_Chain_Entity; procedure Set_Acts_As_Spec (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Compilation_Unit or else NT (N).Nkind = N_Subprogram_Body); Set_Flag4 (N, Val); end Set_Acts_As_Spec; procedure Set_Aggregate_Bounds (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Aggregate); Set_Node3 (N, Val); -- semantic field, no parent set end Set_Aggregate_Bounds; procedure Set_Aliased_Present (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Component_Declaration or else NT (N).Nkind = N_Constrained_Array_Definition or else NT (N).Nkind = N_Object_Declaration or else NT (N).Nkind = N_Unconstrained_Array_Definition); Set_Flag4 (N, Val); end Set_Aliased_Present; procedure Set_All_Others (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Others_Choice); Set_Flag11 (N, Val); end Set_All_Others; procedure Set_All_Present (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Access_To_Object_Definition); Set_Flag15 (N, Val); end Set_All_Present; procedure Set_Alternatives (N : Node_Id; Val : List_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Case_Statement); Set_List4_With_Parent (N, Val); end Set_Alternatives; procedure Set_Ancestor_Part (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Extension_Aggregate); Set_Node3_With_Parent (N, Val); end Set_Ancestor_Part; procedure Set_Array_Aggregate (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Enumeration_Representation_Clause); Set_Node3_With_Parent (N, Val); end Set_Array_Aggregate; procedure Set_Assignment_OK (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Object_Declaration or else NT (N).Nkind in N_Subexpr); Set_Flag15 (N, Val); end Set_Assignment_OK; procedure Set_Associated_Node (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind in N_Has_Entity or else NT (N).Nkind = N_Aggregate or else NT (N).Nkind = N_Extension_Aggregate or else NT (N).Nkind = N_Selected_Component); Set_Node4 (N, Val); -- semantic field, no parent set end Set_Associated_Node; procedure Set_At_End_Proc (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Handled_Sequence_Of_Statements); Set_Node1 (N, Val); end Set_At_End_Proc; procedure Set_Attribute_Name (N : Node_Id; Val : Name_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Attribute_Reference); Set_Name2 (N, Val); end Set_Attribute_Name; procedure Set_Aux_Decls_Node (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Compilation_Unit); Set_Node5_With_Parent (N, Val); end Set_Aux_Decls_Node; procedure Set_Backwards_OK (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Assignment_Statement); Set_Flag6 (N, Val); end Set_Backwards_OK; procedure Set_Bad_Is_Detected (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Subprogram_Body); Set_Flag15 (N, Val); end Set_Bad_Is_Detected; procedure Set_Body_Required (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Compilation_Unit); Set_Flag13 (N, Val); end Set_Body_Required; procedure Set_Body_To_Inline (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Subprogram_Declaration); Set_Node3 (N, Val); end Set_Body_To_Inline; procedure Set_Box_Present (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Formal_Package_Declaration or else NT (N).Nkind = N_Formal_Subprogram_Declaration); Set_Flag15 (N, Val); end Set_Box_Present; procedure Set_By_Ref (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Return_Statement); Set_Flag5 (N, Val); end Set_By_Ref; procedure Set_Char_Literal_Value (N : Node_Id; Val : Char_Code) is begin pragma Assert (False or else NT (N).Nkind = N_Character_Literal); Set_Char_Code2 (N, Val); end Set_Char_Literal_Value; procedure Set_Chars (N : Node_Id; Val : Name_Id) is begin pragma Assert (False or else NT (N).Nkind in N_Has_Chars); Set_Name1 (N, Val); end Set_Chars; procedure Set_Choice_Parameter (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Exception_Handler); Set_Node2_With_Parent (N, Val); end Set_Choice_Parameter; procedure Set_Choices (N : Node_Id; Val : List_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Component_Association); Set_List1_With_Parent (N, Val); end Set_Choices; procedure Set_Compile_Time_Known_Aggregate (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Aggregate); Set_Flag18 (N, Val); end Set_Compile_Time_Known_Aggregate; procedure Set_Component_Associations (N : Node_Id; Val : List_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Aggregate or else NT (N).Nkind = N_Extension_Aggregate); Set_List2_With_Parent (N, Val); end Set_Component_Associations; procedure Set_Component_Clauses (N : Node_Id; Val : List_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Record_Representation_Clause); Set_List3_With_Parent (N, Val); end Set_Component_Clauses; procedure Set_Component_Items (N : Node_Id; Val : List_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Component_List); Set_List3_With_Parent (N, Val); end Set_Component_Items; procedure Set_Component_List (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Record_Definition or else NT (N).Nkind = N_Variant); Set_Node1_With_Parent (N, Val); end Set_Component_List; procedure Set_Component_Name (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Component_Clause); Set_Node1_With_Parent (N, Val); end Set_Component_Name; procedure Set_Condition (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Accept_Alternative or else NT (N).Nkind = N_Delay_Alternative or else NT (N).Nkind = N_Elsif_Part or else NT (N).Nkind = N_Entry_Body_Formal_Part or else NT (N).Nkind = N_Exit_Statement or else NT (N).Nkind = N_If_Statement or else NT (N).Nkind = N_Iteration_Scheme or else NT (N).Nkind = N_Raise_Constraint_Error or else NT (N).Nkind = N_Raise_Program_Error or else NT (N).Nkind = N_Raise_Storage_Error or else NT (N).Nkind = N_Terminate_Alternative); Set_Node1_With_Parent (N, Val); end Set_Condition; procedure Set_Condition_Actions (N : Node_Id; Val : List_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Elsif_Part or else NT (N).Nkind = N_Iteration_Scheme); Set_List3 (N, Val); -- semantic field, no parent set end Set_Condition_Actions; procedure Set_Constant_Present (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Access_To_Object_Definition or else NT (N).Nkind = N_Object_Declaration); Set_Flag17 (N, Val); end Set_Constant_Present; procedure Set_Constraint (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Subtype_Indication); Set_Node3_With_Parent (N, Val); end Set_Constraint; procedure Set_Constraints (N : Node_Id; Val : List_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Index_Or_Discriminant_Constraint); Set_List1_With_Parent (N, Val); end Set_Constraints; procedure Set_Context_Installed (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_With_Clause); Set_Flag13 (N, Val); end Set_Context_Installed; procedure Set_Context_Items (N : Node_Id; Val : List_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Compilation_Unit); Set_List1_With_Parent (N, Val); end Set_Context_Items; procedure Set_Controlling_Argument (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Function_Call or else NT (N).Nkind = N_Procedure_Call_Statement); Set_Node1 (N, Val); -- semantic field, no parent set end Set_Controlling_Argument; procedure Set_Conversion_OK (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Type_Conversion); Set_Flag14 (N, Val); end Set_Conversion_OK; procedure Set_Corresponding_Body (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Generic_Package_Declaration or else NT (N).Nkind = N_Generic_Subprogram_Declaration or else NT (N).Nkind = N_Package_Body_Stub or else NT (N).Nkind = N_Package_Declaration or else NT (N).Nkind = N_Protected_Body_Stub or else NT (N).Nkind = N_Protected_Type_Declaration or else NT (N).Nkind = N_Subprogram_Body_Stub or else NT (N).Nkind = N_Subprogram_Declaration or else NT (N).Nkind = N_Task_Body_Stub or else NT (N).Nkind = N_Task_Type_Declaration); Set_Node5 (N, Val); -- semantic field, no parent set end Set_Corresponding_Body; procedure Set_Corresponding_Generic_Association (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Object_Declaration or else NT (N).Nkind = N_Object_Renaming_Declaration); Set_Node5 (N, Val); -- semantic field, no parent set end Set_Corresponding_Generic_Association; procedure Set_Corresponding_Integer_Value (N : Node_Id; Val : Uint) is begin pragma Assert (False or else NT (N).Nkind = N_Real_Literal); Set_Uint4 (N, Val); -- semantic field, no parent set end Set_Corresponding_Integer_Value; procedure Set_Corresponding_Spec (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Package_Body or else NT (N).Nkind = N_Protected_Body or else NT (N).Nkind = N_Subprogram_Body or else NT (N).Nkind = N_Subprogram_Renaming_Declaration or else NT (N).Nkind = N_Task_Body or else NT (N).Nkind = N_With_Clause); Set_Node5 (N, Val); -- semantic field, no parent set end Set_Corresponding_Spec; procedure Set_Corresponding_Stub (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Subunit); Set_Node3 (N, Val); end Set_Corresponding_Stub; procedure Set_Dcheck_Function (N : Node_Id; Val : Entity_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Variant); Set_Node5 (N, Val); -- semantic field, no parent set end Set_Dcheck_Function; procedure Set_Debug_Statement (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Pragma); Set_Node3_With_Parent (N, Val); end Set_Debug_Statement; procedure Set_Declarations (N : Node_Id; Val : List_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Accept_Statement or else NT (N).Nkind = N_Block_Statement or else NT (N).Nkind = N_Compilation_Unit_Aux or else NT (N).Nkind = N_Entry_Body or else NT (N).Nkind = N_Package_Body or else NT (N).Nkind = N_Protected_Body or else NT (N).Nkind = N_Subprogram_Body or else NT (N).Nkind = N_Task_Body); Set_List2_With_Parent (N, Val); end Set_Declarations; procedure Set_Default_Expression (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Parameter_Specification); Set_Node5 (N, Val); -- semantic field, no parent set end Set_Default_Expression; procedure Set_Default_Name (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Formal_Subprogram_Declaration); Set_Node2_With_Parent (N, Val); end Set_Default_Name; procedure Set_Defining_Identifier (N : Node_Id; Val : Entity_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Component_Declaration or else NT (N).Nkind = N_Defining_Program_Unit_Name or else NT (N).Nkind = N_Discriminant_Specification or else NT (N).Nkind = N_Entry_Body or else NT (N).Nkind = N_Entry_Declaration or else NT (N).Nkind = N_Entry_Index_Specification or else NT (N).Nkind = N_Exception_Declaration or else NT (N).Nkind = N_Exception_Renaming_Declaration or else NT (N).Nkind = N_Formal_Object_Declaration or else NT (N).Nkind = N_Formal_Package_Declaration or else NT (N).Nkind = N_Formal_Type_Declaration or else NT (N).Nkind = N_Full_Type_Declaration or else NT (N).Nkind = N_Implicit_Label_Declaration or else NT (N).Nkind = N_Incomplete_Type_Declaration or else NT (N).Nkind = N_Loop_Parameter_Specification or else NT (N).Nkind = N_Number_Declaration or else NT (N).Nkind = N_Object_Declaration or else NT (N).Nkind = N_Object_Renaming_Declaration or else NT (N).Nkind = N_Package_Body_Stub or else NT (N).Nkind = N_Parameter_Specification or else NT (N).Nkind = N_Private_Extension_Declaration or else NT (N).Nkind = N_Private_Type_Declaration or else NT (N).Nkind = N_Protected_Body or else NT (N).Nkind = N_Protected_Body_Stub or else NT (N).Nkind = N_Protected_Type_Declaration or else NT (N).Nkind = N_Single_Protected_Declaration or else NT (N).Nkind = N_Single_Task_Declaration or else NT (N).Nkind = N_Subtype_Declaration or else NT (N).Nkind = N_Task_Body or else NT (N).Nkind = N_Task_Body_Stub or else NT (N).Nkind = N_Task_Type_Declaration); Set_Node1_With_Parent (N, Val); end Set_Defining_Identifier; procedure Set_Defining_Unit_Name (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Function_Instantiation or else NT (N).Nkind = N_Function_Specification or else NT (N).Nkind = N_Generic_Function_Renaming_Declaration or else NT (N).Nkind = N_Generic_Package_Renaming_Declaration or else NT (N).Nkind = N_Generic_Procedure_Renaming_Declaration or else NT (N).Nkind = N_Package_Body or else NT (N).Nkind = N_Package_Instantiation or else NT (N).Nkind = N_Package_Renaming_Declaration or else NT (N).Nkind = N_Package_Specification or else NT (N).Nkind = N_Procedure_Instantiation or else NT (N).Nkind = N_Procedure_Specification); Set_Node1_With_Parent (N, Val); end Set_Defining_Unit_Name; procedure Set_Delay_Alternative (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Timed_Entry_Call); Set_Node4_With_Parent (N, Val); end Set_Delay_Alternative; procedure Set_Delay_Finalize_Attach (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Object_Declaration); Set_Flag14 (N, Val); end Set_Delay_Finalize_Attach; procedure Set_Delay_Statement (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Delay_Alternative); Set_Node2_With_Parent (N, Val); end Set_Delay_Statement; procedure Set_Delta_Expression (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Decimal_Fixed_Point_Definition or else NT (N).Nkind = N_Delta_Constraint or else NT (N).Nkind = N_Ordinary_Fixed_Point_Definition); Set_Node3_With_Parent (N, Val); end Set_Delta_Expression; procedure Set_Digits_Expression (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Decimal_Fixed_Point_Definition or else NT (N).Nkind = N_Digits_Constraint or else NT (N).Nkind = N_Floating_Point_Definition); Set_Node2_With_Parent (N, Val); end Set_Digits_Expression; procedure Set_Discr_Check_Funcs_Built (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Full_Type_Declaration); Set_Flag11 (N, Val); end Set_Discr_Check_Funcs_Built; procedure Set_Discrete_Choices (N : Node_Id; Val : List_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Case_Statement_Alternative or else NT (N).Nkind = N_Variant); Set_List4_With_Parent (N, Val); end Set_Discrete_Choices; procedure Set_Discrete_Range (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Slice); Set_Node4_With_Parent (N, Val); end Set_Discrete_Range; procedure Set_Discrete_Subtype_Definition (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Entry_Declaration or else NT (N).Nkind = N_Entry_Index_Specification or else NT (N).Nkind = N_Loop_Parameter_Specification); Set_Node4_With_Parent (N, Val); end Set_Discrete_Subtype_Definition; procedure Set_Discrete_Subtype_Definitions (N : Node_Id; Val : List_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Constrained_Array_Definition); Set_List2_With_Parent (N, Val); end Set_Discrete_Subtype_Definitions; procedure Set_Discriminant_Specifications (N : Node_Id; Val : List_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Formal_Type_Declaration or else NT (N).Nkind = N_Full_Type_Declaration or else NT (N).Nkind = N_Incomplete_Type_Declaration or else NT (N).Nkind = N_Private_Extension_Declaration or else NT (N).Nkind = N_Private_Type_Declaration or else NT (N).Nkind = N_Protected_Type_Declaration or else NT (N).Nkind = N_Task_Type_Declaration); Set_List4_With_Parent (N, Val); end Set_Discriminant_Specifications; procedure Set_Discriminant_Type (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Discriminant_Specification); Set_Node5_With_Parent (N, Val); end Set_Discriminant_Type; procedure Set_Do_Access_Check (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Attribute_Reference or else NT (N).Nkind = N_Explicit_Dereference or else NT (N).Nkind = N_Indexed_Component or else NT (N).Nkind = N_Selected_Component or else NT (N).Nkind = N_Slice); Set_Flag11 (N, Val); end Set_Do_Access_Check; procedure Set_Do_Accessibility_Check (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Parameter_Specification); Set_Flag13 (N, Val); end Set_Do_Accessibility_Check; procedure Set_Do_Discriminant_Check (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Selected_Component); Set_Flag13 (N, Val); end Set_Do_Discriminant_Check; procedure Set_Do_Division_Check (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Op_Divide or else NT (N).Nkind = N_Op_Mod or else NT (N).Nkind = N_Op_Rem); Set_Flag13 (N, Val); end Set_Do_Division_Check; procedure Set_Do_Length_Check (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Assignment_Statement or else NT (N).Nkind = N_Op_And or else NT (N).Nkind = N_Op_Or or else NT (N).Nkind = N_Op_Xor or else NT (N).Nkind = N_Type_Conversion); Set_Flag4 (N, Val); end Set_Do_Length_Check; procedure Set_Do_Overflow_Check (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind in N_Op or else NT (N).Nkind = N_Attribute_Reference or else NT (N).Nkind = N_Type_Conversion); Set_Flag17 (N, Val); end Set_Do_Overflow_Check; procedure Set_Do_Range_Check (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind in N_Subexpr); Set_Flag9 (N, Val); end Set_Do_Range_Check; procedure Set_Do_Storage_Check (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Allocator or else NT (N).Nkind = N_Subprogram_Body); Set_Flag17 (N, Val); end Set_Do_Storage_Check; procedure Set_Do_Tag_Check (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Assignment_Statement or else NT (N).Nkind = N_Function_Call or else NT (N).Nkind = N_Procedure_Call_Statement or else NT (N).Nkind = N_Return_Statement or else NT (N).Nkind = N_Type_Conversion); Set_Flag13 (N, Val); end Set_Do_Tag_Check; procedure Set_Elaborate_All_Present (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_With_Clause); Set_Flag15 (N, Val); end Set_Elaborate_All_Present; procedure Set_Elaborate_Present (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_With_Clause); Set_Flag4 (N, Val); end Set_Elaborate_Present; procedure Set_Elaboration_Boolean (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Function_Specification or else NT (N).Nkind = N_Procedure_Specification); Set_Node2 (N, Val); end Set_Elaboration_Boolean; procedure Set_Else_Actions (N : Node_Id; Val : List_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Conditional_Expression); Set_List3 (N, Val); -- semantic field, no parent set end Set_Else_Actions; procedure Set_Else_Statements (N : Node_Id; Val : List_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Conditional_Entry_Call or else NT (N).Nkind = N_If_Statement or else NT (N).Nkind = N_Selective_Accept); Set_List4_With_Parent (N, Val); end Set_Else_Statements; procedure Set_Elsif_Parts (N : Node_Id; Val : List_Id) is begin pragma Assert (False or else NT (N).Nkind = N_If_Statement); Set_List3_With_Parent (N, Val); end Set_Elsif_Parts; procedure Set_Enclosing_Variant (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Variant); Set_Node2 (N, Val); -- semantic field, no parent set end Set_Enclosing_Variant; procedure Set_End_Label (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Handled_Sequence_Of_Statements or else NT (N).Nkind = N_Loop_Statement or else NT (N).Nkind = N_Package_Specification or else NT (N).Nkind = N_Protected_Body or else NT (N).Nkind = N_Protected_Definition or else NT (N).Nkind = N_Record_Definition or else NT (N).Nkind = N_Task_Definition); Set_Node4_With_Parent (N, Val); end Set_End_Label; procedure Set_End_Span (N : Node_Id; Val : Uint) is begin pragma Assert (False or else NT (N).Nkind = N_Case_Statement or else NT (N).Nkind = N_If_Statement); Set_Uint5 (N, Val); end Set_End_Span; procedure Set_Entity (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind in N_Has_Entity or else NT (N).Nkind = N_Freeze_Entity); Set_Node4 (N, Val); -- semantic field, no parent set end Set_Entity; procedure Set_Entry_Body_Formal_Part (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Entry_Body); Set_Node5_With_Parent (N, Val); end Set_Entry_Body_Formal_Part; procedure Set_Entry_Call_Alternative (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Conditional_Entry_Call or else NT (N).Nkind = N_Timed_Entry_Call); Set_Node1_With_Parent (N, Val); end Set_Entry_Call_Alternative; procedure Set_Entry_Call_Statement (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Entry_Call_Alternative); Set_Node1_With_Parent (N, Val); end Set_Entry_Call_Statement; procedure Set_Entry_Direct_Name (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Accept_Statement); Set_Node1_With_Parent (N, Val); end Set_Entry_Direct_Name; procedure Set_Entry_Index (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Accept_Statement); Set_Node5_With_Parent (N, Val); end Set_Entry_Index; procedure Set_Entry_Index_Specification (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Entry_Body_Formal_Part); Set_Node4_With_Parent (N, Val); end Set_Entry_Index_Specification; procedure Set_Etype (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind in N_Has_Etype); Set_Node5 (N, Val); -- semantic field, no parent set end Set_Etype; procedure Set_Exception_Choices (N : Node_Id; Val : List_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Exception_Handler); Set_List4_With_Parent (N, Val); end Set_Exception_Choices; procedure Set_Exception_Handlers (N : Node_Id; Val : List_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Handled_Sequence_Of_Statements); Set_List5_With_Parent (N, Val); end Set_Exception_Handlers; procedure Set_Exception_Junk (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Goto_Statement or else NT (N).Nkind = N_Label or else NT (N).Nkind = N_Object_Declaration or else NT (N).Nkind = N_Subtype_Declaration); Set_Flag11 (N, Val); end Set_Exception_Junk; procedure Set_Expansion_Delayed (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Aggregate or else NT (N).Nkind = N_Extension_Aggregate); Set_Flag11 (N, Val); end Set_Expansion_Delayed; procedure Set_Explicit_Actual_Parameter (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Parameter_Association); Set_Node3_With_Parent (N, Val); end Set_Explicit_Actual_Parameter; procedure Set_Explicit_Generic_Actual_Parameter (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Generic_Association); Set_Node1_With_Parent (N, Val); end Set_Explicit_Generic_Actual_Parameter; procedure Set_Expression (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Allocator or else NT (N).Nkind = N_Assignment_Statement or else NT (N).Nkind = N_At_Clause or else NT (N).Nkind = N_Attribute_Definition_Clause or else NT (N).Nkind = N_Case_Statement or else NT (N).Nkind = N_Code_Statement or else NT (N).Nkind = N_Component_Association or else NT (N).Nkind = N_Component_Declaration or else NT (N).Nkind = N_Delay_Relative_Statement or else NT (N).Nkind = N_Delay_Until_Statement or else NT (N).Nkind = N_Discriminant_Association or else NT (N).Nkind = N_Discriminant_Specification or else NT (N).Nkind = N_Exception_Declaration or else NT (N).Nkind = N_Formal_Object_Declaration or else NT (N).Nkind = N_Free_Statement or else NT (N).Nkind = N_Mod_Clause or else NT (N).Nkind = N_Modular_Type_Definition or else NT (N).Nkind = N_Number_Declaration or else NT (N).Nkind = N_Object_Declaration or else NT (N).Nkind = N_Parameter_Specification or else NT (N).Nkind = N_Pragma_Argument_Association or else NT (N).Nkind = N_Qualified_Expression or else NT (N).Nkind = N_Return_Statement or else NT (N).Nkind = N_Type_Conversion or else NT (N).Nkind = N_Unchecked_Expression or else NT (N).Nkind = N_Unchecked_Type_Conversion); Set_Node3_With_Parent (N, Val); end Set_Expression; procedure Set_Expressions (N : Node_Id; Val : List_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Aggregate or else NT (N).Nkind = N_Attribute_Reference or else NT (N).Nkind = N_Conditional_Expression or else NT (N).Nkind = N_Extension_Aggregate or else NT (N).Nkind = N_Indexed_Component); Set_List1_With_Parent (N, Val); end Set_Expressions; procedure Set_First_Bit (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Component_Clause); Set_Node3_With_Parent (N, Val); end Set_First_Bit; procedure Set_First_Inlined_Subprogram (N : Node_Id; Val : Entity_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Compilation_Unit); Set_Node3 (N, Val); -- semantic field, no parent set end Set_First_Inlined_Subprogram; procedure Set_First_Name (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_With_Clause); Set_Flag5 (N, Val); end Set_First_Name; procedure Set_First_Named_Actual (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Entry_Call_Statement or else NT (N).Nkind = N_Function_Call or else NT (N).Nkind = N_Procedure_Call_Statement); Set_Node4 (N, Val); -- semantic field, no parent set end Set_First_Named_Actual; procedure Set_First_Real_Statement (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Handled_Sequence_Of_Statements); Set_Node2 (N, Val); -- semantic field, no parent set end Set_First_Real_Statement; procedure Set_First_Subtype_Link (N : Node_Id; Val : Entity_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Freeze_Entity); Set_Node5 (N, Val); -- semantic field, no parent set end Set_First_Subtype_Link; procedure Set_Float_Truncate (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Type_Conversion); Set_Flag11 (N, Val); end Set_Float_Truncate; procedure Set_Formal_Type_Definition (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Formal_Type_Declaration); Set_Node3_With_Parent (N, Val); end Set_Formal_Type_Definition; procedure Set_Forwards_OK (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Assignment_Statement); Set_Flag5 (N, Val); end Set_Forwards_OK; procedure Set_From_At_Mod (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Attribute_Definition_Clause); Set_Flag4 (N, Val); end Set_From_At_Mod; procedure Set_Generic_Associations (N : Node_Id; Val : List_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Formal_Package_Declaration or else NT (N).Nkind = N_Function_Instantiation or else NT (N).Nkind = N_Package_Instantiation or else NT (N).Nkind = N_Procedure_Instantiation); Set_List3_With_Parent (N, Val); end Set_Generic_Associations; procedure Set_Generic_Formal_Declarations (N : Node_Id; Val : List_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Generic_Package_Declaration or else NT (N).Nkind = N_Generic_Subprogram_Declaration); Set_List2_With_Parent (N, Val); end Set_Generic_Formal_Declarations; procedure Set_Generic_Parent (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Function_Specification or else NT (N).Nkind = N_Package_Specification or else NT (N).Nkind = N_Procedure_Specification); Set_Node5 (N, Val); end Set_Generic_Parent; procedure Set_Generic_Parent_Type (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Subtype_Declaration); Set_Node4 (N, Val); end Set_Generic_Parent_Type; procedure Set_Handled_Statement_Sequence (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Accept_Statement or else NT (N).Nkind = N_Block_Statement or else NT (N).Nkind = N_Entry_Body or else NT (N).Nkind = N_Package_Body or else NT (N).Nkind = N_Subprogram_Body or else NT (N).Nkind = N_Task_Body); Set_Node4_With_Parent (N, Val); end Set_Handled_Statement_Sequence; procedure Set_Handler_List_Entry (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Object_Declaration); Set_Node2 (N, Val); end Set_Handler_List_Entry; procedure Set_Has_Created_Identifier (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Block_Statement or else NT (N).Nkind = N_Loop_Statement); Set_Flag15 (N, Val); end Set_Has_Created_Identifier; procedure Set_Has_Dynamic_Length_Check (N : Node_Id; Val : Boolean := True) is begin Set_Flag10 (N, Val); end Set_Has_Dynamic_Length_Check; procedure Set_Has_Dynamic_Range_Check (N : Node_Id; Val : Boolean := True) is begin Set_Flag12 (N, Val); end Set_Has_Dynamic_Range_Check; procedure Set_Has_No_Elaboration_Code (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Compilation_Unit); Set_Flag17 (N, Val); end Set_Has_No_Elaboration_Code; procedure Set_Has_Priority_Pragma (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Protected_Definition or else NT (N).Nkind = N_Subprogram_Body or else NT (N).Nkind = N_Task_Definition); Set_Flag6 (N, Val); end Set_Has_Priority_Pragma; procedure Set_Has_Private_View (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind in N_Op or else NT (N).Nkind = N_Character_Literal or else NT (N).Nkind = N_Expanded_Name or else NT (N).Nkind = N_Identifier or else NT (N).Nkind = N_Operator_Symbol); Set_Flag11 (N, Val); end Set_Has_Private_View; procedure Set_Has_Storage_Size_Pragma (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Task_Definition); Set_Flag5 (N, Val); end Set_Has_Storage_Size_Pragma; procedure Set_Has_Task_Info_Pragma (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Task_Definition); Set_Flag7 (N, Val); end Set_Has_Task_Info_Pragma; procedure Set_Has_Task_Name_Pragma (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Task_Definition); Set_Flag8 (N, Val); end Set_Has_Task_Name_Pragma; procedure Set_Has_Wide_Character (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_String_Literal); Set_Flag11 (N, Val); end Set_Has_Wide_Character; procedure Set_Hidden_By_Use_Clause (N : Node_Id; Val : Elist_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Use_Package_Clause or else NT (N).Nkind = N_Use_Type_Clause); Set_Elist4 (N, Val); end Set_Hidden_By_Use_Clause; procedure Set_High_Bound (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Range or else NT (N).Nkind = N_Real_Range_Specification or else NT (N).Nkind = N_Signed_Integer_Type_Definition); Set_Node2_With_Parent (N, Val); end Set_High_Bound; procedure Set_Identifier (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_At_Clause or else NT (N).Nkind = N_Block_Statement or else NT (N).Nkind = N_Designator or else NT (N).Nkind = N_Enumeration_Representation_Clause or else NT (N).Nkind = N_Label or else NT (N).Nkind = N_Loop_Statement or else NT (N).Nkind = N_Record_Representation_Clause or else NT (N).Nkind = N_Subprogram_Info); Set_Node1_With_Parent (N, Val); end Set_Identifier; procedure Set_Implicit_With (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_With_Clause); Set_Flag17 (N, Val); end Set_Implicit_With; procedure Set_In_Present (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Formal_Object_Declaration or else NT (N).Nkind = N_Parameter_Specification); Set_Flag15 (N, Val); end Set_In_Present; procedure Set_Includes_Infinities (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Range); Set_Flag11 (N, Val); end Set_Includes_Infinities; procedure Set_Instance_Spec (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Formal_Package_Declaration or else NT (N).Nkind = N_Function_Instantiation or else NT (N).Nkind = N_Package_Instantiation or else NT (N).Nkind = N_Procedure_Instantiation); Set_Node5 (N, Val); -- semantic field, no Parent set end Set_Instance_Spec; procedure Set_Intval (N : Node_Id; Val : Uint) is begin pragma Assert (False or else NT (N).Nkind = N_Integer_Literal); Set_Uint3 (N, Val); end Set_Intval; procedure Set_Is_Asynchronous_Call_Block (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Block_Statement); Set_Flag7 (N, Val); end Set_Is_Asynchronous_Call_Block; procedure Set_Is_Component_Left_Opnd (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Op_Concat); Set_Flag13 (N, Val); end Set_Is_Component_Left_Opnd; procedure Set_Is_Component_Right_Opnd (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Op_Concat); Set_Flag14 (N, Val); end Set_Is_Component_Right_Opnd; procedure Set_Is_Controlling_Actual (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind in N_Subexpr); Set_Flag16 (N, Val); end Set_Is_Controlling_Actual; procedure Set_Is_Machine_Number (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Real_Literal); Set_Flag11 (N, Val); end Set_Is_Machine_Number; procedure Set_Is_Overloaded (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind in N_Subexpr); Set_Flag5 (N, Val); end Set_Is_Overloaded; procedure Set_Is_Power_Of_2_For_Shift (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Op_Expon); Set_Flag13 (N, Val); end Set_Is_Power_Of_2_For_Shift; procedure Set_Is_Protected_Subprogram_Body (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Subprogram_Body); Set_Flag7 (N, Val); end Set_Is_Protected_Subprogram_Body; procedure Set_Is_Static_Expression (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind in N_Subexpr); Set_Flag6 (N, Val); end Set_Is_Static_Expression; procedure Set_Is_Subprogram_Descriptor (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Object_Declaration); Set_Flag16 (N, Val); end Set_Is_Subprogram_Descriptor; procedure Set_Is_Task_Allocation_Block (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Block_Statement); Set_Flag6 (N, Val); end Set_Is_Task_Allocation_Block; procedure Set_Is_Task_Master (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Block_Statement or else NT (N).Nkind = N_Subprogram_Body or else NT (N).Nkind = N_Task_Body); Set_Flag5 (N, Val); end Set_Is_Task_Master; procedure Set_Iteration_Scheme (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Loop_Statement); Set_Node2_With_Parent (N, Val); end Set_Iteration_Scheme; procedure Set_Itype (N : Node_Id; Val : Entity_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Itype_Reference); Set_Node1 (N, Val); -- no parent, semantic field end Set_Itype; procedure Set_Kill_Range_Check (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Unchecked_Type_Conversion); Set_Flag11 (N, Val); end Set_Kill_Range_Check; procedure Set_Label_Construct (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Implicit_Label_Declaration); Set_Node2 (N, Val); -- semantic field, no parent set end Set_Label_Construct; procedure Set_Last_Bit (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Component_Clause); Set_Node4_With_Parent (N, Val); end Set_Last_Bit; procedure Set_Last_Name (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_With_Clause); Set_Flag6 (N, Val); end Set_Last_Name; procedure Set_Left_Opnd (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_And_Then or else NT (N).Nkind = N_In or else NT (N).Nkind = N_Not_In or else NT (N).Nkind = N_Or_Else or else NT (N).Nkind in N_Binary_Op); Set_Node2_With_Parent (N, Val); end Set_Left_Opnd; procedure Set_Library_Unit (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Compilation_Unit or else NT (N).Nkind = N_Package_Body_Stub or else NT (N).Nkind = N_Protected_Body_Stub or else NT (N).Nkind = N_Subprogram_Body_Stub or else NT (N).Nkind = N_Task_Body_Stub or else NT (N).Nkind = N_With_Clause); Set_Node4 (N, Val); -- semantic field, no parent set end Set_Library_Unit; procedure Set_Limited_Present (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Formal_Private_Type_Definition or else NT (N).Nkind = N_Private_Type_Declaration or else NT (N).Nkind = N_Record_Definition); Set_Flag17 (N, Val); end Set_Limited_Present; procedure Set_Literals (N : Node_Id; Val : List_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Enumeration_Type_Definition); Set_List1_With_Parent (N, Val); end Set_Literals; procedure Set_Loop_Actions (N : Node_Id; Val : List_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Component_Association); Set_List2 (N, Val); -- semantic field, no parent set end Set_Loop_Actions; procedure Set_Loop_Parameter_Specification (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Iteration_Scheme); Set_Node4_With_Parent (N, Val); end Set_Loop_Parameter_Specification; procedure Set_Low_Bound (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Range or else NT (N).Nkind = N_Real_Range_Specification or else NT (N).Nkind = N_Signed_Integer_Type_Definition); Set_Node1_With_Parent (N, Val); end Set_Low_Bound; procedure Set_Mod_Clause (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Record_Representation_Clause); Set_Node2_With_Parent (N, Val); end Set_Mod_Clause; procedure Set_More_Ids (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Component_Declaration or else NT (N).Nkind = N_Discriminant_Specification or else NT (N).Nkind = N_Exception_Declaration or else NT (N).Nkind = N_Formal_Object_Declaration or else NT (N).Nkind = N_Number_Declaration or else NT (N).Nkind = N_Object_Declaration or else NT (N).Nkind = N_Parameter_Specification); Set_Flag5 (N, Val); end Set_More_Ids; procedure Set_Must_Not_Freeze (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Subtype_Indication or else NT (N).Nkind in N_Subexpr); Set_Flag8 (N, Val); end Set_Must_Not_Freeze; procedure Set_Name (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Assignment_Statement or else NT (N).Nkind = N_Attribute_Definition_Clause or else NT (N).Nkind = N_Defining_Program_Unit_Name or else NT (N).Nkind = N_Designator or else NT (N).Nkind = N_Entry_Call_Statement or else NT (N).Nkind = N_Exception_Renaming_Declaration or else NT (N).Nkind = N_Exit_Statement or else NT (N).Nkind = N_Formal_Package_Declaration or else NT (N).Nkind = N_Function_Call or else NT (N).Nkind = N_Function_Instantiation or else NT (N).Nkind = N_Generic_Function_Renaming_Declaration or else NT (N).Nkind = N_Generic_Package_Renaming_Declaration or else NT (N).Nkind = N_Generic_Procedure_Renaming_Declaration or else NT (N).Nkind = N_Goto_Statement or else NT (N).Nkind = N_Object_Renaming_Declaration or else NT (N).Nkind = N_Package_Instantiation or else NT (N).Nkind = N_Package_Renaming_Declaration or else NT (N).Nkind = N_Procedure_Call_Statement or else NT (N).Nkind = N_Procedure_Instantiation or else NT (N).Nkind = N_Raise_Statement or else NT (N).Nkind = N_Requeue_Statement or else NT (N).Nkind = N_Subprogram_Renaming_Declaration or else NT (N).Nkind = N_Subunit or else NT (N).Nkind = N_Variant_Part or else NT (N).Nkind = N_With_Clause or else NT (N).Nkind = N_With_Type_Clause); Set_Node2_With_Parent (N, Val); end Set_Name; procedure Set_Names (N : Node_Id; Val : List_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Abort_Statement or else NT (N).Nkind = N_Use_Package_Clause); Set_List2_With_Parent (N, Val); end Set_Names; procedure Set_Next_Entity (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Defining_Character_Literal or else NT (N).Nkind = N_Defining_Identifier or else NT (N).Nkind = N_Defining_Operator_Symbol); Set_Node2 (N, Val); -- semantic field, no parent set end Set_Next_Entity; procedure Set_Next_Named_Actual (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Parameter_Association); Set_Node4 (N, Val); -- semantic field, no parent set end Set_Next_Named_Actual; procedure Set_Next_Rep_Item (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Attribute_Definition_Clause or else NT (N).Nkind = N_Enumeration_Representation_Clause or else NT (N).Nkind = N_Pragma or else NT (N).Nkind = N_Record_Representation_Clause); Set_Node4 (N, Val); -- semantic field, no parent set end Set_Next_Rep_Item; procedure Set_Next_Use_Clause (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Use_Package_Clause or else NT (N).Nkind = N_Use_Type_Clause); Set_Node3 (N, Val); -- semantic field, no parent set end Set_Next_Use_Clause; procedure Set_No_Ctrl_Actions (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Assignment_Statement); Set_Flag7 (N, Val); end Set_No_Ctrl_Actions; procedure Set_No_Entities_Ref_In_Spec (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_With_Clause); Set_Flag8 (N, Val); end Set_No_Entities_Ref_In_Spec; procedure Set_No_Initialization (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Allocator or else NT (N).Nkind = N_Object_Declaration); Set_Flag13 (N, Val); end Set_No_Initialization; procedure Set_Null_Present (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Component_List or else NT (N).Nkind = N_Record_Definition); Set_Flag13 (N, Val); end Set_Null_Present; procedure Set_Null_Record_Present (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Aggregate or else NT (N).Nkind = N_Extension_Aggregate); Set_Flag17 (N, Val); end Set_Null_Record_Present; procedure Set_Object_Definition (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Object_Declaration); Set_Node4_With_Parent (N, Val); end Set_Object_Definition; procedure Set_OK_For_Stream (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Attribute_Reference); Set_Flag4 (N, Val); end Set_OK_For_Stream; procedure Set_Original_Discriminant (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Identifier); Set_Node2 (N, Val); -- semantic field, no parent set end Set_Original_Discriminant; procedure Set_Others_Discrete_Choices (N : Node_Id; Val : List_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Others_Choice); Set_List1_With_Parent (N, Val); end Set_Others_Discrete_Choices; procedure Set_Out_Present (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Formal_Object_Declaration or else NT (N).Nkind = N_Parameter_Specification); Set_Flag17 (N, Val); end Set_Out_Present; procedure Set_Parameter_Associations (N : Node_Id; Val : List_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Entry_Call_Statement or else NT (N).Nkind = N_Function_Call or else NT (N).Nkind = N_Procedure_Call_Statement); Set_List3_With_Parent (N, Val); end Set_Parameter_Associations; procedure Set_Parameter_List_Truncated (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Function_Call or else NT (N).Nkind = N_Procedure_Call_Statement); Set_Flag17 (N, Val); end Set_Parameter_List_Truncated; procedure Set_Parameter_Specifications (N : Node_Id; Val : List_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Accept_Statement or else NT (N).Nkind = N_Access_Function_Definition or else NT (N).Nkind = N_Access_Procedure_Definition or else NT (N).Nkind = N_Entry_Body_Formal_Part or else NT (N).Nkind = N_Entry_Declaration or else NT (N).Nkind = N_Function_Specification or else NT (N).Nkind = N_Procedure_Specification); Set_List3_With_Parent (N, Val); end Set_Parameter_Specifications; procedure Set_Parameter_Type (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Parameter_Specification); Set_Node2_With_Parent (N, Val); end Set_Parameter_Type; procedure Set_Parent_Spec (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Function_Instantiation or else NT (N).Nkind = N_Generic_Function_Renaming_Declaration or else NT (N).Nkind = N_Generic_Package_Declaration or else NT (N).Nkind = N_Generic_Package_Renaming_Declaration or else NT (N).Nkind = N_Generic_Procedure_Renaming_Declaration or else NT (N).Nkind = N_Generic_Subprogram_Declaration or else NT (N).Nkind = N_Package_Declaration or else NT (N).Nkind = N_Package_Instantiation or else NT (N).Nkind = N_Package_Renaming_Declaration or else NT (N).Nkind = N_Procedure_Instantiation or else NT (N).Nkind = N_Subprogram_Declaration or else NT (N).Nkind = N_Subprogram_Renaming_Declaration); Set_Node4 (N, Val); -- semantic field, no parent set end Set_Parent_Spec; procedure Set_Position (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Component_Clause); Set_Node2_With_Parent (N, Val); end Set_Position; procedure Set_Pragma_Argument_Associations (N : Node_Id; Val : List_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Pragma); Set_List2_With_Parent (N, Val); end Set_Pragma_Argument_Associations; procedure Set_Pragmas_After (N : Node_Id; Val : List_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Compilation_Unit_Aux or else NT (N).Nkind = N_Terminate_Alternative); Set_List5_With_Parent (N, Val); end Set_Pragmas_After; procedure Set_Pragmas_Before (N : Node_Id; Val : List_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Accept_Alternative or else NT (N).Nkind = N_Delay_Alternative or else NT (N).Nkind = N_Entry_Call_Alternative or else NT (N).Nkind = N_Mod_Clause or else NT (N).Nkind = N_Terminate_Alternative or else NT (N).Nkind = N_Triggering_Alternative); Set_List4_With_Parent (N, Val); end Set_Pragmas_Before; procedure Set_Prefix (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Attribute_Reference or else NT (N).Nkind = N_Expanded_Name or else NT (N).Nkind = N_Explicit_Dereference or else NT (N).Nkind = N_Indexed_Component or else NT (N).Nkind = N_Reference or else NT (N).Nkind = N_Selected_Component or else NT (N).Nkind = N_Slice); Set_Node3_With_Parent (N, Val); end Set_Prefix; procedure Set_Present_Expr (N : Node_Id; Val : Uint) is begin pragma Assert (False or else NT (N).Nkind = N_Variant); Set_Uint3 (N, Val); end Set_Present_Expr; procedure Set_Prev_Ids (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Component_Declaration or else NT (N).Nkind = N_Discriminant_Specification or else NT (N).Nkind = N_Exception_Declaration or else NT (N).Nkind = N_Formal_Object_Declaration or else NT (N).Nkind = N_Number_Declaration or else NT (N).Nkind = N_Object_Declaration or else NT (N).Nkind = N_Parameter_Specification); Set_Flag6 (N, Val); end Set_Prev_Ids; procedure Set_Print_In_Hex (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Integer_Literal); Set_Flag13 (N, Val); end Set_Print_In_Hex; procedure Set_Private_Declarations (N : Node_Id; Val : List_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Package_Specification or else NT (N).Nkind = N_Protected_Definition or else NT (N).Nkind = N_Task_Definition); Set_List3_With_Parent (N, Val); end Set_Private_Declarations; procedure Set_Private_Present (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Compilation_Unit or else NT (N).Nkind = N_Formal_Derived_Type_Definition); Set_Flag15 (N, Val); end Set_Private_Present; procedure Set_Procedure_To_Call (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Allocator or else NT (N).Nkind = N_Free_Statement or else NT (N).Nkind = N_Return_Statement); Set_Node4 (N, Val); -- semantic field, no parent set end Set_Procedure_To_Call; procedure Set_Proper_Body (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Subunit); Set_Node1_With_Parent (N, Val); end Set_Proper_Body; procedure Set_Protected_Definition (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Protected_Type_Declaration or else NT (N).Nkind = N_Single_Protected_Declaration); Set_Node3_With_Parent (N, Val); end Set_Protected_Definition; procedure Set_Protected_Present (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Access_Function_Definition or else NT (N).Nkind = N_Access_Procedure_Definition); Set_Flag15 (N, Val); end Set_Protected_Present; procedure Set_Raises_Constraint_Error (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind in N_Subexpr); Set_Flag7 (N, Val); end Set_Raises_Constraint_Error; procedure Set_Range_Constraint (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Delta_Constraint or else NT (N).Nkind = N_Digits_Constraint); Set_Node4_With_Parent (N, Val); end Set_Range_Constraint; procedure Set_Range_Expression (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Range_Constraint); Set_Node4_With_Parent (N, Val); end Set_Range_Expression; procedure Set_Real_Range_Specification (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Decimal_Fixed_Point_Definition or else NT (N).Nkind = N_Floating_Point_Definition or else NT (N).Nkind = N_Ordinary_Fixed_Point_Definition); Set_Node4_With_Parent (N, Val); end Set_Real_Range_Specification; procedure Set_Realval (N : Node_Id; Val : Ureal) is begin pragma Assert (False or else NT (N).Nkind = N_Real_Literal); Set_Ureal3 (N, Val); end Set_Realval; procedure Set_Record_Extension_Part (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Derived_Type_Definition); Set_Node3_With_Parent (N, Val); end Set_Record_Extension_Part; procedure Set_Redundant_Use (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Attribute_Reference or else NT (N).Nkind = N_Expanded_Name or else NT (N).Nkind = N_Identifier); Set_Flag13 (N, Val); end Set_Redundant_Use; procedure Set_Return_Type (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Return_Statement); Set_Node2 (N, Val); -- semantic field, no parent set end Set_Return_Type; procedure Set_Reverse_Present (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Loop_Parameter_Specification); Set_Flag15 (N, Val); end Set_Reverse_Present; procedure Set_Right_Opnd (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind in N_Op or else NT (N).Nkind = N_And_Then or else NT (N).Nkind = N_In or else NT (N).Nkind = N_Not_In or else NT (N).Nkind = N_Or_Else); Set_Node3_With_Parent (N, Val); end Set_Right_Opnd; procedure Set_Rounded_Result (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Op_Divide or else NT (N).Nkind = N_Op_Multiply or else NT (N).Nkind = N_Type_Conversion); Set_Flag18 (N, Val); end Set_Rounded_Result; procedure Set_Scope (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Defining_Character_Literal or else NT (N).Nkind = N_Defining_Identifier or else NT (N).Nkind = N_Defining_Operator_Symbol); Set_Node3 (N, Val); -- semantic field, no parent set end Set_Scope; procedure Set_Select_Alternatives (N : Node_Id; Val : List_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Selective_Accept); Set_List1_With_Parent (N, Val); end Set_Select_Alternatives; procedure Set_Selector_Name (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Expanded_Name or else NT (N).Nkind = N_Generic_Association or else NT (N).Nkind = N_Parameter_Association or else NT (N).Nkind = N_Selected_Component); Set_Node2_With_Parent (N, Val); end Set_Selector_Name; procedure Set_Selector_Names (N : Node_Id; Val : List_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Discriminant_Association); Set_List1_With_Parent (N, Val); end Set_Selector_Names; procedure Set_Shift_Count_OK (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Op_Rotate_Left or else NT (N).Nkind = N_Op_Rotate_Right or else NT (N).Nkind = N_Op_Shift_Left or else NT (N).Nkind = N_Op_Shift_Right or else NT (N).Nkind = N_Op_Shift_Right_Arithmetic); Set_Flag4 (N, Val); end Set_Shift_Count_OK; procedure Set_Source_Type (N : Node_Id; Val : Entity_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Validate_Unchecked_Conversion); Set_Node1 (N, Val); -- semantic field, no parent set end Set_Source_Type; procedure Set_Specification (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Abstract_Subprogram_Declaration or else NT (N).Nkind = N_Formal_Subprogram_Declaration or else NT (N).Nkind = N_Generic_Package_Declaration or else NT (N).Nkind = N_Generic_Subprogram_Declaration or else NT (N).Nkind = N_Package_Declaration or else NT (N).Nkind = N_Subprogram_Body or else NT (N).Nkind = N_Subprogram_Body_Stub or else NT (N).Nkind = N_Subprogram_Declaration or else NT (N).Nkind = N_Subprogram_Renaming_Declaration); Set_Node1_With_Parent (N, Val); end Set_Specification; procedure Set_Statements (N : Node_Id; Val : List_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Abortable_Part or else NT (N).Nkind = N_Accept_Alternative or else NT (N).Nkind = N_Case_Statement_Alternative or else NT (N).Nkind = N_Delay_Alternative or else NT (N).Nkind = N_Entry_Call_Alternative or else NT (N).Nkind = N_Exception_Handler or else NT (N).Nkind = N_Handled_Sequence_Of_Statements or else NT (N).Nkind = N_Loop_Statement or else NT (N).Nkind = N_Triggering_Alternative); Set_List3_With_Parent (N, Val); end Set_Statements; procedure Set_Static_Processing_OK (N : Node_Id; Val : Boolean) is begin pragma Assert (False or else NT (N).Nkind = N_Aggregate); Set_Flag4 (N, Val); end Set_Static_Processing_OK; procedure Set_Storage_Pool (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Allocator or else NT (N).Nkind = N_Free_Statement or else NT (N).Nkind = N_Return_Statement); Set_Node1 (N, Val); -- semantic field, no parent set end Set_Storage_Pool; procedure Set_Strval (N : Node_Id; Val : String_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Operator_Symbol or else NT (N).Nkind = N_String_Literal); Set_Str3 (N, Val); end Set_Strval; procedure Set_Subtype_Indication (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Access_To_Object_Definition or else NT (N).Nkind = N_Component_Declaration or else NT (N).Nkind = N_Constrained_Array_Definition or else NT (N).Nkind = N_Derived_Type_Definition or else NT (N).Nkind = N_Private_Extension_Declaration or else NT (N).Nkind = N_Subtype_Declaration or else NT (N).Nkind = N_Unconstrained_Array_Definition); Set_Node5_With_Parent (N, Val); end Set_Subtype_Indication; procedure Set_Subtype_Mark (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Access_Definition or else NT (N).Nkind = N_Access_Function_Definition or else NT (N).Nkind = N_Formal_Derived_Type_Definition or else NT (N).Nkind = N_Formal_Object_Declaration or else NT (N).Nkind = N_Function_Specification or else NT (N).Nkind = N_Object_Renaming_Declaration or else NT (N).Nkind = N_Qualified_Expression or else NT (N).Nkind = N_Subtype_Indication or else NT (N).Nkind = N_Type_Conversion or else NT (N).Nkind = N_Unchecked_Type_Conversion); Set_Node4_With_Parent (N, Val); end Set_Subtype_Mark; procedure Set_Subtype_Marks (N : Node_Id; Val : List_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Unconstrained_Array_Definition or else NT (N).Nkind = N_Use_Type_Clause); Set_List2_With_Parent (N, Val); end Set_Subtype_Marks; procedure Set_Tagged_Present (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Formal_Private_Type_Definition or else NT (N).Nkind = N_Private_Type_Declaration or else NT (N).Nkind = N_Record_Definition or else NT (N).Nkind = N_With_Type_Clause); Set_Flag15 (N, Val); end Set_Tagged_Present; procedure Set_Target_Type (N : Node_Id; Val : Entity_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Validate_Unchecked_Conversion); Set_Node2 (N, Val); -- semantic field, no parent set end Set_Target_Type; procedure Set_Task_Body_Procedure (N : Node_Id; Val : Entity_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Task_Type_Declaration); Set_Node2 (N, Val); -- semantic field, no parent set end Set_Task_Body_Procedure; procedure Set_Task_Definition (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Single_Task_Declaration or else NT (N).Nkind = N_Task_Type_Declaration); Set_Node3_With_Parent (N, Val); end Set_Task_Definition; procedure Set_Then_Actions (N : Node_Id; Val : List_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Conditional_Expression); Set_List2 (N, Val); -- semantic field, no parent set end Set_Then_Actions; procedure Set_Then_Statements (N : Node_Id; Val : List_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Elsif_Part or else NT (N).Nkind = N_If_Statement); Set_List2_With_Parent (N, Val); end Set_Then_Statements; procedure Set_Treat_Fixed_As_Integer (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Op_Divide or else NT (N).Nkind = N_Op_Mod or else NT (N).Nkind = N_Op_Multiply or else NT (N).Nkind = N_Op_Rem); Set_Flag14 (N, Val); end Set_Treat_Fixed_As_Integer; procedure Set_Triggering_Alternative (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Asynchronous_Select); Set_Node1_With_Parent (N, Val); end Set_Triggering_Alternative; procedure Set_Triggering_Statement (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Triggering_Alternative); Set_Node1_With_Parent (N, Val); end Set_Triggering_Statement; procedure Set_TSS_Elist (N : Node_Id; Val : Elist_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Freeze_Entity); Set_Elist3 (N, Val); -- semantic field, no parent set end Set_TSS_Elist; procedure Set_Type_Definition (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Full_Type_Declaration); Set_Node3_With_Parent (N, Val); end Set_Type_Definition; procedure Set_Unit (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Compilation_Unit); Set_Node2_With_Parent (N, Val); end Set_Unit; procedure Set_Unknown_Discriminants_Present (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Formal_Type_Declaration or else NT (N).Nkind = N_Incomplete_Type_Declaration or else NT (N).Nkind = N_Private_Extension_Declaration or else NT (N).Nkind = N_Private_Type_Declaration); Set_Flag13 (N, Val); end Set_Unknown_Discriminants_Present; procedure Set_Unreferenced_In_Spec (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_With_Clause); Set_Flag7 (N, Val); end Set_Unreferenced_In_Spec; procedure Set_Variant_Part (N : Node_Id; Val : Node_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Component_List); Set_Node4_With_Parent (N, Val); end Set_Variant_Part; procedure Set_Variants (N : Node_Id; Val : List_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Variant_Part); Set_List1_With_Parent (N, Val); end Set_Variants; procedure Set_Visible_Declarations (N : Node_Id; Val : List_Id) is begin pragma Assert (False or else NT (N).Nkind = N_Package_Specification or else NT (N).Nkind = N_Protected_Definition or else NT (N).Nkind = N_Task_Definition); Set_List2_With_Parent (N, Val); end Set_Visible_Declarations; procedure Set_Was_Originally_Stub (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Package_Body or else NT (N).Nkind = N_Protected_Body or else NT (N).Nkind = N_Subprogram_Body or else NT (N).Nkind = N_Task_Body); Set_Flag13 (N, Val); end Set_Was_Originally_Stub; procedure Set_Zero_Cost_Handling (N : Node_Id; Val : Boolean := True) is begin pragma Assert (False or else NT (N).Nkind = N_Exception_Handler or else NT (N).Nkind = N_Handled_Sequence_Of_Statements); Set_Flag5 (N, Val); end Set_Zero_Cost_Handling; ------------------------- -- Iterator Procedures -- ------------------------- procedure Next_Entity (N : in out Node_Id) is begin N := Next_Entity (N); end Next_Entity; procedure Next_Named_Actual (N : in out Node_Id) is begin N := Next_Named_Actual (N); end Next_Named_Actual; procedure Next_Rep_Item (N : in out Node_Id) is begin N := Next_Rep_Item (N); end Next_Rep_Item; procedure Next_Use_Clause (N : in out Node_Id) is begin N := Next_Use_Clause (N); end Next_Use_Clause; ------------------ -- End_Location -- ------------------ function End_Location (N : Node_Id) return Source_Ptr is L : constant Uint := End_Span (N); begin if L = No_Uint then return No_Location; else return Source_Ptr (Int (Sloc (N)) + UI_To_Int (L)); end if; end End_Location; ---------------------- -- Set_End_Location -- ---------------------- procedure Set_End_Location (N : Node_Id; S : Source_Ptr) is begin Set_End_Span (N, UI_From_Int (Int (S) - Int (Sloc (N)))); end Set_End_Location; end Sinfo;
31.882597
79
0.648283
dc1fdf907756daa55f324fcf31572297d20aae67
11,546
adb
Ada
3-mid/impact/source/3d/dynamics/joints/impact-d3-joint.adb
charlie5/lace
e9b7dc751d500ff3f559617a6fc3089ace9dc134
[ "0BSD" ]
20
2015-11-04T09:23:59.000Z
2022-01-14T10:21:42.000Z
3-mid/impact/source/3d/dynamics/joints/impact-d3-joint.adb
charlie5/lace
e9b7dc751d500ff3f559617a6fc3089ace9dc134
[ "0BSD" ]
2
2015-11-04T17:05:56.000Z
2015-12-08T03:16:13.000Z
3-mid/impact/source/3d/dynamics/joints/impact-d3-joint.adb
charlie5/lace
e9b7dc751d500ff3f559617a6fc3089ace9dc134
[ "0BSD" ]
1
2015-12-07T12:53:52.000Z
2015-12-07T12:53:52.000Z
with impact.d3.Object.rigid; with ada.Unchecked_Conversion; with impact.d3.Scalar; package body impact.d3.Joint is --- Forge -- procedure define (Self : in out Item'Class; of_type : in impact.d3.Joint.Kind; rbA : access impact.d3.Object.rigid.Item'Class) is function to_Integer is new ada.Unchecked_Conversion (impact.d3.Joint.Kind, Integer); begin Self.m_objectType := to_Integer (of_type); Self.m_userConstraintType := -1; Self.union.m_userConstraintId := -1; Self.m_breakingImpulseThreshold := impact.d3.Scalar.SIMD_INFINITY; Self.m_isEnabled := True; Self.m_needsFeedback := False; Self.m_rbA := rbA; Self.m_rbB := getFixedBody; Self.m_appliedImpulse := 0.0; end define; procedure define (Self : in out Item'Class; of_type : in impact.d3.Joint.Kind; rbA : access impact.d3.Object.rigid.Item'Class; rbB : access impact.d3.Object.rigid.Item'Class) is function to_Integer is new ada.Unchecked_Conversion (impact.d3.Joint.Kind, Integer); begin Self.m_objectType := to_Integer (of_type); Self.m_userConstraintType := -1; Self.union.m_userConstraintId := -1; Self.m_breakingImpulseThreshold := impact.d3.Scalar.SIMD_INFINITY; Self.m_isEnabled := True; Self.m_needsFeedback := False; Self.m_rbA := rbA; Self.m_rbB := rbB; Self.m_appliedImpulse := 0.0; end define; --- Attributes -- procedure internalSetAppliedImpulse (Self : out Item; appliedImpulse : in math.Real) is begin Self.m_appliedImpulse := appliedImpulse; end internalSetAppliedImpulse; function internalGetAppliedImpulse (Self : in Item) return math.Real is begin return Self.m_appliedImpulse; end internalGetAppliedImpulse; function getBreakingImpulseThreshold (Self : in Item) return math.Real is begin return Self.m_breakingImpulseThreshold; end getBreakingImpulseThreshold; procedure setBreakingImpulseThreshold (Self : out Item; threshold : in math.Real) is begin Self.m_breakingImpulseThreshold := threshold; end setBreakingImpulseThreshold; function isEnabled (Self : in Item) return Boolean is begin return Self.m_isEnabled; end isEnabled; procedure setEnabled (Self : out Item; enabled : in Boolean) is begin Self.m_isEnabled := enabled; end setEnabled; function getRigidBodyA (Self : in Item) return access impact.d3.Object.rigid.item'Class is begin return Self.m_rbA; end getRigidBodyA; function getRigidBodyB (Self : in Item) return access impact.d3.Object.rigid.item'Class is begin return Self.m_rbB; end getRigidBodyB; function getUserConstraintType (Self : in Item) return Integer is begin return Self.m_userConstraintType; end getUserConstraintType; procedure setUserConstraintType (Self : out Item; userConstraintType : in Integer) is begin Self.m_userConstraintType := userConstraintType; end setUserConstraintType; procedure setUserConstraintId (Self : out Item; uid : in Integer) is begin Self.union.m_userConstraintId := uid; end setUserConstraintId; function getUserConstraintId (Self : in Item) return Integer is begin return Self.union.m_userConstraintId; end getUserConstraintId; procedure setUserConstraintPtr (Self : out Item; ptr : access Any'Class) is begin Self.union.m_userConstraintPtr := ptr; end setUserConstraintPtr; function getUserConstraintPtr (Self : in Item) return access Any'Class is begin return Self.union.m_userConstraintPtr; end getUserConstraintPtr; function getUid (Self : in Item) return Integer is begin return Self.union.m_userConstraintId; end getUid; function needsFeedback (Self : in Item) return Boolean is begin return Self.m_needsFeedback; end needsFeedback; procedure enableFeedback (Self : out Item; needsFeedback : in Boolean) is begin Self.m_needsFeedback := needsFeedback; end enableFeedback; function getAppliedImpulse (Self : in Item) return math.Real is begin pragma Assert (Self.m_needsFeedback); return Self.m_appliedImpulse; end getAppliedImpulse; function getConstraintType (Self : in Item) return impact.d3.Joint.Kind is function to_joint_Kind is new ada.Unchecked_Conversion (Integer, impact.d3.Joint.Kind); begin return to_joint_Kind (Self.m_objectType); end getConstraintType; function btAdjustAngleToLimits (angleInRadians, angleLowerLimitInRadians, angleUpperLimitInRadians : in math.Real) return math.Real is use impact.d3.Scalar; diffLo, diffHi : math.Real; begin if angleLowerLimitInRadians >= angleUpperLimitInRadians then return angleInRadians; elsif angleInRadians < angleLowerLimitInRadians then diffLo := abs (btNormalizeAngle (angleLowerLimitInRadians - angleInRadians)); diffHi := abs (btNormalizeAngle (angleUpperLimitInRadians - angleInRadians)); if diffLo < diffHi then return angleInRadians; else return angleInRadians + SIMD_2_PI; end if; elsif angleInRadians > angleUpperLimitInRadians then diffHi := abs (btNormalizeAngle (angleInRadians - angleUpperLimitInRadians)); diffLo := abs (btNormalizeAngle (angleInRadians - angleLowerLimitInRadians)); if diffLo < diffHi then return angleInRadians - SIMD_2_PI; else return angleInRadians; end if; else return angleInRadians; end if; end btAdjustAngleToLimits; --- btAngularLimit -- procedure set (Self : out btAngularLimit; low, high : in math.Real; softness : in math.Real := 0.9; biasFactor : in math.Real := 0.3; relaxationFactor : in math.Real := 1.0) is use impact.d3.Scalar; begin Self.m_halfRange := (high - low) / 2.0; Self.m_center := btNormalizeAngle (low + Self.m_halfRange); Self.m_softness := softness; Self.m_biasFactor := biasFactor; Self.m_relaxationFactor := relaxationFactor; end set; procedure test (Self : in out btAngularLimit; angle : in math.Real) is use impact.d3.Scalar; deviation : math.Real; begin Self.m_correction := 0.0; Self.m_sign := 0.0; Self.m_solveLimit := False; if Self.m_halfRange >= 0.0 then deviation := btNormalizeAngle (angle - Self.m_center); if deviation < -Self.m_halfRange then Self.m_solveLimit := True; Self.m_correction := -(deviation + Self.m_halfRange); Self.m_sign := +1.0; elsif deviation > Self.m_halfRange then Self.m_solveLimit := True; Self.m_correction := Self.m_halfRange - deviation; Self.m_sign := -1.0; end if; end if; end test; function getSoftness (Self : in btAngularLimit) return math.Real is begin return Self.m_softness; end getSoftness; function getBiasFactor (Self : in btAngularLimit) return math.Real is begin return Self.m_biasFactor; end getBiasFactor; function getRelaxationFactor (Self : in btAngularLimit) return math.Real is begin return Self.m_relaxationFactor; end getRelaxationFactor; function getCorrection (Self : in btAngularLimit) return math.Real is begin return Self.m_correction; end getCorrection; function getSign (Self : in btAngularLimit) return math.Real is begin return Self.m_sign; end getSign; function getHalfRange (Self : in btAngularLimit) return math.Real is begin return Self.m_halfRange; end getHalfRange; function isLimit (Self : in btAngularLimit) return Boolean is begin return Self.m_solveLimit; end isLimit; procedure fit (Self : in btAngularLimit; angle : in out math.Real) is use impact.d3.Scalar; relativeAngle : math.Real; begin if Self.m_halfRange > 0.0 then relativeAngle := btNormalizeAngle (angle - Self.m_center); if not btEqual (relativeAngle, Self.m_halfRange) then if relativeAngle > 0.0 then angle := Self.getHigh; else angle := Self.getLow; end if; end if; end if; end fit; function getError (Self : in btAngularLimit) return math.Real is begin return Self.m_correction * Self.m_sign; end getError; function getLow (Self : in btAngularLimit) return math.Real is use impact.d3.Scalar; begin return btNormalizeAngle (Self.m_center - Self.m_halfRange); end getLow; function getHigh (Self : in btAngularLimit) return math.Real is use impact.d3.Scalar; begin return btNormalizeAngle (Self.m_center + Self.m_halfRange); end getHigh; function getMotorFactor (Self : in Item; pos, lowLim, uppLim, vel, timeFact : in math.Real) return math.Real is pragma Unreferenced (Self); lim_fact, delta_max : math.Real; begin if lowLim > uppLim then return 1.0; elsif lowLim = uppLim then return 0.0; end if; lim_fact := 1.0; delta_max := vel / timeFact; if delta_max < 0.0 then if pos >= lowLim and then pos < lowLim - delta_max then lim_fact := (lowLim - pos) / delta_max; elsif pos < lowLim then lim_fact := 0.0; else lim_fact := 1.0; end if; elsif delta_max > 0.0 then if pos <= uppLim and then pos > uppLim - delta_max then lim_fact := (uppLim - pos) / delta_max; elsif pos > uppLim then lim_fact := 0.0; else lim_fact := 1.0; end if; else lim_fact := 0.0; end if; return lim_fact; end getMotorFactor; -- s_fixed : aliased impact.d3.Object.rigid.Item := impact.d3.Object.rigid.to_impact.d3.Object.rigid (0.0, null, null); s_fixed : access impact.d3.Object.rigid.Item'Class; function getFixedBody return access impact.d3.Object.rigid.Item'Class is begin if s_fixed = null then s_fixed := new impact.d3.Object.rigid.Item'(impact.d3.Object.rigid.Forge.to_rigid_Object (0.0, null, null)); end if; s_fixed.setMassProps (0.0, (0.0, 0.0, 0.0)); return s_fixed; end getFixedBody; end impact.d3.Joint;
20.220665
123
0.606444
c51261204986f1e5d46533234e1e2a54391acc70
4,204
ads
Ada
ladspa/examples/amp-stereo.ads
Lucretia/aplug
1942a220e47184935b3c9777c40f731e67a38341
[ "BSD-3-Clause" ]
2
2019-12-07T22:17:46.000Z
2019-12-09T17:06:48.000Z
ladspa/examples/amp-stereo.ads
Lucretia/aplug
1942a220e47184935b3c9777c40f731e67a38341
[ "BSD-3-Clause" ]
null
null
null
ladspa/examples/amp-stereo.ads
Lucretia/aplug
1942a220e47184935b3c9777c40f731e67a38341
[ "BSD-3-Clause" ]
null
null
null
-- Amp.Stereo -- -- ------------------------------------------------------------------------------------------------------------------------ with Ada.Finalization; with Interfaces.C; with Interfaces.C.Strings; with LADSPA; private package Amp.Stereo is package C renames Interfaces.C; function Instantiate (Descriptor : access constant LADSPA.Descriptors; Sample_Rate : C.unsigned_long) return LADSPA.Handles with Convention => C; procedure Clean_Up (Instance : in LADSPA.Handles) with Convention => C; procedure Connect_Port (Instance : in LADSPA.Handles; Port : in C.unsigned_long; Data_Location : in LADSPA.Data_Ptr) with Convention => C; -- procedure Activate (Instance : in out Handles) with -- Convention => C; -- procedure Deactivate (Instance : in out Handles) with -- Convention => C; procedure Run (Instance : in LADSPA.Handles; Sample_Count : in C.unsigned_long) with Convention => C; -- procedure Run_Adding (Instance : in out Handles; Sample_Count : in unsigned_long) with -- Convention => C; -- procedure Run_Adding_Gain (Instance : in out Handles; Gain : in Data) with -- Convention => C; -- private use type LADSPA.All_Port_Descriptors; use type LADSPA.Port_Range_Hint_Descriptors; package Stereo_Ports is new LADSPA.Port_Information (Port_Type => Port_Numbers); Stereo_Port_Descriptors : aliased constant Stereo_Ports.Descriptor_Array := (Gain => (LADSPA.Input or LADSPA.Control), Input_1 => (LADSPA.Input or LADSPA.Audio), Output_1 => (LADSPA.Output or LADSPA.Audio), Input_2 => (LADSPA.Input or LADSPA.Audio), Output_2 => (LADSPA.Output or LADSPA.Audio)); Stereo_Port_Names : constant Stereo_Ports.Name_Array := (Gain => C.Strings.New_String ("Gain"), Input_1 => C.Strings.New_String ("Input (Left)"), Output_1 => C.Strings.New_String ("Output (Left)"), Input_2 => C.Strings.New_String ("Input (Right)"), Output_2 => C.Strings.New_String ("Output (Right)")); Stereo_Port_Range_Hints : constant Stereo_Ports.Range_Hint_Array := (Gain => (Hint_Descriptor => LADSPA.Bounded_Below or LADSPA.Logarithmic or LADSPA.Default_1, Lower_Bound => 0.0, Upper_Bound => <>), Input_1 => (Hint_Descriptor => LADSPA.Default_None, others => <>), Output_1 => (Hint_Descriptor => LADSPA.Default_None, others => <>), Input_2 => (Hint_Descriptor => LADSPA.Default_None, others => <>), Output_2 => (Hint_Descriptor => LADSPA.Default_None, others => <>)); use type Interfaces.C.unsigned_long; -- This is required so that on finalisation of the library (unload), the globally allocated data is destroyed. type Stereo_Descriptors is new LADSPA.Root_Descriptors with null record; overriding procedure Finalize (Self : in out Stereo_Descriptors); Stereo_Descriptor : constant Stereo_Descriptors := (Ada.Finalization.Limited_Controlled with Data => ( Unique_ID => 1049, Label => C.Strings.New_String ("amp_stereo"), Properties => LADSPA.Hard_RT_Capable, Name => C.Strings.New_String ("Stereo Amplifier"), Maker => C.Strings.New_String ("Richard Furse (LADSPA example plugins) & Luke A. Guest (Ada port)"), Copyright => C.Strings.New_String ("None"), Port_Count => Port_Numbers'Pos (Port_Numbers'Last) + 1, -- Pos starts at 0! Port_Descriptors => Stereo_Port_Descriptors'Address, Port_Names => Stereo_Port_Names (Stereo_Port_Names'First)'Access, Port_Range_Hints => Stereo_Port_Range_Hints'Address, Instantiate => Instantiate'Access, Connect_Port => Connect_Port'Access, -- Activate => Activate'Access, Run => Run'Access, Clean_Up => Clean_Up'Access, others => <> )); end Amp.Stereo;
42.464646
120
0.604186
fb8675754d3f633b16053b659a0c8cfc0c7575c5
1,760
ads
Ada
tier-1/xcb/source/thin/xcb-xcb_render_query_version_reply_t.ads
charlie5/cBound
741be08197a61ad9c72553e3302f3b669902216d
[ "0BSD" ]
2
2015-11-12T11:16:20.000Z
2021-08-24T22:32:04.000Z
tier-1/xcb/source/thin/xcb-xcb_render_query_version_reply_t.ads
charlie5/cBound
741be08197a61ad9c72553e3302f3b669902216d
[ "0BSD" ]
1
2018-06-05T05:19:35.000Z
2021-11-20T01:13:23.000Z
tier-1/xcb/source/thin/xcb-xcb_render_query_version_reply_t.ads
charlie5/cBound
741be08197a61ad9c72553e3302f3b669902216d
[ "0BSD" ]
null
null
null
-- This file is generated by SWIG. Please do not modify by hand. -- with Interfaces; with swig; with Interfaces.C; with Interfaces.C.Pointers; package xcb.xcb_render_query_version_reply_t is -- Item -- type Item is record response_type : aliased Interfaces.Unsigned_8; pad0 : aliased Interfaces.Unsigned_8; sequence : aliased Interfaces.Unsigned_16; length : aliased Interfaces.Unsigned_32; major_version : aliased Interfaces.Unsigned_32; minor_version : aliased Interfaces.Unsigned_32; pad1 : aliased swig.int8_t_Array (0 .. 15); end record; -- Item_Array -- type Item_Array is array (Interfaces.C .size_t range <>) of aliased xcb.xcb_render_query_version_reply_t .Item; -- Pointer -- package C_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_render_query_version_reply_t.Item, Element_Array => xcb.xcb_render_query_version_reply_t.Item_Array, Default_Terminator => (others => <>)); subtype Pointer is C_Pointers.Pointer; -- Pointer_Array -- type Pointer_Array is array (Interfaces.C .size_t range <>) of aliased xcb.xcb_render_query_version_reply_t .Pointer; -- Pointer_Pointer -- package C_Pointer_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_render_query_version_reply_t.Pointer, Element_Array => xcb.xcb_render_query_version_reply_t.Pointer_Array, Default_Terminator => null); subtype Pointer_Pointer is C_Pointer_Pointers.Pointer; end xcb.xcb_render_query_version_reply_t;
29.333333
79
0.671023
fb18c4d98d77a1b6a2a36c37ceda67f0d78b5862
20,965
adb
Ada
src/Ada/ewok-tasks.adb
wookey-project/ewok-legacy
c973752dac3a0ebe3f7cfca062f50744578f051b
[ "Apache-2.0" ]
null
null
null
src/Ada/ewok-tasks.adb
wookey-project/ewok-legacy
c973752dac3a0ebe3f7cfca062f50744578f051b
[ "Apache-2.0" ]
null
null
null
src/Ada/ewok-tasks.adb
wookey-project/ewok-legacy
c973752dac3a0ebe3f7cfca062f50744578f051b
[ "Apache-2.0" ]
null
null
null
-- -- Copyright 2018 The wookey project team <[email protected]> -- - Ryad Benadjila -- - Arnauld Michelizza -- - Mathieu Renard -- - Philippe Thierry -- - Philippe Trebuchet -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. -- -- with m4.cpu; with m4.cpu.instructions; with m4.mpu; with ewok.debug; with ewok.layout; use ewok.layout; with ewok.devices_shared; use ewok.devices_shared; with ewok.ipc; use ewok.ipc; with ewok.softirq; with ewok.devices; with c.kernel; with types.c; use type types.c.t_retval; with applications; -- Automatically generated with sections; -- Automatically generated package body ewok.tasks with spark_mode => off is procedure idle_task is begin pragma DEBUG (debug.log (debug.INFO, "IDLE thread")); m4.cpu.enable_irq; loop m4.cpu.instructions.wait_for_interrupt; end loop; end idle_task; procedure finished_task is begin loop null; end loop; end finished_task; procedure create_stack (sp : in system_address; pc : in system_address; params : in ewok.t_parameters; frame_a : out ewok.t_stack_frame_access) is begin frame_a := to_stack_frame_access (sp - (t_stack_frame'size / 8)); frame_a.all.R0 := params(0); frame_a.all.R1 := params(1); frame_a.all.R2 := params(2); frame_a.all.R3 := params(3); frame_a.all.R4 := 0; frame_a.all.R5 := 0; frame_a.all.R6 := 0; frame_a.all.R7 := 0; frame_a.all.R8 := 0; frame_a.all.R9 := 0; frame_a.all.R10 := 0; frame_a.all.R11 := 0; frame_a.all.R12 := 0; frame_a.all.exc_return := m4.cpu.EXC_THREAD_MODE; frame_a.all.LR := to_system_address (finished_task'address); frame_a.all.PC := pc; frame_a.all.PSR := m4.cpu.t_PSR_register' (ISR_NUMBER => 0, ICI_IT_lo => 0, GE => 0, Thumb => 1, ICI_IT_hi => 0, DSP_overflow => 0, Overflow => 0, Carry => 0, Zero => 0, Negative => 0); end create_stack; procedure set_default_values (tsk : out t_task) is begin tsk.name := " "; tsk.entry_point := 0; tsk.ttype := TASK_TYPE_USER; tsk.mode := TASK_MODE_MAINTHREAD; tsk.id := ID_UNUSED; tsk.slot := 0; tsk.num_slots := 0; tsk.prio := 0; #if CONFIG_KERNEL_DOMAIN tsk.domain := 0; #end if; #if CONFIG_KERNEL_SCHED_DEBUG tsk.count := 0; tsk.force_count := 0; tsk.isr_count := 0; #end if; #if CONFIG_KERNEL_DMA_ENABLE tsk.num_dma_shms := 0; tsk.dma_shm := (others => ewok.exported.dma.t_dma_shm_info' (granted_id => ID_UNUSED, accessed_id => ID_UNUSED, base => 0, size => 0, access_type => ewok.exported.dma.SHM_ACCESS_READ)); tsk.num_dma_id := 0; tsk.dma_id := (others => ewok.dma_shared.ID_DMA_UNUSED); #end if; tsk.init_done := false; tsk.num_devs := 0; tsk.num_devs_mounted := 0; tsk.device_id := (others => ewok.devices_shared.ID_DEV_UNUSED); tsk.mounted_device := (others => ewok.devices_shared.ID_DEV_UNUSED); tsk.data_slot_start := 0; tsk.data_slot_end := 0; tsk.txt_slot_start := 0; tsk.txt_slot_end := 0; tsk.stack_size := 0; tsk.state := TASK_STATE_EMPTY; tsk.isr_state := TASK_STATE_EMPTY; tsk.ipc_endpoints := (others => NULL); tsk.ctx.frame_a := NULL; tsk.isr_ctx := t_isr_context'(0, ID_DEV_UNUSED, ISR_STANDARD, NULL); end set_default_values; procedure init_softirq_task is params : constant t_parameters := (others => 0); begin -- Setting default values set_default_values (tasks_list(ID_SOFTIRQ)); tasks_list(ID_SOFTIRQ).name := softirq_task_name; tasks_list(ID_SOFTIRQ).entry_point := to_system_address (ewok.softirq.main_task'address); if tasks_list(ID_SOFTIRQ).entry_point mod 2 = 0 then tasks_list(ID_SOFTIRQ).entry_point := tasks_list(ID_SOFTIRQ).entry_point + 1; end if; tasks_list(ID_SOFTIRQ).ttype := TASK_TYPE_KERNEL; tasks_list(ID_SOFTIRQ).id := ID_SOFTIRQ; -- Zeroing the stack declare stack : byte_array(1 .. STACK_SIZE_SOFTIRQ) with address => to_address (STACK_TOP_SOFTIRQ - STACK_SIZE_SOFTIRQ); begin stack := (others => 0); end; -- Create the initial stack frame and set the stack pointer create_stack (STACK_TOP_SOFTIRQ, tasks_list(ID_SOFTIRQ).entry_point, params, tasks_list(ID_SOFTIRQ).ctx.frame_a); tasks_list(ID_SOFTIRQ).stack_size := STACK_SIZE_SOFTIRQ; tasks_list(ID_SOFTIRQ).state := TASK_STATE_IDLE; tasks_list(ID_SOFTIRQ).isr_state := TASK_STATE_IDLE; for i in tasks_list(ID_SOFTIRQ).ipc_endpoints'range loop tasks_list(ID_SOFTIRQ).ipc_endpoints(i) := NULL; end loop; pragma DEBUG (debug.log (debug.INFO, "Created SOFTIRQ context (pc: " & system_address'image (tasks_list(ID_SOFTIRQ).entry_point) & ") sp: " & system_address'image (to_system_address (tasks_list(ID_SOFTIRQ).ctx.frame_a)))); end init_softirq_task; procedure init_idle_task is params : constant t_parameters := (others => 0); begin -- Setting default values set_default_values (tasks_list(ID_KERNEL)); tasks_list(ID_KERNEL).name := idle_task_name; tasks_list(ID_KERNEL).entry_point := to_system_address (idle_task'address); if tasks_list(ID_KERNEL).entry_point mod 2 = 0 then tasks_list(ID_KERNEL).entry_point := tasks_list(ID_KERNEL).entry_point + 1; end if; tasks_list(ID_KERNEL).ttype := TASK_TYPE_KERNEL; tasks_list(ID_KERNEL).mode := TASK_MODE_MAINTHREAD; tasks_list(ID_KERNEL).id := ID_KERNEL; -- Zeroing the stack declare stack : byte_array(1 .. STACK_SIZE_IDLE) with address => to_address (STACK_TOP_IDLE - STACK_SIZE_IDLE); begin stack := (others => 0); end; -- Create the initial stack frame and set the stack pointer create_stack (STACK_TOP_IDLE, tasks_list(ID_KERNEL).entry_point, params, tasks_list(ID_KERNEL).ctx.frame_a); tasks_list(ID_KERNEL).stack_size := STACK_SIZE_IDLE; tasks_list(ID_KERNEL).state := TASK_STATE_RUNNABLE; tasks_list(ID_KERNEL).isr_state := TASK_STATE_IDLE; for i in tasks_list(ID_KERNEL).ipc_endpoints'range loop tasks_list(ID_KERNEL).ipc_endpoints(i) := NULL; end loop; pragma DEBUG (debug.log (debug.INFO, "Created context for IDLE task (pc: " & system_address'image (tasks_list(ID_KERNEL).entry_point) & ") sp: " & system_address'image (to_system_address (tasks_list(ID_KERNEL).ctx.frame_a)))); end init_idle_task; procedure init_apps is user_base : system_address; params : t_parameters; random : unsigned_32; begin if applications.t_real_task_id'last > ID_APP7 then debug.panic ("Too many apps"); end if; user_base := applications.txt_user_region_base; for id in applications.list'range loop set_default_values (tasks_list(id)); tasks_list(id).name := applications.list(id).name; tasks_list(id).entry_point := user_base + to_unsigned_32 (applications.list(id).slot - 1) * applications.txt_user_size / 8; -- this is MPU specific if tasks_list(id).entry_point mod 2 = 0 then tasks_list(id).entry_point := tasks_list(id).entry_point + 1; end if; tasks_list(id).ttype := TASK_TYPE_USER; tasks_list(id).id := id; tasks_list(id).slot := applications.list(id).slot; tasks_list(id).num_slots := applications.list(id).num_slots; tasks_list(id).prio := applications.list(id).priority; #if CONFIG_KERNEL_DOMAIN tasks_list(id).domain := applications.list(id).domain; #end if; #if CONFIG_KERNEL_SCHED_DEBUG tasks_list(id).count := 0; tasks_list(id).force_count := 0; tasks_list(id).isr_count := 0; #end if; #if CONFIG_KERNEL_DMA_ENABLE tasks_list(id).num_dma_shms := 0; tasks_list(id).dma_shm := (others => ewok.exported.dma.t_dma_shm_info' (granted_id => ID_UNUSED, accessed_id => ID_UNUSED, base => 0, size => 0, access_type => ewok.exported.dma.SHM_ACCESS_READ)); tasks_list(id).num_dma_id := 0; tasks_list(id).dma_id := (others => ewok.dma_shared.ID_DMA_UNUSED); #end if; tasks_list(id).num_devs := 0; tasks_list(id).num_devs_mounted := 0; tasks_list(id).device_id := (others => ID_DEV_UNUSED); tasks_list(id).mounted_device := (others => ID_DEV_UNUSED); tasks_list(id).init_done := false; tasks_list(id).data_slot_start := USER_DATA_BASE + to_unsigned_32 (tasks_list(id).slot - 1) * USER_DATA_SIZE; tasks_list(id).data_slot_end := USER_DATA_BASE + to_unsigned_32 (tasks_list(id).slot + tasks_list(id).num_slots - 1) * USER_DATA_SIZE; tasks_list(id).txt_slot_start := tasks_list(id).entry_point - 1; tasks_list(id).txt_slot_end := user_base + to_unsigned_32 (applications.list(id).slot + tasks_list(id).num_slots - 1) * applications.txt_user_size / 8; -- this is MPU specific tasks_list(id).stack_bottom := applications.list(id).stack_bottom; tasks_list(id).stack_top := applications.list(id).stack_top; tasks_list(id).stack_size := applications.list(id).stack_size; tasks_list(id).state := TASK_STATE_RUNNABLE; tasks_list(id).isr_state := TASK_STATE_IDLE; for i in tasks_list(id).ipc_endpoints'range loop tasks_list(id).ipc_endpoints(i) := NULL; end loop; -- Zeroing the stack declare stack : byte_array(1 .. unsigned_32 (tasks_list(id).stack_size)) with address => to_address (tasks_list(id).data_slot_end - unsigned_32 (tasks_list(id).stack_size)); begin stack := (others => 0); end; -- -- Create the initial stack frame and set the stack pointer -- -- Getting the stack "canary" if c.kernel.get_random_u32 (random) /= types.c.SUCCESS then debug.panic ("Unable to get random from TRNG source"); end if; params := t_parameters'(to_unsigned_32 (id), random, 0, 0); create_stack (tasks_list(id).stack_top, tasks_list(id).entry_point, params, tasks_list(id).ctx.frame_a); tasks_list(id).isr_ctx.entry_point := applications.list(id).start_isr; pragma DEBUG (debug.log (debug.INFO, "Created task " & tasks_list(id).name & " (pc: " & system_address'image (tasks_list(id).entry_point) & ", data: " & system_address'image (tasks_list(id).data_slot_start) & " - " & system_address'image (tasks_list(id).data_slot_end) & ", sp: " & system_address'image (to_system_address (tasks_list(id).ctx.frame_a)) & ", ID" & t_task_id'image (id) & ")")); end loop; end init_apps; function get_task (id : ewok.tasks_shared.t_task_id) return t_task_access is begin return tasks_list(id)'access; end get_task; function get_task_id (name : t_task_name) return ewok.tasks_shared.t_task_id is -- String comparison is a bit tricky here because: -- - We want it case-unsensitive ('a' and 'A' are the same) -- - The nul character and space ' ' are consider the same -- -- The following inner functions are needed to effect comparisons: -- Convert a character to uppercase function to_upper (c : character) return character is val : constant natural := character'pos (c); begin return (if c in 'a' .. 'z' then character'val (val - 16#20#) else c); end; -- Test if a character is 'nul' function is_nul (c : character) return boolean is begin return c = ASCII.NUL or c = ' '; end; -- Test if the 2 strings are the same function is_same (s1: t_task_name; s2 : t_task_name) return boolean is begin for i in t_task_name'range loop if is_nul (s1(i)) and is_nul (s2(i)) then return true; end if; if to_upper (s1(i)) /= to_upper (s2(i)) then return false; end if; end loop; return true; end; begin for id in applications.list'range loop if is_same (tasks_list(id).name, name) then return id; end if; end loop; return ID_UNUSED; end get_task_id; #if CONFIG_KERNEL_DOMAIN function get_domain (id : in ewok.tasks_shared.t_task_id) return unsigned_8 is begin return tasks_list(id).domain; end get_domain; #end if; function get_state (id : ewok.tasks_shared.t_task_id; mode : t_task_mode) return t_task_state is begin if mode = TASK_MODE_MAINTHREAD then return tasks_list(id).state; else return tasks_list(id).isr_state; end if; end get_state; procedure set_state (id : ewok.tasks_shared.t_task_id; mode : t_task_mode; state : t_task_state) is begin if mode = TASK_MODE_MAINTHREAD then tasks_list(id).state := state; else tasks_list(id).isr_state := state; end if; end set_state; function get_mode (id : in ewok.tasks_shared.t_task_id) return t_task_mode is begin return tasks_list(id).mode; end get_mode; procedure set_mode (id : in ewok.tasks_shared.t_task_id; mode : in ewok.tasks_shared.t_task_mode) is begin tasks_list(id).mode := mode; end set_mode; function is_ipc_waiting (id : in ewok.tasks_shared.t_task_id) return boolean is begin for i in tasks_list(id).ipc_endpoints'range loop if tasks_list(id).ipc_endpoints(i) /= NULL and then tasks_list(id).ipc_endpoints(i).state = ewok.ipc.WAIT_FOR_RECEIVER and then ewok.ipc.to_task_id (tasks_list(id).ipc_endpoints(i).to) = id then return true; end if; end loop; return false; end; procedure append_device (id : in ewok.tasks_shared.t_task_id; dev_id : in ewok.devices_shared.t_device_id; descriptor : out unsigned_8; success : out boolean) is begin if tasks_list(id).num_devs = MAX_DEVS_PER_TASK then descriptor := 0; success := false; return; end if; for i in tasks_list(id).device_id'range loop if tasks_list(id).device_id(i) = ID_DEV_UNUSED then tasks_list(id).device_id(i) := dev_id; tasks_list(id).num_devs := tasks_list(id).num_devs + 1; descriptor := i; success := true; return; end if; end loop; raise program_error; end append_device; procedure remove_device (id : in ewok.tasks_shared.t_task_id; dev_id : in ewok.devices_shared.t_device_id; success : out boolean) is begin for i in tasks_list(id).device_id'range loop if tasks_list(id).device_id(i) = dev_id then tasks_list(id).device_id(i) := ID_DEV_UNUSED; tasks_list(id).num_devs := tasks_list(id).num_devs - 1; success := true; return; end if; end loop; success := false; end remove_device; function is_mounted (id : in ewok.tasks_shared.t_task_id; dev_id : in ewok.devices_shared.t_device_id) return boolean is begin for i in tasks_list(id).mounted_device'range loop if tasks_list(id).mounted_device(i) = dev_id then return true; end if; end loop; return false; end is_mounted; procedure mount_device (id : in ewok.tasks_shared.t_task_id; dev_id : in ewok.devices_shared.t_device_id; success : out boolean) is ok : boolean; begin -- The device is already mounted if is_mounted (id, dev_id) then success := false; return; end if; -- No available MPU region to map the device in memory if tasks_list(id).num_devs_mounted = ewok.mpu.MAX_DEVICE_REGIONS then success := false; return; end if; -- Mounting the device for i in tasks_list(id).mounted_device'range loop if tasks_list(id).mounted_device(i) = ID_DEV_UNUSED then tasks_list(id).mounted_device(i) := dev_id; tasks_list(id).num_devs_mounted := tasks_list(id).num_devs_mounted + 1; -- Mapping the device in its related MPU region ewok.devices.mpu_mapping_device (dev_id, ewok.mpu.device_regions(i), ok); if not ok then tasks_list(id).mounted_device(i) := ID_DEV_UNUSED; tasks_list(id).num_devs_mounted := tasks_list(id).num_devs_mounted - 1; success := false; return; end if; success := true; return; end if; end loop; raise program_error; end mount_device; procedure unmount_device (id : in ewok.tasks_shared.t_task_id; dev_id : in ewok.devices_shared.t_device_id; success : out boolean) is begin for i in tasks_list(id).mounted_device'range loop if tasks_list(id).mounted_device(i) = dev_id then tasks_list(id).mounted_device(i) := ID_DEV_UNUSED; tasks_list(id).num_devs_mounted := tasks_list(id).num_devs_mounted - 1; -- Unmapping the device from its related MPU region m4.mpu.disable_region (ewok.mpu.device_regions(i)); success := true; return; end if; end loop; success := false; end unmount_device; function is_real_user (id : ewok.tasks_shared.t_task_id) return boolean is begin return (id in applications.t_real_task_id); end is_real_user; procedure set_return_value (id : in ewok.tasks_shared.t_task_id; mode : in t_task_mode; val : in unsigned_32) is begin case mode is when TASK_MODE_MAINTHREAD => tasks_list(id).ctx.frame_a.all.R0 := val; when TASK_MODE_ISRTHREAD => tasks_list(id).isr_ctx.frame_a.all.R0 := val; end case; end set_return_value; procedure task_init is begin for id in tasks_list'range loop set_default_values (tasks_list(id)); end loop; init_idle_task; init_softirq_task; init_apps; sections.task_map_data; end task_init; function is_init_done (id : ewok.tasks_shared.t_task_id) return boolean is begin return tasks_list(id).init_done; end is_init_done; end ewok.tasks;
29.199164
84
0.587694
2098d8ec753d675b4f88cfec22e99da9f21ba201
832
adb
Ada
src/gdb/gdb-7.11/gdb/testsuite/gdb.ada/pp-rec-component/pck.adb
alrooney/unum-sdk
bbccb10b0cd3500feccbbef22e27ea111c3d18eb
[ "Apache-2.0" ]
31
2018-08-01T21:25:24.000Z
2022-02-14T07:52:34.000Z
src/gdb/gdb-7.11/gdb/testsuite/gdb.ada/pp-rec-component/pck.adb
alrooney/unum-sdk
bbccb10b0cd3500feccbbef22e27ea111c3d18eb
[ "Apache-2.0" ]
40
2018-12-03T19:48:52.000Z
2021-03-10T06:34:26.000Z
src/gdb/gdb-7.11/gdb/testsuite/gdb.ada/pp-rec-component/pck.adb
alrooney/unum-sdk
bbccb10b0cd3500feccbbef22e27ea111c3d18eb
[ "Apache-2.0" ]
20
2018-11-16T21:19:22.000Z
2021-10-18T23:08:24.000Z
-- Copyright 2014-2016 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. package body Pck is procedure Do_Nothing (A : System.Address) is begin null; end Do_Nothing; end Pck;
37.818182
73
0.729567
50f1741efe77270bc4a3df25f189e8c1bd5d64d6
8,591
ads
Ada
ada-containers-indefinite_ordered_sets.ads
mgrojo/adalib
dc1355a5b65c2843e702ac76252addb2caf3c56b
[ "BSD-3-Clause" ]
15
2018-07-08T07:09:19.000Z
2021-11-21T09:58:55.000Z
ada-containers-indefinite_ordered_sets.ads
mgrojo/adalib
dc1355a5b65c2843e702ac76252addb2caf3c56b
[ "BSD-3-Clause" ]
4
2019-11-17T20:04:33.000Z
2021-08-29T21:24:55.000Z
ada-containers-indefinite_ordered_sets.ads
mgrojo/adalib
dc1355a5b65c2843e702ac76252addb2caf3c56b
[ "BSD-3-Clause" ]
3
2020-04-23T11:17:11.000Z
2021-08-29T19:31:09.000Z
-- Standard Ada library specification -- Copyright (c) 2003-2018 Maxim Reznik <[email protected]> -- Copyright (c) 2004-2016 AXE Consultants -- Copyright (c) 2004, 2005, 2006 Ada-Europe -- Copyright (c) 2000 The MITRE Corporation, Inc. -- Copyright (c) 1992, 1993, 1994, 1995 Intermetrics, Inc. -- SPDX-License-Identifier: BSD-3-Clause and LicenseRef-AdaReferenceManual --------------------------------------------------------------------------- with Ada.Iterator_Interfaces; generic type Element_Type (<>) is private; with function "<" (Left, Right : Element_Type) return Boolean is <>; with function "=" (Left, Right : Element_Type) return Boolean is <>; package Ada.Containers.Ordered_Sets is pragma Preelaborate(Ordered_Sets); pragma Remote_Types(Ordered_Sets); function Equivalent_Elements (Left, Right : Element_Type) return Boolean; type Set is tagged private with Constant_Indexing => Constant_Reference, Default_Iterator => Iterate, Iterator_Element => Element_Type; pragma Preelaborable_Initialization(Set); type Cursor is private; pragma Preelaborable_Initialization(Cursor); Empty_Set : constant Set; No_Element : constant Cursor; function Has_Element (Position : Cursor) return Boolean; package Set_Iterator_Interfaces is new Ada.Iterator_Interfaces (Cursor, Has_Element); function "=" (Left, Right : Set) return Boolean; function Equivalent_Sets (Left, Right : Set) return Boolean; function To_Set (New_Item : Element_Type) return Set; function Length (Container : Set) return Count_Type; function Is_Empty (Container : Set) return Boolean; procedure Clear (Container : in out Set); function Element (Position : Cursor) return Element_Type; procedure Replace_Element (Container : in out Set; Position : in Cursor; New_Item : in Element_Type); procedure Query_Element (Position : in Cursor; Process : not null access procedure (Element : in Element_Type)); type Constant_Reference_Type (Element : not null access constant Element_Type) is private with Implicit_Dereference => Element; function Constant_Reference (Container : aliased in Set; Position : in Cursor) return Constant_Reference_Type; procedure Assign (Target : in out Set; Source : in Set); function Copy (Source : Set) return Set; procedure Move (Target : in out Set; Source : in out Set); procedure Insert (Container : in out Set; New_Item : in Element_Type; Position : out Cursor; Inserted : out Boolean); procedure Insert (Container : in out Set; New_Item : in Element_Type); procedure Include (Container : in out Set; New_Item : in Element_Type); procedure Replace (Container : in out Set; New_Item : in Element_Type); procedure Exclude (Container : in out Set; Item : in Element_Type); procedure Delete (Container : in out Set; Item : in Element_Type); procedure Delete (Container : in out Set; Position : in out Cursor); procedure Delete_First (Container : in out Set); procedure Delete_Last (Container : in out Set); procedure Union (Target : in out Set; Source : in Set); function Union (Left, Right : Set) return Set; function "or" (Left, Right : Set) return Set renames Union; procedure Intersection (Target : in out Set; Source : in Set); function Intersection (Left, Right : Set) return Set; function "and" (Left, Right : Set) return Set renames Intersection; procedure Difference (Target : in out Set; Source : in Set); function Difference (Left, Right : Set) return Set; function "-" (Left, Right : Set) return Set renames Difference; procedure Symmetric_Difference (Target : in out Set; Source : in Set); function Symmetric_Difference (Left, Right : Set) return Set; function "xor" (Left, Right : Set) return Set renames Symmetric_Difference; function Overlap (Left, Right : Set) return Boolean; function Is_Subset (Subset : Set; Of_Set : Set) return Boolean; function First (Container : Set) return Cursor; function First_Element (Container : Set) return Element_Type; function Last (Container : Set) return Cursor; function Last_Element (Container : Set) return Element_Type; function Next (Position : Cursor) return Cursor; procedure Next (Position : in out Cursor); function Previous (Position : Cursor) return Cursor; procedure Previous (Position : in out Cursor); function Find (Container : Set; Item : Element_Type) return Cursor; function Floor (Container : Set; Item : Element_Type) return Cursor; function Ceiling (Container : Set; Item : Element_Type) return Cursor; function Contains (Container : Set; Item : Element_Type) return Boolean; function "<" (Left, Right : Cursor) return Boolean; function ">" (Left, Right : Cursor) return Boolean; function "<" (Left : Cursor; Right : Element_Type) return Boolean; function ">" (Left : Cursor; Right : Element_Type) return Boolean; function "<" (Left : Element_Type; Right : Cursor) return Boolean; function ">" (Left : Element_Type; Right : Cursor) return Boolean; procedure Iterate (Container : in Set; Process : not null access procedure (Position : in Cursor)); procedure Reverse_Iterate (Container : in Set; Process : not null access procedure (Position : in Cursor)); function Iterate (Container : in Set) return Set_Iterator_Interfaces.Reversible_Iterator'Class; function Iterate (Container : in Set; Start : in Cursor) return Set_Iterator_Interfaces.Reversible_Iterator'Class; generic type Key_Type (<>) is private; with function Key (Element : Element_Type) return Key_Type; with function "<" (Left, Right : Key_Type) return Boolean is <>; package Generic_Keys is function Equivalent_Keys (Left, Right : Key_Type) return Boolean; function Key (Position : Cursor) return Key_Type; function Element (Container : Set; Key : Key_Type) return Element_Type; procedure Replace (Container : in out Set; Key : in Key_Type; New_Item : in Element_Type); procedure Exclude (Container : in out Set; Key : in Key_Type); procedure Delete (Container : in out Set; Key : in Key_Type); function Find (Container : Set; Key : Key_Type) return Cursor; function Floor (Container : Set; Key : Key_Type) return Cursor; function Ceiling (Container : Set; Key : Key_Type) return Cursor; function Contains (Container : Set; Key : Key_Type) return Boolean; procedure Update_Element_Preserving_Key (Container : in out Set; Position : in Cursor; Process : not null access procedure (Element : in out Element_Type)); type Reference_Type (Element : not null access Element_Type) is private with Implicit_Dereference => Element; function Reference_Preserving_Key (Container : aliased in out Set; Position : in Cursor) return Reference_Type; function Constant_Reference (Container : aliased in Set; Key : in Key_Type) return Constant_Reference_Type; function Reference_Preserving_Key (Container : aliased in out Set; Key : in Key_Type) return Reference_Type; end Generic_Keys; private -- not specified by the language end Ada.Containers.Ordered_Sets;
31.818519
76
0.602491
232b699a56c2288f27beeac87ff3822344c81ae7
12,959
ads
Ada
ADL/devices/stm32-rcc.ads
JCGobbi/Nucleo-STM32H743ZI
bb0b5a66e9ac8b3dbe381f9909df5ed5d77dad1c
[ "BSD-3-Clause" ]
null
null
null
ADL/devices/stm32-rcc.ads
JCGobbi/Nucleo-STM32H743ZI
bb0b5a66e9ac8b3dbe381f9909df5ed5d77dad1c
[ "BSD-3-Clause" ]
null
null
null
ADL/devices/stm32-rcc.ads
JCGobbi/Nucleo-STM32H743ZI
bb0b5a66e9ac8b3dbe381f9909df5ed5d77dad1c
[ "BSD-3-Clause" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2015, AdaCore -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- 3. Neither the name of the copyright holder nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ pragma Restrictions (No_Elaboration_Code); package STM32.RCC is procedure AHB_Force_Reset with Inline; procedure AHB_Release_Reset with Inline; procedure APB1_Force_Reset with Inline; procedure APB1_Release_Reset with Inline; procedure APB2_Force_Reset with Inline; procedure APB2_Release_Reset with Inline; procedure APB3_Force_Reset with Inline; procedure APB3_Release_Reset with Inline; procedure APB4_Force_Reset with Inline; procedure APB4_Release_Reset with Inline; procedure Backup_Domain_Reset; -- Disable LSE clock and RTC and reset its configurations. --------------------------------------------------------------------------- -- Clock Configuration -------------------------------------------------- --------------------------------------------------------------------------- --------------- -- HSE Clock -- --------------- procedure Set_HSE_Clock (Enable : Boolean; Bypass : Boolean := False; Enable_CSS : Boolean := False) with Post => HSE_Clock_Enabled = Enable; function HSE_Clock_Enabled return Boolean; --------------- -- LSE Clock -- --------------- type HSE_Capability is (Lowest_Drive, Low_Drive, High_Drive, Highest_Drive) with Size => 2; procedure Set_LSE_Clock (Enable : Boolean; Bypass : Boolean := False; Enable_CSS : Boolean := False; Capability : HSE_Capability) with Post => LSE_Clock_Enabled = Enable; function LSE_Clock_Enabled return Boolean; --------------- -- HSI Clock -- --------------- type HSI_Prescaler is (HSI_DIV1, HSI_DIV2, HSI_DIV4, HSI_DIV8) with Size => 2; procedure Set_HSI_Clock (Enable : Boolean; Value : HSI_Prescaler) with Post => HSI_Clock_Enabled = Enable; -- The HSI clock can't be disabled if it is used directly (via SW mux) as -- system clock or if the HSI is selected as reference clock for PLL1 with -- PLL1 enabled (PLL1ON bit set to ‘1’). function HSI_Clock_Enabled return Boolean; ----------------- -- HSI48 Clock -- ----------------- procedure Set_HSI48_Clock (Enable : Boolean) with Post => HSI48_Clock_Enabled = Enable; function HSI48_Clock_Enabled return Boolean; --------------- -- LSI Clock -- --------------- procedure Set_LSI_Clock (Enable : Boolean) with Post => LSI_Clock_Enabled = Enable; function LSI_Clock_Enabled return Boolean; --------------- -- CSI Clock -- --------------- procedure Set_CSI_Clock (Enable : Boolean) with Post => CSI_Clock_Enabled = Enable; function CSI_Clock_Enabled return Boolean; ------------------ -- System Clock -- ------------------ type SYSCLK_Clock_Source is (SYSCLK_SRC_HSI, SYSCLK_SRC_CSI, SYSCLK_SRC_HSE, SYSCLK_SRC_PLL1) with Size => 3; for SYSCLK_Clock_Source use (SYSCLK_SRC_HSI => 2#000#, SYSCLK_SRC_CSI => 2#001#, SYSCLK_SRC_HSE => 2#010#, SYSCLK_SRC_PLL1 => 2#011#); procedure Configure_System_Clock_Mux (Source : SYSCLK_Clock_Source); ------------------------------- -- Domains 1, 2 and 3 Clocks -- ------------------------------- type AHB_Prescaler_Enum is (DIV_2, DIV_4, DIV_8, DIV_16, DIV_64, DIV_128, DIV_256, DIV_512) with Size => 3; type AHB_Prescaler is record Enable : Boolean := False; Value : AHB_Prescaler_Enum := AHB_Prescaler_Enum'First; end record with Size => 4; for AHB_Prescaler use record Enable at 0 range 3 .. 3; Value at 0 range 0 .. 2; end record; type AHB_Clock_Range is (AHB_1, AHB_2); procedure Configure_AHB_Clock_Prescaler (Bus : AHB_Clock_Range; Value : AHB_Prescaler); -- The AHB1 clock bus is the CPU clock selected by the D1CPRE prescaler. -- The AHB2 clock bus is the AXI, AHB1 and AHB2 peripheral clock selected -- by the HPRE prescaler. Example to create a variable: -- AHB_PRE : AHB_Prescaler := (Enable => True, Value => DIV2); type APB_Prescaler_Enum is (DIV_2, DIV_4, DIV_8, DIV_16) with Size => 2; type APB_Prescaler is record Enable : Boolean; Value : APB_Prescaler_Enum := APB_Prescaler_Enum'First; end record with Size => 3; for APB_Prescaler use record Enable at 0 range 2 .. 2; Value at 0 range 0 .. 1; end record; type APB_Clock_Range is (APB_1, APB_2, APB_3, APB_4); procedure Configure_APB_Clock_Prescaler (Bus : APB_Clock_Range; Value : APB_Prescaler); -- The APB1 clock bus is the APB1 peripheral clock selected by the D2PPRE1 -- prescaler. -- The APB2 clock bus is the APB2 peripheral clock selected by the D2PPRE2 -- prescaler. -- The APB3 clock bus is the APB3 peripheral clock selected by the D1PPRE -- prescaler. -- The APB4 clock bus is the APB4 peripheral clock selected by the D3PPRE -- prescaler. Example to create a variable: -- APB_PRE : APB_Prescaler := (Enable => True, Value => DIV_2); ---------------- -- PLL Clocks -- ---------------- type PLL_Clock_Source is (PLL_SRC_HSI, PLL_SRC_CSI, PLL_SRC_HSE) with Size => 2; for PLL_Clock_Source use (PLL_SRC_HSI => 2#00#, PLL_SRC_CSI => 2#01#, PLL_SRC_HSE => 2#10#); procedure Configure_PLL_Source_Mux (Source : PLL_Clock_Source); type PLL_Range is (PLL_1, PLL_2, PLL_3); subtype PLLM_Range is Integer range 1 .. 63; subtype PLLN_Range is Integer range 4 .. 512; subtype PLLP_Range is Integer range 1 .. 128; -- PLL1P only even numbers subtype PLLQ_Range is Integer range 1 .. 128; subtype PLLR_Range is Integer range 1 .. 128; type PLL_Input_Frequency is (Clock_1_To_2MHz, Clock_2_To_4MHz, Clock_4_To_8MHz, Clock_8_To_16MHz); type PLL_VCO_Selector is (Wide_192_To_836MHz, Medium_150_To_420MHz); procedure Configure_PLL (PLL : PLL_Range; Enable : Boolean; Fractional_Mode : Boolean; Fraction : UInt13 := 16#0#; PLLM : PLLM_Range; PLLN : PLLN_Range; PLLP : PLLP_Range; Enable_Output_P : Boolean; PLLQ : PLLQ_Range; Enable_Output_Q : Boolean; PLLR : PLLR_Range; Enable_Output_R : Boolean; Input : PLL_Input_Frequency; VCO : PLL_VCO_Selector) with Pre => (if PLL = PLL_1 then PLLP rem 2 = 0); -- Configure PLL according with RM0433 rev 7 Chapter 8.5.5 section "PLL -- initialization phase pg 345. If the PLL will operate in fractional mode -- turn on the Fractional_Mode and set the corret value of the fractional -- divider in the Sigma_Delta modulator. procedure Configure_PLL_Fraction (PLL : PLL_Range; Fraction : UInt13); -- Tune the frequency in fractional mode on-the-fly. --------------- -- PER Clock -- --------------- type PER_Clock_Source is (PER_SRC_HSI, PER_SRC_CSI, PER_SRC_HSE) with Size => 2; for PER_Clock_Source use (PER_SRC_HSI => 2#00#, PER_SRC_CSI => 2#01#, PER_SRC_HSE => 2#10#); procedure Configure_PER_Source_Mux (Source : PER_Clock_Source); --------------- -- TIM Clock -- --------------- type TIM_Source_Mode is (Factor_2, Factor_4); procedure Configure_TIM_Source_Mode (Source : TIM_Source_Mode); -- Select the clock frequency of all the timers connected to APB1 and APB2 -- domains. -- When 0 (Factor_2), APB1 and APB2 Timer clocks are equal to APB1 and APB2 -- Peripheral clocks when D2PPREx is 1 or 2, else they are equal to 2x APB1 -- and APB2. -- When 1 (Factor_4), APB1 and APB2 Timer clocks are equal to APB1 and APB2 -- Peripheral clocks when D2PPREx is 1, 2 or 4, else they are equal to 4x -- APB1 and APB2. ------------------- -- Output Clocks -- ------------------- type MCO_Clock_Source is (Option_1, Option_2, HSE, Option_4, Option_5, Option_6) with Size => 3; -- List of MCO sources -- MCO1 MCO2 -- Option_1 HSI SYSCLK -- Option_2 LSE PLL2P -- Option_4 PLL1Q PLL1P -- Option_5 HSI48 CSI -- Option_6 LSI type MCO_Prescaler is (MCOPRE_Disabled, MCOPRE_DIV1, -- Bypass MCOPRE_DIV2, MCOPRE_DIV3, MCOPRE_DIV4, MCOPRE_DIV5, MCOPRE_DIV6, MCOPRE_DIV7, MCOPRE_DIV8, MCOPRE_DIV9, MCOPRE_DIV10, MCOPRE_DIV11, MCOPRE_DIV12, MCOPRE_DIV13, MCOPRE_DIV14, MCOPRE_DIV15) with Size => 4; type MCO_Range is (MCO_1, MCO_2); procedure Configure_MCO_Output_Clock (MCO : MCO_Range; Source : MCO_Clock_Source; Value : MCO_Prescaler) with Pre => (if MCO = MCO_1 then Source /= Option_6); -- Select the source for micro-controller clock output. ------------------ -- Flash Memory -- ------------------ -- Flash wait states type FLASH_Wait_State is (FWS0, FWS1, FWS2, FWS3, FWS4) with Size => 4; procedure Set_FLASH_Latency (Latency : FLASH_Wait_State); -- Constants for Flash read latency with VCORE Range in relation to -- AXI Interface clock frequency (MHz) (AXI clock is HCLK2): -- RM0433 STM32H743 pg. 159 table 17 chapter 4.3.8. -- VCORE range VOS3 | VOS2 | VOS1 | VOS0 -- 000: Zero wait state 0 - 45 | 0 - 55 | 0 - 70 | 0 - 70 -- 001: One wait state 45 - 90 | 55 - 110 | 70 - 140 | 70 - 140 -- 010: Two wait sates 90 - 135 | 110 - 165 | 140 - 210 | 140 - 210 -- 011: Three wait sates 135 - 180 | 165 - 225 | 210 - 225 | 210 - 225 -- 100: Four wait sates 180 - 225 | 225 | | 225 - 240 ------------------- -- VCORE Scaling -- ------------------- type VCORE_Scaling_Selection is (Scale_3, Scale_2, Scale_1); for VCORE_Scaling_Selection use (Scale_3 => 2#01#, Scale_2 => 2#10#, Scale_1 => 2#11#); procedure Set_VCORE_Scaling (Scale : VCORE_Scaling_Selection); procedure PWR_Overdrive_Enable; -- The system maximum frequency can be reached by boosting the voltage -- scaling level to VOS0. This is done through the ODEN bit in the -- SYSCFG_PWRCR register, after configuring level VOS1. -- See RM0433 ver 7 pg. 277 chapter 6.6.2 for this sequence. end STM32.RCC;
32.807595
79
0.578208
1c676b0e878eda0a133a5bb6f922e13dfad3b76a
1,509
ads
Ada
src/lse.ads
mgrojo/lsystem-editor
1f855bc1f783c8d7a1c81594c8aee403e4b53132
[ "MIT" ]
2
2021-01-09T14:49:35.000Z
2022-01-18T18:57:45.000Z
src/lse.ads
mgrojo/lsystem-editor
1f855bc1f783c8d7a1c81594c8aee403e4b53132
[ "MIT" ]
1
2021-12-03T18:49:59.000Z
2021-12-03T18:49:59.000Z
src/lse.ads
mgrojo/lsystem-editor
1f855bc1f783c8d7a1c81594c8aee403e4b53132
[ "MIT" ]
1
2021-12-03T18:07:44.000Z
2021-12-03T18:07:44.000Z
------------------------------------------------------------------------------- -- LSE -- L-System Editor -- Author: Heziode -- -- License: -- MIT License -- -- Copyright (c) 2018 Quentin Dauprat (Heziode) <[email protected]> -- -- Permission is hereby granted, free of charge, to any person obtaining a -- copy of this software and associated documentation files (the "Software"), -- to deal in the Software without restriction, including without limitation -- the rights to use, copy, modify, merge, publish, distribute, sublicense, -- and/or sell copies of the Software, and to permit persons to whom the -- Software is furnished to do so, subject to the following conditions: -- -- The above copyright notice and this permission notice shall be included in -- all copies or substantial portions of the Software. -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -- FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -- DEALINGS IN THE SOFTWARE. ------------------------------------------------------------------------------- -- @description -- This package encompass all project. -- package LSE is pragma Pure; end LSE;
40.783784
79
0.66004
fb4dc99658a6c36678d4b4d0cde03f7977df4c4b
15,472
ads
Ada
tools/scitools/conf/understand/ada/ada05/a-stzunb.ads
brucegua/moocos
575c161cfa35e220f10d042e2e5ca18773691695
[ "Apache-2.0" ]
1
2020-01-20T21:26:46.000Z
2020-01-20T21:26:46.000Z
tools/scitools/conf/understand/ada/ada05/a-stzunb.ads
brucegua/moocos
575c161cfa35e220f10d042e2e5ca18773691695
[ "Apache-2.0" ]
null
null
null
tools/scitools/conf/understand/ada/ada05/a-stzunb.ads
brucegua/moocos
575c161cfa35e220f10d042e2e5ca18773691695
[ "Apache-2.0" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . S T R I N G S . W I D E _ W I D E _ U N B O U N D E D -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2006, Free Software Foundation, Inc. -- -- -- -- This specification is derived from the Ada Reference Manual for use with -- -- GNAT. The copyright notice above, and the license provisions that follow -- -- apply solely to the contents of the part following the private keyword. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, USA. -- -- -- -- -- -- -- -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Ada.Strings.Wide_Wide_Maps; with Ada.Finalization; package Ada.Strings.Wide_Wide_Unbounded is pragma Preelaborate; type Unbounded_Wide_Wide_String is private; pragma Preelaborable_Initialization (Unbounded_Wide_Wide_String); Null_Unbounded_Wide_Wide_String : constant Unbounded_Wide_Wide_String; function Length (Source : Unbounded_Wide_Wide_String) return Natural; type Wide_Wide_String_Access is access all Wide_Wide_String; procedure Free (X : in out Wide_Wide_String_Access); -------------------------------------------------------- -- Conversion, Concatenation, and Selection Functions -- -------------------------------------------------------- function To_Unbounded_Wide_Wide_String (Source : Wide_Wide_String) return Unbounded_Wide_Wide_String; function To_Unbounded_Wide_Wide_String (Length : Natural) return Unbounded_Wide_Wide_String; function To_Wide_Wide_String (Source : Unbounded_Wide_Wide_String) return Wide_Wide_String; procedure Set_Unbounded_Wide_Wide_String (Target : out Unbounded_Wide_Wide_String; Source : Wide_Wide_String); pragma Ada_05 (Set_Unbounded_Wide_Wide_String); procedure Append (Source : in out Unbounded_Wide_Wide_String; New_Item : Unbounded_Wide_Wide_String); procedure Append (Source : in out Unbounded_Wide_Wide_String; New_Item : Wide_Wide_String); procedure Append (Source : in out Unbounded_Wide_Wide_String; New_Item : Wide_Wide_Character); function "&" (Left : Unbounded_Wide_Wide_String; Right : Unbounded_Wide_Wide_String) return Unbounded_Wide_Wide_String; function "&" (Left : Unbounded_Wide_Wide_String; Right : Wide_Wide_String) return Unbounded_Wide_Wide_String; function "&" (Left : Wide_Wide_String; Right : Unbounded_Wide_Wide_String) return Unbounded_Wide_Wide_String; function "&" (Left : Unbounded_Wide_Wide_String; Right : Wide_Wide_Character) return Unbounded_Wide_Wide_String; function "&" (Left : Wide_Wide_Character; Right : Unbounded_Wide_Wide_String) return Unbounded_Wide_Wide_String; function Element (Source : Unbounded_Wide_Wide_String; Index : Positive) return Wide_Wide_Character; procedure Replace_Element (Source : in out Unbounded_Wide_Wide_String; Index : Positive; By : Wide_Wide_Character); function Slice (Source : Unbounded_Wide_Wide_String; Low : Positive; High : Natural) return Wide_Wide_String; function Unbounded_Slice (Source : Unbounded_Wide_Wide_String; Low : Positive; High : Natural) return Unbounded_Wide_Wide_String; pragma Ada_05 (Unbounded_Slice); procedure Unbounded_Slice (Source : Unbounded_Wide_Wide_String; Target : out Unbounded_Wide_Wide_String; Low : Positive; High : Natural); pragma Ada_05 (Unbounded_Slice); function "=" (Left : Unbounded_Wide_Wide_String; Right : Unbounded_Wide_Wide_String) return Boolean; function "=" (Left : Unbounded_Wide_Wide_String; Right : Wide_Wide_String) return Boolean; function "=" (Left : Wide_Wide_String; Right : Unbounded_Wide_Wide_String) return Boolean; function "<" (Left : Unbounded_Wide_Wide_String; Right : Unbounded_Wide_Wide_String) return Boolean; function "<" (Left : Unbounded_Wide_Wide_String; Right : Wide_Wide_String) return Boolean; function "<" (Left : Wide_Wide_String; Right : Unbounded_Wide_Wide_String) return Boolean; function "<=" (Left : Unbounded_Wide_Wide_String; Right : Unbounded_Wide_Wide_String) return Boolean; function "<=" (Left : Unbounded_Wide_Wide_String; Right : Wide_Wide_String) return Boolean; function "<=" (Left : Wide_Wide_String; Right : Unbounded_Wide_Wide_String) return Boolean; function ">" (Left : Unbounded_Wide_Wide_String; Right : Unbounded_Wide_Wide_String) return Boolean; function ">" (Left : Unbounded_Wide_Wide_String; Right : Wide_Wide_String) return Boolean; function ">" (Left : Wide_Wide_String; Right : Unbounded_Wide_Wide_String) return Boolean; function ">=" (Left : Unbounded_Wide_Wide_String; Right : Unbounded_Wide_Wide_String) return Boolean; function ">=" (Left : Unbounded_Wide_Wide_String; Right : Wide_Wide_String) return Boolean; function ">=" (Left : Wide_Wide_String; Right : Unbounded_Wide_Wide_String) return Boolean; ------------------------ -- Search Subprograms -- ------------------------ function Index (Source : Unbounded_Wide_Wide_String; Pattern : Wide_Wide_String; Going : Direction := Forward; Mapping : Wide_Wide_Maps.Wide_Wide_Character_Mapping := Wide_Wide_Maps.Identity) return Natural; function Index (Source : Unbounded_Wide_Wide_String; Pattern : Wide_Wide_String; Going : Direction := Forward; Mapping : Wide_Wide_Maps.Wide_Wide_Character_Mapping_Function) return Natural; function Index (Source : Unbounded_Wide_Wide_String; Set : Wide_Wide_Maps.Wide_Wide_Character_Set; Test : Membership := Inside; Going : Direction := Forward) return Natural; function Index (Source : Unbounded_Wide_Wide_String; Pattern : Wide_Wide_String; From : Positive; Going : Direction := Forward; Mapping : Wide_Wide_Maps.Wide_Wide_Character_Mapping := Wide_Wide_Maps.Identity) return Natural; pragma Ada_05 (Index); function Index (Source : Unbounded_Wide_Wide_String; Pattern : Wide_Wide_String; From : Positive; Going : Direction := Forward; Mapping : Wide_Wide_Maps.Wide_Wide_Character_Mapping_Function) return Natural; pragma Ada_05 (Index); function Index (Source : Unbounded_Wide_Wide_String; Set : Wide_Wide_Maps.Wide_Wide_Character_Set; From : Positive; Test : Membership := Inside; Going : Direction := Forward) return Natural; pragma Ada_05 (Index); function Index_Non_Blank (Source : Unbounded_Wide_Wide_String; Going : Direction := Forward) return Natural; function Index_Non_Blank (Source : Unbounded_Wide_Wide_String; From : Positive; Going : Direction := Forward) return Natural; pragma Ada_05 (Index_Non_Blank); function Count (Source : Unbounded_Wide_Wide_String; Pattern : Wide_Wide_String; Mapping : Wide_Wide_Maps.Wide_Wide_Character_Mapping := Wide_Wide_Maps.Identity) return Natural; function Count (Source : Unbounded_Wide_Wide_String; Pattern : Wide_Wide_String; Mapping : Wide_Wide_Maps.Wide_Wide_Character_Mapping_Function) return Natural; function Count (Source : Unbounded_Wide_Wide_String; Set : Wide_Wide_Maps.Wide_Wide_Character_Set) return Natural; procedure Find_Token (Source : Unbounded_Wide_Wide_String; Set : Wide_Wide_Maps.Wide_Wide_Character_Set; Test : Membership; First : out Positive; Last : out Natural); ------------------------------------ -- String Translation Subprograms -- ------------------------------------ function Translate (Source : Unbounded_Wide_Wide_String; Mapping : Wide_Wide_Maps.Wide_Wide_Character_Mapping) return Unbounded_Wide_Wide_String; procedure Translate (Source : in out Unbounded_Wide_Wide_String; Mapping : Wide_Wide_Maps.Wide_Wide_Character_Mapping); function Translate (Source : Unbounded_Wide_Wide_String; Mapping : Wide_Wide_Maps.Wide_Wide_Character_Mapping_Function) return Unbounded_Wide_Wide_String; procedure Translate (Source : in out Unbounded_Wide_Wide_String; Mapping : Wide_Wide_Maps.Wide_Wide_Character_Mapping_Function); --------------------------------------- -- String Transformation Subprograms -- --------------------------------------- function Replace_Slice (Source : Unbounded_Wide_Wide_String; Low : Positive; High : Natural; By : Wide_Wide_String) return Unbounded_Wide_Wide_String; procedure Replace_Slice (Source : in out Unbounded_Wide_Wide_String; Low : Positive; High : Natural; By : Wide_Wide_String); function Insert (Source : Unbounded_Wide_Wide_String; Before : Positive; New_Item : Wide_Wide_String) return Unbounded_Wide_Wide_String; procedure Insert (Source : in out Unbounded_Wide_Wide_String; Before : Positive; New_Item : Wide_Wide_String); function Overwrite (Source : Unbounded_Wide_Wide_String; Position : Positive; New_Item : Wide_Wide_String) return Unbounded_Wide_Wide_String; procedure Overwrite (Source : in out Unbounded_Wide_Wide_String; Position : Positive; New_Item : Wide_Wide_String); function Delete (Source : Unbounded_Wide_Wide_String; From : Positive; Through : Natural) return Unbounded_Wide_Wide_String; procedure Delete (Source : in out Unbounded_Wide_Wide_String; From : Positive; Through : Natural); function Trim (Source : Unbounded_Wide_Wide_String; Side : Trim_End) return Unbounded_Wide_Wide_String; procedure Trim (Source : in out Unbounded_Wide_Wide_String; Side : Trim_End); function Trim (Source : Unbounded_Wide_Wide_String; Left : Wide_Wide_Maps.Wide_Wide_Character_Set; Right : Wide_Wide_Maps.Wide_Wide_Character_Set) return Unbounded_Wide_Wide_String; procedure Trim (Source : in out Unbounded_Wide_Wide_String; Left : Wide_Wide_Maps.Wide_Wide_Character_Set; Right : Wide_Wide_Maps.Wide_Wide_Character_Set); function Head (Source : Unbounded_Wide_Wide_String; Count : Natural; Pad : Wide_Wide_Character := Wide_Wide_Space) return Unbounded_Wide_Wide_String; procedure Head (Source : in out Unbounded_Wide_Wide_String; Count : Natural; Pad : Wide_Wide_Character := Wide_Wide_Space); function Tail (Source : Unbounded_Wide_Wide_String; Count : Natural; Pad : Wide_Wide_Character := Wide_Wide_Space) return Unbounded_Wide_Wide_String; procedure Tail (Source : in out Unbounded_Wide_Wide_String; Count : Natural; Pad : Wide_Wide_Character := Wide_Wide_Space); function "*" (Left : Natural; Right : Wide_Wide_Character) return Unbounded_Wide_Wide_String; function "*" (Left : Natural; Right : Wide_Wide_String) return Unbounded_Wide_Wide_String; function "*" (Left : Natural; Right : Unbounded_Wide_Wide_String) return Unbounded_Wide_Wide_String; private pragma Inline (Length); package AF renames Ada.Finalization; Null_Wide_Wide_String : aliased Wide_Wide_String := ""; function To_Unbounded_Wide (S : Wide_Wide_String) return Unbounded_Wide_Wide_String renames To_Unbounded_Wide_Wide_String; type Unbounded_Wide_Wide_String is new AF.Controlled with record Reference : Wide_Wide_String_Access := Null_Wide_Wide_String'Access; Last : Natural := 0; end record; -- The Unbounded_Wide_Wide_String is using a buffered implementation to -- increase speed of the Append/Delete/Insert procedures. The Reference -- string pointer above contains the current string value and extra room -- at the end to be used by the next Append routine. Last is the index of -- the string ending character. So the current string value is really -- Reference (1 .. Last). pragma Stream_Convert (Unbounded_Wide_Wide_String, To_Unbounded_Wide, To_Wide_Wide_String); pragma Finalize_Storage_Only (Unbounded_Wide_Wide_String); -- Finalization is required only for freeing storage procedure Initialize (Object : in out Unbounded_Wide_Wide_String); procedure Adjust (Object : in out Unbounded_Wide_Wide_String); procedure Finalize (Object : in out Unbounded_Wide_Wide_String); procedure Realloc_For_Chunk (Source : in out Unbounded_Wide_Wide_String; Chunk_Size : Natural); -- Adjust the size allocated for the string. Add at least Chunk_Size so it -- is safe to add a string of this size at the end of the current content. -- The real size allocated for the string is Chunk_Size + x of the current -- string size. This buffered handling makes the Append unbounded string -- routines very fast. Null_Unbounded_Wide_Wide_String : constant Unbounded_Wide_Wide_String := (AF.Controlled with Reference => Null_Wide_Wide_String'Access, Last => 0); end Ada.Strings.Wide_Wide_Unbounded;
34.690583
78
0.639866
507ae8a3909dd73ce77abbdc856539602ef13f89
3,455
ads
Ada
tools/scitools/conf/understand/ada/ada12/a-csquin.ads
brucegua/moocos
575c161cfa35e220f10d042e2e5ca18773691695
[ "Apache-2.0" ]
1
2020-01-20T21:26:46.000Z
2020-01-20T21:26:46.000Z
tools/scitools/conf/understand/ada/ada12/a-csquin.ads
brucegua/moocos
575c161cfa35e220f10d042e2e5ca18773691695
[ "Apache-2.0" ]
null
null
null
tools/scitools/conf/understand/ada/ada12/a-csquin.ads
brucegua/moocos
575c161cfa35e220f10d042e2e5ca18773691695
[ "Apache-2.0" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- ADA.CONTAINERS.SYNCHRONIZED_QUEUE_INTERFACES -- -- -- -- S p e c -- -- -- -- Copyright (C) 2011, Free Software Foundation, Inc. -- -- -- -- This specification is derived from the Ada Reference Manual for use with -- -- GNAT. The copyright notice above, and the license provisions that follow -- -- apply solely to the contents of the part following the private keyword. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- -- -- -- -- -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- This unit was originally developed by Matthew J Heaney. -- ------------------------------------------------------------------------------ generic type Element_Type is private; package Ada.Containers.Synchronized_Queue_Interfaces is pragma Pure; type Queue is synchronized interface; procedure Enqueue (Container : in out Queue; New_Item : Element_Type) is abstract; -- ??? -- This is the official Ada 2012 syntax: -- with Synchronization => By_Entry; -- This is the temporary work-around: pragma Implemented (Enqueue, By_Entry); procedure Dequeue (Container : in out Queue; Element : out Element_Type) is abstract; -- ??? -- This is the official Ada 2012 syntax: -- with Synchronization => By_Entry; -- This is the temporary work-around: pragma Implemented (Dequeue, By_Entry); function Current_Use (Container : Queue) return Count_Type is abstract; function Peak_Use (Container : Queue) return Count_Type is abstract; end Ada.Containers.Synchronized_Queue_Interfaces;
50.072464
78
0.429522
0b2c11e9cef2bbd202e8c37f13bde6a3015c4b6a
7,736
adb
Ada
lib/ayacc/tokens_file.adb
alvaromb/Compilemon
de5f88f084705868d38e301d95bb4a19a46a1156
[ "MIT" ]
1
2018-08-11T01:51:27.000Z
2018-08-11T01:51:27.000Z
lib/ayacc/tokens_file.adb
alvaromb/Compilemon
de5f88f084705868d38e301d95bb4a19a46a1156
[ "MIT" ]
null
null
null
lib/ayacc/tokens_file.adb
alvaromb/Compilemon
de5f88f084705868d38e301d95bb4a19a46a1156
[ "MIT" ]
null
null
null
-- $Header: /dc/uc/self/arcadia/ayacc/src/RCS/tokens_file_body.a,v 1.2 1993/05/31 22:36:35 self Exp self $ -- Copyright (c) 1990 Regents of the University of California. -- All rights reserved. -- -- The primary authors of ayacc were David Taback and Deepak Tolani. -- Enhancements were made by Ronald J. Schmalz. -- -- Send requests for ayacc information to [email protected] -- Send bug reports for ayacc to [email protected] -- -- Redistribution and use in source and binary forms are permitted -- provided that the above copyright notice and this paragraph are -- duplicated in all such forms and that any documentation, -- advertising materials, and other materials related to such -- distribution and use acknowledge that the software was developed -- by the University of California, Irvine. The name of the -- University may not be used to endorse or promote products derived -- from this software without specific prior written permission. -- THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR -- IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -- WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. -- Module : tokens_file_body.ada -- Component of : ayacc -- Version : 1.2 -- Date : 11/21/86 12:38:23 -- SCCS File : disk21~/rschm/hasee/sccs/ayacc/sccs/sxtokens_file_body.ada -- $Header: /dc/uc/self/arcadia/ayacc/src/RCS/tokens_file_body.a,v 1.2 1993/05/31 22:36:35 self Exp self $ -- $Log: tokens_file_body.a,v $ -- Revision 1.2 1993/05/31 22:36:35 self -- added exception handler when opening files -- -- Revision 1.1 1993/05/31 22:14:38 self -- Initial revision -- --Revision 1.1 88/08/08 14:43:01 arcadia --Initial revision -- -- Revision 0.1 86/04/01 15:14:29 ada -- This version fixes some minor bugs with empty grammars -- and $$ expansion. It also uses vads5.1b enhancements -- such as pragma inline. -- -- -- Revision 0.0 86/02/19 18:54:19 ada -- -- These files comprise the initial version of Ayacc -- designed and implemented by David Taback and Deepak Tolani. -- Ayacc has been compiled and tested under the Verdix Ada compiler -- version 4.06 on a vax 11/750 running Unix 4.2BSD. -- with Ayacc_File_Names, Source_File, Symbol_Table, Text_IO; with String_Pkg; package body Tokens_File is SCCS_ID : constant String := "@(#) tokens_file_body.ada, Version 1.2"; Rcs_ID : constant String := "$Header: /dc/uc/self/arcadia/ayacc/src/RCS/tokens_file_body.a,v 1.2 1993/05/31 22:36:35 self Exp self $"; Package_Header_Generated : Boolean := False; T_File: Text_IO.File_Type; procedure Open is use Text_IO; begin Create(T_File, Out_File, Ayacc_File_Names.Get_Tokens_File_Name); exception when Name_Error | Use_Error => Put_Line("Ayacc: Error Opening """ & Ayacc_File_Names.Get_Tokens_File_Name & """."); raise; end Open; function Tokens_Package_Header_Has_Been_Generated return Boolean is begin return Package_Header_Generated; end Tokens_Package_Header_Has_Been_Generated; procedure Start_Tokens_Package is begin if not Package_Header_Generated then Writeln("package " & Ayacc_File_Names.Tokens_Unit_Name & " is"); Writeln(""); Package_Header_Generated := True; end if; end Start_Tokens_Package; procedure Close is use Text_IO; begin Close(T_File); end Close; procedure Write(S: in String) is use Text_IO; begin Put(T_File,S); end Write; procedure Writeln(S: in String) is use Text_IO; begin Put_Line(T_File,S); end Writeln; procedure Complete_Tokens_Package is Tokens_On_Line: Natural := 1; use String_Pkg; use Symbol_Table; begin if not Package_Header_Generated then Start_Tokens_Package; end if; Writeln(" YYLVal, YYVal : YYSType; "); Writeln(" type Token is"); Write(" ("); for I in First_Symbol(Terminal)..Last_Symbol(Terminal)-1 loop if Tokens_On_Line = 4 then Write(Value (Mixed (Get_Symbol_Name(I)))); Writeln(","); Write(" "); Tokens_On_Line := 1; else Write(Value (Mixed (Get_Symbol_Name(I)))); Write(", "); end if; Tokens_On_Line := Tokens_On_Line + 1; end loop; Write(Value (Mixed (Get_Symbol_Name(Last_Symbol(Terminal))))); Writeln(" );"); Writeln(""); Writeln(" Syntax_Error : exception;"); Writeln(""); Writeln("end " & Ayacc_File_Names.Tokens_Unit_Name & ";"); end Complete_Tokens_Package; procedure Make_C_Lex_Package is use Symbol_Table, Text_IO; The_Define_File : File_Type; The_Ada_File : File_Type; type Symbol_Rec is record Name : String(1..Source_File.Maximum_Line_Length); Length : Natural; end record; Sym_Name : Symbol_Rec; function Convert(S : String) return Symbol_Rec is Result : Symbol_Rec; begin Result.Name(1..S'Length) := S; Result.Length := S'Length; return Result; end; begin Create(The_Ada_File, Out_File, Ayacc_File_Names.Get_C_Lex_File_Name); Put_Line(The_Ada_File, "with " & Ayacc_File_Names.Tokens_Unit_Name & "; use " & Ayacc_File_Names.Tokens_Unit_Name & ";"); Put_Line(The_Ada_File, "package " & Ayacc_File_Names.C_Lex_Unit_Name & " is"); Put_Line(The_Ada_File, " function YYLex return Token;"); Put_Line(The_Ada_File, "end " & Ayacc_File_Names.C_Lex_Unit_Name & ";"); New_Line(The_Ada_File); New_Line(The_Ada_File); Put_Line(The_Ada_File, "package body " & Ayacc_File_Names.C_Lex_Unit_Name & " is"); New_Line(The_Ada_File); Put_Line(The_Ada_File, " function Get_Token return Integer;"); New_Line(The_Ada_File); Put_Line(The_Ada_File, " pragma Interface(C, Get_Token);"); New_Line(The_Ada_File); Put_Line(The_Ada_File, " type Table is array(0..255) of Token;"); Put_Line(The_Ada_File, " Literals : constant Table := Table'("); Put_Line(The_Ada_File, " 0 => End_of_Input,"); Create(The_Define_File, Out_File, Ayacc_File_Names.Get_Include_File_Name); Put_Line(The_Define_File, "/* C_Lex Token Definition for type " & Ayacc_File_Names.Tokens_Unit_Name & ".Token; */"); New_Line (The_Define_File); for I in First_Symbol(Terminal)..Last_Symbol(Terminal) loop Sym_Name := Convert(Get_Symbol_Name(I)); if Sym_Name.Name(1) /= ''' then Put(The_Define_File,"#define "); Put(The_Define_File, Sym_Name.Name(1..Sym_Name.Length)); Put_Line(The_Define_File, " " & Grammar_Symbol'Image(I + 256)); else Put(The_Ada_File, " " & Integer'Image(Character'Pos(Sym_Name.Name(2))) & " => "); Put(The_Ada_File, Sym_Name.Name(1..Sym_Name.Length) & ','); New_Line(The_Ada_File); end if; end loop; Put_Line(The_Ada_File, " others => Error); "); New_Line(The_Ada_File); Put_Line(The_Ada_File, " function YYLex return Token is"); Put_Line(The_Ada_File, " Token_Value : Integer;"); Put_Line(The_Ada_File, " begin"); Put_Line(The_Ada_File, " Token_Value := Get_Token;"); Put_Line(The_Ada_File, " if Token_Value > 255 then"); Put_Line(The_Ada_File, " return Token'Val(Token_Value-256);"); Put_Line(The_Ada_File, " else "); Put_Line(The_Ada_File, " return Literals(Token_Value); "); Put_Line(The_Ada_File, " end if; "); Put_Line(The_Ada_File, " end YYLex; "); Put_Line(The_Ada_File, "end " & Ayacc_File_Names.C_Lex_Unit_Name & ";"); Close(The_Ada_File); Close(The_Define_File); end; end Tokens_File;
31.835391
136
0.673604
50209f009cbebbb51788d2e4e0be6de2559e4064
23,568
adb
Ada
zfp-gba/gnat/a-tags.adb
98devin/ada-gba-dev
6ebca014b7537117144d878db8d13db49aa00cee
[ "Zlib" ]
7
2021-04-08T02:32:54.000Z
2022-02-14T01:21:43.000Z
zfp-gba/gnat/a-tags.adb
98devin/ada-gba-dev
6ebca014b7537117144d878db8d13db49aa00cee
[ "Zlib" ]
15
2021-04-09T20:13:33.000Z
2021-12-22T01:03:59.000Z
zfp-gba/gnat/a-tags.adb
98devin/ada-gba-dev
6ebca014b7537117144d878db8d13db49aa00cee
[ "Zlib" ]
1
2021-06-12T07:48:05.000Z
2021-06-12T07:48:05.000Z
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . T A G S -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2021, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- GBADA: Stripped-down version for low-footprint runtime -- ------------------------------------------------------------------------------ with System.Storage_Elements; use System.Storage_Elements; package body Ada.Tags is ----------------------- -- Local Subprograms -- ----------------------- function Is_Primary_DT (T : Tag) return Boolean; -- Given a tag returns True if it has the signature of a primary dispatch -- table. This is Inline_Always since it is called from other Inline_ -- Always subprograms where we want no out of line code to be generated. function IW_Membership (Descendant_TSD : Type_Specific_Data_Ptr; T : Tag) return Boolean; -- Subsidiary function of IW_Membership and CW_Membership which factorizes -- the functionality needed to check if a given descendant implements an -- interface tag T. function Length (Str : Cstring_Ptr) return Natural; -- Length of string represented by the given pointer (treating the string -- as a C-style string, which is Nul terminated). See comment in body -- explaining why we cannot use the normal strlen built-in. function OSD (T : Tag) return Object_Specific_Data_Ptr; -- Ada 2005 (AI-251): Given a pointer T to a secondary dispatch table, -- retrieve the address of the record containing the Object Specific -- Data table. function SSD (T : Tag) return Select_Specific_Data_Ptr; -- Ada 2005 (AI-251): Given a pointer T to a dispatch Table, retrieves the -- address of the record containing the Select Specific Data in T's TSD. pragma Inline_Always (Is_Primary_DT); pragma Inline_Always (OSD); pragma Inline_Always (SSD); -- Disable warnings on possible aliasing problem function To_Dispatch_Table_Ptr is new Ada.Unchecked_Conversion (Tag, Dispatch_Table_Ptr); function To_Dispatch_Table_Ptr is new Ada.Unchecked_Conversion (System.Address, Dispatch_Table_Ptr); function To_Object_Specific_Data_Ptr is new Ada.Unchecked_Conversion (System.Address, Object_Specific_Data_Ptr); function To_Tag_Ptr is new Ada.Unchecked_Conversion (System.Address, Tag_Ptr); ------------------------------- -- Inline_Always Subprograms -- ------------------------------- -- Inline_always subprograms must be placed before their first call to -- avoid defeating the frontend inlining mechanism and thus ensure the -- generation of their correct debug info. ----------------- -- Is_Abstract -- ----------------- function Is_Abstract (T : Tag) return Boolean is TSD_Ptr : Addr_Ptr; TSD : Type_Specific_Data_Ptr; begin if T = No_Tag then raise Tag_Error; end if; TSD_Ptr := To_Addr_Ptr (To_Address (T) - DT_Typeinfo_Ptr_Size); TSD := To_Type_Specific_Data_Ptr (TSD_Ptr.all); return TSD.Is_Abstract; end Is_Abstract; ------------------- -- Is_Primary_DT -- ------------------- function Is_Primary_DT (T : Tag) return Boolean is begin return DT (T).Signature = Primary_DT; end Is_Primary_DT; --------- -- OSD -- --------- function OSD (T : Tag) return Object_Specific_Data_Ptr is OSD_Ptr : constant Addr_Ptr := To_Addr_Ptr (To_Address (T) - DT_Typeinfo_Ptr_Size); begin return To_Object_Specific_Data_Ptr (OSD_Ptr.all); end OSD; --------- -- SSD -- --------- function SSD (T : Tag) return Select_Specific_Data_Ptr is TSD_Ptr : constant Addr_Ptr := To_Addr_Ptr (To_Address (T) - DT_Typeinfo_Ptr_Size); TSD : constant Type_Specific_Data_Ptr := To_Type_Specific_Data_Ptr (TSD_Ptr.all); begin return TSD.SSD; end SSD; ------------------ -- Base_Address -- ------------------ function Base_Address (This : System.Address) return System.Address is begin return This + Offset_To_Top (This); end Base_Address; -------------- -- Displace -- -------------- function Displace (This : System.Address; T : Tag) return System.Address is Iface_Table : Interface_Data_Ptr; Obj_Base : System.Address; Obj_DT : Dispatch_Table_Ptr; Obj_DT_Tag : Tag; begin if System."=" (This, System.Null_Address) then return System.Null_Address; end if; Obj_Base := Base_Address (This); Obj_DT_Tag := To_Tag_Ptr (Obj_Base).all; Obj_DT := DT (To_Tag_Ptr (Obj_Base).all); Iface_Table := To_Type_Specific_Data_Ptr (Obj_DT.TSD).Interfaces_Table; if Iface_Table /= null then for Id in 1 .. Iface_Table.Nb_Ifaces loop if Iface_Table.Ifaces_Table (Id).Iface_Tag = T then -- Case of Static value of Offset_To_Top if Iface_Table.Ifaces_Table (Id).Static_Offset_To_Top then Obj_Base := Obj_Base - Iface_Table.Ifaces_Table (Id).Offset_To_Top_Value; -- Otherwise call the function generated by the expander to -- provide the value. else Obj_Base := Obj_Base - Iface_Table.Ifaces_Table (Id).Offset_To_Top_Func.all (Obj_Base); end if; return Obj_Base; end if; end loop; end if; -- Check if T is an immediate ancestor. This is required to handle -- conversion of class-wide interfaces to tagged types. if CW_Membership (Obj_DT_Tag, T) then return Obj_Base; end if; -- If the object does not implement the interface we must raise CE raise Constraint_Error with "invalid interface conversion"; end Displace; -------- -- DT -- -------- function DT (T : Tag) return Dispatch_Table_Ptr is Offset : constant SSE.Storage_Offset := To_Dispatch_Table_Ptr (T).Prims_Ptr'Position; begin return To_Dispatch_Table_Ptr (To_Address (T) - Offset); end DT; ------------------- -- IW_Membership -- ------------------- function IW_Membership (Descendant_TSD : Type_Specific_Data_Ptr; T : Tag) return Boolean is Iface_Table : Interface_Data_Ptr; begin Iface_Table := Descendant_TSD.Interfaces_Table; if Iface_Table /= null then for Id in 1 .. Iface_Table.Nb_Ifaces loop if Iface_Table.Ifaces_Table (Id).Iface_Tag = T then return True; end if; end loop; end if; -- Look for the tag in the ancestor tags table. This is required for: -- Iface_CW in Typ'Class for Id in 0 .. Descendant_TSD.Idepth loop if Descendant_TSD.Tags_Table (Id) = T then return True; end if; end loop; return False; end IW_Membership; ------------------- -- IW_Membership -- ------------------- -- Canonical implementation of Classwide Membership corresponding to: -- Obj in Iface'Class -- Each dispatch table contains a table with the tags of all the -- implemented interfaces. -- Obj is in Iface'Class if Iface'Tag is found in the table of interfaces -- that are contained in the dispatch table referenced by Obj'Tag. function IW_Membership (This : System.Address; T : Tag) return Boolean is Obj_Base : System.Address; Obj_DT : Dispatch_Table_Ptr; Obj_TSD : Type_Specific_Data_Ptr; begin Obj_Base := Base_Address (This); Obj_DT := DT (To_Tag_Ptr (Obj_Base).all); Obj_TSD := To_Type_Specific_Data_Ptr (Obj_DT.TSD); return IW_Membership (Obj_TSD, T); end IW_Membership; ------------------- -- CW_Membership -- ------------------- -- Canonical implementation of Classwide Membership corresponding to: -- Obj in Typ'Class -- Each dispatch table contains a reference to a table of ancestors (stored -- in the first part of the Tags_Table) and a count of the level of -- inheritance "Idepth". -- Obj is in Typ'Class if Typ'Tag is in the table of ancestors that are -- contained in the dispatch table referenced by Obj'Tag . Knowing the -- level of inheritance of both types, this can be computed in constant -- time by the formula: -- TSD (Obj'tag).Tags_Table (TSD (Obj'tag).Idepth - TSD (Typ'tag).Idepth) -- = Typ'tag function CW_Membership (Obj_Tag : Tag; Typ_Tag : Tag) return Boolean is Obj_TSD_Ptr : constant Addr_Ptr := To_Addr_Ptr (To_Address (Obj_Tag) - DT_Typeinfo_Ptr_Size); Typ_TSD_Ptr : constant Addr_Ptr := To_Addr_Ptr (To_Address (Typ_Tag) - DT_Typeinfo_Ptr_Size); Obj_TSD : constant Type_Specific_Data_Ptr := To_Type_Specific_Data_Ptr (Obj_TSD_Ptr.all); Typ_TSD : constant Type_Specific_Data_Ptr := To_Type_Specific_Data_Ptr (Typ_TSD_Ptr.all); Pos : constant Integer := Obj_TSD.Idepth - Typ_TSD.Idepth; begin return (Pos >= 0 and then Obj_TSD.Tags_Table (Pos) = Typ_Tag); end CW_Membership; -- Given the tag of an object and the tag associated to a type, return -- true if Obj is in Typ'Class. ------------------- -- Expanded_Name -- ------------------- function Expanded_Name (T : Tag) return String is Result : Cstring_Ptr; TSD_Ptr : Addr_Ptr; TSD : Type_Specific_Data_Ptr; begin if T = No_Tag then raise Tag_Error; end if; TSD_Ptr := To_Addr_Ptr (To_Address (T) - DT_Typeinfo_Ptr_Size); TSD := To_Type_Specific_Data_Ptr (TSD_Ptr.all); Result := TSD.Expanded_Name; return Result (1 .. Length (Result)); end Expanded_Name; ------------------ -- External_Tag -- ------------------ function External_Tag (T : Tag) return String is Result : Cstring_Ptr; TSD_Ptr : Addr_Ptr; TSD : Type_Specific_Data_Ptr; begin if T = No_Tag then raise Tag_Error; end if; TSD_Ptr := To_Addr_Ptr (To_Address (T) - DT_Typeinfo_Ptr_Size); TSD := To_Type_Specific_Data_Ptr (TSD_Ptr.all); Result := TSD.External_Tag; return Result (1 .. Length (Result)); end External_Tag; --------------------- -- Get_Entry_Index -- --------------------- function Get_Entry_Index (T : Tag; Position : Positive) return Positive is begin return SSD (T).SSD_Table (Position).Index; end Get_Entry_Index; ---------------------- -- Get_Prim_Op_Kind -- ---------------------- function Get_Prim_Op_Kind (T : Tag; Position : Positive) return Prim_Op_Kind is begin return SSD (T).SSD_Table (Position).Kind; end Get_Prim_Op_Kind; ---------------------- -- Get_Offset_Index -- ---------------------- function Get_Offset_Index (T : Tag; Position : Positive) return Positive is begin if Is_Primary_DT (T) then return Position; else return OSD (T).OSD_Table (Position); end if; end Get_Offset_Index; --------------------- -- Get_Tagged_Kind -- --------------------- function Get_Tagged_Kind (T : Tag) return Tagged_Kind is begin return DT (T).Tag_Kind; end Get_Tagged_Kind; ----------------------------- -- Interface_Ancestor_Tags -- ----------------------------- function Interface_Ancestor_Tags (T : Tag) return Tag_Array is TSD_Ptr : constant Addr_Ptr := To_Addr_Ptr (To_Address (T) - DT_Typeinfo_Ptr_Size); TSD : constant Type_Specific_Data_Ptr := To_Type_Specific_Data_Ptr (TSD_Ptr.all); Iface_Table : constant Interface_Data_Ptr := TSD.Interfaces_Table; begin if Iface_Table = null then declare Table : Tag_Array (1 .. 0); begin return Table; end; else declare Table : Tag_Array (1 .. Iface_Table.Nb_Ifaces); begin for J in 1 .. Iface_Table.Nb_Ifaces loop Table (J) := Iface_Table.Ifaces_Table (J).Iface_Tag; end loop; return Table; end; end if; end Interface_Ancestor_Tags; --------------------------------- -- Is_Descendant_At_Same_Level -- --------------------------------- function Is_Descendant_At_Same_Level (Descendant : Tag; Ancestor : Tag) return Boolean is begin if Descendant = Ancestor then return True; else declare D_TSD_Ptr : constant Addr_Ptr := To_Addr_Ptr (To_Address (Descendant) - DT_Typeinfo_Ptr_Size); A_TSD_Ptr : constant Addr_Ptr := To_Addr_Ptr (To_Address (Ancestor) - DT_Typeinfo_Ptr_Size); D_TSD : constant Type_Specific_Data_Ptr := To_Type_Specific_Data_Ptr (D_TSD_Ptr.all); A_TSD : constant Type_Specific_Data_Ptr := To_Type_Specific_Data_Ptr (A_TSD_Ptr.all); begin return D_TSD.Access_Level = A_TSD.Access_Level and then (CW_Membership (Descendant, Ancestor) or else IW_Membership (D_TSD, Ancestor)); end; end if; end Is_Descendant_At_Same_Level; ------------ -- Length -- ------------ -- Note: This unit is used in the Ravenscar runtime library, so it cannot -- depend on System.CTRL. Furthermore, this happens on CPUs where the GCC -- intrinsic strlen may not be available, so we need to recode our own Ada -- version here. function Length (Str : Cstring_Ptr) return Natural is Len : Integer; begin Len := 1; while Str (Len) /= ASCII.NUL loop Len := Len + 1; end loop; return Len - 1; end Length; ------------------- -- Offset_To_Top -- ------------------- function Offset_To_Top (This : System.Address) return SSE.Storage_Offset is Tag_Size : constant SSE.Storage_Count := SSE.Storage_Count (1 * (Standard'Address_Size / System.Storage_Unit)); type Storage_Offset_Ptr is access SSE.Storage_Offset; function To_Storage_Offset_Ptr is new Unchecked_Conversion (System.Address, Storage_Offset_Ptr); Curr_DT : Dispatch_Table_Ptr; begin Curr_DT := DT (To_Tag_Ptr (This).all); -- See the documentation of Dispatch_Table_Wrapper.Offset_To_Top if Curr_DT.Offset_To_Top = SSE.Storage_Offset'Last then -- The parent record type has variable-size components, so the -- instance-specific offset is stored in the tagged record, right -- after the reference to Curr_DT (which is a secondary dispatch -- table). return To_Storage_Offset_Ptr (This + Tag_Size).all; else -- The offset is compile-time known, so it is simply stored in the -- Offset_To_Top field. return Curr_DT.Offset_To_Top; end if; end Offset_To_Top; ------------------------ -- Needs_Finalization -- ------------------------ function Needs_Finalization (T : Tag) return Boolean is TSD_Ptr : constant Addr_Ptr := To_Addr_Ptr (To_Address (T) - DT_Typeinfo_Ptr_Size); TSD : constant Type_Specific_Data_Ptr := To_Type_Specific_Data_Ptr (TSD_Ptr.all); begin return TSD.Needs_Finalization; end Needs_Finalization; ----------------- -- Parent_Size -- ----------------- function Parent_Size (Obj : System.Address; T : Tag) return SSE.Storage_Count is Parent_Slot : constant Positive := 1; -- The tag of the parent is always in the first slot of the table of -- ancestor tags. TSD_Ptr : constant Addr_Ptr := To_Addr_Ptr (To_Address (T) - DT_Typeinfo_Ptr_Size); TSD : constant Type_Specific_Data_Ptr := To_Type_Specific_Data_Ptr (TSD_Ptr.all); -- Pointer to the TSD Parent_Tag : constant Tag := TSD.Tags_Table (Parent_Slot); Parent_TSD_Ptr : constant Addr_Ptr := To_Addr_Ptr (To_Address (Parent_Tag) - DT_Typeinfo_Ptr_Size); Parent_TSD : constant Type_Specific_Data_Ptr := To_Type_Specific_Data_Ptr (Parent_TSD_Ptr.all); begin -- Here we compute the size of the _parent field of the object return SSE.Storage_Count (Parent_TSD.Size_Func.all (Obj)); end Parent_Size; ---------------- -- Parent_Tag -- ---------------- function Parent_Tag (T : Tag) return Tag is TSD_Ptr : Addr_Ptr; TSD : Type_Specific_Data_Ptr; begin if T = No_Tag then raise Tag_Error; end if; TSD_Ptr := To_Addr_Ptr (To_Address (T) - DT_Typeinfo_Ptr_Size); TSD := To_Type_Specific_Data_Ptr (TSD_Ptr.all); -- The Parent_Tag of a root-level tagged type is defined to be No_Tag. -- The first entry in the Ancestors_Tags array will be null for such -- a type, but it's better to be explicit about returning No_Tag in -- this case. if TSD.Idepth = 0 then return No_Tag; else return TSD.Tags_Table (1); end if; end Parent_Tag; ------------------------------- -- Register_Interface_Offset -- ------------------------------- procedure Register_Interface_Offset (Prim_T : Tag; Interface_T : Tag; Is_Static : Boolean; Offset_Value : SSE.Storage_Offset; Offset_Func : Offset_To_Top_Function_Ptr) is Prim_DT : constant Dispatch_Table_Ptr := DT (Prim_T); Iface_Table : constant Interface_Data_Ptr := To_Type_Specific_Data_Ptr (Prim_DT.TSD).Interfaces_Table; begin -- Save Offset_Value in the table of interfaces of the primary DT. -- This data will be used by the subprogram "Displace" to give support -- to backward abstract interface type conversions. -- Register the offset in the table of interfaces if Iface_Table /= null then for Id in 1 .. Iface_Table.Nb_Ifaces loop if Iface_Table.Ifaces_Table (Id).Iface_Tag = Interface_T then if Is_Static or else Offset_Value = 0 then Iface_Table.Ifaces_Table (Id).Static_Offset_To_Top := True; Iface_Table.Ifaces_Table (Id).Offset_To_Top_Value := Offset_Value; else Iface_Table.Ifaces_Table (Id).Static_Offset_To_Top := False; Iface_Table.Ifaces_Table (Id).Offset_To_Top_Func := Offset_Func; end if; return; end if; end loop; end if; -- If we arrive here there is some error in the run-time data structure raise Program_Error; end Register_Interface_Offset; ------------------- -- Secondary_Tag -- ------------------- function Secondary_Tag (T, Iface : Tag) return Tag is Iface_Table : Interface_Data_Ptr; Obj_DT : Dispatch_Table_Ptr; begin if not Is_Primary_DT (T) then raise Program_Error; end if; Obj_DT := DT (T); Iface_Table := To_Type_Specific_Data_Ptr (Obj_DT.TSD).Interfaces_Table; if Iface_Table /= null then for Id in 1 .. Iface_Table.Nb_Ifaces loop if Iface_Table.Ifaces_Table (Id).Iface_Tag = Iface then return Iface_Table.Ifaces_Table (Id).Secondary_DT; end if; end loop; end if; -- If the object does not implement the interface we must raise CE raise Constraint_Error with "invalid interface conversion"; end Secondary_Tag; --------------------- -- Set_Entry_Index -- --------------------- procedure Set_Entry_Index (T : Tag; Position : Positive; Value : Positive) is begin SSD (T).SSD_Table (Position).Index := Value; end Set_Entry_Index; ------------------------------- -- Set_Dynamic_Offset_To_Top -- ------------------------------- procedure Set_Dynamic_Offset_To_Top (This : System.Address; Prim_T : Tag; Interface_T : Tag; Offset_Value : SSE.Storage_Offset; Offset_Func : Offset_To_Top_Function_Ptr) is Sec_Base : System.Address; Sec_DT : Dispatch_Table_Ptr; begin -- Save the offset to top field in the secondary dispatch table if Offset_Value /= 0 then Sec_Base := This - Offset_Value; Sec_DT := DT (To_Tag_Ptr (Sec_Base).all); Sec_DT.Offset_To_Top := SSE.Storage_Offset'Last; end if; Register_Interface_Offset (Prim_T, Interface_T, False, Offset_Value, Offset_Func); end Set_Dynamic_Offset_To_Top; ---------------------- -- Set_Prim_Op_Kind -- ---------------------- procedure Set_Prim_Op_Kind (T : Tag; Position : Positive; Value : Prim_Op_Kind) is begin SSD (T).SSD_Table (Position).Kind := Value; end Set_Prim_Op_Kind; end Ada.Tags;
32.552486
79
0.570053
2365300e1f389f96440b37a2cc1b2dcf1f072f25
381
ads
Ada
examples/hello_world_request_reply/src/primes-primenumberrequester.ads
alexcamposruiz/dds-requestreply
9f29d34554b5d3e9291151c6e92d2ce6cc31bb71
[ "MIT" ]
null
null
null
examples/hello_world_request_reply/src/primes-primenumberrequester.ads
alexcamposruiz/dds-requestreply
9f29d34554b5d3e9291151c6e92d2ce6cc31bb71
[ "MIT" ]
null
null
null
examples/hello_world_request_reply/src/primes-primenumberrequester.ads
alexcamposruiz/dds-requestreply
9f29d34554b5d3e9291151c6e92d2ce6cc31bb71
[ "MIT" ]
null
null
null
with Primes_IDL_File.PrimeNumberRequest_DataWriter; with Primes_IDL_File.PrimeNumberReply_DataReader; with DDS.Request_Reply.Typed_Requester_Generic; package Primes.PrimeNumberRequester is new DDS.Request_Reply.Typed_Requester_Generic (Request_DataWriters => Primes_IDL_File.PrimeNumberRequest_DataWriter, Reply_DataReaders => Primes_IDL_File.PrimeNumberReply_DataReader);
47.625
84
0.88189
504d5b409cd0b900857c5c469df104bd6740eb67
17,180
ads
Ada
arch/ARM/STM32/svd/stm32f46_79x/stm32_svd-dma2d.ads
shakram02/Ada_Drivers_Library
a407ca7ddbc2d9756647016c2f8fd8ef24a239ff
[ "BSD-3-Clause" ]
192
2016-06-01T18:32:04.000Z
2022-03-26T22:52:31.000Z
arch/ARM/STM32/svd/stm32f46_79x/stm32_svd-dma2d.ads
morbos/Ada_Drivers_Library
a4ab26799be60997c38735f4056160c4af597ef7
[ "BSD-3-Clause" ]
239
2016-05-26T20:02:01.000Z
2022-03-31T09:46:56.000Z
arch/ARM/STM32/svd/stm32f46_79x/stm32_svd-dma2d.ads
morbos/Ada_Drivers_Library
a4ab26799be60997c38735f4056160c4af597ef7
[ "BSD-3-Clause" ]
142
2016-06-05T08:12:20.000Z
2022-03-24T17:37:17.000Z
-- This spec has been automatically generated from STM32F46_79x.svd pragma Restrictions (No_Elaboration_Code); pragma Ada_2012; pragma Style_Checks (Off); with HAL; with System; package STM32_SVD.DMA2D is pragma Preelaborate; --------------- -- Registers -- --------------- subtype CR_MODE_Field is HAL.UInt2; -- control register type CR_Register is record -- Start START : Boolean := False; -- Suspend SUSP : Boolean := False; -- Abort ABORT_k : Boolean := False; -- unspecified Reserved_3_7 : HAL.UInt5 := 16#0#; -- Transfer error interrupt enable TEIE : Boolean := False; -- Transfer complete interrupt enable TCIE : Boolean := False; -- Transfer watermark interrupt enable TWIE : Boolean := False; -- CLUT access error interrupt enable CAEIE : Boolean := False; -- CLUT transfer complete interrupt enable CTCIE : Boolean := False; -- Configuration Error Interrupt Enable CEIE : Boolean := False; -- unspecified Reserved_14_15 : HAL.UInt2 := 16#0#; -- DMA2D mode MODE : CR_MODE_Field := 16#0#; -- unspecified Reserved_18_31 : HAL.UInt14 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CR_Register use record START at 0 range 0 .. 0; SUSP at 0 range 1 .. 1; ABORT_k at 0 range 2 .. 2; Reserved_3_7 at 0 range 3 .. 7; TEIE at 0 range 8 .. 8; TCIE at 0 range 9 .. 9; TWIE at 0 range 10 .. 10; CAEIE at 0 range 11 .. 11; CTCIE at 0 range 12 .. 12; CEIE at 0 range 13 .. 13; Reserved_14_15 at 0 range 14 .. 15; MODE at 0 range 16 .. 17; Reserved_18_31 at 0 range 18 .. 31; end record; -- Interrupt Status Register type ISR_Register is record -- Read-only. Transfer error interrupt flag TEIF : Boolean; -- Read-only. Transfer complete interrupt flag TCIF : Boolean; -- Read-only. Transfer watermark interrupt flag TWIF : Boolean; -- Read-only. CLUT access error interrupt flag CAEIF : Boolean; -- Read-only. CLUT transfer complete interrupt flag CTCIF : Boolean; -- Read-only. Configuration error interrupt flag CEIF : Boolean; -- unspecified Reserved_6_31 : HAL.UInt26; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for ISR_Register use record TEIF at 0 range 0 .. 0; TCIF at 0 range 1 .. 1; TWIF at 0 range 2 .. 2; CAEIF at 0 range 3 .. 3; CTCIF at 0 range 4 .. 4; CEIF at 0 range 5 .. 5; Reserved_6_31 at 0 range 6 .. 31; end record; -- interrupt flag clear register type IFCR_Register is record -- Clear Transfer error interrupt flag CTEIF : Boolean := False; -- Clear transfer complete interrupt flag CTCIF : Boolean := False; -- Clear transfer watermark interrupt flag CTWIF : Boolean := False; -- Clear CLUT access error interrupt flag CAECIF : Boolean := False; -- Clear CLUT transfer complete interrupt flag CCTCIF : Boolean := False; -- Clear configuration error interrupt flag CCEIF : Boolean := False; -- unspecified Reserved_6_31 : HAL.UInt26 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for IFCR_Register use record CTEIF at 0 range 0 .. 0; CTCIF at 0 range 1 .. 1; CTWIF at 0 range 2 .. 2; CAECIF at 0 range 3 .. 3; CCTCIF at 0 range 4 .. 4; CCEIF at 0 range 5 .. 5; Reserved_6_31 at 0 range 6 .. 31; end record; subtype FGOR_LO_Field is HAL.UInt14; -- foreground offset register type FGOR_Register is record -- Line offset LO : FGOR_LO_Field := 16#0#; -- unspecified Reserved_14_31 : HAL.UInt18 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for FGOR_Register use record LO at 0 range 0 .. 13; Reserved_14_31 at 0 range 14 .. 31; end record; subtype BGOR_LO_Field is HAL.UInt14; -- background offset register type BGOR_Register is record -- Line offset LO : BGOR_LO_Field := 16#0#; -- unspecified Reserved_14_31 : HAL.UInt18 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for BGOR_Register use record LO at 0 range 0 .. 13; Reserved_14_31 at 0 range 14 .. 31; end record; subtype FGPFCCR_CM_Field is HAL.UInt4; subtype FGPFCCR_CS_Field is HAL.UInt8; subtype FGPFCCR_AM_Field is HAL.UInt2; subtype FGPFCCR_ALPHA_Field is HAL.UInt8; -- foreground PFC control register type FGPFCCR_Register is record -- Color mode CM : FGPFCCR_CM_Field := 16#0#; -- CLUT color mode CCM : Boolean := False; -- Start START : Boolean := False; -- unspecified Reserved_6_7 : HAL.UInt2 := 16#0#; -- CLUT size CS : FGPFCCR_CS_Field := 16#0#; -- Alpha mode AM : FGPFCCR_AM_Field := 16#0#; -- unspecified Reserved_18_23 : HAL.UInt6 := 16#0#; -- Alpha value ALPHA : FGPFCCR_ALPHA_Field := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for FGPFCCR_Register use record CM at 0 range 0 .. 3; CCM at 0 range 4 .. 4; START at 0 range 5 .. 5; Reserved_6_7 at 0 range 6 .. 7; CS at 0 range 8 .. 15; AM at 0 range 16 .. 17; Reserved_18_23 at 0 range 18 .. 23; ALPHA at 0 range 24 .. 31; end record; subtype FGCOLR_BLUE_Field is HAL.UInt8; subtype FGCOLR_GREEN_Field is HAL.UInt8; subtype FGCOLR_RED_Field is HAL.UInt8; -- foreground color register type FGCOLR_Register is record -- Blue Value BLUE : FGCOLR_BLUE_Field := 16#0#; -- Green Value GREEN : FGCOLR_GREEN_Field := 16#0#; -- Red Value RED : FGCOLR_RED_Field := 16#0#; -- unspecified Reserved_24_31 : HAL.UInt8 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for FGCOLR_Register use record BLUE at 0 range 0 .. 7; GREEN at 0 range 8 .. 15; RED at 0 range 16 .. 23; Reserved_24_31 at 0 range 24 .. 31; end record; subtype BGPFCCR_CM_Field is HAL.UInt4; subtype BGPFCCR_CS_Field is HAL.UInt8; subtype BGPFCCR_AM_Field is HAL.UInt2; subtype BGPFCCR_ALPHA_Field is HAL.UInt8; -- background PFC control register type BGPFCCR_Register is record -- Color mode CM : BGPFCCR_CM_Field := 16#0#; -- CLUT Color mode CCM : Boolean := False; -- Start START : Boolean := False; -- unspecified Reserved_6_7 : HAL.UInt2 := 16#0#; -- CLUT size CS : BGPFCCR_CS_Field := 16#0#; -- Alpha mode AM : BGPFCCR_AM_Field := 16#0#; -- unspecified Reserved_18_23 : HAL.UInt6 := 16#0#; -- Alpha value ALPHA : BGPFCCR_ALPHA_Field := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for BGPFCCR_Register use record CM at 0 range 0 .. 3; CCM at 0 range 4 .. 4; START at 0 range 5 .. 5; Reserved_6_7 at 0 range 6 .. 7; CS at 0 range 8 .. 15; AM at 0 range 16 .. 17; Reserved_18_23 at 0 range 18 .. 23; ALPHA at 0 range 24 .. 31; end record; subtype BGCOLR_BLUE_Field is HAL.UInt8; subtype BGCOLR_GREEN_Field is HAL.UInt8; subtype BGCOLR_RED_Field is HAL.UInt8; -- background color register type BGCOLR_Register is record -- Blue Value BLUE : BGCOLR_BLUE_Field := 16#0#; -- Green Value GREEN : BGCOLR_GREEN_Field := 16#0#; -- Red Value RED : BGCOLR_RED_Field := 16#0#; -- unspecified Reserved_24_31 : HAL.UInt8 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for BGCOLR_Register use record BLUE at 0 range 0 .. 7; GREEN at 0 range 8 .. 15; RED at 0 range 16 .. 23; Reserved_24_31 at 0 range 24 .. 31; end record; subtype OPFCCR_CM_Field is HAL.UInt3; -- output PFC control register type OPFCCR_Register is record -- Color mode CM : OPFCCR_CM_Field := 16#0#; -- unspecified Reserved_3_31 : HAL.UInt29 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for OPFCCR_Register use record CM at 0 range 0 .. 2; Reserved_3_31 at 0 range 3 .. 31; end record; subtype OCOLR_BLUE_Field is HAL.UInt8; subtype OCOLR_GREEN_Field is HAL.UInt8; subtype OCOLR_RED_Field is HAL.UInt8; subtype OCOLR_APLHA_Field is HAL.UInt8; -- output color register type OCOLR_Register is record -- Blue Value BLUE : OCOLR_BLUE_Field := 16#0#; -- Green Value GREEN : OCOLR_GREEN_Field := 16#0#; -- Red Value RED : OCOLR_RED_Field := 16#0#; -- Alpha Channel Value APLHA : OCOLR_APLHA_Field := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for OCOLR_Register use record BLUE at 0 range 0 .. 7; GREEN at 0 range 8 .. 15; RED at 0 range 16 .. 23; APLHA at 0 range 24 .. 31; end record; subtype OOR_LO_Field is HAL.UInt14; -- output offset register type OOR_Register is record -- Line Offset LO : OOR_LO_Field := 16#0#; -- unspecified Reserved_14_31 : HAL.UInt18 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for OOR_Register use record LO at 0 range 0 .. 13; Reserved_14_31 at 0 range 14 .. 31; end record; subtype NLR_NL_Field is HAL.UInt16; subtype NLR_PL_Field is HAL.UInt14; -- number of line register type NLR_Register is record -- Number of lines NL : NLR_NL_Field := 16#0#; -- Pixel per lines PL : NLR_PL_Field := 16#0#; -- unspecified Reserved_30_31 : HAL.UInt2 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for NLR_Register use record NL at 0 range 0 .. 15; PL at 0 range 16 .. 29; Reserved_30_31 at 0 range 30 .. 31; end record; subtype LWR_LW_Field is HAL.UInt16; -- line watermark register type LWR_Register is record -- Line watermark LW : LWR_LW_Field := 16#0#; -- unspecified Reserved_16_31 : HAL.UInt16 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for LWR_Register use record LW at 0 range 0 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype AMTCR_DT_Field is HAL.UInt8; -- AHB master timer configuration register type AMTCR_Register is record -- Enable EN : Boolean := False; -- unspecified Reserved_1_7 : HAL.UInt7 := 16#0#; -- Dead Time DT : AMTCR_DT_Field := 16#0#; -- unspecified Reserved_16_31 : HAL.UInt16 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for AMTCR_Register use record EN at 0 range 0 .. 0; Reserved_1_7 at 0 range 1 .. 7; DT at 0 range 8 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype FGCLUT_BLUE_Field is HAL.UInt8; subtype FGCLUT_GREEN_Field is HAL.UInt8; subtype FGCLUT_RED_Field is HAL.UInt8; subtype FGCLUT_APLHA_Field is HAL.UInt8; -- FGCLUT type FGCLUT_Register is record -- BLUE BLUE : FGCLUT_BLUE_Field := 16#0#; -- GREEN GREEN : FGCLUT_GREEN_Field := 16#0#; -- RED RED : FGCLUT_RED_Field := 16#0#; -- APLHA APLHA : FGCLUT_APLHA_Field := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for FGCLUT_Register use record BLUE at 0 range 0 .. 7; GREEN at 0 range 8 .. 15; RED at 0 range 16 .. 23; APLHA at 0 range 24 .. 31; end record; subtype BGCLUT_BLUE_Field is HAL.UInt8; subtype BGCLUT_GREEN_Field is HAL.UInt8; subtype BGCLUT_RED_Field is HAL.UInt8; subtype BGCLUT_APLHA_Field is HAL.UInt8; -- BGCLUT type BGCLUT_Register is record -- BLUE BLUE : BGCLUT_BLUE_Field := 16#0#; -- GREEN GREEN : BGCLUT_GREEN_Field := 16#0#; -- RED RED : BGCLUT_RED_Field := 16#0#; -- APLHA APLHA : BGCLUT_APLHA_Field := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for BGCLUT_Register use record BLUE at 0 range 0 .. 7; GREEN at 0 range 8 .. 15; RED at 0 range 16 .. 23; APLHA at 0 range 24 .. 31; end record; ----------------- -- Peripherals -- ----------------- -- DMA2D controller type DMA2D_Peripheral is record -- control register CR : aliased CR_Register; -- Interrupt Status Register ISR : aliased ISR_Register; -- interrupt flag clear register IFCR : aliased IFCR_Register; -- foreground memory address register FGMAR : aliased HAL.UInt32; -- foreground offset register FGOR : aliased FGOR_Register; -- background memory address register BGMAR : aliased HAL.UInt32; -- background offset register BGOR : aliased BGOR_Register; -- foreground PFC control register FGPFCCR : aliased FGPFCCR_Register; -- foreground color register FGCOLR : aliased FGCOLR_Register; -- background PFC control register BGPFCCR : aliased BGPFCCR_Register; -- background color register BGCOLR : aliased BGCOLR_Register; -- foreground CLUT memory address register FGCMAR : aliased HAL.UInt32; -- background CLUT memory address register BGCMAR : aliased HAL.UInt32; -- output PFC control register OPFCCR : aliased OPFCCR_Register; -- output color register OCOLR : aliased OCOLR_Register; -- output memory address register OMAR : aliased HAL.UInt32; -- output offset register OOR : aliased OOR_Register; -- number of line register NLR : aliased NLR_Register; -- line watermark register LWR : aliased LWR_Register; -- AHB master timer configuration register AMTCR : aliased AMTCR_Register; -- FGCLUT FGCLUT : aliased FGCLUT_Register; -- BGCLUT BGCLUT : aliased BGCLUT_Register; end record with Volatile; for DMA2D_Peripheral use record CR at 16#0# range 0 .. 31; ISR at 16#4# range 0 .. 31; IFCR at 16#8# range 0 .. 31; FGMAR at 16#C# range 0 .. 31; FGOR at 16#10# range 0 .. 31; BGMAR at 16#14# range 0 .. 31; BGOR at 16#18# range 0 .. 31; FGPFCCR at 16#1C# range 0 .. 31; FGCOLR at 16#20# range 0 .. 31; BGPFCCR at 16#24# range 0 .. 31; BGCOLR at 16#28# range 0 .. 31; FGCMAR at 16#2C# range 0 .. 31; BGCMAR at 16#30# range 0 .. 31; OPFCCR at 16#34# range 0 .. 31; OCOLR at 16#38# range 0 .. 31; OMAR at 16#3C# range 0 .. 31; OOR at 16#40# range 0 .. 31; NLR at 16#44# range 0 .. 31; LWR at 16#48# range 0 .. 31; AMTCR at 16#4C# range 0 .. 31; FGCLUT at 16#400# range 0 .. 31; BGCLUT at 16#800# range 0 .. 31; end record; -- DMA2D controller DMA2D_Periph : aliased DMA2D_Peripheral with Import, Address => System'To_Address (16#4002B000#); end STM32_SVD.DMA2D;
31.639042
68
0.571187
10d75e81eaf1456970bee40a0e666c226c04905b
3,895
ads
Ada
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-pack20.ads
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-pack20.ads
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-pack20.ads
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . P A C K _ 2 0 -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2020, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Handling of packed arrays with Component_Size = 20 package System.Pack_20 is pragma Preelaborate; Bits : constant := 20; type Bits_20 is mod 2 ** Bits; for Bits_20'Size use Bits; -- In all subprograms below, Rev_SSO is set True if the array has the -- non-default scalar storage order. function Get_20 (Arr : System.Address; N : Natural; Rev_SSO : Boolean) return Bits_20 with Inline; -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is extracted and returned. procedure Set_20 (Arr : System.Address; N : Natural; E : Bits_20; Rev_SSO : Boolean) with Inline; -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is set to the given value. function GetU_20 (Arr : System.Address; N : Natural; Rev_SSO : Boolean) return Bits_20 with Inline; -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is extracted and returned. This version -- is used when Arr may represent an unaligned address. procedure SetU_20 (Arr : System.Address; N : Natural; E : Bits_20; Rev_SSO : Boolean) with Inline; -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is set to the given value. This version -- is used when Arr may represent an unaligned address end System.Pack_20;
49.935897
78
0.474711
1c88866e3b8755d06cde648d67191445628f4229
634
ads
Ada
src/gl/generated/gl-api-ints.ads
Roldak/OpenGLAda
6807605b7321249d71286fa25231bdfd537d3eac
[ "MIT" ]
79
2015-04-20T23:10:02.000Z
2022-03-04T13:50:56.000Z
src/gl/generated/gl-api-ints.ads
Roldak/OpenGLAda
6807605b7321249d71286fa25231bdfd537d3eac
[ "MIT" ]
126
2015-09-10T10:41:34.000Z
2022-03-20T11:25:40.000Z
src/gl/generated/gl-api-ints.ads
Roldak/OpenGLAda
6807605b7321249d71286fa25231bdfd537d3eac
[ "MIT" ]
20
2015-03-17T07:15:57.000Z
2022-02-02T17:12:11.000Z
-- part of OpenGLAda, (c) 2017 Felix Krause -- released under the terms of the MIT license, see the file "COPYING" -- Autogenerated by Generate, do not edit package GL.API.Ints is pragma Preelaborate; Uniform1 : T8; Uniform1v : T9; Uniform2 : T10; Uniform2v : T11; Uniform3 : T12; Uniform3v : T13; Uniform4 : T14; Uniform4v : T15; Uniform_Matrix2 : T16; Uniform_Matrix3 : T17; Uniform_Matrix4 : T18; Vertex_Attrib1 : T19; Vertex_Attrib2 : T20; Vertex_Attrib2v : T21; Vertex_Attrib3 : T22; Vertex_Attrib3v : T23; Vertex_Attrib4 : T24; Vertex_Attrib4v : T25; end GL.API.Ints;
25.36
71
0.678233
d0913ea5901ebd50a6cc893bfff6cf1e3a72e846
3,689
ads
Ada
source/amf/uml/amf-uml-connectable_element_template_parameters-hash.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
24
2016-11-29T06:59:41.000Z
2021-08-30T11:55:16.000Z
source/amf/uml/amf-uml-connectable_element_template_parameters-hash.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
2
2019-01-16T05:15:20.000Z
2019-02-03T10:03:32.000Z
source/amf/uml/amf-uml-connectable_element_template_parameters-hash.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
4
2017-07-18T07:11:05.000Z
2020-06-21T03:02:25.000Z
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with AMF.Elements.Generic_Hash; function AMF.UML.Connectable_Element_Template_Parameters.Hash is new AMF.Elements.Generic_Hash (UML_Connectable_Element_Template_Parameter, UML_Connectable_Element_Template_Parameter_Access);
73.78
128
0.415018
1cb41b9d3657090290060bdcdd357641ce5deb7f
995
adb
Ada
tests/tests/device/string_descriptor/main.adb
JeremyGrosser/usb_embedded
8597a505dd1fd8b28a2e87f069034213ca8a2607
[ "BSD-3-Clause" ]
null
null
null
tests/tests/device/string_descriptor/main.adb
JeremyGrosser/usb_embedded
8597a505dd1fd8b28a2e87f069034213ca8a2607
[ "BSD-3-Clause" ]
null
null
null
tests/tests/device/string_descriptor/main.adb
JeremyGrosser/usb_embedded
8597a505dd1fd8b28a2e87f069034213ca8a2607
[ "BSD-3-Clause" ]
null
null
null
with USB_Testing; use USB_Testing; with USB_Testing.UDC_Stub; use USB_Testing.UDC_Stub; with USB_Testing.UDC_Scenarios; with HAL; use HAL; with USB; procedure Main is Scenario : aliased constant UDC_Stub.Stub_Scenario := UDC_Scenarios.Enumeration (Verbose => False) & UDC_Scenarios.Get_Config (Verbose => False) -- Get string #1 usually manufacturer from device desc & UDC_Scenarios.Get_String (Verbose => True, Id => 1, Ack => True) -- Get string #2 usually product from device desc & UDC_Scenarios.Get_String (Verbose => True, Id => 2, Ack => True) -- Get string #3 usually serial number from device desc & UDC_Scenarios.Get_String (Verbose => True, Id => 3, Ack => True) -- Get invalid string & UDC_Scenarios.Get_String (Verbose => True, Id => 42, Ack => False); RX_Data : aliased constant UInt8_Array := (0 .. 1 => 0); begin USB_Testing.UDC_Scenarios.Basic_UDC_Test (Scenario, RX_Data); end Main;
32.096774
74
0.674372
399188eb01a92792991cc760ce681c4c2b93c17f
3,002
ada
Ada
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c4/c45632a.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c4/c45632a.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c4/c45632a.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
-- C45632A.ADA -- Grant of Unlimited Rights -- -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687, -- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained -- unlimited rights in the software and documentation contained herein. -- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making -- this public release, the Government intends to confer upon all -- recipients unlimited rights equal to those held by the Government. -- These rights include rights to use, duplicate, release or disclose the -- released technical data and computer software in whole or in part, in -- any manner and for any purpose whatsoever, and to have or permit others -- to do so. -- -- DISCLAIMER -- -- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR -- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED -- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE -- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE -- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A -- PARTICULAR PURPOSE OF SAID MATERIAL. --* -- OBJECTIVE: -- CHECK THAT FOR PREDEFINED TYPE INTEGER, CONSTRAINT_ERROR -- IS RAISED FOR ABS (INTEGER'FIRST) IF -- -INTEGER'LAST > INTEGER'FIRST. -- *** NOTE: This test has been modified since ACVC version 1.11 to -- 9X -- *** remove incompatibilities associated with the transition -- 9X -- *** to Ada 9X. -- 9X -- *** -- 9X -- HISTORY: -- RJW 02/10/86 CREATED ORIGINAL TEST. -- JET 12/30/87 UPDATED HEADER FORMAT AND ADDED CODE TO -- PREVENT OPTIMIZATION. -- MRM 03/30/93 REMOVED NUMERIC ERROR FOR 9X COMPATIBILITY WITH REPORT; USE REPORT; PROCEDURE C45632A IS I : INTEGER := IDENT_INT (INTEGER'FIRST); BEGIN TEST ( "C45632A", "CHECK THAT FOR PREDEFINED TYPE INTEGER " & "CONSTRAINT_ERROR IS RAISED " & "FOR ABS (INTEGER'FIRST) IF -INTEGER'LAST > " & "INTEGER'FIRST" ); BEGIN IF - INTEGER'LAST > INTEGER'FIRST THEN BEGIN IF EQUAL (ABS I, I) THEN NULL; ELSE FAILED ( "WRONG RESULT FOR ABS" ); END IF; FAILED ( "EXCEPTION NOT RAISED" ); EXCEPTION WHEN CONSTRAINT_ERROR => COMMENT ( "CONSTRAINT_ERROR RAISED" ); WHEN OTHERS => FAILED ( "WRONG EXCEPTION RAISED" ); END; ELSE COMMENT ( "-INTEGER'LAST <= INTEGER'FIRST" ); END IF; END; RESULT; END C45632A;
38.987013
79
0.555963
20b6d32c6ebee1132f40e97a5eba63e7a63dc7d3
14,584
adb
Ada
src/syscalls/ewok-syscalls-dma.adb
mfkiwl/ewok-kernel-security-OS
ca8e2a0b5cedbc94df957be1fac6d7d4b2ceb687
[ "Apache-2.0" ]
65
2018-09-26T09:10:11.000Z
2022-01-30T21:17:37.000Z
src/syscalls/ewok-syscalls-dma.adb
mfkiwl/ewok-kernel-security-OS
ca8e2a0b5cedbc94df957be1fac6d7d4b2ceb687
[ "Apache-2.0" ]
22
2019-04-07T15:15:54.000Z
2020-10-15T12:45:54.000Z
src/syscalls/ewok-syscalls-dma.adb
mfkiwl/ewok-kernel-security-OS
ca8e2a0b5cedbc94df957be1fac6d7d4b2ceb687
[ "Apache-2.0" ]
10
2018-09-27T09:43:08.000Z
2021-01-29T22:50:17.000Z
-- -- Copyright 2018 The wookey project team <[email protected]> -- - Ryad Benadjila -- - Arnauld Michelizza -- - Mathieu Renard -- - Philippe Thierry -- - Philippe Trebuchet -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. -- -- with ewok.tasks; use ewok.tasks; with ewok.tasks_shared; use ewok.tasks_shared; with ewok.dma_shared; use ewok.dma_shared; with ewok.exported.dma; with ewok.dma; with ewok.perm; with ewok.sanitize; with ewok.debug; package body ewok.syscalls.dma with spark_mode => off is package TSK renames ewok.tasks; procedure svc_register_dma (caller_id : in ewok.tasks_shared.t_task_id; params : in t_parameters; mode : in ewok.tasks_shared.t_task_mode) is dma_config_address : constant system_address := params(1); descriptor_address : constant system_address := params(2); index : ewok.dma_shared.t_registered_dma_index; ok : boolean; begin -- Forbidden after end of task initialization if is_init_done (caller_id) then goto ret_denied; end if; -- DMA allowed for that task? if not ewok.perm.ressource_is_granted (ewok.perm.PERM_RES_DEV_DMA, caller_id) then pragma DEBUG (debug.log (debug.ERROR, "svc_register_dma(): permission not granted")); goto ret_denied; end if; -- Does dma_config is in caller's address space ? if not ewok.sanitize.is_range_in_data_region (dma_config_address, ewok.exported.dma.t_dma_user_config'size/8, caller_id, mode) then pragma DEBUG (debug.log (debug.ERROR, "svc_register_dma(): dma_config not in task's memory space")); goto ret_denied; end if; -- Does descriptor_address is in caller's address space ? if not ewok.sanitize.is_word_in_data_region (descriptor_address, caller_id, mode) then pragma DEBUG (debug.log (debug.ERROR, "svc_register_dma(): descriptor not in task's memory space")); goto ret_denied; end if; declare dma_config : constant ewok.exported.dma.t_dma_user_config with import, address => to_address (dma_config_address); descriptor : unsigned_32 with import, address => to_address (descriptor_address); begin -- Ada based sanitation using on types compliance if not dma_config'valid_scalars then pragma DEBUG (debug.log (debug.ERROR, "svc_register_dma(): invalid dma_t")); goto ret_inval; end if; -- Verify DMA configuration transmitted by the user if not ewok.dma.sanitize_dma (dma_config, caller_id, ewok.exported.dma.t_config_mask'(others => false), mode) then pragma DEBUG (debug.log (debug.ERROR, "svc_register_dma(): invalid dma configuration")); goto ret_inval; end if; -- Check if controller/stream are already used -- Note: A DMA controller can manage only one channel per stream in the -- same time. if ewok.dma.stream_is_already_used (dma_config) then pragma DEBUG (debug.log (debug.ERROR, "svc_register_dma(): dma configuration already used")); goto ret_denied; end if; -- Is there any user descriptor available ? if TSK.tasks_list(caller_id).num_dma_id < MAX_DMAS_PER_TASK then TSK.tasks_list(caller_id).num_dma_id := TSK.tasks_list(caller_id).num_dma_id + 1; else goto ret_busy; end if; -- Initialization ewok.dma.init_stream (dma_config, caller_id, index, ok); if not ok then pragma DEBUG (debug.log (debug.ERROR, "svc_register_dma(): dma initialization failed")); goto ret_denied; end if; descriptor := TSK.tasks_list(caller_id).num_dma_id; TSK.tasks_list(caller_id).dma_id(descriptor) := index; set_return_value (caller_id, mode, SYS_E_DONE); ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE); return; end; <<ret_busy>> set_return_value (caller_id, mode, SYS_E_BUSY); ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE); return; <<ret_inval>> set_return_value (caller_id, mode, SYS_E_INVAL); ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE); return; <<ret_denied>> set_return_value (caller_id, mode, SYS_E_DENIED); ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE); return; end svc_register_dma; procedure svc_register_dma_shm (caller_id : in ewok.tasks_shared.t_task_id; params : in t_parameters; mode : in ewok.tasks_shared.t_task_mode) is dma_shm_config_address : constant system_address := params(1); granted_id : ewok.tasks_shared.t_task_id; begin -- Forbidden after end of task initialization if is_init_done (caller_id) then goto ret_denied; end if; -- Does dma_shm_config'address is in the caller address space ? if not ewok.sanitize.is_range_in_data_region (dma_shm_config_address, ewok.exported.dma.t_dma_shm_info'size/8, caller_id, mode) then pragma DEBUG (debug.log (debug.ERROR, "svc_register_dma_shm(): parameters not in task's memory space")); goto ret_denied; end if; declare dma_shm_config : ewok.exported.dma.t_dma_shm_info with import, address => to_address (dma_shm_config_address); begin -- Ada based sanitation using on types compliance if not dma_shm_config'valid_scalars then pragma DEBUG (debug.log (debug.ERROR, "svc_register_dma_shm(): invalid dma_shm_t")); goto ret_inval; end if; -- Verify DMA shared memory configuration transmitted by the user if not ewok.dma.sanitize_dma_shm (dma_shm_config, caller_id, mode) then pragma DEBUG (debug.log (debug.ERROR, "svc_register_dma_shm(): invalid configuration")); goto ret_inval; end if; granted_id := dma_shm_config.granted_id; -- Does the task can share memory with its target task? if not ewok.perm.dmashm_is_granted (caller_id, granted_id) then pragma DEBUG (debug.log (debug.ERROR, "svc_register_dma_shm(): not granted")); goto ret_denied; end if; -- Is there any user descriptor available ? if TSK.tasks_list(granted_id).num_dma_shms < MAX_DMA_SHM_PER_TASK and TSK.tasks_list(caller_id).num_dma_shms < MAX_DMA_SHM_PER_TASK then TSK.tasks_list(granted_id).num_dma_shms := TSK.tasks_list(granted_id).num_dma_shms + 1; TSK.tasks_list(caller_id).num_dma_shms := TSK.tasks_list(caller_id).num_dma_shms + 1; else pragma DEBUG (debug.log (debug.ERROR, "svc_register_dma_shm(): busy")); goto ret_busy; end if; TSK.tasks_list(granted_id).dma_shm(TSK.tasks_list(granted_id).num_dma_shms) := dma_shm_config; TSK.tasks_list(caller_id).dma_shm(TSK.tasks_list(caller_id).num_dma_shms) := dma_shm_config; set_return_value (caller_id, mode, SYS_E_DONE); ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE); return; end; <<ret_busy>> set_return_value (caller_id, mode, SYS_E_BUSY); ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE); return; <<ret_inval>> set_return_value (caller_id, mode, SYS_E_INVAL); ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE); return; <<ret_denied>> set_return_value (caller_id, mode, SYS_E_DENIED); ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE); return; end svc_register_dma_shm; procedure svc_dma_reconf (caller_id : in ewok.tasks_shared.t_task_id; params : in out t_parameters; mode : in ewok.tasks_shared.t_task_mode) is new_dma_config_address : constant system_address := params(1); config_mask : ewok.exported.dma.t_config_mask with import, address => params(2)'address; dma_descriptor : unsigned_32 with import, address => params(3)'address; ok : boolean; begin -- Forbidden before end of task initialization if not is_init_done (caller_id) then goto ret_denied; end if; -- Does new_dma_config'address is in the caller address space ? if not ewok.sanitize.is_range_in_data_region (new_dma_config_address, ewok.exported.dma.t_dma_user_config'size/8, caller_id, mode) then pragma DEBUG (debug.log (debug.ERROR, "svc_dma_reconf(): parameters not in task's memory space")); goto ret_inval; end if; -- Valid DMA descriptor ? if dma_descriptor < TSK.tasks_list(caller_id).dma_id'first or dma_descriptor > TSK.tasks_list(caller_id).num_dma_id then pragma DEBUG (debug.log (debug.ERROR, "svc_dma_reconf(): invalid descriptor")); goto ret_inval; end if; declare new_dma_config : ewok.exported.dma.t_dma_user_config with import, address => to_address (new_dma_config_address); begin -- Check if the user tried to change the DMA ctrl/channel/stream -- parameters if not ewok.dma.has_same_dma_channel (TSK.tasks_list(caller_id).dma_id(dma_descriptor), new_dma_config) then pragma DEBUG (debug.log (debug.ERROR, "svc_dma_reconf(): ctrl/channel/stream changed")); goto ret_inval; end if; -- Ada based sanitation using on types compliance is not easy, -- as only fields marked by config_mask have a real interpretation -- These fields are checked in the dma_sanitize_dma() function call -- bellow -- Verify DMA configuration transmitted by the user if not ewok.dma.sanitize_dma (new_dma_config, caller_id, config_mask, mode) then pragma DEBUG (debug.log (debug.ERROR, "svc_dma_reconf(): invalid configuration")); goto ret_inval; end if; -- Reconfigure the DMA controller ewok.dma.reconfigure_stream (new_dma_config, TSK.tasks_list(caller_id).dma_id(dma_descriptor), config_mask, caller_id, ok); if not ok then goto ret_inval; end if; set_return_value (caller_id, mode, SYS_E_DONE); ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE); return; end; <<ret_inval>> set_return_value (caller_id, mode, SYS_E_INVAL); ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE); return; <<ret_denied>> set_return_value (caller_id, mode, SYS_E_DENIED); ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE); return; end svc_dma_reconf; procedure svc_dma_reload (caller_id : in ewok.tasks_shared.t_task_id; params : in out t_parameters; mode : in ewok.tasks_shared.t_task_mode) is dma_descriptor : unsigned_32 with import, address => params(1)'address; begin -- Forbidden before end of task initialization if not is_init_done (caller_id) then goto ret_denied; end if; -- Valid DMA descriptor ? if dma_descriptor < TSK.tasks_list(caller_id).dma_id'first or dma_descriptor > TSK.tasks_list(caller_id).num_dma_id then pragma DEBUG (debug.log (debug.ERROR, "svc_dma_reload(): invalid descriptor")); goto ret_inval; end if; ewok.dma.enable_dma_stream (TSK.tasks_list(caller_id).dma_id(dma_descriptor)); set_return_value (caller_id, mode, SYS_E_DONE); ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE); return; <<ret_inval>> set_return_value (caller_id, mode, SYS_E_INVAL); ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE); return; <<ret_denied>> set_return_value (caller_id, mode, SYS_E_DENIED); ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE); return; end svc_dma_reload; procedure svc_dma_disable (caller_id : in ewok.tasks_shared.t_task_id; params : in out t_parameters; mode : in ewok.tasks_shared.t_task_mode) is dma_descriptor : unsigned_32 with import, address => params(1)'address; begin -- Forbidden before end of task initialization if not is_init_done (caller_id) then goto ret_denied; end if; -- Valid DMA descriptor ? if dma_descriptor < TSK.tasks_list(caller_id).dma_id'first or dma_descriptor > TSK.tasks_list(caller_id).num_dma_id then pragma DEBUG (debug.log (debug.ERROR, "svc_dma_disable(): invalid descriptor")); goto ret_inval; end if; ewok.dma.disable_dma_stream (TSK.tasks_list(caller_id).dma_id(dma_descriptor)); set_return_value (caller_id, mode, SYS_E_DONE); ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE); return; <<ret_inval>> set_return_value (caller_id, mode, SYS_E_INVAL); ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE); return; <<ret_denied>> set_return_value (caller_id, mode, SYS_E_DENIED); ewok.tasks.set_state (caller_id, mode, TASK_STATE_RUNNABLE); return; end svc_dma_disable; end ewok.syscalls.dma;
33.995338
113
0.639262
5036b0cd833ba1f81bb07cc282e2e0db525240f6
2,563
ads
Ada
Validation/pyFrame3DD-master/gcc-master/gcc/ada/mdll-fil.ads
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/mdll-fil.ads
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/mdll-fil.ads
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- M D L L . F I L E S -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2020, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING3. If not, go to -- -- http://www.gnu.org/licenses for a complete copy of the license. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Simple services used by GNATDLL to deal with Filename extension package MDLL.Fil is No_Ext : constant String := ""; -- Used to mark the absence of an extension function Get_Ext (Filename : String) return String; -- Return extension of Filename function Is_Ali (Filename : String) return Boolean; -- Test if Filename is an Ada library file (.ali) function Is_Obj (Filename : String) return Boolean; -- Test if Filename is an object file (.o or .obj) function Ext_To (Filename : String; New_Ext : String := No_Ext) return String; -- Return Filename with the extension change to New_Ext end MDLL.Fil;
52.306122
78
0.447913
0e117949a91a982818972ea9abcb83a14579e71b
6,972
ads
Ada
include/sf-graphics-view.ads
danva994/ASFML-1.6
bd74ae700843338a15aef295f99297b866aa0c93
[ "Zlib" ]
1
2017-10-07T06:20:38.000Z
2017-10-07T06:20:38.000Z
include/sf-graphics-view.ads
danva994/ASFML-1.6
bd74ae700843338a15aef295f99297b866aa0c93
[ "Zlib" ]
3
2020-09-15T21:19:34.000Z
2022-03-02T23:13:46.000Z
include/sf-graphics-view.ads
danva994/ASFML-1.6
bd74ae700843338a15aef295f99297b866aa0c93
[ "Zlib" ]
2
2020-09-26T21:16:43.000Z
2022-01-16T19:36:48.000Z
-- //////////////////////////////////////////////////////////// -- // -- // SFML - Simple and Fast Multimedia Library -- // Copyright (C) 2007-2009 Laurent Gomila ([email protected]) -- // -- // This software is provided 'as-is', without any express or implied warranty. -- // In no event will the authors be held liable for any damages arising from the use of this software. -- // -- // Permission is granted to anyone to use this software for any purpose, -- // including commercial applications, and to alter it and redistribute it freely, -- // subject to the following restrictions: -- // -- // 1. The origin of this software must not be misrepresented; -- // you must not claim that you wrote the original software. -- // If you use this software in a product, an acknowledgment -- // in the product documentation would be appreciated but is not required. -- // -- // 2. Altered source versions must be plainly marked as such, -- // and must not be misrepresented as being the original software. -- // -- // 3. This notice may not be removed or altered from any source distribution. -- // -- //////////////////////////////////////////////////////////// -- //////////////////////////////////////////////////////////// -- // Headers -- //////////////////////////////////////////////////////////// with Sf.Graphics.Rect; with Sf.Graphics.Types; package Sf.Graphics.View is use Sf.Graphics.Rect; use Sf.Graphics.Types; -- //////////////////////////////////////////////////////////// -- /// Construct a default view (1000x1000) -- /// -- //////////////////////////////////////////////////////////// function sfView_Create return sfView_Ptr; -- //////////////////////////////////////////////////////////// -- /// Construct a view from a rectangle -- /// -- /// \param Rect : Rectangle defining the bounds of the view -- /// -- //////////////////////////////////////////////////////////// function sfView_CreateFromRect (Rect : sfFloatRect) return sfView_Ptr; -- //////////////////////////////////////////////////////////// -- /// Destroy an existing view -- /// -- /// \param View : View to destroy -- /// -- //////////////////////////////////////////////////////////// procedure sfView_Destroy (View : sfView_Ptr); -- //////////////////////////////////////////////////////////// -- /// Change the center of a view -- /// -- /// \param View : View to modify -- /// \param X : X coordinate of the new center -- /// \param Y : Y coordinate of the new center -- /// -- //////////////////////////////////////////////////////////// procedure sfView_SetCenter (View : sfView_Ptr; X, Y : Float); -- //////////////////////////////////////////////////////////// -- /// Change the half-size of a view -- /// -- /// \param View : View to modify -- /// \param HalfWidth : New half-width -- /// \param HalfHeight : New half-height -- /// -- //////////////////////////////////////////////////////////// procedure sfView_SetHalfSize (View : sfView_Ptr; HalfWidth, HalfHeight : Float); -- //////////////////////////////////////////////////////////// -- /// Rebuild a view from a rectangle -- /// -- /// \param View : View to modify -- /// \param ViewRect : Rectangle defining the position and size of the view -- /// -- //////////////////////////////////////////////////////////// procedure sfView_SetFromRect (View : sfView_Ptr; ViewRect : sfFloatRect); -- //////////////////////////////////////////////////////////// -- /// Get the X coordinate of the center of a view -- /// -- /// \param View : View to read -- /// -- /// \return X coordinate of the center of the view -- /// -- //////////////////////////////////////////////////////////// function sfView_GetCenterX (View : sfView_Ptr) return Float; -- //////////////////////////////////////////////////////////// -- /// Get the Y coordinate of the center of a view -- /// -- /// \param View : View to read -- /// -- /// \return Y coordinate of the center of the view -- /// -- //////////////////////////////////////////////////////////// function sfView_GetCenterY (View : sfView_Ptr) return Float; -- //////////////////////////////////////////////////////////// -- /// Get the half-width of the view -- /// -- /// \param View : View to read -- /// -- /// \return Half-width of the view -- /// -- //////////////////////////////////////////////////////////// function sfView_GetHalfSizeX (View : sfView_Ptr) return Float; -- //////////////////////////////////////////////////////////// -- /// Get the half-height of the view -- /// -- /// \param View : View to read -- /// -- /// \return Half-height of the view -- /// -- //////////////////////////////////////////////////////////// function sfView_GetHalfSizeY (View : sfView_Ptr) return Float; -- //////////////////////////////////////////////////////////// -- /// Get the bounding rectangle of a view -- /// -- /// \param View : View to read -- /// -- /// \return Bounding rectangle of the view -- /// -- //////////////////////////////////////////////////////////// function sfView_GetRect (View : sfView_Ptr) return sfFloatRect; -- //////////////////////////////////////////////////////////// -- /// Move a view -- /// -- /// \param View : View to move -- /// \param OffsetX : Offset to move the view, on X axis -- /// \param OffsetY : Offset to move the view, on Y axis -- /// -- //////////////////////////////////////////////////////////// procedure sfView_Move (View : sfView_Ptr; OffsetX, OffsetY : Float); -- //////////////////////////////////////////////////////////// -- /// Resize a view rectangle to simulate a zoom / unzoom effect -- /// -- /// \param View : View to zoom -- /// \param Factor : Zoom factor to apply, relative to the current zoom -- /// -- //////////////////////////////////////////////////////////// procedure sfView_Zoom (View : sfView_Ptr; Factor : Float); private pragma Import (C, sfView_Create, "sfView_Create"); pragma Import (C, sfView_CreateFromRect, "sfView_CreateFromRect"); pragma Import (C, sfView_Destroy, "sfView_Destroy"); pragma Import (C, sfView_SetCenter, "sfView_SetCenter"); pragma Import (C, sfView_SetHalfSize, "sfView_SetHalfSize"); pragma Import (C, sfView_SetFromRect, "sfView_SetFromRect"); pragma Import (C, sfView_GetCenterX, "sfView_GetCenterX"); pragma Import (C, sfView_GetCenterY, "sfView_GetCenterY"); pragma Import (C, sfView_GetHalfSizeX, "sfView_GetHalfSizeX"); pragma Import (C, sfView_GetHalfSizeY, "sfView_GetHalfSizeY"); pragma Import (C, sfView_GetRect, "sfView_GetRect"); pragma Import (C, sfView_Move, "sfView_Move"); pragma Import (C, sfView_Zoom, "sfView_Zoom"); end Sf.Graphics.View;
40.534884
104
0.45611
18ca41d312b91176973a2ae89e094eac4ec46f3f
4,338
adb
Ada
src/sys/os-unix/util-streams-raw.adb
yrashk/ada-util
2aaa1d87e92a7137e1c63dce90f0722c549dfafd
[ "Apache-2.0" ]
60
2015-01-18T23:05:34.000Z
2022-03-20T18:56:30.000Z
src/sys/os-unix/util-streams-raw.adb
yrashk/ada-util
2aaa1d87e92a7137e1c63dce90f0722c549dfafd
[ "Apache-2.0" ]
20
2016-09-15T16:41:30.000Z
2022-03-29T22:02:32.000Z
src/sys/os-unix/util-streams-raw.adb
yrashk/ada-util
2aaa1d87e92a7137e1c63dce90f0722c549dfafd
[ "Apache-2.0" ]
10
2015-02-13T04:00:45.000Z
2022-03-20T18:57:54.000Z
----------------------------------------------------------------------- -- util-streams-raw -- Raw streams (OS specific) -- Copyright (C) 2011, 2016, 2018, 2019 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Ada.IO_Exceptions; with Interfaces.C; package body Util.Streams.Raw is use Util.Systems.Os; use type Util.Systems.Types.File_Type; -- GNAT 2018 issues a warning due to the use type Interfaces.C.int clause. -- But gcc 7.3 and older fails to compile and requires this use clause. pragma Warnings (Off); use type Interfaces.C.int; pragma Warnings (On); -- ----------------------- -- Initialize the raw stream to read and write on the given file descriptor. -- ----------------------- procedure Initialize (Stream : in out Raw_Stream; File : in File_Type) is begin if Stream.File /= NO_FILE then raise Ada.IO_Exceptions.Status_Error; end if; Stream.File := File; end Initialize; -- ----------------------- -- Get the file descriptor associated with the stream. -- ----------------------- function Get_File (Stream : in Raw_Stream) return Util.Systems.Os.File_Type is begin return Stream.File; end Get_File; -- ----------------------- -- Set the file descriptor to be used by the stream. -- ----------------------- procedure Set_File (Stream : in out Raw_Stream; File : in Util.Systems.Os.File_Type) is begin Stream.File := File; end Set_File; -- ----------------------- -- Close the stream. -- ----------------------- overriding procedure Close (Stream : in out Raw_Stream) is begin if Stream.File /= NO_FILE then if Close (Stream.File) /= 0 then raise Ada.IO_Exceptions.Device_Error; end if; Stream.File := NO_FILE; end if; end Close; -- ----------------------- -- Write the buffer array to the output stream. -- ----------------------- procedure Write (Stream : in out Raw_Stream; Buffer : in Ada.Streams.Stream_Element_Array) is begin if Write (Stream.File, Buffer'Address, Buffer'Length) < 0 then raise Ada.IO_Exceptions.Device_Error; end if; end Write; -- ----------------------- -- Read into the buffer as many bytes as possible and return in -- <b>last</b> the position of the last byte read. -- ----------------------- procedure Read (Stream : in out Raw_Stream; Into : out Ada.Streams.Stream_Element_Array; Last : out Ada.Streams.Stream_Element_Offset) is Res : Ssize_T; begin Res := Read (Stream.File, Into'Address, Into'Length); if Res < 0 then raise Ada.IO_Exceptions.Device_Error; end if; Last := Into'First + Ada.Streams.Stream_Element_Offset (Res) - 1; end Read; -- ----------------------- -- Reposition the read/write file offset. -- ----------------------- procedure Seek (Stream : in out Raw_Stream; Pos : in Util.Systems.Types.off_t; Mode : in Util.Systems.Types.Seek_Mode) is -- use type Util.Systems.Types.off_t; Res : Util.Systems.Types.off_t; begin Res := Sys_Lseek (Stream.File, Pos, Mode); if Res < 0 then raise Ada.IO_Exceptions.Device_Error; end if; end Seek; -- ----------------------- -- Flush the stream and release the buffer. -- ----------------------- procedure Finalize (Object : in out Raw_Stream) is begin Close (Object); end Finalize; end Util.Streams.Raw;
34.15748
81
0.557169
df5b3a308abfd23bb7fedfed071a50df6c08d0d8
4,357
adb
Ada
samples/asf_volume_server.adb
Letractively/ada-asf
da9f85f85666eba7e23fefea661160863b74154d
[ "Apache-2.0" ]
null
null
null
samples/asf_volume_server.adb
Letractively/ada-asf
da9f85f85666eba7e23fefea661160863b74154d
[ "Apache-2.0" ]
null
null
null
samples/asf_volume_server.adb
Letractively/ada-asf
da9f85f85666eba7e23fefea661160863b74154d
[ "Apache-2.0" ]
null
null
null
----------------------------------------------------------------------- -- asf_volume_server -- The volume_server application with Ada Server Faces -- Copyright (C) 2010, 2011, 2012 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Ada.IO_Exceptions; with ASF.Server.Web; with ASF.Servlets; with ASF.Servlets.Faces; with ASF.Servlets.Files; with ASF.Servlets.Measures; with ASF.Filters.Dump; with ASF.Beans; with ASF.Applications; with ASF.Applications.Main; with ASF.Applications.Main.Configs; with Util.Beans.Objects; with Util.Log.Loggers; with Countries; with Volume; with Messages; procedure Asf_Volume_Server is CONTEXT_PATH : constant String := "/volume"; CONFIG_PATH : constant String := "samples.properties"; Log : Util.Log.Loggers.Logger := Util.Log.Loggers.Create ("Openid"); Factory : ASF.Applications.Main.Application_Factory; App : aliased ASF.Applications.Main.Application; Faces : aliased ASF.Servlets.Faces.Faces_Servlet; Files : aliased ASF.Servlets.Files.File_Servlet; Perf : aliased ASF.Servlets.Measures.Measure_Servlet; Dump : aliased ASF.Filters.Dump.Dump_Filter; Bean : aliased Volume.Compute_Bean; Conv : aliased Volume.Float_Converter; WS : ASF.Server.Web.AWS_Container; C : ASF.Applications.Config; None : ASF.Beans.Parameter_Bean_Ref.Ref; begin C.Set (ASF.Applications.VIEW_EXT, ".html"); C.Set (ASF.Applications.VIEW_DIR, "samples/web"); C.Set ("web.dir", "samples/web"); begin C.Load_Properties (CONFIG_PATH); exception when Ada.IO_Exceptions.Name_Error => Log.Error ("Cannot read application configuration file {0}", CONFIG_PATH); end; App.Initialize (C, Factory); App.Set_Global ("contextPath", CONTEXT_PATH); App.Set_Global ("compute", Util.Beans.Objects.To_Object (Bean'Unchecked_Access, Util.Beans.Objects.STATIC)); App.Set_Global ("countries", Util.Beans.Objects.To_Object (Countries.Create_Country_List)); -- Declare a global bean to identify this sample from within the XHTML files. App.Set_Global ("sampleName", "volume"); -- Register the servlets and filters App.Add_Servlet (Name => "faces", Server => Faces'Unchecked_Access); App.Add_Servlet (Name => "files", Server => Files'Unchecked_Access); App.Add_Filter (Name => "dump", Filter => Dump'Unchecked_Access); App.Add_Servlet (Name => "perf", Server => Perf'Unchecked_Access); App.Add_Filter (Name => "perf", Filter => Perf'Unchecked_Access); -- Define servlet mappings App.Add_Mapping (Name => "faces", Pattern => "*.html"); App.Add_Mapping (Name => "files", Pattern => "*.css"); App.Add_Mapping (Name => "files", Pattern => "*.js"); App.Add_Mapping (Name => "files", Pattern => "*.png"); App.Add_Filter_Mapping (Name => "dump", Pattern => "*.html"); App.Add_Filter_Mapping (Name => "dump", Pattern => "*.js"); App.Add_Converter (Name => "float", Converter => Conv'Unchecked_Access); App.Register_Class (Name => "Message_Bean", Handler => Messages.Create_Message_Bean'Access); App.Register_Class (Name => "Message_List", Handler => Messages.Create_Message_List'Access); App.Register (Name => "message", Class => "Message_Bean", Params => None); App.Register (Name => "messages", Class => "Message_List", Params => None); ASF.Applications.Main.Configs.Read_Configuration (App, "samples/web/WEB-INF/web.xml"); WS.Register_Application (CONTEXT_PATH, App'Unchecked_Access); Log.Info ("Connect you browser to: http://localhost:8080/volume/compute.html"); WS.Start; delay 6000.0; end Asf_Volume_Server;
40.342593
95
0.675465
fb53dffdeb0f448a6c3f02a35398d4362faf2763
47
ads
Ada
specs/ada/server/tkmrpc-servers.ads
DrenfongWong/tkm-rpc
075d22871cf81d497aac656c7f03a513278b641c
[ "BSD-3-Clause" ]
null
null
null
specs/ada/server/tkmrpc-servers.ads
DrenfongWong/tkm-rpc
075d22871cf81d497aac656c7f03a513278b641c
[ "BSD-3-Clause" ]
null
null
null
specs/ada/server/tkmrpc-servers.ads
DrenfongWong/tkm-rpc
075d22871cf81d497aac656c7f03a513278b641c
[ "BSD-3-Clause" ]
null
null
null
package Tkmrpc.Servers is end Tkmrpc.Servers;
11.75
25
0.808511
df8784043c5c166ee53b9027789cdebfcd1ce89d
2,648
ads
Ada
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/g-timsta.ads
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/g-timsta.ads
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/g-timsta.ads
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- G N A T . T I M E _ S T A M P -- -- -- -- S p e c -- -- -- -- Copyright (C) 2008-2020, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package provides a lightweight mechanism for obtaining time stamps package GNAT.Time_Stamp is function Current_Time return String; -- Return the current local time in the following ISO 8601 string format: -- YYYY-MM-DD HH:MM:SS.SS end GNAT.Time_Stamp;
64.585366
78
0.405211
1064718b7570b774224ceba1cb4b1ac903aa78d9
101
adb
Ada
hello.adb
roninmorata/doja-cat-linux
ba8a7f646432d77cd82cf73ad4d4d8c049b5514a
[ "BSD-2-Clause" ]
33
2018-07-29T18:03:42.000Z
2022-02-13T10:59:16.000Z
hello.adb
roninmorata/doja-cat-linux
ba8a7f646432d77cd82cf73ad4d4d8c049b5514a
[ "BSD-2-Clause" ]
null
null
null
hello.adb
roninmorata/doja-cat-linux
ba8a7f646432d77cd82cf73ad4d4d8c049b5514a
[ "BSD-2-Clause" ]
8
2018-07-29T19:01:15.000Z
2022-02-21T04:17:07.000Z
with Ada.Text_IO; use Ada.Text_IO; procedure Hello is begin Put_Line ("Hello WORLD!"); end Hello;
16.833333
34
0.732673
10c2b237b8f578b9f3ebbd83a77bce39b260144b
58,719
adb
Ada
gcc-gcc-7_3_0-release/gcc/ada/a-stwisu.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/ada/a-stwisu.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/ada/a-stwisu.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . S T R I N G S . W I D E _ S U P E R B O U N D E D -- -- -- -- B o d y -- -- -- -- Copyright (C) 2003-2012, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Ada.Strings.Wide_Maps; use Ada.Strings.Wide_Maps; with Ada.Strings.Wide_Search; package body Ada.Strings.Wide_Superbounded is ------------ -- Concat -- ------------ function Concat (Left : Super_String; Right : Super_String) return Super_String is begin return Result : Super_String (Left.Max_Length) do declare Llen : constant Natural := Left.Current_Length; Rlen : constant Natural := Right.Current_Length; Nlen : constant Natural := Llen + Rlen; begin if Nlen > Left.Max_Length then raise Ada.Strings.Length_Error; else Result.Current_Length := Nlen; Result.Data (1 .. Llen) := Left.Data (1 .. Llen); Result.Data (Llen + 1 .. Nlen) := Right.Data (1 .. Rlen); end if; end; end return; end Concat; function Concat (Left : Super_String; Right : Wide_String) return Super_String is begin return Result : Super_String (Left.Max_Length) do declare Llen : constant Natural := Left.Current_Length; Nlen : constant Natural := Llen + Right'Length; begin if Nlen > Left.Max_Length then raise Ada.Strings.Length_Error; else Result.Current_Length := Nlen; Result.Data (1 .. Llen) := Left.Data (1 .. Llen); Result.Data (Llen + 1 .. Nlen) := Right; end if; end; end return; end Concat; function Concat (Left : Wide_String; Right : Super_String) return Super_String is begin return Result : Super_String (Right.Max_Length) do declare Llen : constant Natural := Left'Length; Rlen : constant Natural := Right.Current_Length; Nlen : constant Natural := Llen + Rlen; begin if Nlen > Right.Max_Length then raise Ada.Strings.Length_Error; else Result.Current_Length := Nlen; Result.Data (1 .. Llen) := Left; Result.Data (Llen + 1 .. Nlen) := Right.Data (1 .. Rlen); end if; end; end return; end Concat; function Concat (Left : Super_String; Right : Wide_Character) return Super_String is begin return Result : Super_String (Left.Max_Length) do declare Llen : constant Natural := Left.Current_Length; begin if Llen = Left.Max_Length then raise Ada.Strings.Length_Error; else Result.Current_Length := Llen + 1; Result.Data (1 .. Llen) := Left.Data (1 .. Llen); Result.Data (Result.Current_Length) := Right; end if; end; end return; end Concat; function Concat (Left : Wide_Character; Right : Super_String) return Super_String is begin return Result : Super_String (Right.Max_Length) do declare Rlen : constant Natural := Right.Current_Length; begin if Rlen = Right.Max_Length then raise Ada.Strings.Length_Error; else Result.Current_Length := Rlen + 1; Result.Data (1) := Left; Result.Data (2 .. Result.Current_Length) := Right.Data (1 .. Rlen); end if; end; end return; end Concat; ----------- -- Equal -- ----------- function "=" (Left : Super_String; Right : Super_String) return Boolean is begin return Left.Current_Length = Right.Current_Length and then Left.Data (1 .. Left.Current_Length) = Right.Data (1 .. Right.Current_Length); end "="; function Equal (Left : Super_String; Right : Wide_String) return Boolean is begin return Left.Current_Length = Right'Length and then Left.Data (1 .. Left.Current_Length) = Right; end Equal; function Equal (Left : Wide_String; Right : Super_String) return Boolean is begin return Left'Length = Right.Current_Length and then Left = Right.Data (1 .. Right.Current_Length); end Equal; ------------- -- Greater -- ------------- function Greater (Left : Super_String; Right : Super_String) return Boolean is begin return Left.Data (1 .. Left.Current_Length) > Right.Data (1 .. Right.Current_Length); end Greater; function Greater (Left : Super_String; Right : Wide_String) return Boolean is begin return Left.Data (1 .. Left.Current_Length) > Right; end Greater; function Greater (Left : Wide_String; Right : Super_String) return Boolean is begin return Left > Right.Data (1 .. Right.Current_Length); end Greater; ---------------------- -- Greater_Or_Equal -- ---------------------- function Greater_Or_Equal (Left : Super_String; Right : Super_String) return Boolean is begin return Left.Data (1 .. Left.Current_Length) >= Right.Data (1 .. Right.Current_Length); end Greater_Or_Equal; function Greater_Or_Equal (Left : Super_String; Right : Wide_String) return Boolean is begin return Left.Data (1 .. Left.Current_Length) >= Right; end Greater_Or_Equal; function Greater_Or_Equal (Left : Wide_String; Right : Super_String) return Boolean is begin return Left >= Right.Data (1 .. Right.Current_Length); end Greater_Or_Equal; ---------- -- Less -- ---------- function Less (Left : Super_String; Right : Super_String) return Boolean is begin return Left.Data (1 .. Left.Current_Length) < Right.Data (1 .. Right.Current_Length); end Less; function Less (Left : Super_String; Right : Wide_String) return Boolean is begin return Left.Data (1 .. Left.Current_Length) < Right; end Less; function Less (Left : Wide_String; Right : Super_String) return Boolean is begin return Left < Right.Data (1 .. Right.Current_Length); end Less; ------------------- -- Less_Or_Equal -- ------------------- function Less_Or_Equal (Left : Super_String; Right : Super_String) return Boolean is begin return Left.Data (1 .. Left.Current_Length) <= Right.Data (1 .. Right.Current_Length); end Less_Or_Equal; function Less_Or_Equal (Left : Super_String; Right : Wide_String) return Boolean is begin return Left.Data (1 .. Left.Current_Length) <= Right; end Less_Or_Equal; function Less_Or_Equal (Left : Wide_String; Right : Super_String) return Boolean is begin return Left <= Right.Data (1 .. Right.Current_Length); end Less_Or_Equal; ---------------------- -- Set_Super_String -- ---------------------- procedure Set_Super_String (Target : out Super_String; Source : Wide_String; Drop : Truncation := Error) is Slen : constant Natural := Source'Length; Max_Length : constant Positive := Target.Max_Length; begin if Slen <= Max_Length then Target.Current_Length := Slen; Target.Data (1 .. Slen) := Source; else case Drop is when Strings.Right => Target.Current_Length := Max_Length; Target.Data (1 .. Max_Length) := Source (Source'First .. Source'First - 1 + Max_Length); when Strings.Left => Target.Current_Length := Max_Length; Target.Data (1 .. Max_Length) := Source (Source'Last - (Max_Length - 1) .. Source'Last); when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; end Set_Super_String; ------------------ -- Super_Append -- ------------------ -- Case of Super_String and Super_String function Super_Append (Left : Super_String; Right : Super_String; Drop : Strings.Truncation := Strings.Error) return Super_String is Max_Length : constant Positive := Left.Max_Length; Result : Super_String (Max_Length); Llen : constant Natural := Left.Current_Length; Rlen : constant Natural := Right.Current_Length; Nlen : constant Natural := Llen + Rlen; begin if Nlen <= Max_Length then Result.Current_Length := Nlen; Result.Data (1 .. Llen) := Left.Data (1 .. Llen); Result.Data (Llen + 1 .. Nlen) := Right.Data (1 .. Rlen); else Result.Current_Length := Max_Length; case Drop is when Strings.Right => if Llen >= Max_Length then -- only case is Llen = Max_Length Result.Data := Left.Data; else Result.Data (1 .. Llen) := Left.Data (1 .. Llen); Result.Data (Llen + 1 .. Max_Length) := Right.Data (1 .. Max_Length - Llen); end if; when Strings.Left => if Rlen >= Max_Length then -- only case is Rlen = Max_Length Result.Data := Right.Data; else Result.Data (1 .. Max_Length - Rlen) := Left.Data (Llen - (Max_Length - Rlen - 1) .. Llen); Result.Data (Max_Length - Rlen + 1 .. Max_Length) := Right.Data (1 .. Rlen); end if; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; return Result; end Super_Append; procedure Super_Append (Source : in out Super_String; New_Item : Super_String; Drop : Truncation := Error) is Max_Length : constant Positive := Source.Max_Length; Llen : constant Natural := Source.Current_Length; Rlen : constant Natural := New_Item.Current_Length; Nlen : constant Natural := Llen + Rlen; begin if Nlen <= Max_Length then Source.Current_Length := Nlen; Source.Data (Llen + 1 .. Nlen) := New_Item.Data (1 .. Rlen); else Source.Current_Length := Max_Length; case Drop is when Strings.Right => if Llen < Max_Length then Source.Data (Llen + 1 .. Max_Length) := New_Item.Data (1 .. Max_Length - Llen); end if; when Strings.Left => if Rlen >= Max_Length then -- only case is Rlen = Max_Length Source.Data := New_Item.Data; else Source.Data (1 .. Max_Length - Rlen) := Source.Data (Llen - (Max_Length - Rlen - 1) .. Llen); Source.Data (Max_Length - Rlen + 1 .. Max_Length) := New_Item.Data (1 .. Rlen); end if; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; end Super_Append; -- Case of Super_String and Wide_String function Super_Append (Left : Super_String; Right : Wide_String; Drop : Strings.Truncation := Strings.Error) return Super_String is Max_Length : constant Positive := Left.Max_Length; Result : Super_String (Max_Length); Llen : constant Natural := Left.Current_Length; Rlen : constant Natural := Right'Length; Nlen : constant Natural := Llen + Rlen; begin if Nlen <= Max_Length then Result.Current_Length := Nlen; Result.Data (1 .. Llen) := Left.Data (1 .. Llen); Result.Data (Llen + 1 .. Nlen) := Right; else Result.Current_Length := Max_Length; case Drop is when Strings.Right => if Llen >= Max_Length then -- only case is Llen = Max_Length Result.Data := Left.Data; else Result.Data (1 .. Llen) := Left.Data (1 .. Llen); Result.Data (Llen + 1 .. Max_Length) := Right (Right'First .. Right'First - 1 + Max_Length - Llen); end if; when Strings.Left => if Rlen >= Max_Length then Result.Data (1 .. Max_Length) := Right (Right'Last - (Max_Length - 1) .. Right'Last); else Result.Data (1 .. Max_Length - Rlen) := Left.Data (Llen - (Max_Length - Rlen - 1) .. Llen); Result.Data (Max_Length - Rlen + 1 .. Max_Length) := Right; end if; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; return Result; end Super_Append; procedure Super_Append (Source : in out Super_String; New_Item : Wide_String; Drop : Truncation := Error) is Max_Length : constant Positive := Source.Max_Length; Llen : constant Natural := Source.Current_Length; Rlen : constant Natural := New_Item'Length; Nlen : constant Natural := Llen + Rlen; begin if Nlen <= Max_Length then Source.Current_Length := Nlen; Source.Data (Llen + 1 .. Nlen) := New_Item; else Source.Current_Length := Max_Length; case Drop is when Strings.Right => if Llen < Max_Length then Source.Data (Llen + 1 .. Max_Length) := New_Item (New_Item'First .. New_Item'First - 1 + Max_Length - Llen); end if; when Strings.Left => if Rlen >= Max_Length then Source.Data (1 .. Max_Length) := New_Item (New_Item'Last - (Max_Length - 1) .. New_Item'Last); else Source.Data (1 .. Max_Length - Rlen) := Source.Data (Llen - (Max_Length - Rlen - 1) .. Llen); Source.Data (Max_Length - Rlen + 1 .. Max_Length) := New_Item; end if; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; end Super_Append; -- Case of Wide_String and Super_String function Super_Append (Left : Wide_String; Right : Super_String; Drop : Strings.Truncation := Strings.Error) return Super_String is Max_Length : constant Positive := Right.Max_Length; Result : Super_String (Max_Length); Llen : constant Natural := Left'Length; Rlen : constant Natural := Right.Current_Length; Nlen : constant Natural := Llen + Rlen; begin if Nlen <= Max_Length then Result.Current_Length := Nlen; Result.Data (1 .. Llen) := Left; Result.Data (Llen + 1 .. Llen + Rlen) := Right.Data (1 .. Rlen); else Result.Current_Length := Max_Length; case Drop is when Strings.Right => if Llen >= Max_Length then Result.Data (1 .. Max_Length) := Left (Left'First .. Left'First + (Max_Length - 1)); else Result.Data (1 .. Llen) := Left; Result.Data (Llen + 1 .. Max_Length) := Right.Data (1 .. Max_Length - Llen); end if; when Strings.Left => if Rlen >= Max_Length then Result.Data (1 .. Max_Length) := Right.Data (Rlen - (Max_Length - 1) .. Rlen); else Result.Data (1 .. Max_Length - Rlen) := Left (Left'Last - (Max_Length - Rlen - 1) .. Left'Last); Result.Data (Max_Length - Rlen + 1 .. Max_Length) := Right.Data (1 .. Rlen); end if; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; return Result; end Super_Append; -- Case of Super_String and Wide_Character function Super_Append (Left : Super_String; Right : Wide_Character; Drop : Strings.Truncation := Strings.Error) return Super_String is Max_Length : constant Positive := Left.Max_Length; Result : Super_String (Max_Length); Llen : constant Natural := Left.Current_Length; begin if Llen < Max_Length then Result.Current_Length := Llen + 1; Result.Data (1 .. Llen) := Left.Data (1 .. Llen); Result.Data (Llen + 1) := Right; return Result; else case Drop is when Strings.Right => return Left; when Strings.Left => Result.Current_Length := Max_Length; Result.Data (1 .. Max_Length - 1) := Left.Data (2 .. Max_Length); Result.Data (Max_Length) := Right; return Result; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; end Super_Append; procedure Super_Append (Source : in out Super_String; New_Item : Wide_Character; Drop : Truncation := Error) is Max_Length : constant Positive := Source.Max_Length; Llen : constant Natural := Source.Current_Length; begin if Llen < Max_Length then Source.Current_Length := Llen + 1; Source.Data (Llen + 1) := New_Item; else Source.Current_Length := Max_Length; case Drop is when Strings.Right => null; when Strings.Left => Source.Data (1 .. Max_Length - 1) := Source.Data (2 .. Max_Length); Source.Data (Max_Length) := New_Item; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; end Super_Append; -- Case of Wide_Character and Super_String function Super_Append (Left : Wide_Character; Right : Super_String; Drop : Strings.Truncation := Strings.Error) return Super_String is Max_Length : constant Positive := Right.Max_Length; Result : Super_String (Max_Length); Rlen : constant Natural := Right.Current_Length; begin if Rlen < Max_Length then Result.Current_Length := Rlen + 1; Result.Data (1) := Left; Result.Data (2 .. Rlen + 1) := Right.Data (1 .. Rlen); return Result; else case Drop is when Strings.Right => Result.Current_Length := Max_Length; Result.Data (1) := Left; Result.Data (2 .. Max_Length) := Right.Data (1 .. Max_Length - 1); return Result; when Strings.Left => return Right; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; end Super_Append; ----------------- -- Super_Count -- ----------------- function Super_Count (Source : Super_String; Pattern : Wide_String; Mapping : Wide_Maps.Wide_Character_Mapping := Wide_Maps.Identity) return Natural is begin return Wide_Search.Count (Source.Data (1 .. Source.Current_Length), Pattern, Mapping); end Super_Count; function Super_Count (Source : Super_String; Pattern : Wide_String; Mapping : Wide_Maps.Wide_Character_Mapping_Function) return Natural is begin return Wide_Search.Count (Source.Data (1 .. Source.Current_Length), Pattern, Mapping); end Super_Count; function Super_Count (Source : Super_String; Set : Wide_Maps.Wide_Character_Set) return Natural is begin return Wide_Search.Count (Source.Data (1 .. Source.Current_Length), Set); end Super_Count; ------------------ -- Super_Delete -- ------------------ function Super_Delete (Source : Super_String; From : Positive; Through : Natural) return Super_String is Result : Super_String (Source.Max_Length); Slen : constant Natural := Source.Current_Length; Num_Delete : constant Integer := Through - From + 1; begin if Num_Delete <= 0 then return Source; elsif From > Slen + 1 then raise Ada.Strings.Index_Error; elsif Through >= Slen then Result.Current_Length := From - 1; Result.Data (1 .. From - 1) := Source.Data (1 .. From - 1); return Result; else Result.Current_Length := Slen - Num_Delete; Result.Data (1 .. From - 1) := Source.Data (1 .. From - 1); Result.Data (From .. Result.Current_Length) := Source.Data (Through + 1 .. Slen); return Result; end if; end Super_Delete; procedure Super_Delete (Source : in out Super_String; From : Positive; Through : Natural) is Slen : constant Natural := Source.Current_Length; Num_Delete : constant Integer := Through - From + 1; begin if Num_Delete <= 0 then return; elsif From > Slen + 1 then raise Ada.Strings.Index_Error; elsif Through >= Slen then Source.Current_Length := From - 1; else Source.Current_Length := Slen - Num_Delete; Source.Data (From .. Source.Current_Length) := Source.Data (Through + 1 .. Slen); end if; end Super_Delete; ------------------- -- Super_Element -- ------------------- function Super_Element (Source : Super_String; Index : Positive) return Wide_Character is begin if Index <= Source.Current_Length then return Source.Data (Index); else raise Strings.Index_Error; end if; end Super_Element; ---------------------- -- Super_Find_Token -- ---------------------- procedure Super_Find_Token (Source : Super_String; Set : Wide_Maps.Wide_Character_Set; From : Positive; Test : Strings.Membership; First : out Positive; Last : out Natural) is begin Wide_Search.Find_Token (Source.Data (From .. Source.Current_Length), Set, Test, First, Last); end Super_Find_Token; procedure Super_Find_Token (Source : Super_String; Set : Wide_Maps.Wide_Character_Set; Test : Strings.Membership; First : out Positive; Last : out Natural) is begin Wide_Search.Find_Token (Source.Data (1 .. Source.Current_Length), Set, Test, First, Last); end Super_Find_Token; ---------------- -- Super_Head -- ---------------- function Super_Head (Source : Super_String; Count : Natural; Pad : Wide_Character := Wide_Space; Drop : Strings.Truncation := Strings.Error) return Super_String is Max_Length : constant Positive := Source.Max_Length; Result : Super_String (Max_Length); Slen : constant Natural := Source.Current_Length; Npad : constant Integer := Count - Slen; begin if Npad <= 0 then Result.Current_Length := Count; Result.Data (1 .. Count) := Source.Data (1 .. Count); elsif Count <= Max_Length then Result.Current_Length := Count; Result.Data (1 .. Slen) := Source.Data (1 .. Slen); Result.Data (Slen + 1 .. Count) := (others => Pad); else Result.Current_Length := Max_Length; case Drop is when Strings.Right => Result.Data (1 .. Slen) := Source.Data (1 .. Slen); Result.Data (Slen + 1 .. Max_Length) := (others => Pad); when Strings.Left => if Npad >= Max_Length then Result.Data := (others => Pad); else Result.Data (1 .. Max_Length - Npad) := Source.Data (Count - Max_Length + 1 .. Slen); Result.Data (Max_Length - Npad + 1 .. Max_Length) := (others => Pad); end if; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; return Result; end Super_Head; procedure Super_Head (Source : in out Super_String; Count : Natural; Pad : Wide_Character := Wide_Space; Drop : Truncation := Error) is Max_Length : constant Positive := Source.Max_Length; Slen : constant Natural := Source.Current_Length; Npad : constant Integer := Count - Slen; Temp : Wide_String (1 .. Max_Length); begin if Npad <= 0 then Source.Current_Length := Count; elsif Count <= Max_Length then Source.Current_Length := Count; Source.Data (Slen + 1 .. Count) := (others => Pad); else Source.Current_Length := Max_Length; case Drop is when Strings.Right => Source.Data (Slen + 1 .. Max_Length) := (others => Pad); when Strings.Left => if Npad > Max_Length then Source.Data := (others => Pad); else Temp := Source.Data; Source.Data (1 .. Max_Length - Npad) := Temp (Count - Max_Length + 1 .. Slen); for J in Max_Length - Npad + 1 .. Max_Length loop Source.Data (J) := Pad; end loop; end if; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; end Super_Head; ----------------- -- Super_Index -- ----------------- function Super_Index (Source : Super_String; Pattern : Wide_String; Going : Strings.Direction := Strings.Forward; Mapping : Wide_Maps.Wide_Character_Mapping := Wide_Maps.Identity) return Natural is begin return Wide_Search.Index (Source.Data (1 .. Source.Current_Length), Pattern, Going, Mapping); end Super_Index; function Super_Index (Source : Super_String; Pattern : Wide_String; Going : Direction := Forward; Mapping : Wide_Maps.Wide_Character_Mapping_Function) return Natural is begin return Wide_Search.Index (Source.Data (1 .. Source.Current_Length), Pattern, Going, Mapping); end Super_Index; function Super_Index (Source : Super_String; Set : Wide_Maps.Wide_Character_Set; Test : Strings.Membership := Strings.Inside; Going : Strings.Direction := Strings.Forward) return Natural is begin return Wide_Search.Index (Source.Data (1 .. Source.Current_Length), Set, Test, Going); end Super_Index; function Super_Index (Source : Super_String; Pattern : Wide_String; From : Positive; Going : Direction := Forward; Mapping : Wide_Maps.Wide_Character_Mapping := Wide_Maps.Identity) return Natural is begin return Wide_Search.Index (Source.Data (1 .. Source.Current_Length), Pattern, From, Going, Mapping); end Super_Index; function Super_Index (Source : Super_String; Pattern : Wide_String; From : Positive; Going : Direction := Forward; Mapping : Wide_Maps.Wide_Character_Mapping_Function) return Natural is begin return Wide_Search.Index (Source.Data (1 .. Source.Current_Length), Pattern, From, Going, Mapping); end Super_Index; function Super_Index (Source : Super_String; Set : Wide_Maps.Wide_Character_Set; From : Positive; Test : Membership := Inside; Going : Direction := Forward) return Natural is begin return Wide_Search.Index (Source.Data (1 .. Source.Current_Length), Set, From, Test, Going); end Super_Index; --------------------------- -- Super_Index_Non_Blank -- --------------------------- function Super_Index_Non_Blank (Source : Super_String; Going : Strings.Direction := Strings.Forward) return Natural is begin return Wide_Search.Index_Non_Blank (Source.Data (1 .. Source.Current_Length), Going); end Super_Index_Non_Blank; function Super_Index_Non_Blank (Source : Super_String; From : Positive; Going : Direction := Forward) return Natural is begin return Wide_Search.Index_Non_Blank (Source.Data (1 .. Source.Current_Length), From, Going); end Super_Index_Non_Blank; ------------------ -- Super_Insert -- ------------------ function Super_Insert (Source : Super_String; Before : Positive; New_Item : Wide_String; Drop : Strings.Truncation := Strings.Error) return Super_String is Max_Length : constant Positive := Source.Max_Length; Result : Super_String (Max_Length); Slen : constant Natural := Source.Current_Length; Nlen : constant Natural := New_Item'Length; Tlen : constant Natural := Slen + Nlen; Blen : constant Natural := Before - 1; Alen : constant Integer := Slen - Blen; Droplen : constant Integer := Tlen - Max_Length; -- Tlen is the length of the total string before possible truncation. -- Blen, Alen are the lengths of the before and after pieces of the -- source string. begin if Alen < 0 then raise Ada.Strings.Index_Error; elsif Droplen <= 0 then Result.Current_Length := Tlen; Result.Data (1 .. Blen) := Source.Data (1 .. Blen); Result.Data (Before .. Before + Nlen - 1) := New_Item; Result.Data (Before + Nlen .. Tlen) := Source.Data (Before .. Slen); else Result.Current_Length := Max_Length; case Drop is when Strings.Right => Result.Data (1 .. Blen) := Source.Data (1 .. Blen); if Droplen > Alen then Result.Data (Before .. Max_Length) := New_Item (New_Item'First .. New_Item'First + Max_Length - Before); else Result.Data (Before .. Before + Nlen - 1) := New_Item; Result.Data (Before + Nlen .. Max_Length) := Source.Data (Before .. Slen - Droplen); end if; when Strings.Left => Result.Data (Max_Length - (Alen - 1) .. Max_Length) := Source.Data (Before .. Slen); if Droplen >= Blen then Result.Data (1 .. Max_Length - Alen) := New_Item (New_Item'Last - (Max_Length - Alen) + 1 .. New_Item'Last); else Result.Data (Blen - Droplen + 1 .. Max_Length - Alen) := New_Item; Result.Data (1 .. Blen - Droplen) := Source.Data (Droplen + 1 .. Blen); end if; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; return Result; end Super_Insert; procedure Super_Insert (Source : in out Super_String; Before : Positive; New_Item : Wide_String; Drop : Strings.Truncation := Strings.Error) is begin -- We do a double copy here because this is one of the situations -- in which we move data to the right, and at least at the moment, -- GNAT is not handling such cases correctly ??? Source := Super_Insert (Source, Before, New_Item, Drop); end Super_Insert; ------------------ -- Super_Length -- ------------------ function Super_Length (Source : Super_String) return Natural is begin return Source.Current_Length; end Super_Length; --------------------- -- Super_Overwrite -- --------------------- function Super_Overwrite (Source : Super_String; Position : Positive; New_Item : Wide_String; Drop : Strings.Truncation := Strings.Error) return Super_String is Max_Length : constant Positive := Source.Max_Length; Result : Super_String (Max_Length); Endpos : constant Natural := Position + New_Item'Length - 1; Slen : constant Natural := Source.Current_Length; Droplen : Natural; begin if Position > Slen + 1 then raise Ada.Strings.Index_Error; elsif New_Item'Length = 0 then return Source; elsif Endpos <= Slen then Result.Current_Length := Source.Current_Length; Result.Data (1 .. Slen) := Source.Data (1 .. Slen); Result.Data (Position .. Endpos) := New_Item; return Result; elsif Endpos <= Max_Length then Result.Current_Length := Endpos; Result.Data (1 .. Position - 1) := Source.Data (1 .. Position - 1); Result.Data (Position .. Endpos) := New_Item; return Result; else Result.Current_Length := Max_Length; Droplen := Endpos - Max_Length; case Drop is when Strings.Right => Result.Data (1 .. Position - 1) := Source.Data (1 .. Position - 1); Result.Data (Position .. Max_Length) := New_Item (New_Item'First .. New_Item'Last - Droplen); return Result; when Strings.Left => if New_Item'Length >= Max_Length then Result.Data (1 .. Max_Length) := New_Item (New_Item'Last - Max_Length + 1 .. New_Item'Last); return Result; else Result.Data (1 .. Max_Length - New_Item'Length) := Source.Data (Droplen + 1 .. Position - 1); Result.Data (Max_Length - New_Item'Length + 1 .. Max_Length) := New_Item; return Result; end if; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; end Super_Overwrite; procedure Super_Overwrite (Source : in out Super_String; Position : Positive; New_Item : Wide_String; Drop : Strings.Truncation := Strings.Error) is Max_Length : constant Positive := Source.Max_Length; Endpos : constant Positive := Position + New_Item'Length - 1; Slen : constant Natural := Source.Current_Length; Droplen : Natural; begin if Position > Slen + 1 then raise Ada.Strings.Index_Error; elsif Endpos <= Slen then Source.Data (Position .. Endpos) := New_Item; elsif Endpos <= Max_Length then Source.Data (Position .. Endpos) := New_Item; Source.Current_Length := Endpos; else Source.Current_Length := Max_Length; Droplen := Endpos - Max_Length; case Drop is when Strings.Right => Source.Data (Position .. Max_Length) := New_Item (New_Item'First .. New_Item'Last - Droplen); when Strings.Left => if New_Item'Length > Max_Length then Source.Data (1 .. Max_Length) := New_Item (New_Item'Last - Max_Length + 1 .. New_Item'Last); else Source.Data (1 .. Max_Length - New_Item'Length) := Source.Data (Droplen + 1 .. Position - 1); Source.Data (Max_Length - New_Item'Length + 1 .. Max_Length) := New_Item; end if; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; end Super_Overwrite; --------------------------- -- Super_Replace_Element -- --------------------------- procedure Super_Replace_Element (Source : in out Super_String; Index : Positive; By : Wide_Character) is begin if Index <= Source.Current_Length then Source.Data (Index) := By; else raise Ada.Strings.Index_Error; end if; end Super_Replace_Element; ------------------------- -- Super_Replace_Slice -- ------------------------- function Super_Replace_Slice (Source : Super_String; Low : Positive; High : Natural; By : Wide_String; Drop : Strings.Truncation := Strings.Error) return Super_String is Max_Length : constant Positive := Source.Max_Length; Slen : constant Natural := Source.Current_Length; begin if Low > Slen + 1 then raise Strings.Index_Error; elsif High < Low then return Super_Insert (Source, Low, By, Drop); else declare Blen : constant Natural := Natural'Max (0, Low - 1); Alen : constant Natural := Natural'Max (0, Slen - High); Tlen : constant Natural := Blen + By'Length + Alen; Droplen : constant Integer := Tlen - Max_Length; Result : Super_String (Max_Length); -- Tlen is the total length of the result string before any -- truncation. Blen and Alen are the lengths of the pieces -- of the original string that end up in the result string -- before and after the replaced slice. begin if Droplen <= 0 then Result.Current_Length := Tlen; Result.Data (1 .. Blen) := Source.Data (1 .. Blen); Result.Data (Low .. Low + By'Length - 1) := By; Result.Data (Low + By'Length .. Tlen) := Source.Data (High + 1 .. Slen); else Result.Current_Length := Max_Length; case Drop is when Strings.Right => Result.Data (1 .. Blen) := Source.Data (1 .. Blen); if Droplen > Alen then Result.Data (Low .. Max_Length) := By (By'First .. By'First + Max_Length - Low); else Result.Data (Low .. Low + By'Length - 1) := By; Result.Data (Low + By'Length .. Max_Length) := Source.Data (High + 1 .. Slen - Droplen); end if; when Strings.Left => Result.Data (Max_Length - (Alen - 1) .. Max_Length) := Source.Data (High + 1 .. Slen); if Droplen >= Blen then Result.Data (1 .. Max_Length - Alen) := By (By'Last - (Max_Length - Alen) + 1 .. By'Last); else Result.Data (Blen - Droplen + 1 .. Max_Length - Alen) := By; Result.Data (1 .. Blen - Droplen) := Source.Data (Droplen + 1 .. Blen); end if; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; return Result; end; end if; end Super_Replace_Slice; procedure Super_Replace_Slice (Source : in out Super_String; Low : Positive; High : Natural; By : Wide_String; Drop : Strings.Truncation := Strings.Error) is begin -- We do a double copy here because this is one of the situations -- in which we move data to the right, and at least at the moment, -- GNAT is not handling such cases correctly ??? Source := Super_Replace_Slice (Source, Low, High, By, Drop); end Super_Replace_Slice; --------------------- -- Super_Replicate -- --------------------- function Super_Replicate (Count : Natural; Item : Wide_Character; Drop : Truncation := Error; Max_Length : Positive) return Super_String is Result : Super_String (Max_Length); begin if Count <= Max_Length then Result.Current_Length := Count; elsif Drop = Strings.Error then raise Ada.Strings.Length_Error; else Result.Current_Length := Max_Length; end if; Result.Data (1 .. Result.Current_Length) := (others => Item); return Result; end Super_Replicate; function Super_Replicate (Count : Natural; Item : Wide_String; Drop : Truncation := Error; Max_Length : Positive) return Super_String is Length : constant Integer := Count * Item'Length; Result : Super_String (Max_Length); Indx : Positive; begin if Length <= Max_Length then Result.Current_Length := Length; if Length > 0 then Indx := 1; for J in 1 .. Count loop Result.Data (Indx .. Indx + Item'Length - 1) := Item; Indx := Indx + Item'Length; end loop; end if; else Result.Current_Length := Max_Length; case Drop is when Strings.Right => Indx := 1; while Indx + Item'Length <= Max_Length + 1 loop Result.Data (Indx .. Indx + Item'Length - 1) := Item; Indx := Indx + Item'Length; end loop; Result.Data (Indx .. Max_Length) := Item (Item'First .. Item'First + Max_Length - Indx); when Strings.Left => Indx := Max_Length; while Indx - Item'Length >= 1 loop Result.Data (Indx - (Item'Length - 1) .. Indx) := Item; Indx := Indx - Item'Length; end loop; Result.Data (1 .. Indx) := Item (Item'Last - Indx + 1 .. Item'Last); when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; return Result; end Super_Replicate; function Super_Replicate (Count : Natural; Item : Super_String; Drop : Strings.Truncation := Strings.Error) return Super_String is begin return Super_Replicate (Count, Item.Data (1 .. Item.Current_Length), Drop, Item.Max_Length); end Super_Replicate; ----------------- -- Super_Slice -- ----------------- function Super_Slice (Source : Super_String; Low : Positive; High : Natural) return Wide_String is begin -- Note: test of High > Length is in accordance with AI95-00128 return R : Wide_String (Low .. High) do if Low > Source.Current_Length + 1 or else High > Source.Current_Length then raise Index_Error; end if; R := Source.Data (Low .. High); end return; end Super_Slice; function Super_Slice (Source : Super_String; Low : Positive; High : Natural) return Super_String is begin return Result : Super_String (Source.Max_Length) do if Low > Source.Current_Length + 1 or else High > Source.Current_Length then raise Index_Error; end if; Result.Current_Length := High - Low + 1; Result.Data (1 .. Result.Current_Length) := Source.Data (Low .. High); end return; end Super_Slice; procedure Super_Slice (Source : Super_String; Target : out Super_String; Low : Positive; High : Natural) is begin if Low > Source.Current_Length + 1 or else High > Source.Current_Length then raise Index_Error; else Target.Current_Length := High - Low + 1; Target.Data (1 .. Target.Current_Length) := Source.Data (Low .. High); end if; end Super_Slice; ---------------- -- Super_Tail -- ---------------- function Super_Tail (Source : Super_String; Count : Natural; Pad : Wide_Character := Wide_Space; Drop : Strings.Truncation := Strings.Error) return Super_String is Max_Length : constant Positive := Source.Max_Length; Result : Super_String (Max_Length); Slen : constant Natural := Source.Current_Length; Npad : constant Integer := Count - Slen; begin if Npad <= 0 then Result.Current_Length := Count; Result.Data (1 .. Count) := Source.Data (Slen - (Count - 1) .. Slen); elsif Count <= Max_Length then Result.Current_Length := Count; Result.Data (1 .. Npad) := (others => Pad); Result.Data (Npad + 1 .. Count) := Source.Data (1 .. Slen); else Result.Current_Length := Max_Length; case Drop is when Strings.Right => if Npad >= Max_Length then Result.Data := (others => Pad); else Result.Data (1 .. Npad) := (others => Pad); Result.Data (Npad + 1 .. Max_Length) := Source.Data (1 .. Max_Length - Npad); end if; when Strings.Left => Result.Data (1 .. Max_Length - Slen) := (others => Pad); Result.Data (Max_Length - Slen + 1 .. Max_Length) := Source.Data (1 .. Slen); when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; return Result; end Super_Tail; procedure Super_Tail (Source : in out Super_String; Count : Natural; Pad : Wide_Character := Wide_Space; Drop : Truncation := Error) is Max_Length : constant Positive := Source.Max_Length; Slen : constant Natural := Source.Current_Length; Npad : constant Integer := Count - Slen; Temp : constant Wide_String (1 .. Max_Length) := Source.Data; begin if Npad <= 0 then Source.Current_Length := Count; Source.Data (1 .. Count) := Temp (Slen - (Count - 1) .. Slen); elsif Count <= Max_Length then Source.Current_Length := Count; Source.Data (1 .. Npad) := (others => Pad); Source.Data (Npad + 1 .. Count) := Temp (1 .. Slen); else Source.Current_Length := Max_Length; case Drop is when Strings.Right => if Npad >= Max_Length then Source.Data := (others => Pad); else Source.Data (1 .. Npad) := (others => Pad); Source.Data (Npad + 1 .. Max_Length) := Temp (1 .. Max_Length - Npad); end if; when Strings.Left => for J in 1 .. Max_Length - Slen loop Source.Data (J) := Pad; end loop; Source.Data (Max_Length - Slen + 1 .. Max_Length) := Temp (1 .. Slen); when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; end Super_Tail; --------------------- -- Super_To_String -- --------------------- function Super_To_String (Source : Super_String) return Wide_String is begin return R : Wide_String (1 .. Source.Current_Length) do R := Source.Data (1 .. Source.Current_Length); end return; end Super_To_String; --------------------- -- Super_Translate -- --------------------- function Super_Translate (Source : Super_String; Mapping : Wide_Maps.Wide_Character_Mapping) return Super_String is Result : Super_String (Source.Max_Length); begin Result.Current_Length := Source.Current_Length; for J in 1 .. Source.Current_Length loop Result.Data (J) := Value (Mapping, Source.Data (J)); end loop; return Result; end Super_Translate; procedure Super_Translate (Source : in out Super_String; Mapping : Wide_Maps.Wide_Character_Mapping) is begin for J in 1 .. Source.Current_Length loop Source.Data (J) := Value (Mapping, Source.Data (J)); end loop; end Super_Translate; function Super_Translate (Source : Super_String; Mapping : Wide_Maps.Wide_Character_Mapping_Function) return Super_String is Result : Super_String (Source.Max_Length); begin Result.Current_Length := Source.Current_Length; for J in 1 .. Source.Current_Length loop Result.Data (J) := Mapping.all (Source.Data (J)); end loop; return Result; end Super_Translate; procedure Super_Translate (Source : in out Super_String; Mapping : Wide_Maps.Wide_Character_Mapping_Function) is begin for J in 1 .. Source.Current_Length loop Source.Data (J) := Mapping.all (Source.Data (J)); end loop; end Super_Translate; ---------------- -- Super_Trim -- ---------------- function Super_Trim (Source : Super_String; Side : Trim_End) return Super_String is Result : Super_String (Source.Max_Length); Last : Natural := Source.Current_Length; First : Positive := 1; begin if Side = Left or else Side = Both then while First <= Last and then Source.Data (First) = ' ' loop First := First + 1; end loop; end if; if Side = Right or else Side = Both then while Last >= First and then Source.Data (Last) = ' ' loop Last := Last - 1; end loop; end if; Result.Current_Length := Last - First + 1; Result.Data (1 .. Result.Current_Length) := Source.Data (First .. Last); return Result; end Super_Trim; procedure Super_Trim (Source : in out Super_String; Side : Trim_End) is Max_Length : constant Positive := Source.Max_Length; Last : Natural := Source.Current_Length; First : Positive := 1; Temp : Wide_String (1 .. Max_Length); begin Temp (1 .. Last) := Source.Data (1 .. Last); if Side = Left or else Side = Both then while First <= Last and then Temp (First) = ' ' loop First := First + 1; end loop; end if; if Side = Right or else Side = Both then while Last >= First and then Temp (Last) = ' ' loop Last := Last - 1; end loop; end if; Source.Data := (others => Wide_NUL); Source.Current_Length := Last - First + 1; Source.Data (1 .. Source.Current_Length) := Temp (First .. Last); end Super_Trim; function Super_Trim (Source : Super_String; Left : Wide_Maps.Wide_Character_Set; Right : Wide_Maps.Wide_Character_Set) return Super_String is Result : Super_String (Source.Max_Length); begin for First in 1 .. Source.Current_Length loop if not Is_In (Source.Data (First), Left) then for Last in reverse First .. Source.Current_Length loop if not Is_In (Source.Data (Last), Right) then Result.Current_Length := Last - First + 1; Result.Data (1 .. Result.Current_Length) := Source.Data (First .. Last); return Result; end if; end loop; end if; end loop; Result.Current_Length := 0; return Result; end Super_Trim; procedure Super_Trim (Source : in out Super_String; Left : Wide_Maps.Wide_Character_Set; Right : Wide_Maps.Wide_Character_Set) is begin for First in 1 .. Source.Current_Length loop if not Is_In (Source.Data (First), Left) then for Last in reverse First .. Source.Current_Length loop if not Is_In (Source.Data (Last), Right) then if First = 1 then Source.Current_Length := Last; return; else Source.Current_Length := Last - First + 1; Source.Data (1 .. Source.Current_Length) := Source.Data (First .. Last); for J in Source.Current_Length + 1 .. Source.Max_Length loop Source.Data (J) := Wide_NUL; end loop; return; end if; end if; end loop; Source.Current_Length := 0; return; end if; end loop; Source.Current_Length := 0; end Super_Trim; ----------- -- Times -- ----------- function Times (Left : Natural; Right : Wide_Character; Max_Length : Positive) return Super_String is Result : Super_String (Max_Length); begin if Left > Max_Length then raise Ada.Strings.Length_Error; else Result.Current_Length := Left; for J in 1 .. Left loop Result.Data (J) := Right; end loop; end if; return Result; end Times; function Times (Left : Natural; Right : Wide_String; Max_Length : Positive) return Super_String is Result : Super_String (Max_Length); Pos : Positive := 1; Rlen : constant Natural := Right'Length; Nlen : constant Natural := Left * Rlen; begin if Nlen > Max_Length then raise Ada.Strings.Index_Error; else Result.Current_Length := Nlen; if Nlen > 0 then for J in 1 .. Left loop Result.Data (Pos .. Pos + Rlen - 1) := Right; Pos := Pos + Rlen; end loop; end if; end if; return Result; end Times; function Times (Left : Natural; Right : Super_String) return Super_String is Result : Super_String (Right.Max_Length); Pos : Positive := 1; Rlen : constant Natural := Right.Current_Length; Nlen : constant Natural := Left * Rlen; begin if Nlen > Right.Max_Length then raise Ada.Strings.Length_Error; else Result.Current_Length := Nlen; if Nlen > 0 then for J in 1 .. Left loop Result.Data (Pos .. Pos + Rlen - 1) := Right.Data (1 .. Rlen); Pos := Pos + Rlen; end loop; end if; end if; return Result; end Times; --------------------- -- To_Super_String -- --------------------- function To_Super_String (Source : Wide_String; Max_Length : Natural; Drop : Truncation := Error) return Super_String is Result : Super_String (Max_Length); Slen : constant Natural := Source'Length; begin if Slen <= Max_Length then Result.Current_Length := Slen; Result.Data (1 .. Slen) := Source; else case Drop is when Strings.Right => Result.Current_Length := Max_Length; Result.Data (1 .. Max_Length) := Source (Source'First .. Source'First - 1 + Max_Length); when Strings.Left => Result.Current_Length := Max_Length; Result.Data (1 .. Max_Length) := Source (Source'Last - (Max_Length - 1) .. Source'Last); when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; return Result; end To_Super_String; end Ada.Strings.Wide_Superbounded;
30.361427
79
0.527053
fb92fd4dbe8f51dff2bdac023d4415073abba249
37,027
adb
Ada
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/a-crdlli.adb
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/a-crdlli.adb
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/a-crdlli.adb
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- ADA.CONTAINERS.RESTRICTED_DOUBLY_LINKED_LISTS -- -- -- -- B o d y -- -- -- -- Copyright (C) 2004-2020, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- This unit was originally developed by Matthew J Heaney. -- ------------------------------------------------------------------------------ with System; use type System.Address; package body Ada.Containers.Restricted_Doubly_Linked_Lists is ----------------------- -- Local Subprograms -- ----------------------- procedure Allocate (Container : in out List'Class; New_Item : Element_Type; New_Node : out Count_Type); procedure Free (Container : in out List'Class; X : Count_Type); procedure Insert_Internal (Container : in out List'Class; Before : Count_Type; New_Node : Count_Type); function Vet (Position : Cursor) return Boolean; --------- -- "=" -- --------- function "=" (Left, Right : List) return Boolean is LN : Node_Array renames Left.Nodes; RN : Node_Array renames Right.Nodes; LI : Count_Type := Left.First; RI : Count_Type := Right.First; begin if Left'Address = Right'Address then return True; end if; if Left.Length /= Right.Length then return False; end if; for J in 1 .. Left.Length loop if LN (LI).Element /= RN (RI).Element then return False; end if; LI := LN (LI).Next; RI := RN (RI).Next; end loop; return True; end "="; -------------- -- Allocate -- -------------- procedure Allocate (Container : in out List'Class; New_Item : Element_Type; New_Node : out Count_Type) is N : Node_Array renames Container.Nodes; begin if Container.Free >= 0 then New_Node := Container.Free; N (New_Node).Element := New_Item; Container.Free := N (New_Node).Next; else New_Node := abs Container.Free; N (New_Node).Element := New_Item; Container.Free := Container.Free - 1; end if; end Allocate; ------------ -- Append -- ------------ procedure Append (Container : in out List; New_Item : Element_Type; Count : Count_Type := 1) is begin Insert (Container, No_Element, New_Item, Count); end Append; ------------ -- Assign -- ------------ procedure Assign (Target : in out List; Source : List) is begin if Target'Address = Source'Address then return; end if; if Target.Capacity < Source.Length then raise Constraint_Error; -- ??? end if; Clear (Target); declare N : Node_Array renames Source.Nodes; J : Count_Type := Source.First; begin while J /= 0 loop Append (Target, N (J).Element); J := N (J).Next; end loop; end; end Assign; ----------- -- Clear -- ----------- procedure Clear (Container : in out List) is N : Node_Array renames Container.Nodes; X : Count_Type; begin if Container.Length = 0 then pragma Assert (Container.First = 0); pragma Assert (Container.Last = 0); -- pragma Assert (Container.Busy = 0); -- pragma Assert (Container.Lock = 0); return; end if; pragma Assert (Container.First >= 1); pragma Assert (Container.Last >= 1); pragma Assert (N (Container.First).Prev = 0); pragma Assert (N (Container.Last).Next = 0); -- if Container.Busy > 0 then -- raise Program_Error; -- end if; while Container.Length > 1 loop X := Container.First; Container.First := N (X).Next; N (Container.First).Prev := 0; Container.Length := Container.Length - 1; Free (Container, X); end loop; X := Container.First; Container.First := 0; Container.Last := 0; Container.Length := 0; Free (Container, X); end Clear; -------------- -- Contains -- -------------- function Contains (Container : List; Item : Element_Type) return Boolean is begin return Find (Container, Item) /= No_Element; end Contains; ------------ -- Delete -- ------------ procedure Delete (Container : in out List; Position : in out Cursor; Count : Count_Type := 1) is N : Node_Array renames Container.Nodes; X : Count_Type; begin if Position.Node = 0 then raise Constraint_Error; end if; if Position.Container /= Container'Unrestricted_Access then raise Program_Error; end if; pragma Assert (Vet (Position), "bad cursor in Delete"); if Position.Node = Container.First then Delete_First (Container, Count); Position := No_Element; return; end if; if Count = 0 then Position := No_Element; return; end if; -- if Container.Busy > 0 then -- raise Program_Error; -- end if; pragma Assert (Container.First >= 1); pragma Assert (Container.Last >= 1); pragma Assert (N (Container.First).Prev = 0); pragma Assert (N (Container.Last).Next = 0); for Index in 1 .. Count loop pragma Assert (Container.Length >= 2); X := Position.Node; Container.Length := Container.Length - 1; if X = Container.Last then Position := No_Element; Container.Last := N (X).Prev; N (Container.Last).Next := 0; Free (Container, X); return; end if; Position.Node := N (X).Next; N (N (X).Next).Prev := N (X).Prev; N (N (X).Prev).Next := N (X).Next; Free (Container, X); end loop; Position := No_Element; end Delete; ------------------ -- Delete_First -- ------------------ procedure Delete_First (Container : in out List; Count : Count_Type := 1) is N : Node_Array renames Container.Nodes; X : Count_Type; begin if Count >= Container.Length then Clear (Container); return; end if; if Count = 0 then return; end if; -- if Container.Busy > 0 then -- raise Program_Error; -- end if; for I in 1 .. Count loop X := Container.First; pragma Assert (N (N (X).Next).Prev = Container.First); Container.First := N (X).Next; N (Container.First).Prev := 0; Container.Length := Container.Length - 1; Free (Container, X); end loop; end Delete_First; ----------------- -- Delete_Last -- ----------------- procedure Delete_Last (Container : in out List; Count : Count_Type := 1) is N : Node_Array renames Container.Nodes; X : Count_Type; begin if Count >= Container.Length then Clear (Container); return; end if; if Count = 0 then return; end if; -- if Container.Busy > 0 then -- raise Program_Error; -- end if; for I in 1 .. Count loop X := Container.Last; pragma Assert (N (N (X).Prev).Next = Container.Last); Container.Last := N (X).Prev; N (Container.Last).Next := 0; Container.Length := Container.Length - 1; Free (Container, X); end loop; end Delete_Last; ------------- -- Element -- ------------- function Element (Position : Cursor) return Element_Type is begin if Position.Node = 0 then raise Constraint_Error; end if; pragma Assert (Vet (Position), "bad cursor in Element"); declare N : Node_Array renames Position.Container.Nodes; begin return N (Position.Node).Element; end; end Element; ---------- -- Find -- ---------- function Find (Container : List; Item : Element_Type; Position : Cursor := No_Element) return Cursor is Nodes : Node_Array renames Container.Nodes; Node : Count_Type := Position.Node; begin if Node = 0 then Node := Container.First; else if Position.Container /= Container'Unrestricted_Access then raise Program_Error; end if; pragma Assert (Vet (Position), "bad cursor in Find"); end if; while Node /= 0 loop if Nodes (Node).Element = Item then return Cursor'(Container'Unrestricted_Access, Node); end if; Node := Nodes (Node).Next; end loop; return No_Element; end Find; ----------- -- First -- ----------- function First (Container : List) return Cursor is begin if Container.First = 0 then return No_Element; end if; return Cursor'(Container'Unrestricted_Access, Container.First); end First; ------------------- -- First_Element -- ------------------- function First_Element (Container : List) return Element_Type is N : Node_Array renames Container.Nodes; begin if Container.First = 0 then raise Constraint_Error; end if; return N (Container.First).Element; end First_Element; ---------- -- Free -- ---------- procedure Free (Container : in out List'Class; X : Count_Type) is pragma Assert (X > 0); pragma Assert (X <= Container.Capacity); N : Node_Array renames Container.Nodes; begin N (X).Prev := -1; -- Node is deallocated (not on active list) if Container.Free >= 0 then N (X).Next := Container.Free; Container.Free := X; elsif X + 1 = abs Container.Free then N (X).Next := 0; -- Not strictly necessary, but marginally safer Container.Free := Container.Free + 1; else Container.Free := abs Container.Free; if Container.Free > Container.Capacity then Container.Free := 0; else for I in Container.Free .. Container.Capacity - 1 loop N (I).Next := I + 1; end loop; N (Container.Capacity).Next := 0; end if; N (X).Next := Container.Free; Container.Free := X; end if; end Free; --------------------- -- Generic_Sorting -- --------------------- package body Generic_Sorting is --------------- -- Is_Sorted -- --------------- function Is_Sorted (Container : List) return Boolean is Nodes : Node_Array renames Container.Nodes; Node : Count_Type := Container.First; begin for I in 2 .. Container.Length loop if Nodes (Nodes (Node).Next).Element < Nodes (Node).Element then return False; end if; Node := Nodes (Node).Next; end loop; return True; end Is_Sorted; ---------- -- Sort -- ---------- procedure Sort (Container : in out List) is N : Node_Array renames Container.Nodes; procedure Partition (Pivot, Back : Count_Type); procedure Sort (Front, Back : Count_Type); --------------- -- Partition -- --------------- procedure Partition (Pivot, Back : Count_Type) is Node : Count_Type := N (Pivot).Next; begin while Node /= Back loop if N (Node).Element < N (Pivot).Element then declare Prev : constant Count_Type := N (Node).Prev; Next : constant Count_Type := N (Node).Next; begin N (Prev).Next := Next; if Next = 0 then Container.Last := Prev; else N (Next).Prev := Prev; end if; N (Node).Next := Pivot; N (Node).Prev := N (Pivot).Prev; N (Pivot).Prev := Node; if N (Node).Prev = 0 then Container.First := Node; else N (N (Node).Prev).Next := Node; end if; Node := Next; end; else Node := N (Node).Next; end if; end loop; end Partition; ---------- -- Sort -- ---------- procedure Sort (Front, Back : Count_Type) is Pivot : constant Count_Type := (if Front = 0 then Container.First else N (Front).Next); begin if Pivot /= Back then Partition (Pivot, Back); Sort (Front, Pivot); Sort (Pivot, Back); end if; end Sort; -- Start of processing for Sort begin if Container.Length <= 1 then return; end if; pragma Assert (N (Container.First).Prev = 0); pragma Assert (N (Container.Last).Next = 0); -- if Container.Busy > 0 then -- raise Program_Error; -- end if; Sort (Front => 0, Back => 0); pragma Assert (N (Container.First).Prev = 0); pragma Assert (N (Container.Last).Next = 0); end Sort; end Generic_Sorting; ----------------- -- Has_Element -- ----------------- function Has_Element (Position : Cursor) return Boolean is begin pragma Assert (Vet (Position), "bad cursor in Has_Element"); return Position.Node /= 0; end Has_Element; ------------ -- Insert -- ------------ procedure Insert (Container : in out List; Before : Cursor; New_Item : Element_Type; Position : out Cursor; Count : Count_Type := 1) is First_Node : Count_Type; New_Node : Count_Type; begin if Before.Container /= null then if Before.Container /= Container'Unrestricted_Access then raise Program_Error; end if; pragma Assert (Vet (Before), "bad cursor in Insert"); end if; if Count = 0 then Position := Before; return; end if; if Container.Length > Container.Capacity - Count then raise Constraint_Error; end if; -- if Container.Busy > 0 then -- raise Program_Error; -- end if; Allocate (Container, New_Item, New_Node); First_Node := New_Node; Insert_Internal (Container, Before.Node, New_Node); for Index in 2 .. Count loop Allocate (Container, New_Item, New_Node); Insert_Internal (Container, Before.Node, New_Node); end loop; Position := Cursor'(Container'Unrestricted_Access, First_Node); end Insert; procedure Insert (Container : in out List; Before : Cursor; New_Item : Element_Type; Count : Count_Type := 1) is Position : Cursor; pragma Unreferenced (Position); begin Insert (Container, Before, New_Item, Position, Count); end Insert; procedure Insert (Container : in out List; Before : Cursor; Position : out Cursor; Count : Count_Type := 1) is New_Item : Element_Type; -- Do we need to reinit node ??? pragma Warnings (Off, New_Item); begin Insert (Container, Before, New_Item, Position, Count); end Insert; --------------------- -- Insert_Internal -- --------------------- procedure Insert_Internal (Container : in out List'Class; Before : Count_Type; New_Node : Count_Type) is N : Node_Array renames Container.Nodes; begin if Container.Length = 0 then pragma Assert (Before = 0); pragma Assert (Container.First = 0); pragma Assert (Container.Last = 0); Container.First := New_Node; Container.Last := New_Node; N (Container.First).Prev := 0; N (Container.Last).Next := 0; elsif Before = 0 then pragma Assert (N (Container.Last).Next = 0); N (Container.Last).Next := New_Node; N (New_Node).Prev := Container.Last; Container.Last := New_Node; N (Container.Last).Next := 0; elsif Before = Container.First then pragma Assert (N (Container.First).Prev = 0); N (Container.First).Prev := New_Node; N (New_Node).Next := Container.First; Container.First := New_Node; N (Container.First).Prev := 0; else pragma Assert (N (Container.First).Prev = 0); pragma Assert (N (Container.Last).Next = 0); N (New_Node).Next := Before; N (New_Node).Prev := N (Before).Prev; N (N (Before).Prev).Next := New_Node; N (Before).Prev := New_Node; end if; Container.Length := Container.Length + 1; end Insert_Internal; -------------- -- Is_Empty -- -------------- function Is_Empty (Container : List) return Boolean is begin return Container.Length = 0; end Is_Empty; ------------- -- Iterate -- ------------- procedure Iterate (Container : List; Process : not null access procedure (Position : Cursor)) is C : List renames Container'Unrestricted_Access.all; N : Node_Array renames C.Nodes; -- B : Natural renames C.Busy; Node : Count_Type := Container.First; Index : Count_Type := 0; Index_Max : constant Count_Type := Container.Length; begin if Index_Max = 0 then pragma Assert (Node = 0); return; end if; loop pragma Assert (Node /= 0); Process (Cursor'(C'Unchecked_Access, Node)); pragma Assert (Container.Length = Index_Max); pragma Assert (N (Node).Prev /= -1); Node := N (Node).Next; Index := Index + 1; if Index = Index_Max then pragma Assert (Node = 0); return; end if; end loop; end Iterate; ---------- -- Last -- ---------- function Last (Container : List) return Cursor is begin if Container.Last = 0 then return No_Element; end if; return Cursor'(Container'Unrestricted_Access, Container.Last); end Last; ------------------ -- Last_Element -- ------------------ function Last_Element (Container : List) return Element_Type is N : Node_Array renames Container.Nodes; begin if Container.Last = 0 then raise Constraint_Error; end if; return N (Container.Last).Element; end Last_Element; ------------ -- Length -- ------------ function Length (Container : List) return Count_Type is begin return Container.Length; end Length; ---------- -- Next -- ---------- procedure Next (Position : in out Cursor) is begin Position := Next (Position); end Next; function Next (Position : Cursor) return Cursor is begin if Position.Node = 0 then return No_Element; end if; pragma Assert (Vet (Position), "bad cursor in Next"); declare Nodes : Node_Array renames Position.Container.Nodes; Node : constant Count_Type := Nodes (Position.Node).Next; begin if Node = 0 then return No_Element; end if; return Cursor'(Position.Container, Node); end; end Next; ------------- -- Prepend -- ------------- procedure Prepend (Container : in out List; New_Item : Element_Type; Count : Count_Type := 1) is begin Insert (Container, First (Container), New_Item, Count); end Prepend; -------------- -- Previous -- -------------- procedure Previous (Position : in out Cursor) is begin Position := Previous (Position); end Previous; function Previous (Position : Cursor) return Cursor is begin if Position.Node = 0 then return No_Element; end if; pragma Assert (Vet (Position), "bad cursor in Previous"); declare Nodes : Node_Array renames Position.Container.Nodes; Node : constant Count_Type := Nodes (Position.Node).Prev; begin if Node = 0 then return No_Element; end if; return Cursor'(Position.Container, Node); end; end Previous; ------------------- -- Query_Element -- ------------------- procedure Query_Element (Position : Cursor; Process : not null access procedure (Element : Element_Type)) is begin if Position.Node = 0 then raise Constraint_Error; end if; pragma Assert (Vet (Position), "bad cursor in Query_Element"); declare C : List renames Position.Container.all'Unrestricted_Access.all; N : Node_Type renames C.Nodes (Position.Node); begin Process (N.Element); pragma Assert (N.Prev >= 0); end; end Query_Element; --------------------- -- Replace_Element -- --------------------- procedure Replace_Element (Container : in out List; Position : Cursor; New_Item : Element_Type) is begin if Position.Container = null then raise Constraint_Error; end if; if Position.Container /= Container'Unrestricted_Access then raise Program_Error; end if; -- if Container.Lock > 0 then -- raise Program_Error; -- end if; pragma Assert (Vet (Position), "bad cursor in Replace_Element"); declare N : Node_Array renames Container.Nodes; begin N (Position.Node).Element := New_Item; end; end Replace_Element; ---------------------- -- Reverse_Elements -- ---------------------- procedure Reverse_Elements (Container : in out List) is N : Node_Array renames Container.Nodes; I : Count_Type := Container.First; J : Count_Type := Container.Last; procedure Swap (L, R : Count_Type); ---------- -- Swap -- ---------- procedure Swap (L, R : Count_Type) is LN : constant Count_Type := N (L).Next; LP : constant Count_Type := N (L).Prev; RN : constant Count_Type := N (R).Next; RP : constant Count_Type := N (R).Prev; begin if LP /= 0 then N (LP).Next := R; end if; if RN /= 0 then N (RN).Prev := L; end if; N (L).Next := RN; N (R).Prev := LP; if LN = R then pragma Assert (RP = L); N (L).Prev := R; N (R).Next := L; else N (L).Prev := RP; N (RP).Next := L; N (R).Next := LN; N (LN).Prev := R; end if; end Swap; -- Start of processing for Reverse_Elements begin if Container.Length <= 1 then return; end if; pragma Assert (N (Container.First).Prev = 0); pragma Assert (N (Container.Last).Next = 0); -- if Container.Busy > 0 then -- raise Program_Error; -- end if; Container.First := J; Container.Last := I; loop Swap (L => I, R => J); J := N (J).Next; exit when I = J; I := N (I).Prev; exit when I = J; Swap (L => J, R => I); I := N (I).Next; exit when I = J; J := N (J).Prev; exit when I = J; end loop; pragma Assert (N (Container.First).Prev = 0); pragma Assert (N (Container.Last).Next = 0); end Reverse_Elements; ------------------ -- Reverse_Find -- ------------------ function Reverse_Find (Container : List; Item : Element_Type; Position : Cursor := No_Element) return Cursor is N : Node_Array renames Container.Nodes; Node : Count_Type := Position.Node; begin if Node = 0 then Node := Container.Last; else if Position.Container /= Container'Unrestricted_Access then raise Program_Error; end if; pragma Assert (Vet (Position), "bad cursor in Reverse_Find"); end if; while Node /= 0 loop if N (Node).Element = Item then return Cursor'(Container'Unrestricted_Access, Node); end if; Node := N (Node).Prev; end loop; return No_Element; end Reverse_Find; --------------------- -- Reverse_Iterate -- --------------------- procedure Reverse_Iterate (Container : List; Process : not null access procedure (Position : Cursor)) is C : List renames Container'Unrestricted_Access.all; N : Node_Array renames C.Nodes; -- B : Natural renames C.Busy; Node : Count_Type := Container.Last; Index : Count_Type := 0; Index_Max : constant Count_Type := Container.Length; begin if Index_Max = 0 then pragma Assert (Node = 0); return; end if; loop pragma Assert (Node > 0); Process (Cursor'(C'Unchecked_Access, Node)); pragma Assert (Container.Length = Index_Max); pragma Assert (N (Node).Prev /= -1); Node := N (Node).Prev; Index := Index + 1; if Index = Index_Max then pragma Assert (Node = 0); return; end if; end loop; end Reverse_Iterate; ------------ -- Splice -- ------------ procedure Splice (Container : in out List; Before : Cursor; Position : in out Cursor) is N : Node_Array renames Container.Nodes; begin if Before.Container /= null then if Before.Container /= Container'Unrestricted_Access then raise Program_Error; end if; pragma Assert (Vet (Before), "bad Before cursor in Splice"); end if; if Position.Node = 0 then raise Constraint_Error; end if; if Position.Container /= Container'Unrestricted_Access then raise Program_Error; end if; pragma Assert (Vet (Position), "bad Position cursor in Splice"); if Position.Node = Before.Node or else N (Position.Node).Next = Before.Node then return; end if; pragma Assert (Container.Length >= 2); -- if Container.Busy > 0 then -- raise Program_Error; -- end if; if Before.Node = 0 then pragma Assert (Position.Node /= Container.Last); if Position.Node = Container.First then Container.First := N (Position.Node).Next; N (Container.First).Prev := 0; else N (N (Position.Node).Prev).Next := N (Position.Node).Next; N (N (Position.Node).Next).Prev := N (Position.Node).Prev; end if; N (Container.Last).Next := Position.Node; N (Position.Node).Prev := Container.Last; Container.Last := Position.Node; N (Container.Last).Next := 0; return; end if; if Before.Node = Container.First then pragma Assert (Position.Node /= Container.First); if Position.Node = Container.Last then Container.Last := N (Position.Node).Prev; N (Container.Last).Next := 0; else N (N (Position.Node).Prev).Next := N (Position.Node).Next; N (N (Position.Node).Next).Prev := N (Position.Node).Prev; end if; N (Container.First).Prev := Position.Node; N (Position.Node).Next := Container.First; Container.First := Position.Node; N (Container.First).Prev := 0; return; end if; if Position.Node = Container.First then Container.First := N (Position.Node).Next; N (Container.First).Prev := 0; elsif Position.Node = Container.Last then Container.Last := N (Position.Node).Prev; N (Container.Last).Next := 0; else N (N (Position.Node).Prev).Next := N (Position.Node).Next; N (N (Position.Node).Next).Prev := N (Position.Node).Prev; end if; N (N (Before.Node).Prev).Next := Position.Node; N (Position.Node).Prev := N (Before.Node).Prev; N (Before.Node).Prev := Position.Node; N (Position.Node).Next := Before.Node; pragma Assert (N (Container.First).Prev = 0); pragma Assert (N (Container.Last).Next = 0); end Splice; ---------- -- Swap -- ---------- procedure Swap (Container : in out List; I, J : Cursor) is begin if I.Node = 0 or else J.Node = 0 then raise Constraint_Error; end if; if I.Container /= Container'Unrestricted_Access or else J.Container /= Container'Unrestricted_Access then raise Program_Error; end if; if I.Node = J.Node then return; end if; -- if Container.Lock > 0 then -- raise Program_Error; -- end if; pragma Assert (Vet (I), "bad I cursor in Swap"); pragma Assert (Vet (J), "bad J cursor in Swap"); declare N : Node_Array renames Container.Nodes; EI : Element_Type renames N (I.Node).Element; EJ : Element_Type renames N (J.Node).Element; EI_Copy : constant Element_Type := EI; begin EI := EJ; EJ := EI_Copy; end; end Swap; ---------------- -- Swap_Links -- ---------------- procedure Swap_Links (Container : in out List; I, J : Cursor) is begin if I.Node = 0 or else J.Node = 0 then raise Constraint_Error; end if; if I.Container /= Container'Unrestricted_Access or else I.Container /= J.Container then raise Program_Error; end if; if I.Node = J.Node then return; end if; -- if Container.Busy > 0 then -- raise Program_Error; -- end if; pragma Assert (Vet (I), "bad I cursor in Swap_Links"); pragma Assert (Vet (J), "bad J cursor in Swap_Links"); declare I_Next : constant Cursor := Next (I); J_Copy : Cursor := J; pragma Warnings (Off, J_Copy); begin if I_Next = J then Splice (Container, Before => I, Position => J_Copy); else declare J_Next : constant Cursor := Next (J); I_Copy : Cursor := I; pragma Warnings (Off, I_Copy); begin if J_Next = I then Splice (Container, Before => J, Position => I_Copy); else pragma Assert (Container.Length >= 3); Splice (Container, Before => I_Next, Position => J_Copy); Splice (Container, Before => J_Next, Position => I_Copy); end if; end; end if; end; end Swap_Links; -------------------- -- Update_Element -- -------------------- procedure Update_Element (Container : in out List; Position : Cursor; Process : not null access procedure (Element : in out Element_Type)) is begin if Position.Node = 0 then raise Constraint_Error; end if; if Position.Container /= Container'Unrestricted_Access then raise Program_Error; end if; pragma Assert (Vet (Position), "bad cursor in Update_Element"); declare N : Node_Type renames Container.Nodes (Position.Node); begin Process (N.Element); pragma Assert (N.Prev >= 0); end; end Update_Element; --------- -- Vet -- --------- function Vet (Position : Cursor) return Boolean is begin if Position.Node = 0 then return Position.Container = null; end if; if Position.Container = null then return False; end if; declare L : List renames Position.Container.all; N : Node_Array renames L.Nodes; begin if L.Length = 0 then return False; end if; if L.First = 0 then return False; end if; if L.Last = 0 then return False; end if; if Position.Node > L.Capacity then return False; end if; if N (Position.Node).Prev < 0 or else N (Position.Node).Prev > L.Capacity then return False; end if; if N (Position.Node).Next > L.Capacity then return False; end if; if N (L.First).Prev /= 0 then return False; end if; if N (L.Last).Next /= 0 then return False; end if; if N (Position.Node).Prev = 0 and then Position.Node /= L.First then return False; end if; if N (Position.Node).Next = 0 and then Position.Node /= L.Last then return False; end if; if L.Length = 1 then return L.First = L.Last; end if; if L.First = L.Last then return False; end if; if N (L.First).Next = 0 then return False; end if; if N (L.Last).Prev = 0 then return False; end if; if N (N (L.First).Next).Prev /= L.First then return False; end if; if N (N (L.Last).Prev).Next /= L.Last then return False; end if; if L.Length = 2 then if N (L.First).Next /= L.Last then return False; end if; if N (L.Last).Prev /= L.First then return False; end if; return True; end if; if N (L.First).Next = L.Last then return False; end if; if N (L.Last).Prev = L.First then return False; end if; if Position.Node = L.First then return True; end if; if Position.Node = L.Last then return True; end if; if N (Position.Node).Next = 0 then return False; end if; if N (Position.Node).Prev = 0 then return False; end if; if N (N (Position.Node).Next).Prev /= Position.Node then return False; end if; if N (N (Position.Node).Prev).Next /= Position.Node then return False; end if; if L.Length = 3 then if N (L.First).Next /= Position.Node then return False; end if; if N (L.Last).Prev /= Position.Node then return False; end if; end if; return True; end; end Vet; end Ada.Containers.Restricted_Doubly_Linked_Lists;
24.619016
78
0.510006
0ee97986398c7193533523697c7fd854b5b26351
731
ads
Ada
host/stm32gd-gpio-pin.ads
ekoeppen/STM32_Generic_Ada_Drivers
4ff29c3026c4b24280baf22a5b81ea9969375466
[ "MIT" ]
1
2021-04-06T07:57:56.000Z
2021-04-06T07:57:56.000Z
host/stm32gd-gpio-pin.ads
ekoeppen/STM32_Generic_Ada_Drivers
4ff29c3026c4b24280baf22a5b81ea9969375466
[ "MIT" ]
null
null
null
host/stm32gd-gpio-pin.ads
ekoeppen/STM32_Generic_Ada_Drivers
4ff29c3026c4b24280baf22a5b81ea9969375466
[ "MIT" ]
2
2018-05-29T13:59:31.000Z
2019-02-03T19:48:08.000Z
with STM32_SVD; use STM32_SVD; generic Pin : in GPIO_Pin; Port : in out Natural; Mode : in Pin_IO_Modes := Mode_In; Pull_Resistor : in Internal_Pin_Resistors := Floating; Alternate_Function : in GPIO_Alternate_Function := 0; package STM32GD.GPIO.Pin is pragma Preelaborate; procedure Init; procedure Set_Mode (Mode : Pin_IO_Modes); procedure Set_Type (Pin_Type : Pin_Output_Types); function Get_Pull_Resistor return Internal_Pin_Resistors; procedure Set_Pull_Resistor (Pull : Internal_Pin_Resistors); procedure Configure_Alternate_Function (AF : GPIO_Alternate_Function); function Is_Set return Boolean; procedure Set; procedure Clear; procedure Toggle; end STM32GD.GPIO.Pin;
26.107143
73
0.759234
dfe7d9916b20564d155a5a09cb68ebaf22b1c5fc
16,096
ads
Ada
source/league/ucd/matreshka-internals-unicode-ucd-core_001b.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
24
2016-11-29T06:59:41.000Z
2021-08-30T11:55:16.000Z
source/league/ucd/matreshka-internals-unicode-ucd-core_001b.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
2
2019-01-16T05:15:20.000Z
2019-02-03T10:03:32.000Z
source/league/ucd/matreshka-internals-unicode-ucd-core_001b.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
4
2017-07-18T07:11:05.000Z
2020-06-21T03:02:25.000Z
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Localization, Internationalization, Globalization for Ada -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012-2015, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ pragma Restrictions (No_Elaboration_Code); -- GNAT: enforce generation of preinitialized data section instead of -- generation of elaboration code. package Matreshka.Internals.Unicode.Ucd.Core_001B is pragma Preelaborate; Group_001B : aliased constant Core_Second_Stage := (16#00# .. 16#03# => -- 1B00 .. 1B03 (Nonspacing_Mark, Neutral, Extend, Extend, Extend, Combining_Mark, (Other_Alphabetic | Alphabetic | Case_Ignorable | Grapheme_Extend | ID_Continue | XID_Continue => True, others => False)), 16#04# => -- 1B04 (Spacing_Mark, Neutral, Spacing_Mark, Extend, Extend, Combining_Mark, (Other_Alphabetic | Alphabetic | Grapheme_Base | ID_Continue | XID_Continue => True, others => False)), 16#34# => -- 1B34 (Nonspacing_Mark, Neutral, Extend, Extend, Extend, Combining_Mark, (Diacritic | Case_Ignorable | Grapheme_Extend | ID_Continue | XID_Continue => True, others => False)), 16#35# => -- 1B35 (Spacing_Mark, Neutral, Spacing_Mark, Extend, Extend, Combining_Mark, (Other_Alphabetic | Alphabetic | Grapheme_Base | ID_Continue | XID_Continue => True, others => False)), 16#36# .. 16#3A# => -- 1B36 .. 1B3A (Nonspacing_Mark, Neutral, Extend, Extend, Extend, Combining_Mark, (Other_Alphabetic | Alphabetic | Case_Ignorable | Grapheme_Extend | ID_Continue | XID_Continue => True, others => False)), 16#3B# => -- 1B3B (Spacing_Mark, Neutral, Spacing_Mark, Extend, Extend, Combining_Mark, (Other_Alphabetic | Alphabetic | Grapheme_Base | ID_Continue | XID_Continue => True, others => False)), 16#3C# => -- 1B3C (Nonspacing_Mark, Neutral, Extend, Extend, Extend, Combining_Mark, (Other_Alphabetic | Alphabetic | Case_Ignorable | Grapheme_Extend | ID_Continue | XID_Continue => True, others => False)), 16#3D# .. 16#41# => -- 1B3D .. 1B41 (Spacing_Mark, Neutral, Spacing_Mark, Extend, Extend, Combining_Mark, (Other_Alphabetic | Alphabetic | Grapheme_Base | ID_Continue | XID_Continue => True, others => False)), 16#42# => -- 1B42 (Nonspacing_Mark, Neutral, Extend, Extend, Extend, Combining_Mark, (Other_Alphabetic | Alphabetic | Case_Ignorable | Grapheme_Extend | ID_Continue | XID_Continue => True, others => False)), 16#43# => -- 1B43 (Spacing_Mark, Neutral, Spacing_Mark, Extend, Extend, Combining_Mark, (Other_Alphabetic | Alphabetic | Grapheme_Base | ID_Continue | XID_Continue => True, others => False)), 16#44# => -- 1B44 (Spacing_Mark, Neutral, Spacing_Mark, Extend, Extend, Combining_Mark, (Diacritic | Grapheme_Base | Grapheme_Link | ID_Continue | XID_Continue => True, others => False)), 16#4C# .. 16#4F# => -- 1B4C .. 1B4F (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#50# .. 16#59# => -- 1B50 .. 1B59 (Decimal_Number, Neutral, Other, Numeric, Numeric, Numeric, (Grapheme_Base | ID_Continue | XID_Continue => True, others => False)), 16#5A# .. 16#5B# => -- 1B5A .. 1B5B (Other_Punctuation, Neutral, Other, Other, S_Term, Break_After, (STerm | Terminal_Punctuation | Grapheme_Base => True, others => False)), 16#5C# => -- 1B5C (Other_Punctuation, Neutral, Other, Other, Other, Alphabetic, (Grapheme_Base => True, others => False)), 16#5D# => -- 1B5D (Other_Punctuation, Neutral, Other, Other, Other, Break_After, (Terminal_Punctuation | Grapheme_Base => True, others => False)), 16#5E# .. 16#5F# => -- 1B5E .. 1B5F (Other_Punctuation, Neutral, Other, Other, S_Term, Break_After, (STerm | Terminal_Punctuation | Grapheme_Base => True, others => False)), 16#60# => -- 1B60 (Other_Punctuation, Neutral, Other, Other, Other, Break_After, (Grapheme_Base => True, others => False)), 16#61# .. 16#6A# => -- 1B61 .. 1B6A (Other_Symbol, Neutral, Other, Other, Other, Alphabetic, (Grapheme_Base => True, others => False)), 16#6B# .. 16#73# => -- 1B6B .. 1B73 (Nonspacing_Mark, Neutral, Extend, Extend, Extend, Combining_Mark, (Diacritic | Case_Ignorable | Grapheme_Extend | ID_Continue | XID_Continue => True, others => False)), 16#74# .. 16#7C# => -- 1B74 .. 1B7C (Other_Symbol, Neutral, Other, Other, Other, Alphabetic, (Grapheme_Base => True, others => False)), 16#7D# .. 16#7F# => -- 1B7D .. 1B7F (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#80# .. 16#81# => -- 1B80 .. 1B81 (Nonspacing_Mark, Neutral, Extend, Extend, Extend, Combining_Mark, (Other_Alphabetic | Alphabetic | Case_Ignorable | Grapheme_Extend | ID_Continue | XID_Continue => True, others => False)), 16#82# => -- 1B82 (Spacing_Mark, Neutral, Spacing_Mark, Extend, Extend, Combining_Mark, (Other_Alphabetic | Alphabetic | Grapheme_Base | ID_Continue | XID_Continue => True, others => False)), 16#A1# => -- 1BA1 (Spacing_Mark, Neutral, Spacing_Mark, Extend, Extend, Combining_Mark, (Other_Alphabetic | Alphabetic | Grapheme_Base | ID_Continue | XID_Continue => True, others => False)), 16#A2# .. 16#A5# => -- 1BA2 .. 1BA5 (Nonspacing_Mark, Neutral, Extend, Extend, Extend, Combining_Mark, (Other_Alphabetic | Alphabetic | Case_Ignorable | Grapheme_Extend | ID_Continue | XID_Continue => True, others => False)), 16#A6# .. 16#A7# => -- 1BA6 .. 1BA7 (Spacing_Mark, Neutral, Spacing_Mark, Extend, Extend, Combining_Mark, (Other_Alphabetic | Alphabetic | Grapheme_Base | ID_Continue | XID_Continue => True, others => False)), 16#A8# .. 16#A9# => -- 1BA8 .. 1BA9 (Nonspacing_Mark, Neutral, Extend, Extend, Extend, Combining_Mark, (Other_Alphabetic | Alphabetic | Case_Ignorable | Grapheme_Extend | ID_Continue | XID_Continue => True, others => False)), 16#AA# => -- 1BAA (Spacing_Mark, Neutral, Spacing_Mark, Extend, Extend, Combining_Mark, (Diacritic | Grapheme_Base | Grapheme_Link | ID_Continue | XID_Continue => True, others => False)), 16#AB# => -- 1BAB (Nonspacing_Mark, Neutral, Extend, Extend, Extend, Combining_Mark, (Diacritic | Case_Ignorable | Grapheme_Extend | Grapheme_Link | ID_Continue | XID_Continue => True, others => False)), 16#AC# .. 16#AD# => -- 1BAC .. 1BAD (Nonspacing_Mark, Neutral, Extend, Extend, Extend, Combining_Mark, (Other_Alphabetic | Alphabetic | Case_Ignorable | Grapheme_Extend | ID_Continue | XID_Continue => True, others => False)), 16#B0# .. 16#B9# => -- 1BB0 .. 1BB9 (Decimal_Number, Neutral, Other, Numeric, Numeric, Numeric, (Grapheme_Base | ID_Continue | XID_Continue => True, others => False)), 16#E6# => -- 1BE6 (Nonspacing_Mark, Neutral, Extend, Extend, Extend, Combining_Mark, (Case_Ignorable | Grapheme_Extend | ID_Continue | XID_Continue => True, others => False)), 16#E7# => -- 1BE7 (Spacing_Mark, Neutral, Spacing_Mark, Extend, Extend, Combining_Mark, (Other_Alphabetic | Alphabetic | Grapheme_Base | ID_Continue | XID_Continue => True, others => False)), 16#E8# .. 16#E9# => -- 1BE8 .. 1BE9 (Nonspacing_Mark, Neutral, Extend, Extend, Extend, Combining_Mark, (Other_Alphabetic | Alphabetic | Case_Ignorable | Grapheme_Extend | ID_Continue | XID_Continue => True, others => False)), 16#EA# .. 16#EC# => -- 1BEA .. 1BEC (Spacing_Mark, Neutral, Spacing_Mark, Extend, Extend, Combining_Mark, (Other_Alphabetic | Alphabetic | Grapheme_Base | ID_Continue | XID_Continue => True, others => False)), 16#ED# => -- 1BED (Nonspacing_Mark, Neutral, Extend, Extend, Extend, Combining_Mark, (Other_Alphabetic | Alphabetic | Case_Ignorable | Grapheme_Extend | ID_Continue | XID_Continue => True, others => False)), 16#EE# => -- 1BEE (Spacing_Mark, Neutral, Spacing_Mark, Extend, Extend, Combining_Mark, (Other_Alphabetic | Alphabetic | Grapheme_Base | ID_Continue | XID_Continue => True, others => False)), 16#EF# .. 16#F1# => -- 1BEF .. 1BF1 (Nonspacing_Mark, Neutral, Extend, Extend, Extend, Combining_Mark, (Other_Alphabetic | Alphabetic | Case_Ignorable | Grapheme_Extend | ID_Continue | XID_Continue => True, others => False)), 16#F2# .. 16#F3# => -- 1BF2 .. 1BF3 (Spacing_Mark, Neutral, Spacing_Mark, Extend, Extend, Combining_Mark, (Grapheme_Base | Grapheme_Link | ID_Continue | XID_Continue => True, others => False)), 16#F4# .. 16#FB# => -- 1BF4 .. 1BFB (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#FC# .. 16#FF# => -- 1BFC .. 1BFF (Other_Punctuation, Neutral, Other, Other, Other, Alphabetic, (Grapheme_Base => True, others => False)), others => (Other_Letter, Neutral, Other, A_Letter, O_Letter, Alphabetic, (Alphabetic | Grapheme_Base | ID_Continue | ID_Start | XID_Continue | XID_Start => True, others => False))); end Matreshka.Internals.Unicode.Ucd.Core_001B;
39.45098
78
0.451976
50b7c3bb03e870b2109279fc2155872338b28348
815,870
adb
Ada
AES_IP/HLS_Encrypt/solution1/.autopilot/db/encrypt.sched.adb
CactiLab/2020-ectf-rit-system-pl
6e6bbb89da3c999bae7208bcfae986f44a93ca8e
[ "Apache-2.0" ]
null
null
null
AES_IP/HLS_Encrypt/solution1/.autopilot/db/encrypt.sched.adb
CactiLab/2020-ectf-rit-system-pl
6e6bbb89da3c999bae7208bcfae986f44a93ca8e
[ "Apache-2.0" ]
null
null
null
AES_IP/HLS_Encrypt/solution1/.autopilot/db/encrypt.sched.adb
CactiLab/2020-ectf-rit-system-pl
6e6bbb89da3c999bae7208bcfae986f44a93ca8e
[ "Apache-2.0" ]
null
null
null
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="15"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName></userIPName> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>encrypt</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>PlainText</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>PlainText</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>1</if_type> <array_size>16</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>CipherText</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>CipherText</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>1</direction> <if_type>1</if_type> <array_size>16</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>365</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_3"> <Value> <Obj> <type>0</type> <id>9</id> <name>StateArray</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>39</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second class_id="11" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="12" tracking_level="0" version="0"> <first class_id="13" tracking_level="0" version="0"> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>39</second> </item> </second> </item> </inlineStackInfo> <originalName>StateArray</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>455</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>1</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_4"> <Value> <Obj> <type>0</type> <id>10</id> <name>StateArray_addr</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>109</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>109</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>456</item> <item>458</item> <item>460</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>2</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_5"> <Value> <Obj> <type>0</type> <id>11</id> <name>StateArray_addr_1</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>110</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>110</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>461</item> <item>462</item> <item>464</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>3</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_6"> <Value> <Obj> <type>0</type> <id>12</id> <name>StateArray_addr_2</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>111</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>111</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>465</item> <item>466</item> <item>468</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>4</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_7"> <Value> <Obj> <type>0</type> <id>13</id> <name>StateArray_addr_3</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>112</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>112</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>469</item> <item>470</item> <item>472</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>5</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_8"> <Value> <Obj> <type>0</type> <id>14</id> <name>StateArray_addr_4</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>115</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>115</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>473</item> <item>474</item> <item>476</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>6</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_9"> <Value> <Obj> <type>0</type> <id>15</id> <name>StateArray_addr_5</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>116</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>116</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>477</item> <item>478</item> <item>480</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>7</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>16</id> <name>StateArray_addr_6</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>118</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>118</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>481</item> <item>482</item> <item>484</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>8</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>17</id> <name>StateArray_addr_7</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>119</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>119</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>485</item> <item>486</item> <item>488</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>9</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>18</id> <name>StateArray_addr_8</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>122</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>122</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>489</item> <item>490</item> <item>492</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>10</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>19</id> <name>StateArray_addr_9</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>123</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>123</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>493</item> <item>494</item> <item>496</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>11</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>20</id> <name>StateArray_addr_10</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>124</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>124</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>497</item> <item>498</item> <item>500</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>12</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>21</id> <name>StateArray_addr_11</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>125</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>125</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>501</item> <item>502</item> <item>504</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>13</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>22</id> <name>ExpandedKey</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>40</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>40</second> </item> </second> </item> </inlineStackInfo> <originalName>ExpandedKey</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>505</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>14</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>23</id> <name>StateArrayTmp</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>130</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>130</second> </item> </second> </item> </inlineStackInfo> <originalName>StateArrayTmp</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>506</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>15</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>29</id> <name>_ln51</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>507</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>16</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>31</id> <name>i_0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>510</item> <item>511</item> <item>512</item> <item>513</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>17</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>32</id> <name>icmp_ln51</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>514</item> <item>516</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>18</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>34</id> <name>i</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>517</item> <item>519</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.65</m_delay> <m_topoIndex>19</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>35</id> <name>_ln51</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>520</item> <item>521</item> <item>522</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>20</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>37</id> <name>tmp</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>53</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>53</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>525</item> <item>526</item> <item>528</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>21</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>38</id> <name>zext_ln52</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>529</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>22</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>39</id> <name>_ln52</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>530</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>23</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>41</id> <name>j_0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>j</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>531</item> <item>532</item> <item>533</item> <item>534</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>25</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>42</id> <name>icmp_ln52</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>535</item> <item>536</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>26</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>44</id> <name>j</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName>j</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>537</item> <item>538</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.65</m_delay> <m_topoIndex>27</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>45</id> <name>_ln52</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>539</item> <item>540</item> <item>541</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>28</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>47</id> <name>zext_ln53</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>53</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>53</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>542</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>29</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>48</id> <name>add_ln53</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>53</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>53</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>543</item> <item>544</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.78</m_delay> <m_topoIndex>30</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>49</id> <name>zext_ln53_1</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>53</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>53</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>545</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>31</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>50</id> <name>Key1_addr</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>53</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>53</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>546</item> <item>547</item> <item>548</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>32</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>51</id> <name>ExpandedKey_addr_4</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>53</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>53</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>549</item> <item>550</item> <item>551</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>35</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>52</id> <name>Key1_load</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>53</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>53</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>552</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.25</m_delay> <m_topoIndex>33</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>53</id> <name>ExpandedKey_addr_4_write_ln53</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>53</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>53</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>553</item> <item>554</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.25</m_delay> <m_topoIndex>36</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>54</id> <name>_ln52</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>52</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>52</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>555</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>37</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>56</id> <name>_ln0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>508</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>34</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>58</id> <name>_ln58</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>58</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>58</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>523</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>24</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>60</id> <name>i1_0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>556</item> <item>557</item> <item>559</item> <item>560</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>38</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>61</id> <name>icmp_ln58</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>58</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>58</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>561</item> <item>563</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.30</m_delay> <m_topoIndex>39</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>63</id> <name>_ln58</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>58</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>58</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>564</item> <item>565</item> <item>566</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>40</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>65</id> <name>add_ln60</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>568</item> <item>570</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.73</m_delay> <m_topoIndex>41</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>66</id> <name>zext_ln60</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>571</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>60</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>67</id> <name>tmp_1</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>573</item> <item>574</item> <item>576</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>42</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>68</id> <name>or_ln60</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>577</item> <item>579</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>75</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>69</id> <name>tmp_2_cast</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>581</item> <item>583</item> <item>584</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>76</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>70</id> <name>or_ln60_1</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>585</item> <item>587</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>43</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>71</id> <name>tmp_3</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>589</item> <item>591</item> <item>592</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>44</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>72</id> <name>ExpandedKey_addr</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>593</item> <item>594</item> <item>595</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>45</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>73</id> <name>or_ln61</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>596</item> <item>598</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>46</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>74</id> <name>tmp_4</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>599</item> <item>600</item> <item>601</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>47</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_53"> <Value> <Obj> <type>0</type> <id>75</id> <name>ExpandedKey_addr_1</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>602</item> <item>603</item> <item>604</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>48</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_54"> <Value> <Obj> <type>0</type> <id>76</id> <name>or_ln62</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>62</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>605</item> <item>607</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>77</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_55"> <Value> <Obj> <type>0</type> <id>77</id> <name>tmp_5_cast</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>62</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>608</item> <item>609</item> <item>610</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>78</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_56"> <Value> <Obj> <type>0</type> <id>78</id> <name>or_ln62_1</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>62</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>611</item> <item>613</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>52</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_57"> <Value> <Obj> <type>0</type> <id>79</id> <name>tmp_6</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>62</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>614</item> <item>615</item> <item>616</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>53</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_58"> <Value> <Obj> <type>0</type> <id>80</id> <name>ExpandedKey_addr_2</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>62</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>617</item> <item>618</item> <item>619</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>54</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_59"> <Value> <Obj> <type>0</type> <id>81</id> <name>or_ln63</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>620</item> <item>622</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>55</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_60"> <Value> <Obj> <type>0</type> <id>82</id> <name>tmp_7</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>623</item> <item>624</item> <item>625</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>56</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_61"> <Value> <Obj> <type>0</type> <id>83</id> <name>ExpandedKey_addr_3</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>626</item> <item>627</item> <item>628</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>57</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_62"> <Value> <Obj> <type>0</type> <id>84</id> <name>ExpandedKey_load</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>629</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.25</m_delay> <m_topoIndex>49</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_63"> <Value> <Obj> <type>0</type> <id>85</id> <name>ExpandedKey_load_1</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>61</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>61</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>630</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.25</m_delay> <m_topoIndex>50</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_64"> <Value> <Obj> <type>0</type> <id>86</id> <name>ExpandedKey_load_2</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>62</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>631</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.25</m_delay> <m_topoIndex>58</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_65"> <Value> <Obj> <type>0</type> <id>87</id> <name>ExpandedKey_load_3</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>632</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.25</m_delay> <m_topoIndex>59</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_66"> <Value> <Obj> <type>0</type> <id>88</id> <name>zext_ln66</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>633</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>61</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_67"> <Value> <Obj> <type>0</type> <id>89</id> <name>SBox_addr</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>634</item> <item>635</item> <item>636</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>62</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_68"> <Value> <Obj> <type>0</type> <id>90</id> <name>SBox_load</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>637</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.25</m_delay> <m_topoIndex>63</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_69"> <Value> <Obj> <type>0</type> <id>91</id> <name>zext_ln67</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>638</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>64</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_70"> <Value> <Obj> <type>0</type> <id>92</id> <name>SBox_addr_1</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>639</item> <item>640</item> <item>641</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>65</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_71"> <Value> <Obj> <type>0</type> <id>93</id> <name>TempKeyCol_1</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName>TempKeyCol[1]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>642</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.25</m_delay> <m_topoIndex>66</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_72"> <Value> <Obj> <type>0</type> <id>94</id> <name>zext_ln68</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>68</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>68</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>643</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>67</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_73"> <Value> <Obj> <type>0</type> <id>95</id> <name>SBox_addr_2</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>68</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>68</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>644</item> <item>645</item> <item>646</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>68</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_74"> <Value> <Obj> <type>0</type> <id>96</id> <name>TempKeyCol_2</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>68</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>68</second> </item> </second> </item> </inlineStackInfo> <originalName>TempKeyCol[2]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>647</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.25</m_delay> <m_topoIndex>69</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_75"> <Value> <Obj> <type>0</type> <id>97</id> <name>zext_ln69</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>648</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>70</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_76"> <Value> <Obj> <type>0</type> <id>98</id> <name>SBox_addr_3</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>649</item> <item>650</item> <item>651</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>71</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_77"> <Value> <Obj> <type>0</type> <id>99</id> <name>TempKeyCol_3</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName>TempKeyCol[3]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>652</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.25</m_delay> <m_topoIndex>72</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_78"> <Value> <Obj> <type>0</type> <id>100</id> <name>RCon_addr</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>72</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>72</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>653</item> <item>654</item> <item>655</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>73</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_79"> <Value> <Obj> <type>0</type> <id>101</id> <name>RCon_load</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>72</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>72</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>656</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.25</m_delay> <m_topoIndex>74</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_80"> <Value> <Obj> <type>0</type> <id>102</id> <name>TempKeyCol_0</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>72</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>72</second> </item> </second> </item> </inlineStackInfo> <originalName>TempKeyCol[0]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>657</item> <item>658</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.99</m_delay> <m_topoIndex>79</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_81"> <Value> <Obj> <type>0</type> <id>103</id> <name>tmp_8</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>81</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>81</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>659</item> <item>660</item> <item>661</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>80</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_82"> <Value> <Obj> <type>0</type> <id>104</id> <name>or_ln82</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>82</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>82</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>662</item> <item>663</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>81</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_83"> <Value> <Obj> <type>0</type> <id>105</id> <name>tmp_9_cast</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>664</item> <item>665</item> <item>666</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>82</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_84"> <Value> <Obj> <type>0</type> <id>106</id> <name>or_ln84</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>667</item> <item>668</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>83</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_85"> <Value> <Obj> <type>0</type> <id>107</id> <name>tmp_10_cast</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>669</item> <item>670</item> <item>671</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>84</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_86"> <Value> <Obj> <type>0</type> <id>108</id> <name>_ln75</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>672</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>85</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_87"> <Value> <Obj> <type>0</type> <id>110</id> <name>TempKeyCol_3_0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>TempKeyCol[3]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>673</item> <item>674</item> <item>675</item> <item>676</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>86</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_88"> <Value> <Obj> <type>0</type> <id>111</id> <name>TempKeyCol_2_0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>TempKeyCol[2]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>677</item> <item>678</item> <item>679</item> <item>680</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>87</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_89"> <Value> <Obj> <type>0</type> <id>112</id> <name>TempKeyCol_1_0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>TempKeyCol[1]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>681</item> <item>682</item> <item>683</item> <item>684</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>88</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_90"> <Value> <Obj> <type>0</type> <id>113</id> <name>TempKeyCol_0_0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>TempKeyCol[0]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>685</item> <item>686</item> <item>687</item> <item>688</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>89</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_91"> <Value> <Obj> <type>0</type> <id>114</id> <name>j2_0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>j</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>689</item> <item>690</item> <item>691</item> <item>692</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>90</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_92"> <Value> <Obj> <type>0</type> <id>115</id> <name>icmp_ln75</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>693</item> <item>694</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>91</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_93"> <Value> <Obj> <type>0</type> <id>117</id> <name>j_1</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName>j</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>695</item> <item>696</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.65</m_delay> <m_topoIndex>92</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_94"> <Value> <Obj> <type>0</type> <id>118</id> <name>_ln75</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>697</item> <item>698</item> <item>699</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>93</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_95"> <Value> <Obj> <type>0</type> <id>120</id> <name>zext_ln76</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>700</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>94</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_96"> <Value> <Obj> <type>0</type> <id>121</id> <name>tmp_2</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>702</item> <item>703</item> <item>704</item> <item>705</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>95</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_97"> <Value> <Obj> <type>0</type> <id>122</id> <name>zext_ln76_1</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>706</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>96</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_98"> <Value> <Obj> <type>0</type> <id>123</id> <name>ExpandedKey_addr_5</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>707</item> <item>708</item> <item>709</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>97</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_99"> <Value> <Obj> <type>0</type> <id>124</id> <name>add_ln77</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>77</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>77</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>710</item> <item>711</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.82</m_delay> <m_topoIndex>98</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_100"> <Value> <Obj> <type>0</type> <id>125</id> <name>zext_ln77</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>77</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>77</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>712</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>99</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_101"> <Value> <Obj> <type>0</type> <id>126</id> <name>ExpandedKey_addr_6</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>77</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>77</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>713</item> <item>714</item> <item>715</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>100</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_102"> <Value> <Obj> <type>0</type> <id>127</id> <name>or_ln78</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>78</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>78</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>716</item> <item>718</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>108</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_103"> <Value> <Obj> <type>0</type> <id>128</id> <name>tmp_5</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>78</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>78</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>719</item> <item>720</item> <item>721</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>109</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_104"> <Value> <Obj> <type>0</type> <id>129</id> <name>ExpandedKey_addr_7</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>78</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>78</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>722</item> <item>723</item> <item>724</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>110</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_105"> <Value> <Obj> <type>0</type> <id>130</id> <name>add_ln79</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>79</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>79</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>725</item> <item>726</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.82</m_delay> <m_topoIndex>101</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_106"> <Value> <Obj> <type>0</type> <id>131</id> <name>zext_ln79</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>79</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>79</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>727</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>111</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_107"> <Value> <Obj> <type>0</type> <id>132</id> <name>ExpandedKey_addr_8</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>79</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>79</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>728</item> <item>729</item> <item>730</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>112</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_108"> <Value> <Obj> <type>0</type> <id>133</id> <name>tmp_9</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>81</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>81</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>731</item> <item>732</item> <item>733</item> <item>734</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>117</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_109"> <Value> <Obj> <type>0</type> <id>134</id> <name>zext_ln81</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>81</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>81</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>735</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>118</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_110"> <Value> <Obj> <type>0</type> <id>135</id> <name>ExpandedKey_addr_9</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>81</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>81</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>736</item> <item>737</item> <item>738</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>119</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_111"> <Value> <Obj> <type>0</type> <id>136</id> <name>add_ln82</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>82</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>82</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>739</item> <item>740</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.82</m_delay> <m_topoIndex>102</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_112"> <Value> <Obj> <type>0</type> <id>137</id> <name>zext_ln82</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>82</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>82</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>741</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>120</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_113"> <Value> <Obj> <type>0</type> <id>138</id> <name>ExpandedKey_addr_10</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>82</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>82</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>742</item> <item>743</item> <item>744</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>121</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_114"> <Value> <Obj> <type>0</type> <id>139</id> <name>or_ln83</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>83</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>83</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>745</item> <item>746</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>126</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_115"> <Value> <Obj> <type>0</type> <id>140</id> <name>tmp_10</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>83</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>83</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>747</item> <item>748</item> <item>749</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>127</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_116"> <Value> <Obj> <type>0</type> <id>141</id> <name>ExpandedKey_addr_11</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>83</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>83</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>750</item> <item>751</item> <item>752</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>128</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_117"> <Value> <Obj> <type>0</type> <id>142</id> <name>add_ln84</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>753</item> <item>754</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.82</m_delay> <m_topoIndex>103</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_118"> <Value> <Obj> <type>0</type> <id>143</id> <name>zext_ln84</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>755</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>129</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_119"> <Value> <Obj> <type>0</type> <id>144</id> <name>ExpandedKey_addr_12</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>756</item> <item>757</item> <item>758</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>130</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_120"> <Value> <Obj> <type>0</type> <id>145</id> <name>ExpandedKey_load_4</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>759</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.25</m_delay> <m_topoIndex>104</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_121"> <Value> <Obj> <type>0</type> <id>146</id> <name>TempKeyCol_0_1</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>76</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>76</second> </item> </second> </item> </inlineStackInfo> <originalName>TempKeyCol[0]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>760</item> <item>761</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.99</m_delay> <m_topoIndex>113</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_122"> <Value> <Obj> <type>0</type> <id>147</id> <name>ExpandedKey_load_5</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>77</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>77</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>762</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.25</m_delay> <m_topoIndex>105</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_123"> <Value> <Obj> <type>0</type> <id>148</id> <name>TempKeyCol_1_1</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>77</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>77</second> </item> </second> </item> </inlineStackInfo> <originalName>TempKeyCol[1]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>763</item> <item>764</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.99</m_delay> <m_topoIndex>114</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_124"> <Value> <Obj> <type>0</type> <id>149</id> <name>ExpandedKey_load_6</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>78</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>78</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>765</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.25</m_delay> <m_topoIndex>115</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_125"> <Value> <Obj> <type>0</type> <id>150</id> <name>TempKeyCol_2_1</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>78</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>78</second> </item> </second> </item> </inlineStackInfo> <originalName>TempKeyCol[2]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>766</item> <item>767</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.99</m_delay> <m_topoIndex>122</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_126"> <Value> <Obj> <type>0</type> <id>151</id> <name>ExpandedKey_load_7</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>79</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>79</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>768</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.25</m_delay> <m_topoIndex>116</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_127"> <Value> <Obj> <type>0</type> <id>152</id> <name>TempKeyCol_3_1</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>79</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>79</second> </item> </second> </item> </inlineStackInfo> <originalName>TempKeyCol[3]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>769</item> <item>770</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.99</m_delay> <m_topoIndex>123</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_128"> <Value> <Obj> <type>0</type> <id>153</id> <name>ExpandedKey_addr_9_write_ln81</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>81</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>81</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>771</item> <item>772</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.25</m_delay> <m_topoIndex>124</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_129"> <Value> <Obj> <type>0</type> <id>154</id> <name>ExpandedKey_addr_10_write_ln82</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>82</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>82</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>773</item> <item>774</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.25</m_delay> <m_topoIndex>125</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_130"> <Value> <Obj> <type>0</type> <id>155</id> <name>ExpandedKey_addr_11_write_ln83</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>83</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>83</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>775</item> <item>776</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.25</m_delay> <m_topoIndex>131</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_131"> <Value> <Obj> <type>0</type> <id>156</id> <name>ExpandedKey_addr_12_write_ln84</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>84</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>84</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>777</item> <item>778</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.25</m_delay> <m_topoIndex>132</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_132"> <Value> <Obj> <type>0</type> <id>157</id> <name>_ln75</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>75</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>75</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>779</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>133</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_133"> <Value> <Obj> <type>0</type> <id>159</id> <name>i_9</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>58</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>58</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>780</item> <item>781</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.73</m_delay> <m_topoIndex>106</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_134"> <Value> <Obj> <type>0</type> <id>160</id> <name>_ln58</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>58</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>58</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>782</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>107</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_135"> <Value> <Obj> <type>0</type> <id>162</id> <name>_ln88</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>88</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>88</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>567</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>51</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_136"> <Value> <Obj> <type>0</type> <id>164</id> <name>i3_0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>784</item> <item>785</item> <item>786</item> <item>787</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>134</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_137"> <Value> <Obj> <type>0</type> <id>165</id> <name>icmp_ln88</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>88</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>88</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>788</item> <item>789</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>135</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_138"> <Value> <Obj> <type>0</type> <id>167</id> <name>i_2</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>88</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>88</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>790</item> <item>791</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.65</m_delay> <m_topoIndex>136</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_139"> <Value> <Obj> <type>0</type> <id>168</id> <name>_ln88</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>88</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>88</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>792</item> <item>793</item> <item>794</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>137</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_140"> <Value> <Obj> <type>0</type> <id>170</id> <name>tmp_s</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>90</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>90</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>796</item> <item>797</item> <item>798</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>138</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_141"> <Value> <Obj> <type>0</type> <id>171</id> <name>zext_ln89</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>89</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>89</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>799</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>139</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_142"> <Value> <Obj> <type>0</type> <id>172</id> <name>_ln89</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>89</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>89</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>800</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>140</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_143"> <Value> <Obj> <type>0</type> <id>174</id> <name>j4_0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>j</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>801</item> <item>802</item> <item>803</item> <item>804</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>142</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_144"> <Value> <Obj> <type>0</type> <id>175</id> <name>icmp_ln89</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>89</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>89</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>805</item> <item>806</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>143</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_145"> <Value> <Obj> <type>0</type> <id>177</id> <name>j_2</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>89</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>89</second> </item> </second> </item> </inlineStackInfo> <originalName>j</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>807</item> <item>808</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.65</m_delay> <m_topoIndex>144</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_146"> <Value> <Obj> <type>0</type> <id>178</id> <name>_ln89</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>89</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>89</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>809</item> <item>810</item> <item>811</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>145</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_147"> <Value> <Obj> <type>0</type> <id>180</id> <name>zext_ln90</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>90</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>90</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>812</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>146</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_148"> <Value> <Obj> <type>0</type> <id>181</id> <name>add_ln90</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>90</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>90</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>813</item> <item>814</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.78</m_delay> <m_topoIndex>147</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_149"> <Value> <Obj> <type>0</type> <id>182</id> <name>zext_ln90_1</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>90</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>90</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>815</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>148</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_150"> <Value> <Obj> <type>0</type> <id>183</id> <name>PlainText_addr</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>90</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>90</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>816</item> <item>817</item> <item>818</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>149</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_151"> <Value> <Obj> <type>0</type> <id>184</id> <name>StateArray_addr_12</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>90</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>90</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>819</item> <item>820</item> <item>821</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>152</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_152"> <Value> <Obj> <type>0</type> <id>185</id> <name>PlainText_load</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>90</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>90</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>822</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>150</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_153"> <Value> <Obj> <type>0</type> <id>186</id> <name>StateArray_addr_12_write_ln90</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>90</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>90</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>823</item> <item>824</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>153</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_154"> <Value> <Obj> <type>0</type> <id>187</id> <name>_ln89</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>89</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>89</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>825</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>154</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_155"> <Value> <Obj> <type>0</type> <id>189</id> <name>_ln0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>783</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>151</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_156"> <Value> <Obj> <type>0</type> <id>191</id> <name>_ln95</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>95</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>95</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>795</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>141</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_157"> <Value> <Obj> <type>0</type> <id>193</id> <name>i5_0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>827</item> <item>828</item> <item>829</item> <item>830</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>155</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_158"> <Value> <Obj> <type>0</type> <id>194</id> <name>icmp_ln95</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>95</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>95</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>831</item> <item>832</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>156</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_159"> <Value> <Obj> <type>0</type> <id>196</id> <name>i_10</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>95</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>95</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>833</item> <item>834</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.65</m_delay> <m_topoIndex>157</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_160"> <Value> <Obj> <type>0</type> <id>197</id> <name>_ln95</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>95</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>95</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>835</item> <item>836</item> <item>837</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>158</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_161"> <Value> <Obj> <type>0</type> <id>199</id> <name>tmp_11</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>97</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>97</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>839</item> <item>840</item> <item>841</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>159</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_162"> <Value> <Obj> <type>0</type> <id>200</id> <name>zext_ln96</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>96</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>96</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>842</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>160</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_163"> <Value> <Obj> <type>0</type> <id>201</id> <name>_ln96</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>96</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>96</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>843</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>161</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_164"> <Value> <Obj> <type>0</type> <id>203</id> <name>j6_0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>j</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>844</item> <item>845</item> <item>846</item> <item>847</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>163</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_165"> <Value> <Obj> <type>0</type> <id>204</id> <name>icmp_ln96</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>96</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>96</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>848</item> <item>849</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>164</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_166"> <Value> <Obj> <type>0</type> <id>206</id> <name>j_3</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>96</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>96</second> </item> </second> </item> </inlineStackInfo> <originalName>j</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>850</item> <item>851</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.65</m_delay> <m_topoIndex>165</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_167"> <Value> <Obj> <type>0</type> <id>207</id> <name>_ln96</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>96</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>96</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>852</item> <item>853</item> <item>854</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>166</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_168"> <Value> <Obj> <type>0</type> <id>209</id> <name>zext_ln97</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>97</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>97</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>855</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>167</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_169"> <Value> <Obj> <type>0</type> <id>210</id> <name>add_ln97</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>97</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>97</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>856</item> <item>857</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.78</m_delay> <m_topoIndex>168</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_170"> <Value> <Obj> <type>0</type> <id>211</id> <name>zext_ln97_1</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>97</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>97</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>858</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>169</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_171"> <Value> <Obj> <type>0</type> <id>212</id> <name>StateArray_addr_13</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>97</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>97</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>859</item> <item>860</item> <item>861</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>170</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_172"> <Value> <Obj> <type>0</type> <id>213</id> <name>ExpandedKey_addr_13</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>97</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>97</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>862</item> <item>863</item> <item>864</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>171</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_173"> <Value> <Obj> <type>0</type> <id>214</id> <name>ExpandedKey_load_8</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>97</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>97</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>865</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.25</m_delay> <m_topoIndex>172</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_174"> <Value> <Obj> <type>0</type> <id>215</id> <name>StateArray_load</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>97</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>97</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>866</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>173</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_175"> <Value> <Obj> <type>0</type> <id>216</id> <name>xor_ln97</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>97</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>97</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>867</item> <item>868</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.99</m_delay> <m_topoIndex>175</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_176"> <Value> <Obj> <type>0</type> <id>217</id> <name>StateArray_addr_13_write_ln97</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>97</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>97</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>869</item> <item>870</item> <item>1495</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>176</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_177"> <Value> <Obj> <type>0</type> <id>218</id> <name>_ln96</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>96</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>96</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>871</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>177</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_178"> <Value> <Obj> <type>0</type> <id>220</id> <name>_ln0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>826</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>174</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_179"> <Value> <Obj> <type>0</type> <id>222</id> <name>_ln100</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>100</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>100</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>838</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>162</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_180"> <Value> <Obj> <type>0</type> <id>224</id> <name>r_0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>r</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>872</item> <item>873</item> <item>874</item> <item>875</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>178</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_181"> <Value> <Obj> <type>0</type> <id>225</id> <name>icmp_ln100</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>100</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>100</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>876</item> <item>877</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.30</m_delay> <m_topoIndex>179</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_182"> <Value> <Obj> <type>0</type> <id>227</id> <name>_ln100</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>100</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>100</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>878</item> <item>879</item> <item>880</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>180</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_183"> <Value> <Obj> <type>0</type> <id>229</id> <name>_ln102</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>102</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>102</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>881</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>181</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_184"> <Value> <Obj> <type>0</type> <id>231</id> <name>i7_0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>884</item> <item>885</item> <item>886</item> <item>887</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>183</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_185"> <Value> <Obj> <type>0</type> <id>232</id> <name>icmp_ln102</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>102</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>102</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>888</item> <item>889</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>184</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_186"> <Value> <Obj> <type>0</type> <id>234</id> <name>i_12</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>102</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>102</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>890</item> <item>891</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.65</m_delay> <m_topoIndex>185</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_187"> <Value> <Obj> <type>0</type> <id>235</id> <name>_ln102</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>102</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>102</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>892</item> <item>893</item> <item>894</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>186</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_188"> <Value> <Obj> <type>0</type> <id>237</id> <name>tmp_13</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>104</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>895</item> <item>896</item> <item>897</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>187</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_189"> <Value> <Obj> <type>0</type> <id>238</id> <name>zext_ln103</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>898</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>188</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_190"> <Value> <Obj> <type>0</type> <id>239</id> <name>_ln103</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>899</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>189</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_191"> <Value> <Obj> <type>0</type> <id>241</id> <name>j8_0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>j</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>900</item> <item>901</item> <item>902</item> <item>903</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>192</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_192"> <Value> <Obj> <type>0</type> <id>242</id> <name>icmp_ln103</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>904</item> <item>905</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>193</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_193"> <Value> <Obj> <type>0</type> <id>244</id> <name>j_5</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName>j</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>906</item> <item>907</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.65</m_delay> <m_topoIndex>194</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_194"> <Value> <Obj> <type>0</type> <id>245</id> <name>_ln103</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>908</item> <item>909</item> <item>910</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>195</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_195"> <Value> <Obj> <type>0</type> <id>247</id> <name>zext_ln104_1</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>104</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>911</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>196</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_196"> <Value> <Obj> <type>0</type> <id>248</id> <name>add_ln104</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>104</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>912</item> <item>913</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.78</m_delay> <m_topoIndex>197</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_197"> <Value> <Obj> <type>0</type> <id>249</id> <name>zext_ln104_2</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>104</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>914</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>198</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_198"> <Value> <Obj> <type>0</type> <id>250</id> <name>StateArray_addr_15</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>104</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>915</item> <item>916</item> <item>917</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>199</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_199"> <Value> <Obj> <type>0</type> <id>251</id> <name>StateArray_load_14</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>104</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>918</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>200</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_200"> <Value> <Obj> <type>0</type> <id>252</id> <name>zext_ln104</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>104</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>919</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>202</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_201"> <Value> <Obj> <type>0</type> <id>253</id> <name>SBox_addr_4</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>104</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>920</item> <item>921</item> <item>922</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>203</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_202"> <Value> <Obj> <type>0</type> <id>254</id> <name>SBox_load_4</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>104</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>923</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.25</m_delay> <m_topoIndex>204</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_203"> <Value> <Obj> <type>0</type> <id>255</id> <name>StateArray_addr_15_write_ln104</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>104</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>924</item> <item>925</item> <item>1496</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>205</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_204"> <Value> <Obj> <type>0</type> <id>256</id> <name>_ln103</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>926</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>206</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_205"> <Value> <Obj> <type>0</type> <id>258</id> <name>_ln0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>883</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>201</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_206"> <Value> <Obj> <type>0</type> <id>260</id> <name>x</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>109</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>109</second> </item> </second> </item> </inlineStackInfo> <originalName>x</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>927</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>190</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_207"> <Value> <Obj> <type>0</type> <id>261</id> <name>StateArray_load_2</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>110</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>110</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>928</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>191</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_208"> <Value> <Obj> <type>0</type> <id>262</id> <name>StateArray_addr_write_ln110</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>110</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>110</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>929</item> <item>930</item> <item>1508</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>217</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_209"> <Value> <Obj> <type>0</type> <id>263</id> <name>StateArray_load_3</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>111</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>111</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>931</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>207</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_210"> <Value> <Obj> <type>0</type> <id>264</id> <name>StateArray_addr_1_write_ln111</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>111</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>111</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>932</item> <item>933</item> <item>1507</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>218</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_211"> <Value> <Obj> <type>0</type> <id>265</id> <name>StateArray_load_4</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>112</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>112</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>934</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>208</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_212"> <Value> <Obj> <type>0</type> <id>266</id> <name>StateArray_addr_2_write_ln112</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>112</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>112</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>935</item> <item>936</item> <item>1506</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>219</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_213"> <Value> <Obj> <type>0</type> <id>267</id> <name>StateArray_addr_3_write_ln113</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>113</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>113</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>937</item> <item>938</item> <item>1505</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>220</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_214"> <Value> <Obj> <type>0</type> <id>268</id> <name>x_1</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>115</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>115</second> </item> </second> </item> </inlineStackInfo> <originalName>x</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>939</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>209</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_215"> <Value> <Obj> <type>0</type> <id>269</id> <name>StateArray_load_6</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>116</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>116</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>940</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>210</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_216"> <Value> <Obj> <type>0</type> <id>270</id> <name>StateArray_addr_4_write_ln116</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>116</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>116</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>941</item> <item>942</item> <item>1504</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>221</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_217"> <Value> <Obj> <type>0</type> <id>271</id> <name>StateArray_addr_5_write_ln117</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>117</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>117</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>943</item> <item>944</item> <item>1503</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>222</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_218"> <Value> <Obj> <type>0</type> <id>272</id> <name>x_2</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>118</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>118</second> </item> </second> </item> </inlineStackInfo> <originalName>x</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>945</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>211</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_219"> <Value> <Obj> <type>0</type> <id>273</id> <name>StateArray_load_8</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>119</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>119</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>946</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>212</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_220"> <Value> <Obj> <type>0</type> <id>274</id> <name>StateArray_addr_6_write_ln119</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>119</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>119</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>947</item> <item>948</item> <item>1502</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>223</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_221"> <Value> <Obj> <type>0</type> <id>275</id> <name>StateArray_addr_7_write_ln120</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>120</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>120</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>949</item> <item>950</item> <item>1501</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>224</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_222"> <Value> <Obj> <type>0</type> <id>276</id> <name>x_3</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>122</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>122</second> </item> </second> </item> </inlineStackInfo> <originalName>x</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>951</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>213</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_223"> <Value> <Obj> <type>0</type> <id>277</id> <name>StateArray_load_10</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>123</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>123</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>952</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>214</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_224"> <Value> <Obj> <type>0</type> <id>278</id> <name>StateArray_addr_8_write_ln123</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>123</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>123</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>953</item> <item>954</item> <item>1500</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>225</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_225"> <Value> <Obj> <type>0</type> <id>279</id> <name>StateArray_load_11</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>124</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>124</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>955</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>215</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_226"> <Value> <Obj> <type>0</type> <id>280</id> <name>StateArray_addr_9_write_ln124</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>124</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>124</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>956</item> <item>957</item> <item>1499</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>226</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_227"> <Value> <Obj> <type>0</type> <id>281</id> <name>StateArray_load_12</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>125</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>125</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>958</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>216</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_228"> <Value> <Obj> <type>0</type> <id>282</id> <name>StateArray_addr_10_write_ln125</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>125</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>125</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>959</item> <item>960</item> <item>1498</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>227</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_229"> <Value> <Obj> <type>0</type> <id>283</id> <name>StateArray_addr_11_write_ln126</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>126</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>126</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>961</item> <item>962</item> <item>1497</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>228</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_230"> <Value> <Obj> <type>0</type> <id>284</id> <name>icmp_ln128</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>128</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>963</item> <item>965</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.30</m_delay> <m_topoIndex>229</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_231"> <Value> <Obj> <type>0</type> <id>285</id> <name>_ln128</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>128</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>966</item> <item>967</item> <item>968</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>230</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_232"> <Value> <Obj> <type>0</type> <id>287</id> <name>_ln132</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>132</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>132</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>969</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>231</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_233"> <Value> <Obj> <type>0</type> <id>289</id> <name>i9_0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>970</item> <item>971</item> <item>972</item> <item>973</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>232</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_234"> <Value> <Obj> <type>0</type> <id>290</id> <name>icmp_ln132</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>132</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>132</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>974</item> <item>975</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>233</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_235"> <Value> <Obj> <type>0</type> <id>292</id> <name>i_13</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>132</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>132</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>976</item> <item>977</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.65</m_delay> <m_topoIndex>234</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_236"> <Value> <Obj> <type>0</type> <id>293</id> <name>_ln132</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>132</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>132</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>978</item> <item>979</item> <item>980</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>235</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_237"> <Value> <Obj> <type>0</type> <id>295</id> <name>zext_ln133</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>982</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>236</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_238"> <Value> <Obj> <type>0</type> <id>296</id> <name>StateArray_addr_16</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>983</item> <item>984</item> <item>985</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>237</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_239"> <Value> <Obj> <type>0</type> <id>297</id> <name>xor_ln133_6</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>986</item> <item>987</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.96</m_delay> <m_topoIndex>238</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_240"> <Value> <Obj> <type>0</type> <id>298</id> <name>zext_ln133_1</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>988</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>239</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_241"> <Value> <Obj> <type>0</type> <id>299</id> <name>StateArray_addr_17</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>989</item> <item>990</item> <item>991</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>240</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_242"> <Value> <Obj> <type>0</type> <id>300</id> <name>tmp_14</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>993</item> <item>995</item> <item>996</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>244</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_243"> <Value> <Obj> <type>0</type> <id>301</id> <name>StateArray_addr_18</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>997</item> <item>998</item> <item>999</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>245</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_244"> <Value> <Obj> <type>0</type> <id>302</id> <name>sext_ln133</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1000</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>246</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_245"> <Value> <Obj> <type>0</type> <id>303</id> <name>zext_ln133_2</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1001</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>247</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_246"> <Value> <Obj> <type>0</type> <id>304</id> <name>StateArray_addr_19</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1002</item> <item>1003</item> <item>1004</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>248</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_247"> <Value> <Obj> <type>0</type> <id>305</id> <name>StateArrayTmp_addr</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1005</item> <item>1006</item> <item>1007</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>259</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_248"> <Value> <Obj> <type>0</type> <id>306</id> <name>StateArrayTmp_addr_1</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>136</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>136</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1008</item> <item>1009</item> <item>1010</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>260</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_249"> <Value> <Obj> <type>0</type> <id>307</id> <name>StateArrayTmp_addr_2</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>139</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>139</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1011</item> <item>1012</item> <item>1013</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>286</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_250"> <Value> <Obj> <type>0</type> <id>308</id> <name>StateArrayTmp_addr_3</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>142</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>142</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1014</item> <item>1015</item> <item>1016</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>287</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_251"> <Value> <Obj> <type>0</type> <id>309</id> <name>StateArray_load_15</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1017</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>241</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_252"> <Value> <Obj> <type>0</type> <id>310</id> <name>shl_ln133</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1018</item> <item>1020</item> </oprand_edges> <opcode>shl</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>249</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_253"> <Value> <Obj> <type>0</type> <id>311</id> <name>tmp_15</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1022</item> <item>1023</item> <item>1025</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>250</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_254"> <Value> <Obj> <type>0</type> <id>312</id> <name>select_ln133</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1026</item> <item>1028</item> <item>1030</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>251</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_255"> <Value> <Obj> <type>0</type> <id>313</id> <name>StateArray_load_16</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1031</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>242</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_256"> <Value> <Obj> <type>0</type> <id>314</id> <name>shl_ln133_1</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1032</item> <item>1033</item> </oprand_edges> <opcode>shl</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>252</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_257"> <Value> <Obj> <type>0</type> <id>315</id> <name>tmp_16</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1034</item> <item>1035</item> <item>1036</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>253</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_258"> <Value> <Obj> <type>0</type> <id>316</id> <name>select_ln133_1</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1037</item> <item>1038</item> <item>1039</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>254</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_259"> <Value> <Obj> <type>0</type> <id>317</id> <name>StateArray_load_17</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1040</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>255</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_260"> <Value> <Obj> <type>0</type> <id>318</id> <name>StateArray_load_18</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1041</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>256</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_261"> <Value> <Obj> <type>0</type> <id>319</id> <name>xor_ln133</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1042</item> <item>1043</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.99</m_delay> <m_topoIndex>261</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_262"> <Value> <Obj> <type>0</type> <id>320</id> <name>xor_ln133_1</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1044</item> <item>1045</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>262</m_topoIndex> <m_clusterGroupNumber>3</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_263"> <Value> <Obj> <type>0</type> <id>321</id> <name>xor_ln133_2</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1046</item> <item>1047</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.18</m_delay> <m_topoIndex>257</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_264"> <Value> <Obj> <type>0</type> <id>322</id> <name>xor_ln133_3</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1048</item> <item>1049</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.18</m_delay> <m_topoIndex>258</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_265"> <Value> <Obj> <type>0</type> <id>323</id> <name>xor_ln133_4</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1050</item> <item>1051</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>263</m_topoIndex> <m_clusterGroupNumber>3</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_266"> <Value> <Obj> <type>0</type> <id>324</id> <name>xor_ln133_5</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1052</item> <item>1053</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.99</m_delay> <m_topoIndex>264</m_topoIndex> <m_clusterGroupNumber>3</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_267"> <Value> <Obj> <type>0</type> <id>325</id> <name>StateArrayTmp_addr_write_ln133</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>133</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1054</item> <item>1055</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>265</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_268"> <Value> <Obj> <type>0</type> <id>326</id> <name>shl_ln136</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>136</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>136</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1056</item> <item>1057</item> </oprand_edges> <opcode>shl</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>266</m_topoIndex> <m_clusterGroupNumber>4</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_269"> <Value> <Obj> <type>0</type> <id>327</id> <name>tmp_17</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>136</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>136</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1058</item> <item>1059</item> <item>1060</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>267</m_topoIndex> <m_clusterGroupNumber>4</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_270"> <Value> <Obj> <type>0</type> <id>328</id> <name>select_ln136</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>136</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>136</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1061</item> <item>1062</item> <item>1063</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>268</m_topoIndex> <m_clusterGroupNumber>4</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_271"> <Value> <Obj> <type>0</type> <id>329</id> <name>xor_ln136</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>136</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>136</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1064</item> <item>1065</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>269</m_topoIndex> <m_clusterGroupNumber>5</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_272"> <Value> <Obj> <type>0</type> <id>330</id> <name>xor_ln136_1</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>136</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>136</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1066</item> <item>1067</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.18</m_delay> <m_topoIndex>270</m_topoIndex> <m_clusterGroupNumber>4</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_273"> <Value> <Obj> <type>0</type> <id>331</id> <name>xor_ln136_2</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>136</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>136</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1068</item> <item>1069</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>271</m_topoIndex> <m_clusterGroupNumber>5</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_274"> <Value> <Obj> <type>0</type> <id>332</id> <name>xor_ln136_3</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>136</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>136</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1070</item> <item>1071</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.99</m_delay> <m_topoIndex>272</m_topoIndex> <m_clusterGroupNumber>5</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_275"> <Value> <Obj> <type>0</type> <id>333</id> <name>StateArrayTmp_addr_1_write_ln136</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>136</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>136</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1072</item> <item>1073</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>273</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_276"> <Value> <Obj> <type>0</type> <id>334</id> <name>shl_ln139</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>139</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>139</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1074</item> <item>1075</item> </oprand_edges> <opcode>shl</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>274</m_topoIndex> <m_clusterGroupNumber>6</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_277"> <Value> <Obj> <type>0</type> <id>335</id> <name>tmp_18</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>139</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>139</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1076</item> <item>1077</item> <item>1078</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>275</m_topoIndex> <m_clusterGroupNumber>6</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_278"> <Value> <Obj> <type>0</type> <id>336</id> <name>select_ln139</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>139</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>139</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1079</item> <item>1080</item> <item>1081</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>276</m_topoIndex> <m_clusterGroupNumber>6</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_279"> <Value> <Obj> <type>0</type> <id>337</id> <name>xor_ln139</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>139</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>139</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1082</item> <item>1083</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>277</m_topoIndex> <m_clusterGroupNumber>7</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_280"> <Value> <Obj> <type>0</type> <id>338</id> <name>xor_ln139_1</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>139</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>139</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1084</item> <item>1085</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>278</m_topoIndex> <m_clusterGroupNumber>7</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_281"> <Value> <Obj> <type>0</type> <id>339</id> <name>xor_ln139_2</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>139</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>139</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1086</item> <item>1087</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.18</m_delay> <m_topoIndex>279</m_topoIndex> <m_clusterGroupNumber>6</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_282"> <Value> <Obj> <type>0</type> <id>340</id> <name>xor_ln139_3</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>139</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>139</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1088</item> <item>1089</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>280</m_topoIndex> <m_clusterGroupNumber>7</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_283"> <Value> <Obj> <type>0</type> <id>341</id> <name>xor_ln139_4</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>139</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>139</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1090</item> <item>1091</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.99</m_delay> <m_topoIndex>281</m_topoIndex> <m_clusterGroupNumber>7</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_284"> <Value> <Obj> <type>0</type> <id>342</id> <name>StateArrayTmp_addr_2_write_ln139</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>139</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>139</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1092</item> <item>1093</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>288</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_285"> <Value> <Obj> <type>0</type> <id>343</id> <name>xor_ln142</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>142</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>142</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1094</item> <item>1095</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>282</m_topoIndex> <m_clusterGroupNumber>8</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_286"> <Value> <Obj> <type>0</type> <id>344</id> <name>xor_ln142_1</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>142</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>142</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1096</item> <item>1097</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>283</m_topoIndex> <m_clusterGroupNumber>8</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_287"> <Value> <Obj> <type>0</type> <id>345</id> <name>xor_ln142_2</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>142</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>142</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1098</item> <item>1099</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>284</m_topoIndex> <m_clusterGroupNumber>8</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_288"> <Value> <Obj> <type>0</type> <id>346</id> <name>xor_ln142_3</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>142</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>142</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1100</item> <item>1101</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.99</m_delay> <m_topoIndex>285</m_topoIndex> <m_clusterGroupNumber>8</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_289"> <Value> <Obj> <type>0</type> <id>347</id> <name>StateArrayTmp_addr_3_write_ln142</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>142</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>142</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1102</item> <item>1103</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>289</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_290"> <Value> <Obj> <type>0</type> <id>348</id> <name>_ln132</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>132</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>132</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1104</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>290</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_291"> <Value> <Obj> <type>0</type> <id>350</id> <name>_ln148</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>148</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>148</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>981</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>243</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_292"> <Value> <Obj> <type>0</type> <id>352</id> <name>i10_0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1106</item> <item>1107</item> <item>1108</item> <item>1109</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>291</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_293"> <Value> <Obj> <type>0</type> <id>353</id> <name>icmp_ln148</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>148</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>148</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1110</item> <item>1111</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>292</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_294"> <Value> <Obj> <type>0</type> <id>355</id> <name>i_14</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>148</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>148</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1112</item> <item>1113</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.65</m_delay> <m_topoIndex>293</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_295"> <Value> <Obj> <type>0</type> <id>356</id> <name>_ln148</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>148</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>148</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1114</item> <item>1115</item> <item>1116</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>294</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_296"> <Value> <Obj> <type>0</type> <id>358</id> <name>tmp_19</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>150</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>150</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1117</item> <item>1118</item> <item>1119</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>295</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_297"> <Value> <Obj> <type>0</type> <id>359</id> <name>zext_ln149</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>149</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>149</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1120</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>296</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_298"> <Value> <Obj> <type>0</type> <id>360</id> <name>_ln149</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>149</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>149</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1121</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>297</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_299"> <Value> <Obj> <type>0</type> <id>362</id> <name>j11_0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>j</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1122</item> <item>1123</item> <item>1124</item> <item>1125</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>302</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_300"> <Value> <Obj> <type>0</type> <id>363</id> <name>icmp_ln149</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>149</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>149</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1126</item> <item>1127</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>303</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_301"> <Value> <Obj> <type>0</type> <id>365</id> <name>j_6</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>149</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>149</second> </item> </second> </item> </inlineStackInfo> <originalName>j</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1128</item> <item>1129</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.65</m_delay> <m_topoIndex>304</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_302"> <Value> <Obj> <type>0</type> <id>366</id> <name>_ln149</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>149</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>149</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1130</item> <item>1131</item> <item>1132</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>305</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_303"> <Value> <Obj> <type>0</type> <id>368</id> <name>zext_ln150</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>150</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>150</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1133</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>306</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_304"> <Value> <Obj> <type>0</type> <id>369</id> <name>add_ln150</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>150</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>150</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1134</item> <item>1135</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.78</m_delay> <m_topoIndex>307</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_305"> <Value> <Obj> <type>0</type> <id>370</id> <name>zext_ln150_1</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>150</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>150</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1136</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>308</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_306"> <Value> <Obj> <type>0</type> <id>371</id> <name>StateArray_addr_20</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>150</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>150</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1137</item> <item>1138</item> <item>1139</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>312</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_307"> <Value> <Obj> <type>0</type> <id>372</id> <name>StateArrayTmp_addr_4</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>150</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>150</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1140</item> <item>1141</item> <item>1142</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>309</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_308"> <Value> <Obj> <type>0</type> <id>373</id> <name>StateArrayTmp_load</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>150</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>150</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1143</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>310</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_309"> <Value> <Obj> <type>0</type> <id>374</id> <name>StateArray_addr_20_write_ln150</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>150</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>150</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1144</item> <item>1145</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>313</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_310"> <Value> <Obj> <type>0</type> <id>375</id> <name>_ln149</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>149</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>149</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1146</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>314</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_311"> <Value> <Obj> <type>0</type> <id>377</id> <name>_ln0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1105</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>311</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_312"> <Value> <Obj> <type>0</type> <id>379</id> <name>_ln0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1147</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>298</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_313"> <Value> <Obj> <type>0</type> <id>381</id> <name>tmp_20</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1149</item> <item>1150</item> <item>1151</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>299</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_314"> <Value> <Obj> <type>0</type> <id>382</id> <name>zext_ln156</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>156</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>156</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1152</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>300</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_315"> <Value> <Obj> <type>0</type> <id>383</id> <name>_ln156</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>156</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>156</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1153</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>301</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_316"> <Value> <Obj> <type>0</type> <id>385</id> <name>i12_0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1155</item> <item>1156</item> <item>1157</item> <item>1158</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>315</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_317"> <Value> <Obj> <type>0</type> <id>386</id> <name>icmp_ln156</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>156</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>156</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1159</item> <item>1160</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>316</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_318"> <Value> <Obj> <type>0</type> <id>388</id> <name>i_15</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>156</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>156</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1161</item> <item>1162</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.65</m_delay> <m_topoIndex>317</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_319"> <Value> <Obj> <type>0</type> <id>389</id> <name>_ln156</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>156</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>156</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1163</item> <item>1164</item> <item>1165</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>318</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_320"> <Value> <Obj> <type>0</type> <id>391</id> <name>zext_ln158</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1166</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>319</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_321"> <Value> <Obj> <type>0</type> <id>392</id> <name>tmp_21</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1167</item> <item>1168</item> <item>1169</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>320</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_322"> <Value> <Obj> <type>0</type> <id>393</id> <name>zext_ln158_1</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1170</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>321</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_323"> <Value> <Obj> <type>0</type> <id>394</id> <name>add_ln158</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1171</item> <item>1172</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.82</m_delay> <m_topoIndex>322</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_324"> <Value> <Obj> <type>0</type> <id>395</id> <name>tmp_28_cast</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>157</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>157</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1174</item> <item>1175</item> <item>1176</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>323</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_325"> <Value> <Obj> <type>0</type> <id>396</id> <name>_ln157</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>157</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>157</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1177</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>324</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_326"> <Value> <Obj> <type>0</type> <id>398</id> <name>j13_0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>j</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1178</item> <item>1179</item> <item>1180</item> <item>1181</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>327</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_327"> <Value> <Obj> <type>0</type> <id>399</id> <name>icmp_ln157</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>157</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>157</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1182</item> <item>1183</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>328</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_328"> <Value> <Obj> <type>0</type> <id>401</id> <name>j_7</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>157</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>157</second> </item> </second> </item> </inlineStackInfo> <originalName>j</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1184</item> <item>1185</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.65</m_delay> <m_topoIndex>329</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_329"> <Value> <Obj> <type>0</type> <id>402</id> <name>_ln157</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>157</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>157</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1186</item> <item>1187</item> <item>1188</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>330</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_330"> <Value> <Obj> <type>0</type> <id>404</id> <name>zext_ln158_2</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1189</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>331</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_331"> <Value> <Obj> <type>0</type> <id>405</id> <name>zext_ln158_3</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1190</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>332</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_332"> <Value> <Obj> <type>0</type> <id>406</id> <name>add_ln158_1</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1191</item> <item>1192</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.78</m_delay> <m_topoIndex>333</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_333"> <Value> <Obj> <type>0</type> <id>407</id> <name>zext_ln158_4</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1193</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>334</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_334"> <Value> <Obj> <type>0</type> <id>408</id> <name>StateArray_addr_21</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1194</item> <item>1195</item> <item>1196</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>335</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_335"> <Value> <Obj> <type>0</type> <id>409</id> <name>add_ln158_2</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1197</item> <item>1198</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.82</m_delay> <m_topoIndex>336</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_336"> <Value> <Obj> <type>0</type> <id>410</id> <name>zext_ln158_5</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1199</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>337</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_337"> <Value> <Obj> <type>0</type> <id>411</id> <name>ExpandedKey_addr_14</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1200</item> <item>1201</item> <item>1202</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>338</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_338"> <Value> <Obj> <type>0</type> <id>412</id> <name>ExpandedKey_load_9</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1203</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.25</m_delay> <m_topoIndex>339</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_339"> <Value> <Obj> <type>0</type> <id>413</id> <name>StateArray_load_19</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1204</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>340</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_340"> <Value> <Obj> <type>0</type> <id>414</id> <name>xor_ln158</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1205</item> <item>1206</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.99</m_delay> <m_topoIndex>342</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_341"> <Value> <Obj> <type>0</type> <id>415</id> <name>StateArray_addr_21_write_ln158</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1207</item> <item>1208</item> <item>1509</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>343</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_342"> <Value> <Obj> <type>0</type> <id>416</id> <name>_ln157</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>157</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>157</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1209</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>344</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_343"> <Value> <Obj> <type>0</type> <id>418</id> <name>_ln0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1154</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>341</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_344"> <Value> <Obj> <type>0</type> <id>420</id> <name>r</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>100</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>100</second> </item> </second> </item> </inlineStackInfo> <originalName>r</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1210</item> <item>1211</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.73</m_delay> <m_topoIndex>325</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_345"> <Value> <Obj> <type>0</type> <id>421</id> <name>_ln100</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>100</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>100</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1212</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>326</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_346"> <Value> <Obj> <type>0</type> <id>423</id> <name>_ln161</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>161</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>161</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>882</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>182</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_347"> <Value> <Obj> <type>0</type> <id>425</id> <name>i14_0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1214</item> <item>1215</item> <item>1216</item> <item>1217</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>345</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_348"> <Value> <Obj> <type>0</type> <id>426</id> <name>icmp_ln161</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>161</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>161</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1218</item> <item>1219</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>346</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_349"> <Value> <Obj> <type>0</type> <id>428</id> <name>i_11</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>161</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>161</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1220</item> <item>1221</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.65</m_delay> <m_topoIndex>347</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_350"> <Value> <Obj> <type>0</type> <id>429</id> <name>_ln161</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>161</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>161</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1222</item> <item>1223</item> <item>1224</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>348</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_351"> <Value> <Obj> <type>0</type> <id>431</id> <name>tmp_12</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>163</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>163</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1225</item> <item>1226</item> <item>1227</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>349</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_352"> <Value> <Obj> <type>0</type> <id>432</id> <name>zext_ln162</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>162</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>162</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1228</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>350</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_353"> <Value> <Obj> <type>0</type> <id>433</id> <name>_ln162</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>162</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>162</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1229</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.76</m_delay> <m_topoIndex>351</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_354"> <Value> <Obj> <type>0</type> <id>435</id> <name>j15_0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>j</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1230</item> <item>1231</item> <item>1232</item> <item>1233</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>353</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_355"> <Value> <Obj> <type>0</type> <id>436</id> <name>icmp_ln162</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>162</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>162</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1234</item> <item>1235</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.13</m_delay> <m_topoIndex>354</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_356"> <Value> <Obj> <type>0</type> <id>438</id> <name>j_4</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>162</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>162</second> </item> </second> </item> </inlineStackInfo> <originalName>j</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1236</item> <item>1237</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.65</m_delay> <m_topoIndex>355</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_357"> <Value> <Obj> <type>0</type> <id>439</id> <name>_ln162</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>162</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>162</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1238</item> <item>1239</item> <item>1240</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>356</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_358"> <Value> <Obj> <type>0</type> <id>441</id> <name>zext_ln163</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>163</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>163</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1241</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>357</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_359"> <Value> <Obj> <type>0</type> <id>442</id> <name>add_ln163</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>163</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>163</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1242</item> <item>1243</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.78</m_delay> <m_topoIndex>358</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_360"> <Value> <Obj> <type>0</type> <id>443</id> <name>zext_ln163_1</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>163</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>163</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1244</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>359</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_361"> <Value> <Obj> <type>0</type> <id>444</id> <name>CipherText_addr</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>163</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>163</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1245</item> <item>1246</item> <item>1247</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>363</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_362"> <Value> <Obj> <type>0</type> <id>445</id> <name>StateArray_addr_14</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>163</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>163</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1248</item> <item>1249</item> <item>1250</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>360</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_363"> <Value> <Obj> <type>0</type> <id>446</id> <name>StateArray_load_13</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>163</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>163</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1251</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>361</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_364"> <Value> <Obj> <type>0</type> <id>447</id> <name>CipherText_addr_write_ln163</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>163</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>163</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1252</item> <item>1253</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.32</m_delay> <m_topoIndex>364</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_365"> <Value> <Obj> <type>0</type> <id>448</id> <name>_ln162</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>162</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>162</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1254</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>365</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_366"> <Value> <Obj> <type>0</type> <id>450</id> <name>_ln0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1213</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>362</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_367"> <Value> <Obj> <type>0</type> <id>452</id> <name>_ln167</name> <fileName>AES_encrypt.cpp</fileName> <fileDirectory>/home/jason/Documents/misc/HLS_AES_Zip</fileDirectory> <lineNumber>167</lineNumber> <contextFuncName>encrypt</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/jason/Documents/misc/HLS_AES_Zip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>AES_encrypt.cpp</first> <second>encrypt</second> </first> <second>167</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>352</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>37</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_368"> <Value> <Obj> <type>2</type> <id>454</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_369"> <Value> <Obj> <type>2</type> <id>457</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_370"> <Value> <Obj> <type>2</type> <id>459</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>4</content> </item> <item class_id_reference="16" object_id="_371"> <Value> <Obj> <type>2</type> <id>463</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>5</content> </item> <item class_id_reference="16" object_id="_372"> <Value> <Obj> <type>2</type> <id>467</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>6</content> </item> <item class_id_reference="16" object_id="_373"> <Value> <Obj> <type>2</type> <id>471</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>7</content> </item> <item class_id_reference="16" object_id="_374"> <Value> <Obj> <type>2</type> <id>475</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>8</content> </item> <item class_id_reference="16" object_id="_375"> <Value> <Obj> <type>2</type> <id>479</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>10</content> </item> <item class_id_reference="16" object_id="_376"> <Value> <Obj> <type>2</type> <id>483</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>9</content> </item> <item class_id_reference="16" object_id="_377"> <Value> <Obj> <type>2</type> <id>487</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>11</content> </item> <item class_id_reference="16" object_id="_378"> <Value> <Obj> <type>2</type> <id>491</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>15</content> </item> <item class_id_reference="16" object_id="_379"> <Value> <Obj> <type>2</type> <id>495</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>14</content> </item> <item class_id_reference="16" object_id="_380"> <Value> <Obj> <type>2</type> <id>499</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>13</content> </item> <item class_id_reference="16" object_id="_381"> <Value> <Obj> <type>2</type> <id>503</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>12</content> </item> <item class_id_reference="16" object_id="_382"> <Value> <Obj> <type>2</type> <id>509</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_383"> <Value> <Obj> <type>2</type> <id>515</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>4</content> </item> <item class_id_reference="16" object_id="_384"> <Value> <Obj> <type>2</type> <id>518</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_385"> <Value> <Obj> <type>2</type> <id>527</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_386"> <Value> <Obj> <type>2</type> <id>558</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_387"> <Value> <Obj> <type>2</type> <id>562</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>11</content> </item> <item class_id_reference="16" object_id="_388"> <Value> <Obj> <type>2</type> <id>569</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>15</content> </item> <item class_id_reference="16" object_id="_389"> <Value> <Obj> <type>2</type> <id>575</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_390"> <Value> <Obj> <type>2</type> <id>578</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <const_type>0</const_type> <content>4</content> </item> <item class_id_reference="16" object_id="_391"> <Value> <Obj> <type>2</type> <id>582</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_392"> <Value> <Obj> <type>2</type> <id>586</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <const_type>0</const_type> <content>7</content> </item> <item class_id_reference="16" object_id="_393"> <Value> <Obj> <type>2</type> <id>590</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>56</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_394"> <Value> <Obj> <type>2</type> <id>597</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <const_type>0</const_type> <content>11</content> </item> <item class_id_reference="16" object_id="_395"> <Value> <Obj> <type>2</type> <id>606</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <const_type>0</const_type> <content>12</content> </item> <item class_id_reference="16" object_id="_396"> <Value> <Obj> <type>2</type> <id>612</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <const_type>0</const_type> <content>15</content> </item> <item class_id_reference="16" object_id="_397"> <Value> <Obj> <type>2</type> <id>621</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <const_type>0</const_type> <content>3</content> </item> <item class_id_reference="16" object_id="_398"> <Value> <Obj> <type>2</type> <id>717</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <const_type>0</const_type> <content>8</content> </item> <item class_id_reference="16" object_id="_399"> <Value> <Obj> <type>2</type> <id>964</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>10</content> </item> <item class_id_reference="16" object_id="_400"> <Value> <Obj> <type>2</type> <id>994</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>61</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_401"> <Value> <Obj> <type>2</type> <id>1019</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_402"> <Value> <Obj> <type>2</type> <id>1024</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>7</content> </item> <item class_id_reference="16" object_id="_403"> <Value> <Obj> <type>2</type> <id>1027</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <const_type>0</const_type> <content>27</content> </item> <item class_id_reference="16" object_id="_404"> <Value> <Obj> <type>2</type> <id>1029</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>57</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_405"> <Obj> <type>3</type> <id>30</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>16</count> <item_version>0</item_version> <item>9</item> <item>10</item> <item>11</item> <item>12</item> <item>13</item> <item>14</item> <item>15</item> <item>16</item> <item>17</item> <item>18</item> <item>19</item> <item>20</item> <item>21</item> <item>22</item> <item>23</item> <item>29</item> </node_objs> </item> <item class_id_reference="18" object_id="_406"> <Obj> <type>3</type> <id>36</id> <name>.loopexit9</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>31</item> <item>32</item> <item>34</item> <item>35</item> </node_objs> </item> <item class_id_reference="18" object_id="_407"> <Obj> <type>3</type> <id>40</id> <name>.preheader15.preheader</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>37</item> <item>38</item> <item>39</item> </node_objs> </item> <item class_id_reference="18" object_id="_408"> <Obj> <type>3</type> <id>46</id> <name>.preheader15</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>41</item> <item>42</item> <item>44</item> <item>45</item> </node_objs> </item> <item class_id_reference="18" object_id="_409"> <Obj> <type>3</type> <id>55</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>8</count> <item_version>0</item_version> <item>47</item> <item>48</item> <item>49</item> <item>50</item> <item>51</item> <item>52</item> <item>53</item> <item>54</item> </node_objs> </item> <item class_id_reference="18" object_id="_410"> <Obj> <type>3</type> <id>57</id> <name>.loopexit9.loopexit</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>56</item> </node_objs> </item> <item class_id_reference="18" object_id="_411"> <Obj> <type>3</type> <id>59</id> <name>.preheader14.preheader</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>58</item> </node_objs> </item> <item class_id_reference="18" object_id="_412"> <Obj> <type>3</type> <id>64</id> <name>.preheader14</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>60</item> <item>61</item> <item>63</item> </node_objs> </item> <item class_id_reference="18" object_id="_413"> <Obj> <type>3</type> <id>109</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>44</count> <item_version>0</item_version> <item>65</item> <item>66</item> <item>67</item> <item>68</item> <item>69</item> <item>70</item> <item>71</item> <item>72</item> <item>73</item> <item>74</item> <item>75</item> <item>76</item> <item>77</item> <item>78</item> <item>79</item> <item>80</item> <item>81</item> <item>82</item> <item>83</item> <item>84</item> <item>85</item> <item>86</item> <item>87</item> <item>88</item> <item>89</item> <item>90</item> <item>91</item> <item>92</item> <item>93</item> <item>94</item> <item>95</item> <item>96</item> <item>97</item> <item>98</item> <item>99</item> <item>100</item> <item>101</item> <item>102</item> <item>103</item> <item>104</item> <item>105</item> <item>106</item> <item>107</item> <item>108</item> </node_objs> </item> <item class_id_reference="18" object_id="_414"> <Obj> <type>3</type> <id>119</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>8</count> <item_version>0</item_version> <item>110</item> <item>111</item> <item>112</item> <item>113</item> <item>114</item> <item>115</item> <item>117</item> <item>118</item> </node_objs> </item> <item class_id_reference="18" object_id="_415"> <Obj> <type>3</type> <id>158</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>38</count> <item_version>0</item_version> <item>120</item> <item>121</item> <item>122</item> <item>123</item> <item>124</item> <item>125</item> <item>126</item> <item>127</item> <item>128</item> <item>129</item> <item>130</item> <item>131</item> <item>132</item> <item>133</item> <item>134</item> <item>135</item> <item>136</item> <item>137</item> <item>138</item> <item>139</item> <item>140</item> <item>141</item> <item>142</item> <item>143</item> <item>144</item> <item>145</item> <item>146</item> <item>147</item> <item>148</item> <item>149</item> <item>150</item> <item>151</item> <item>152</item> <item>153</item> <item>154</item> <item>155</item> <item>156</item> <item>157</item> </node_objs> </item> <item class_id_reference="18" object_id="_416"> <Obj> <type>3</type> <id>161</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>159</item> <item>160</item> </node_objs> </item> <item class_id_reference="18" object_id="_417"> <Obj> <type>3</type> <id>163</id> <name>.preheader13.preheader</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>162</item> </node_objs> </item> <item class_id_reference="18" object_id="_418"> <Obj> <type>3</type> <id>169</id> <name>.preheader13</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>164</item> <item>165</item> <item>167</item> <item>168</item> </node_objs> </item> <item class_id_reference="18" object_id="_419"> <Obj> <type>3</type> <id>173</id> <name>.preheader12.preheader</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>170</item> <item>171</item> <item>172</item> </node_objs> </item> <item class_id_reference="18" object_id="_420"> <Obj> <type>3</type> <id>179</id> <name>.preheader12</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>174</item> <item>175</item> <item>177</item> <item>178</item> </node_objs> </item> <item class_id_reference="18" object_id="_421"> <Obj> <type>3</type> <id>188</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>8</count> <item_version>0</item_version> <item>180</item> <item>181</item> <item>182</item> <item>183</item> <item>184</item> <item>185</item> <item>186</item> <item>187</item> </node_objs> </item> <item class_id_reference="18" object_id="_422"> <Obj> <type>3</type> <id>190</id> <name>.preheader13.loopexit</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>189</item> </node_objs> </item> <item class_id_reference="18" object_id="_423"> <Obj> <type>3</type> <id>192</id> <name>.preheader11.preheader</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>191</item> </node_objs> </item> <item class_id_reference="18" object_id="_424"> <Obj> <type>3</type> <id>198</id> <name>.preheader11</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>193</item> <item>194</item> <item>196</item> <item>197</item> </node_objs> </item> <item class_id_reference="18" object_id="_425"> <Obj> <type>3</type> <id>202</id> <name>.preheader10.preheader</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>199</item> <item>200</item> <item>201</item> </node_objs> </item> <item class_id_reference="18" object_id="_426"> <Obj> <type>3</type> <id>208</id> <name>.preheader10</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>203</item> <item>204</item> <item>206</item> <item>207</item> </node_objs> </item> <item class_id_reference="18" object_id="_427"> <Obj> <type>3</type> <id>219</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>10</count> <item_version>0</item_version> <item>209</item> <item>210</item> <item>211</item> <item>212</item> <item>213</item> <item>214</item> <item>215</item> <item>216</item> <item>217</item> <item>218</item> </node_objs> </item> <item class_id_reference="18" object_id="_428"> <Obj> <type>3</type> <id>221</id> <name>.preheader11.loopexit</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>220</item> </node_objs> </item> <item class_id_reference="18" object_id="_429"> <Obj> <type>3</type> <id>223</id> <name>.preheader9.preheader</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>222</item> </node_objs> </item> <item class_id_reference="18" object_id="_430"> <Obj> <type>3</type> <id>228</id> <name>.preheader9</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>224</item> <item>225</item> <item>227</item> </node_objs> </item> <item class_id_reference="18" object_id="_431"> <Obj> <type>3</type> <id>230</id> <name>.preheader8.preheader</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>229</item> </node_objs> </item> <item class_id_reference="18" object_id="_432"> <Obj> <type>3</type> <id>236</id> <name>.preheader8</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>231</item> <item>232</item> <item>234</item> <item>235</item> </node_objs> </item> <item class_id_reference="18" object_id="_433"> <Obj> <type>3</type> <id>240</id> <name>.preheader7.preheader</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>237</item> <item>238</item> <item>239</item> </node_objs> </item> <item class_id_reference="18" object_id="_434"> <Obj> <type>3</type> <id>246</id> <name>.preheader7</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>241</item> <item>242</item> <item>244</item> <item>245</item> </node_objs> </item> <item class_id_reference="18" object_id="_435"> <Obj> <type>3</type> <id>257</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>10</count> <item_version>0</item_version> <item>247</item> <item>248</item> <item>249</item> <item>250</item> <item>251</item> <item>252</item> <item>253</item> <item>254</item> <item>255</item> <item>256</item> </node_objs> </item> <item class_id_reference="18" object_id="_436"> <Obj> <type>3</type> <id>259</id> <name>.preheader8.loopexit</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>258</item> </node_objs> </item> <item class_id_reference="18" object_id="_437"> <Obj> <type>3</type> <id>286</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>26</count> <item_version>0</item_version> <item>260</item> <item>261</item> <item>262</item> <item>263</item> <item>264</item> <item>265</item> <item>266</item> <item>267</item> <item>268</item> <item>269</item> <item>270</item> <item>271</item> <item>272</item> <item>273</item> <item>274</item> <item>275</item> <item>276</item> <item>277</item> <item>278</item> <item>279</item> <item>280</item> <item>281</item> <item>282</item> <item>283</item> <item>284</item> <item>285</item> </node_objs> </item> <item class_id_reference="18" object_id="_438"> <Obj> <type>3</type> <id>288</id> <name>.preheader6.preheader</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>287</item> </node_objs> </item> <item class_id_reference="18" object_id="_439"> <Obj> <type>3</type> <id>294</id> <name>.preheader6</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>289</item> <item>290</item> <item>292</item> <item>293</item> </node_objs> </item> <item class_id_reference="18" object_id="_440"> <Obj> <type>3</type> <id>349</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>54</count> <item_version>0</item_version> <item>295</item> <item>296</item> <item>297</item> <item>298</item> <item>299</item> <item>300</item> <item>301</item> <item>302</item> <item>303</item> <item>304</item> <item>305</item> <item>306</item> <item>307</item> <item>308</item> <item>309</item> <item>310</item> <item>311</item> <item>312</item> <item>313</item> <item>314</item> <item>315</item> <item>316</item> <item>317</item> <item>318</item> <item>319</item> <item>320</item> <item>321</item> <item>322</item> <item>323</item> <item>324</item> <item>325</item> <item>326</item> <item>327</item> <item>328</item> <item>329</item> <item>330</item> <item>331</item> <item>332</item> <item>333</item> <item>334</item> <item>335</item> <item>336</item> <item>337</item> <item>338</item> <item>339</item> <item>340</item> <item>341</item> <item>342</item> <item>343</item> <item>344</item> <item>345</item> <item>346</item> <item>347</item> <item>348</item> </node_objs> </item> <item class_id_reference="18" object_id="_441"> <Obj> <type>3</type> <id>351</id> <name>.preheader5.preheader</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>350</item> </node_objs> </item> <item class_id_reference="18" object_id="_442"> <Obj> <type>3</type> <id>357</id> <name>.preheader5</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>352</item> <item>353</item> <item>355</item> <item>356</item> </node_objs> </item> <item class_id_reference="18" object_id="_443"> <Obj> <type>3</type> <id>361</id> <name>.preheader4.preheader</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>358</item> <item>359</item> <item>360</item> </node_objs> </item> <item class_id_reference="18" object_id="_444"> <Obj> <type>3</type> <id>367</id> <name>.preheader4</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>362</item> <item>363</item> <item>365</item> <item>366</item> </node_objs> </item> <item class_id_reference="18" object_id="_445"> <Obj> <type>3</type> <id>376</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>8</count> <item_version>0</item_version> <item>368</item> <item>369</item> <item>370</item> <item>371</item> <item>372</item> <item>373</item> <item>374</item> <item>375</item> </node_objs> </item> <item class_id_reference="18" object_id="_446"> <Obj> <type>3</type> <id>378</id> <name>.preheader5.loopexit</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>377</item> </node_objs> </item> <item class_id_reference="18" object_id="_447"> <Obj> <type>3</type> <id>380</id> <name>.loopexit.loopexit</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>379</item> </node_objs> </item> <item class_id_reference="18" object_id="_448"> <Obj> <type>3</type> <id>384</id> <name>.loopexit</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>381</item> <item>382</item> <item>383</item> </node_objs> </item> <item class_id_reference="18" object_id="_449"> <Obj> <type>3</type> <id>390</id> <name>.loopexit8</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>385</item> <item>386</item> <item>388</item> <item>389</item> </node_objs> </item> <item class_id_reference="18" object_id="_450"> <Obj> <type>3</type> <id>397</id> <name>.preheader3.preheader</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>6</count> <item_version>0</item_version> <item>391</item> <item>392</item> <item>393</item> <item>394</item> <item>395</item> <item>396</item> </node_objs> </item> <item class_id_reference="18" object_id="_451"> <Obj> <type>3</type> <id>403</id> <name>.preheader3</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>398</item> <item>399</item> <item>401</item> <item>402</item> </node_objs> </item> <item class_id_reference="18" object_id="_452"> <Obj> <type>3</type> <id>417</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>13</count> <item_version>0</item_version> <item>404</item> <item>405</item> <item>406</item> <item>407</item> <item>408</item> <item>409</item> <item>410</item> <item>411</item> <item>412</item> <item>413</item> <item>414</item> <item>415</item> <item>416</item> </node_objs> </item> <item class_id_reference="18" object_id="_453"> <Obj> <type>3</type> <id>419</id> <name>.loopexit8.loopexit</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>418</item> </node_objs> </item> <item class_id_reference="18" object_id="_454"> <Obj> <type>3</type> <id>422</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>420</item> <item>421</item> </node_objs> </item> <item class_id_reference="18" object_id="_455"> <Obj> <type>3</type> <id>424</id> <name>.preheader2.preheader</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>423</item> </node_objs> </item> <item class_id_reference="18" object_id="_456"> <Obj> <type>3</type> <id>430</id> <name>.preheader2</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>425</item> <item>426</item> <item>428</item> <item>429</item> </node_objs> </item> <item class_id_reference="18" object_id="_457"> <Obj> <type>3</type> <id>434</id> <name>.preheader.preheader</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>431</item> <item>432</item> <item>433</item> </node_objs> </item> <item class_id_reference="18" object_id="_458"> <Obj> <type>3</type> <id>440</id> <name>.preheader</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>435</item> <item>436</item> <item>438</item> <item>439</item> </node_objs> </item> <item class_id_reference="18" object_id="_459"> <Obj> <type>3</type> <id>449</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>8</count> <item_version>0</item_version> <item>441</item> <item>442</item> <item>443</item> <item>444</item> <item>445</item> <item>446</item> <item>447</item> <item>448</item> </node_objs> </item> <item class_id_reference="18" object_id="_460"> <Obj> <type>3</type> <id>451</id> <name>.preheader2.loopexit</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>450</item> </node_objs> </item> <item class_id_reference="18" object_id="_461"> <Obj> <type>3</type> <id>453</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>452</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>817</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_462"> <id>455</id> <edge_type>1</edge_type> <source_obj>454</source_obj> <sink_obj>9</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_463"> <id>456</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>10</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_464"> <id>458</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>10</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_465"> <id>460</id> <edge_type>1</edge_type> <source_obj>459</source_obj> <sink_obj>10</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_466"> <id>461</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>11</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_467"> <id>462</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>11</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_468"> <id>464</id> <edge_type>1</edge_type> <source_obj>463</source_obj> <sink_obj>11</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_469"> <id>465</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>12</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_470"> <id>466</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>12</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_471"> <id>468</id> <edge_type>1</edge_type> <source_obj>467</source_obj> <sink_obj>12</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_472"> <id>469</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>13</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_473"> <id>470</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>13</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_474"> <id>472</id> <edge_type>1</edge_type> <source_obj>471</source_obj> <sink_obj>13</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_475"> <id>473</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>14</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_476"> <id>474</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>14</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_477"> <id>476</id> <edge_type>1</edge_type> <source_obj>475</source_obj> <sink_obj>14</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_478"> <id>477</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>15</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_479"> <id>478</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>15</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_480"> <id>480</id> <edge_type>1</edge_type> <source_obj>479</source_obj> <sink_obj>15</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_481"> <id>481</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>16</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_482"> <id>482</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>16</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_483"> <id>484</id> <edge_type>1</edge_type> <source_obj>483</source_obj> <sink_obj>16</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_484"> <id>485</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>17</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_485"> <id>486</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>17</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_486"> <id>488</id> <edge_type>1</edge_type> <source_obj>487</source_obj> <sink_obj>17</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_487"> <id>489</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>18</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_488"> <id>490</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>18</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_489"> <id>492</id> <edge_type>1</edge_type> <source_obj>491</source_obj> <sink_obj>18</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_490"> <id>493</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>19</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_491"> <id>494</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>19</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_492"> <id>496</id> <edge_type>1</edge_type> <source_obj>495</source_obj> <sink_obj>19</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_493"> <id>497</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>20</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_494"> <id>498</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>20</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_495"> <id>500</id> <edge_type>1</edge_type> <source_obj>499</source_obj> <sink_obj>20</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_496"> <id>501</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_497"> <id>502</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_498"> <id>504</id> <edge_type>1</edge_type> <source_obj>503</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_499"> <id>505</id> <edge_type>1</edge_type> <source_obj>454</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_500"> <id>506</id> <edge_type>1</edge_type> <source_obj>454</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_501"> <id>507</id> <edge_type>2</edge_type> <source_obj>36</source_obj> <sink_obj>29</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_502"> <id>508</id> <edge_type>2</edge_type> <source_obj>36</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_503"> <id>510</id> <edge_type>1</edge_type> <source_obj>509</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_504"> <id>511</id> <edge_type>2</edge_type> <source_obj>30</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_505"> <id>512</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>31</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_506"> <id>513</id> <edge_type>2</edge_type> <source_obj>57</source_obj> <sink_obj>31</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_507"> <id>514</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>32</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_508"> <id>516</id> <edge_type>1</edge_type> <source_obj>515</source_obj> <sink_obj>32</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_509"> <id>517</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_510"> <id>519</id> <edge_type>1</edge_type> <source_obj>518</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_511"> <id>520</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_512"> <id>521</id> <edge_type>2</edge_type> <source_obj>40</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_513"> <id>522</id> <edge_type>2</edge_type> <source_obj>59</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_514"> <id>523</id> <edge_type>2</edge_type> <source_obj>64</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_515"> <id>526</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_516"> <id>528</id> <edge_type>1</edge_type> <source_obj>527</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_517"> <id>529</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_518"> <id>530</id> <edge_type>2</edge_type> <source_obj>46</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_519"> <id>531</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>41</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_520"> <id>532</id> <edge_type>2</edge_type> <source_obj>55</source_obj> <sink_obj>41</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_521"> <id>533</id> <edge_type>1</edge_type> <source_obj>509</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_522"> <id>534</id> <edge_type>2</edge_type> <source_obj>40</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_523"> <id>535</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_524"> <id>536</id> <edge_type>1</edge_type> <source_obj>515</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_525"> <id>537</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_526"> <id>538</id> <edge_type>1</edge_type> <source_obj>518</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_527"> <id>539</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>45</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_528"> <id>540</id> <edge_type>2</edge_type> <source_obj>55</source_obj> <sink_obj>45</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_529"> <id>541</id> <edge_type>2</edge_type> <source_obj>57</source_obj> <sink_obj>45</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_530"> <id>542</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_531"> <id>543</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_532"> <id>544</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_533"> <id>545</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>49</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_534"> <id>546</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_535"> <id>547</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_536"> <id>548</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_537"> <id>549</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_538"> <id>550</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_539"> <id>551</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_540"> <id>552</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_541"> <id>553</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_542"> <id>554</id> <edge_type>1</edge_type> <source_obj>51</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_543"> <id>555</id> <edge_type>2</edge_type> <source_obj>46</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_544"> <id>556</id> <edge_type>1</edge_type> <source_obj>159</source_obj> <sink_obj>60</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_545"> <id>557</id> <edge_type>2</edge_type> <source_obj>161</source_obj> <sink_obj>60</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_546"> <id>559</id> <edge_type>1</edge_type> <source_obj>558</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_547"> <id>560</id> <edge_type>2</edge_type> <source_obj>59</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_548"> <id>561</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_549"> <id>563</id> <edge_type>1</edge_type> <source_obj>562</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_550"> <id>564</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_551"> <id>565</id> <edge_type>2</edge_type> <source_obj>109</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_552"> <id>566</id> <edge_type>2</edge_type> <source_obj>163</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_553"> <id>567</id> <edge_type>2</edge_type> <source_obj>169</source_obj> <sink_obj>162</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_554"> <id>568</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>65</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_555"> <id>570</id> <edge_type>1</edge_type> <source_obj>569</source_obj> <sink_obj>65</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_556"> <id>571</id> <edge_type>1</edge_type> <source_obj>65</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_557"> <id>574</id> <edge_type>1</edge_type> <source_obj>65</source_obj> <sink_obj>67</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_558"> <id>576</id> <edge_type>1</edge_type> <source_obj>575</source_obj> <sink_obj>67</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_559"> <id>577</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_560"> <id>579</id> <edge_type>1</edge_type> <source_obj>578</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_561"> <id>583</id> <edge_type>1</edge_type> <source_obj>582</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_562"> <id>584</id> <edge_type>1</edge_type> <source_obj>68</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_563"> <id>585</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>70</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_564"> <id>587</id> <edge_type>1</edge_type> <source_obj>586</source_obj> <sink_obj>70</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_565"> <id>591</id> <edge_type>1</edge_type> <source_obj>590</source_obj> <sink_obj>71</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_566"> <id>592</id> <edge_type>1</edge_type> <source_obj>70</source_obj> <sink_obj>71</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_567"> <id>593</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_568"> <id>594</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_569"> <id>595</id> <edge_type>1</edge_type> <source_obj>71</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_570"> <id>596</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_571"> <id>598</id> <edge_type>1</edge_type> <source_obj>597</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_572"> <id>600</id> <edge_type>1</edge_type> <source_obj>590</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_573"> <id>601</id> <edge_type>1</edge_type> <source_obj>73</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_574"> <id>602</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>75</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_575"> <id>603</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>75</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_576"> <id>604</id> <edge_type>1</edge_type> <source_obj>74</source_obj> <sink_obj>75</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_577"> <id>605</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>76</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_578"> <id>607</id> <edge_type>1</edge_type> <source_obj>606</source_obj> <sink_obj>76</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_579"> <id>609</id> <edge_type>1</edge_type> <source_obj>582</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_580"> <id>610</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_581"> <id>611</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>78</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_582"> <id>613</id> <edge_type>1</edge_type> <source_obj>612</source_obj> <sink_obj>78</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_583"> <id>615</id> <edge_type>1</edge_type> <source_obj>590</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_584"> <id>616</id> <edge_type>1</edge_type> <source_obj>78</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_585"> <id>617</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>80</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_586"> <id>618</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>80</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_587"> <id>619</id> <edge_type>1</edge_type> <source_obj>79</source_obj> <sink_obj>80</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_588"> <id>620</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>81</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_589"> <id>622</id> <edge_type>1</edge_type> <source_obj>621</source_obj> <sink_obj>81</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_590"> <id>624</id> <edge_type>1</edge_type> <source_obj>590</source_obj> <sink_obj>82</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_591"> <id>625</id> <edge_type>1</edge_type> <source_obj>81</source_obj> <sink_obj>82</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_592"> <id>626</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_593"> <id>627</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_594"> <id>628</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_595"> <id>629</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>84</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_596"> <id>630</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_597"> <id>631</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>86</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_598"> <id>632</id> <edge_type>1</edge_type> <source_obj>83</source_obj> <sink_obj>87</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_599"> <id>633</id> <edge_type>1</edge_type> <source_obj>84</source_obj> <sink_obj>88</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_600"> <id>634</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>89</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_601"> <id>635</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>89</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_602"> <id>636</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>89</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_603"> <id>637</id> <edge_type>1</edge_type> <source_obj>89</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_604"> <id>638</id> <edge_type>1</edge_type> <source_obj>85</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_605"> <id>639</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>92</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_606"> <id>640</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>92</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_607"> <id>641</id> <edge_type>1</edge_type> <source_obj>91</source_obj> <sink_obj>92</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_608"> <id>642</id> <edge_type>1</edge_type> <source_obj>92</source_obj> <sink_obj>93</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_609"> <id>643</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>94</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_610"> <id>644</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>95</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_611"> <id>645</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>95</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_612"> <id>646</id> <edge_type>1</edge_type> <source_obj>94</source_obj> <sink_obj>95</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_613"> <id>647</id> <edge_type>1</edge_type> <source_obj>95</source_obj> <sink_obj>96</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_614"> <id>648</id> <edge_type>1</edge_type> <source_obj>87</source_obj> <sink_obj>97</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_615"> <id>649</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>98</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_616"> <id>650</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>98</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_617"> <id>651</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>98</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_618"> <id>652</id> <edge_type>1</edge_type> <source_obj>98</source_obj> <sink_obj>99</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_619"> <id>653</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>100</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_620"> <id>654</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>100</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_621"> <id>655</id> <edge_type>1</edge_type> <source_obj>66</source_obj> <sink_obj>100</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_622"> <id>656</id> <edge_type>1</edge_type> <source_obj>100</source_obj> <sink_obj>101</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_623"> <id>657</id> <edge_type>1</edge_type> <source_obj>101</source_obj> <sink_obj>102</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_624"> <id>658</id> <edge_type>1</edge_type> <source_obj>90</source_obj> <sink_obj>102</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_625"> <id>660</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>103</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_626"> <id>661</id> <edge_type>1</edge_type> <source_obj>575</source_obj> <sink_obj>103</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_627"> <id>662</id> <edge_type>1</edge_type> <source_obj>103</source_obj> <sink_obj>104</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_628"> <id>663</id> <edge_type>1</edge_type> <source_obj>578</source_obj> <sink_obj>104</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_629"> <id>665</id> <edge_type>1</edge_type> <source_obj>582</source_obj> <sink_obj>105</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_630"> <id>666</id> <edge_type>1</edge_type> <source_obj>104</source_obj> <sink_obj>105</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_631"> <id>667</id> <edge_type>1</edge_type> <source_obj>103</source_obj> <sink_obj>106</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_632"> <id>668</id> <edge_type>1</edge_type> <source_obj>606</source_obj> <sink_obj>106</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_633"> <id>670</id> <edge_type>1</edge_type> <source_obj>582</source_obj> <sink_obj>107</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_634"> <id>671</id> <edge_type>1</edge_type> <source_obj>106</source_obj> <sink_obj>107</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_635"> <id>672</id> <edge_type>2</edge_type> <source_obj>119</source_obj> <sink_obj>108</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_636"> <id>673</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>110</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_637"> <id>674</id> <edge_type>2</edge_type> <source_obj>109</source_obj> <sink_obj>110</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_638"> <id>675</id> <edge_type>1</edge_type> <source_obj>152</source_obj> <sink_obj>110</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_639"> <id>676</id> <edge_type>2</edge_type> <source_obj>158</source_obj> <sink_obj>110</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_640"> <id>677</id> <edge_type>1</edge_type> <source_obj>96</source_obj> <sink_obj>111</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_641"> <id>678</id> <edge_type>2</edge_type> <source_obj>109</source_obj> <sink_obj>111</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_642"> <id>679</id> <edge_type>1</edge_type> <source_obj>150</source_obj> <sink_obj>111</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_643"> <id>680</id> <edge_type>2</edge_type> <source_obj>158</source_obj> <sink_obj>111</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_644"> <id>681</id> <edge_type>1</edge_type> <source_obj>93</source_obj> <sink_obj>112</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_645"> <id>682</id> <edge_type>2</edge_type> <source_obj>109</source_obj> <sink_obj>112</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_646"> <id>683</id> <edge_type>1</edge_type> <source_obj>148</source_obj> <sink_obj>112</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_647"> <id>684</id> <edge_type>2</edge_type> <source_obj>158</source_obj> <sink_obj>112</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_648"> <id>685</id> <edge_type>1</edge_type> <source_obj>102</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_649"> <id>686</id> <edge_type>2</edge_type> <source_obj>109</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_650"> <id>687</id> <edge_type>1</edge_type> <source_obj>146</source_obj> <sink_obj>113</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_651"> <id>688</id> <edge_type>2</edge_type> <source_obj>158</source_obj> <sink_obj>113</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_652"> <id>689</id> <edge_type>1</edge_type> <source_obj>509</source_obj> <sink_obj>114</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_653"> <id>690</id> <edge_type>2</edge_type> <source_obj>109</source_obj> <sink_obj>114</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_654"> <id>691</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>114</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_655"> <id>692</id> <edge_type>2</edge_type> <source_obj>158</source_obj> <sink_obj>114</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_656"> <id>693</id> <edge_type>1</edge_type> <source_obj>114</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_657"> <id>694</id> <edge_type>1</edge_type> <source_obj>515</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_658"> <id>695</id> <edge_type>1</edge_type> <source_obj>114</source_obj> <sink_obj>117</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_659"> <id>696</id> <edge_type>1</edge_type> <source_obj>518</source_obj> <sink_obj>117</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_660"> <id>697</id> <edge_type>1</edge_type> <source_obj>115</source_obj> <sink_obj>118</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_661"> <id>698</id> <edge_type>2</edge_type> <source_obj>158</source_obj> <sink_obj>118</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_662"> <id>699</id> <edge_type>2</edge_type> <source_obj>161</source_obj> <sink_obj>118</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_663"> <id>700</id> <edge_type>1</edge_type> <source_obj>114</source_obj> <sink_obj>120</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_664"> <id>703</id> <edge_type>1</edge_type> <source_obj>65</source_obj> <sink_obj>121</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_665"> <id>704</id> <edge_type>1</edge_type> <source_obj>582</source_obj> <sink_obj>121</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_666"> <id>705</id> <edge_type>1</edge_type> <source_obj>114</source_obj> <sink_obj>121</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_667"> <id>706</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>122</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_668"> <id>707</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_669"> <id>708</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_670"> <id>709</id> <edge_type>1</edge_type> <source_obj>122</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_671"> <id>710</id> <edge_type>1</edge_type> <source_obj>120</source_obj> <sink_obj>124</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_672"> <id>711</id> <edge_type>1</edge_type> <source_obj>69</source_obj> <sink_obj>124</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_673"> <id>712</id> <edge_type>1</edge_type> <source_obj>124</source_obj> <sink_obj>125</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_674"> <id>713</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>126</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_675"> <id>714</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>126</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_676"> <id>715</id> <edge_type>1</edge_type> <source_obj>125</source_obj> <sink_obj>126</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_677"> <id>716</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>127</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_678"> <id>718</id> <edge_type>1</edge_type> <source_obj>717</source_obj> <sink_obj>127</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_679"> <id>720</id> <edge_type>1</edge_type> <source_obj>590</source_obj> <sink_obj>128</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_680"> <id>721</id> <edge_type>1</edge_type> <source_obj>127</source_obj> <sink_obj>128</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_681"> <id>722</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>129</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_682"> <id>723</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>129</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_683"> <id>724</id> <edge_type>1</edge_type> <source_obj>128</source_obj> <sink_obj>129</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_684"> <id>725</id> <edge_type>1</edge_type> <source_obj>120</source_obj> <sink_obj>130</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_685"> <id>726</id> <edge_type>1</edge_type> <source_obj>77</source_obj> <sink_obj>130</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_686"> <id>727</id> <edge_type>1</edge_type> <source_obj>130</source_obj> <sink_obj>131</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_687"> <id>728</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>132</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_688"> <id>729</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>132</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_689"> <id>730</id> <edge_type>1</edge_type> <source_obj>131</source_obj> <sink_obj>132</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_690"> <id>732</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>133</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_691"> <id>733</id> <edge_type>1</edge_type> <source_obj>582</source_obj> <sink_obj>133</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_692"> <id>734</id> <edge_type>1</edge_type> <source_obj>114</source_obj> <sink_obj>133</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_693"> <id>735</id> <edge_type>1</edge_type> <source_obj>133</source_obj> <sink_obj>134</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_694"> <id>736</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>135</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_695"> <id>737</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>135</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_696"> <id>738</id> <edge_type>1</edge_type> <source_obj>134</source_obj> <sink_obj>135</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_697"> <id>739</id> <edge_type>1</edge_type> <source_obj>120</source_obj> <sink_obj>136</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_698"> <id>740</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>136</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_699"> <id>741</id> <edge_type>1</edge_type> <source_obj>136</source_obj> <sink_obj>137</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_700"> <id>742</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>138</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_701"> <id>743</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>138</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_702"> <id>744</id> <edge_type>1</edge_type> <source_obj>137</source_obj> <sink_obj>138</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_703"> <id>745</id> <edge_type>1</edge_type> <source_obj>133</source_obj> <sink_obj>139</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_704"> <id>746</id> <edge_type>1</edge_type> <source_obj>717</source_obj> <sink_obj>139</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_705"> <id>748</id> <edge_type>1</edge_type> <source_obj>590</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_706"> <id>749</id> <edge_type>1</edge_type> <source_obj>139</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_707"> <id>750</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>141</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_708"> <id>751</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>141</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_709"> <id>752</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>141</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_710"> <id>753</id> <edge_type>1</edge_type> <source_obj>120</source_obj> <sink_obj>142</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_711"> <id>754</id> <edge_type>1</edge_type> <source_obj>107</source_obj> <sink_obj>142</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_712"> <id>755</id> <edge_type>1</edge_type> <source_obj>142</source_obj> <sink_obj>143</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_713"> <id>756</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>144</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_714"> <id>757</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>144</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_715"> <id>758</id> <edge_type>1</edge_type> <source_obj>143</source_obj> <sink_obj>144</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_716"> <id>759</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>145</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_717"> <id>760</id> <edge_type>1</edge_type> <source_obj>145</source_obj> <sink_obj>146</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_718"> <id>761</id> <edge_type>1</edge_type> <source_obj>113</source_obj> <sink_obj>146</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_719"> <id>762</id> <edge_type>1</edge_type> <source_obj>126</source_obj> <sink_obj>147</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_720"> <id>763</id> <edge_type>1</edge_type> <source_obj>147</source_obj> <sink_obj>148</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_721"> <id>764</id> <edge_type>1</edge_type> <source_obj>112</source_obj> <sink_obj>148</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_722"> <id>765</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>149</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_723"> <id>766</id> <edge_type>1</edge_type> <source_obj>149</source_obj> <sink_obj>150</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_724"> <id>767</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>150</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_725"> <id>768</id> <edge_type>1</edge_type> <source_obj>132</source_obj> <sink_obj>151</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_726"> <id>769</id> <edge_type>1</edge_type> <source_obj>151</source_obj> <sink_obj>152</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_727"> <id>770</id> <edge_type>1</edge_type> <source_obj>110</source_obj> <sink_obj>152</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_728"> <id>771</id> <edge_type>1</edge_type> <source_obj>146</source_obj> <sink_obj>153</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_729"> <id>772</id> <edge_type>1</edge_type> <source_obj>135</source_obj> <sink_obj>153</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_730"> <id>773</id> <edge_type>1</edge_type> <source_obj>148</source_obj> <sink_obj>154</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_731"> <id>774</id> <edge_type>1</edge_type> <source_obj>138</source_obj> <sink_obj>154</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_732"> <id>775</id> <edge_type>1</edge_type> <source_obj>150</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_733"> <id>776</id> <edge_type>1</edge_type> <source_obj>141</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_734"> <id>777</id> <edge_type>1</edge_type> <source_obj>152</source_obj> <sink_obj>156</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_735"> <id>778</id> <edge_type>1</edge_type> <source_obj>144</source_obj> <sink_obj>156</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_736"> <id>779</id> <edge_type>2</edge_type> <source_obj>119</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_737"> <id>780</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>159</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_738"> <id>781</id> <edge_type>1</edge_type> <source_obj>558</source_obj> <sink_obj>159</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_739"> <id>782</id> <edge_type>2</edge_type> <source_obj>64</source_obj> <sink_obj>160</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_740"> <id>783</id> <edge_type>2</edge_type> <source_obj>169</source_obj> <sink_obj>189</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_741"> <id>784</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>164</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_742"> <id>785</id> <edge_type>2</edge_type> <source_obj>190</source_obj> <sink_obj>164</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_743"> <id>786</id> <edge_type>1</edge_type> <source_obj>509</source_obj> <sink_obj>164</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_744"> <id>787</id> <edge_type>2</edge_type> <source_obj>163</source_obj> <sink_obj>164</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_745"> <id>788</id> <edge_type>1</edge_type> <source_obj>164</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_746"> <id>789</id> <edge_type>1</edge_type> <source_obj>515</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_747"> <id>790</id> <edge_type>1</edge_type> <source_obj>164</source_obj> <sink_obj>167</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_748"> <id>791</id> <edge_type>1</edge_type> <source_obj>518</source_obj> <sink_obj>167</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_749"> <id>792</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>168</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_750"> <id>793</id> <edge_type>2</edge_type> <source_obj>173</source_obj> <sink_obj>168</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_751"> <id>794</id> <edge_type>2</edge_type> <source_obj>192</source_obj> <sink_obj>168</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_752"> <id>795</id> <edge_type>2</edge_type> <source_obj>198</source_obj> <sink_obj>191</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_753"> <id>797</id> <edge_type>1</edge_type> <source_obj>164</source_obj> <sink_obj>170</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_754"> <id>798</id> <edge_type>1</edge_type> <source_obj>527</source_obj> <sink_obj>170</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_755"> <id>799</id> <edge_type>1</edge_type> <source_obj>170</source_obj> <sink_obj>171</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_756"> <id>800</id> <edge_type>2</edge_type> <source_obj>179</source_obj> <sink_obj>172</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_757"> <id>801</id> <edge_type>1</edge_type> <source_obj>177</source_obj> <sink_obj>174</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_758"> <id>802</id> <edge_type>2</edge_type> <source_obj>188</source_obj> <sink_obj>174</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_759"> <id>803</id> <edge_type>1</edge_type> <source_obj>509</source_obj> <sink_obj>174</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_760"> <id>804</id> <edge_type>2</edge_type> <source_obj>173</source_obj> <sink_obj>174</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_761"> <id>805</id> <edge_type>1</edge_type> <source_obj>174</source_obj> <sink_obj>175</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_762"> <id>806</id> <edge_type>1</edge_type> <source_obj>515</source_obj> <sink_obj>175</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_763"> <id>807</id> <edge_type>1</edge_type> <source_obj>174</source_obj> <sink_obj>177</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_764"> <id>808</id> <edge_type>1</edge_type> <source_obj>518</source_obj> <sink_obj>177</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_765"> <id>809</id> <edge_type>1</edge_type> <source_obj>175</source_obj> <sink_obj>178</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_766"> <id>810</id> <edge_type>2</edge_type> <source_obj>188</source_obj> <sink_obj>178</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_767"> <id>811</id> <edge_type>2</edge_type> <source_obj>190</source_obj> <sink_obj>178</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_768"> <id>812</id> <edge_type>1</edge_type> <source_obj>174</source_obj> <sink_obj>180</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_769"> <id>813</id> <edge_type>1</edge_type> <source_obj>171</source_obj> <sink_obj>181</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_770"> <id>814</id> <edge_type>1</edge_type> <source_obj>180</source_obj> <sink_obj>181</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_771"> <id>815</id> <edge_type>1</edge_type> <source_obj>181</source_obj> <sink_obj>182</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_772"> <id>816</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>183</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_773"> <id>817</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>183</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_774"> <id>818</id> <edge_type>1</edge_type> <source_obj>182</source_obj> <sink_obj>183</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_775"> <id>819</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>184</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_776"> <id>820</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>184</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_777"> <id>821</id> <edge_type>1</edge_type> <source_obj>182</source_obj> <sink_obj>184</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_778"> <id>822</id> <edge_type>1</edge_type> <source_obj>183</source_obj> <sink_obj>185</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_779"> <id>823</id> <edge_type>1</edge_type> <source_obj>185</source_obj> <sink_obj>186</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_780"> <id>824</id> <edge_type>1</edge_type> <source_obj>184</source_obj> <sink_obj>186</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_781"> <id>825</id> <edge_type>2</edge_type> <source_obj>179</source_obj> <sink_obj>187</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_782"> <id>826</id> <edge_type>2</edge_type> <source_obj>198</source_obj> <sink_obj>220</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_783"> <id>827</id> <edge_type>1</edge_type> <source_obj>196</source_obj> <sink_obj>193</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_784"> <id>828</id> <edge_type>2</edge_type> <source_obj>221</source_obj> <sink_obj>193</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_785"> <id>829</id> <edge_type>1</edge_type> <source_obj>509</source_obj> <sink_obj>193</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_786"> <id>830</id> <edge_type>2</edge_type> <source_obj>192</source_obj> <sink_obj>193</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_787"> <id>831</id> <edge_type>1</edge_type> <source_obj>193</source_obj> <sink_obj>194</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_788"> <id>832</id> <edge_type>1</edge_type> <source_obj>515</source_obj> <sink_obj>194</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_789"> <id>833</id> <edge_type>1</edge_type> <source_obj>193</source_obj> <sink_obj>196</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_790"> <id>834</id> <edge_type>1</edge_type> <source_obj>518</source_obj> <sink_obj>196</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_791"> <id>835</id> <edge_type>1</edge_type> <source_obj>194</source_obj> <sink_obj>197</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_792"> <id>836</id> <edge_type>2</edge_type> <source_obj>202</source_obj> <sink_obj>197</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_793"> <id>837</id> <edge_type>2</edge_type> <source_obj>223</source_obj> <sink_obj>197</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_794"> <id>838</id> <edge_type>2</edge_type> <source_obj>228</source_obj> <sink_obj>222</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_795"> <id>840</id> <edge_type>1</edge_type> <source_obj>193</source_obj> <sink_obj>199</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_796"> <id>841</id> <edge_type>1</edge_type> <source_obj>527</source_obj> <sink_obj>199</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_797"> <id>842</id> <edge_type>1</edge_type> <source_obj>199</source_obj> <sink_obj>200</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_798"> <id>843</id> <edge_type>2</edge_type> <source_obj>208</source_obj> <sink_obj>201</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_799"> <id>844</id> <edge_type>1</edge_type> <source_obj>206</source_obj> <sink_obj>203</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_800"> <id>845</id> <edge_type>2</edge_type> <source_obj>219</source_obj> <sink_obj>203</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_801"> <id>846</id> <edge_type>1</edge_type> <source_obj>509</source_obj> <sink_obj>203</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_802"> <id>847</id> <edge_type>2</edge_type> <source_obj>202</source_obj> <sink_obj>203</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_803"> <id>848</id> <edge_type>1</edge_type> <source_obj>203</source_obj> <sink_obj>204</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_804"> <id>849</id> <edge_type>1</edge_type> <source_obj>515</source_obj> <sink_obj>204</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_805"> <id>850</id> <edge_type>1</edge_type> <source_obj>203</source_obj> <sink_obj>206</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_806"> <id>851</id> <edge_type>1</edge_type> <source_obj>518</source_obj> <sink_obj>206</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_807"> <id>852</id> <edge_type>1</edge_type> <source_obj>204</source_obj> <sink_obj>207</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_808"> <id>853</id> <edge_type>2</edge_type> <source_obj>219</source_obj> <sink_obj>207</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_809"> <id>854</id> <edge_type>2</edge_type> <source_obj>221</source_obj> <sink_obj>207</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_810"> <id>855</id> <edge_type>1</edge_type> <source_obj>203</source_obj> <sink_obj>209</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_811"> <id>856</id> <edge_type>1</edge_type> <source_obj>200</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_812"> <id>857</id> <edge_type>1</edge_type> <source_obj>209</source_obj> <sink_obj>210</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_813"> <id>858</id> <edge_type>1</edge_type> <source_obj>210</source_obj> <sink_obj>211</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_814"> <id>859</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>212</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_815"> <id>860</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>212</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_816"> <id>861</id> <edge_type>1</edge_type> <source_obj>211</source_obj> <sink_obj>212</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_817"> <id>862</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>213</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_818"> <id>863</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>213</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_819"> <id>864</id> <edge_type>1</edge_type> <source_obj>211</source_obj> <sink_obj>213</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_820"> <id>865</id> <edge_type>1</edge_type> <source_obj>213</source_obj> <sink_obj>214</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_821"> <id>866</id> <edge_type>1</edge_type> <source_obj>212</source_obj> <sink_obj>215</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_822"> <id>867</id> <edge_type>1</edge_type> <source_obj>215</source_obj> <sink_obj>216</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_823"> <id>868</id> <edge_type>1</edge_type> <source_obj>214</source_obj> <sink_obj>216</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_824"> <id>869</id> <edge_type>1</edge_type> <source_obj>216</source_obj> <sink_obj>217</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_825"> <id>870</id> <edge_type>1</edge_type> <source_obj>212</source_obj> <sink_obj>217</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_826"> <id>871</id> <edge_type>2</edge_type> <source_obj>208</source_obj> <sink_obj>218</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_827"> <id>872</id> <edge_type>1</edge_type> <source_obj>420</source_obj> <sink_obj>224</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_828"> <id>873</id> <edge_type>2</edge_type> <source_obj>422</source_obj> <sink_obj>224</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_829"> <id>874</id> <edge_type>1</edge_type> <source_obj>558</source_obj> <sink_obj>224</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_830"> <id>875</id> <edge_type>2</edge_type> <source_obj>223</source_obj> <sink_obj>224</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_831"> <id>876</id> <edge_type>1</edge_type> <source_obj>224</source_obj> <sink_obj>225</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_832"> <id>877</id> <edge_type>1</edge_type> <source_obj>562</source_obj> <sink_obj>225</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_833"> <id>878</id> <edge_type>1</edge_type> <source_obj>225</source_obj> <sink_obj>227</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_834"> <id>879</id> <edge_type>2</edge_type> <source_obj>230</source_obj> <sink_obj>227</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_835"> <id>880</id> <edge_type>2</edge_type> <source_obj>424</source_obj> <sink_obj>227</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_836"> <id>881</id> <edge_type>2</edge_type> <source_obj>236</source_obj> <sink_obj>229</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_837"> <id>882</id> <edge_type>2</edge_type> <source_obj>430</source_obj> <sink_obj>423</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_838"> <id>883</id> <edge_type>2</edge_type> <source_obj>236</source_obj> <sink_obj>258</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_839"> <id>884</id> <edge_type>1</edge_type> <source_obj>234</source_obj> <sink_obj>231</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_840"> <id>885</id> <edge_type>2</edge_type> <source_obj>259</source_obj> <sink_obj>231</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_841"> <id>886</id> <edge_type>1</edge_type> <source_obj>509</source_obj> <sink_obj>231</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_842"> <id>887</id> <edge_type>2</edge_type> <source_obj>230</source_obj> <sink_obj>231</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_843"> <id>888</id> <edge_type>1</edge_type> <source_obj>231</source_obj> <sink_obj>232</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_844"> <id>889</id> <edge_type>1</edge_type> <source_obj>515</source_obj> <sink_obj>232</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_845"> <id>890</id> <edge_type>1</edge_type> <source_obj>231</source_obj> <sink_obj>234</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_846"> <id>891</id> <edge_type>1</edge_type> <source_obj>518</source_obj> <sink_obj>234</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_847"> <id>892</id> <edge_type>1</edge_type> <source_obj>232</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_848"> <id>893</id> <edge_type>2</edge_type> <source_obj>240</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_849"> <id>894</id> <edge_type>2</edge_type> <source_obj>286</source_obj> <sink_obj>235</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_850"> <id>896</id> <edge_type>1</edge_type> <source_obj>231</source_obj> <sink_obj>237</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_851"> <id>897</id> <edge_type>1</edge_type> <source_obj>527</source_obj> <sink_obj>237</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_852"> <id>898</id> <edge_type>1</edge_type> <source_obj>237</source_obj> <sink_obj>238</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_853"> <id>899</id> <edge_type>2</edge_type> <source_obj>246</source_obj> <sink_obj>239</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_854"> <id>900</id> <edge_type>1</edge_type> <source_obj>244</source_obj> <sink_obj>241</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_855"> <id>901</id> <edge_type>2</edge_type> <source_obj>257</source_obj> <sink_obj>241</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_856"> <id>902</id> <edge_type>1</edge_type> <source_obj>509</source_obj> <sink_obj>241</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_857"> <id>903</id> <edge_type>2</edge_type> <source_obj>240</source_obj> <sink_obj>241</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_858"> <id>904</id> <edge_type>1</edge_type> <source_obj>241</source_obj> <sink_obj>242</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_859"> <id>905</id> <edge_type>1</edge_type> <source_obj>515</source_obj> <sink_obj>242</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_860"> <id>906</id> <edge_type>1</edge_type> <source_obj>241</source_obj> <sink_obj>244</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_861"> <id>907</id> <edge_type>1</edge_type> <source_obj>518</source_obj> <sink_obj>244</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_862"> <id>908</id> <edge_type>1</edge_type> <source_obj>242</source_obj> <sink_obj>245</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_863"> <id>909</id> <edge_type>2</edge_type> <source_obj>257</source_obj> <sink_obj>245</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_864"> <id>910</id> <edge_type>2</edge_type> <source_obj>259</source_obj> <sink_obj>245</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_865"> <id>911</id> <edge_type>1</edge_type> <source_obj>241</source_obj> <sink_obj>247</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_866"> <id>912</id> <edge_type>1</edge_type> <source_obj>238</source_obj> <sink_obj>248</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_867"> <id>913</id> <edge_type>1</edge_type> <source_obj>247</source_obj> <sink_obj>248</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_868"> <id>914</id> <edge_type>1</edge_type> <source_obj>248</source_obj> <sink_obj>249</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_869"> <id>915</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>250</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_870"> <id>916</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>250</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_871"> <id>917</id> <edge_type>1</edge_type> <source_obj>249</source_obj> <sink_obj>250</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_872"> <id>918</id> <edge_type>1</edge_type> <source_obj>250</source_obj> <sink_obj>251</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_873"> <id>919</id> <edge_type>1</edge_type> <source_obj>251</source_obj> <sink_obj>252</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_874"> <id>920</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>253</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_875"> <id>921</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>253</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_876"> <id>922</id> <edge_type>1</edge_type> <source_obj>252</source_obj> <sink_obj>253</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_877"> <id>923</id> <edge_type>1</edge_type> <source_obj>253</source_obj> <sink_obj>254</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_878"> <id>924</id> <edge_type>1</edge_type> <source_obj>254</source_obj> <sink_obj>255</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_879"> <id>925</id> <edge_type>1</edge_type> <source_obj>250</source_obj> <sink_obj>255</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_880"> <id>926</id> <edge_type>2</edge_type> <source_obj>246</source_obj> <sink_obj>256</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_881"> <id>927</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>260</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_882"> <id>928</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>261</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_883"> <id>929</id> <edge_type>1</edge_type> <source_obj>261</source_obj> <sink_obj>262</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_884"> <id>930</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>262</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_885"> <id>931</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>263</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_886"> <id>932</id> <edge_type>1</edge_type> <source_obj>263</source_obj> <sink_obj>264</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_887"> <id>933</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>264</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_888"> <id>934</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>265</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_889"> <id>935</id> <edge_type>1</edge_type> <source_obj>265</source_obj> <sink_obj>266</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_890"> <id>936</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>266</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_891"> <id>937</id> <edge_type>1</edge_type> <source_obj>260</source_obj> <sink_obj>267</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_892"> <id>938</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>267</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_893"> <id>939</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>268</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_894"> <id>940</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>269</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_895"> <id>941</id> <edge_type>1</edge_type> <source_obj>269</source_obj> <sink_obj>270</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_896"> <id>942</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>270</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_897"> <id>943</id> <edge_type>1</edge_type> <source_obj>268</source_obj> <sink_obj>271</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_898"> <id>944</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>271</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_899"> <id>945</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>272</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_900"> <id>946</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>273</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_901"> <id>947</id> <edge_type>1</edge_type> <source_obj>273</source_obj> <sink_obj>274</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_902"> <id>948</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>274</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_903"> <id>949</id> <edge_type>1</edge_type> <source_obj>272</source_obj> <sink_obj>275</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_904"> <id>950</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>275</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_905"> <id>951</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>276</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_906"> <id>952</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>277</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_907"> <id>953</id> <edge_type>1</edge_type> <source_obj>277</source_obj> <sink_obj>278</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_908"> <id>954</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>278</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_909"> <id>955</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>279</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_910"> <id>956</id> <edge_type>1</edge_type> <source_obj>279</source_obj> <sink_obj>280</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_911"> <id>957</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>280</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_912"> <id>958</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>281</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_913"> <id>959</id> <edge_type>1</edge_type> <source_obj>281</source_obj> <sink_obj>282</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_914"> <id>960</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>282</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_915"> <id>961</id> <edge_type>1</edge_type> <source_obj>276</source_obj> <sink_obj>283</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_916"> <id>962</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>283</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_917"> <id>963</id> <edge_type>1</edge_type> <source_obj>224</source_obj> <sink_obj>284</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_918"> <id>965</id> <edge_type>1</edge_type> <source_obj>964</source_obj> <sink_obj>284</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_919"> <id>966</id> <edge_type>1</edge_type> <source_obj>284</source_obj> <sink_obj>285</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_920"> <id>967</id> <edge_type>2</edge_type> <source_obj>288</source_obj> <sink_obj>285</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_921"> <id>968</id> <edge_type>2</edge_type> <source_obj>384</source_obj> <sink_obj>285</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_922"> <id>969</id> <edge_type>2</edge_type> <source_obj>294</source_obj> <sink_obj>287</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_923"> <id>970</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>289</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_924"> <id>971</id> <edge_type>2</edge_type> <source_obj>349</source_obj> <sink_obj>289</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_925"> <id>972</id> <edge_type>1</edge_type> <source_obj>509</source_obj> <sink_obj>289</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_926"> <id>973</id> <edge_type>2</edge_type> <source_obj>288</source_obj> <sink_obj>289</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_927"> <id>974</id> <edge_type>1</edge_type> <source_obj>289</source_obj> <sink_obj>290</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_928"> <id>975</id> <edge_type>1</edge_type> <source_obj>515</source_obj> <sink_obj>290</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_929"> <id>976</id> <edge_type>1</edge_type> <source_obj>289</source_obj> <sink_obj>292</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_930"> <id>977</id> <edge_type>1</edge_type> <source_obj>518</source_obj> <sink_obj>292</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_931"> <id>978</id> <edge_type>1</edge_type> <source_obj>290</source_obj> <sink_obj>293</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_932"> <id>979</id> <edge_type>2</edge_type> <source_obj>349</source_obj> <sink_obj>293</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_933"> <id>980</id> <edge_type>2</edge_type> <source_obj>351</source_obj> <sink_obj>293</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_934"> <id>981</id> <edge_type>2</edge_type> <source_obj>357</source_obj> <sink_obj>350</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_935"> <id>982</id> <edge_type>1</edge_type> <source_obj>289</source_obj> <sink_obj>295</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_936"> <id>983</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>296</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_937"> <id>984</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>296</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_938"> <id>985</id> <edge_type>1</edge_type> <source_obj>295</source_obj> <sink_obj>296</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_939"> <id>986</id> <edge_type>1</edge_type> <source_obj>289</source_obj> <sink_obj>297</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_940"> <id>987</id> <edge_type>1</edge_type> <source_obj>515</source_obj> <sink_obj>297</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_941"> <id>988</id> <edge_type>1</edge_type> <source_obj>297</source_obj> <sink_obj>298</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_942"> <id>989</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>299</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_943"> <id>990</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>299</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_944"> <id>991</id> <edge_type>1</edge_type> <source_obj>298</source_obj> <sink_obj>299</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_945"> <id>995</id> <edge_type>1</edge_type> <source_obj>994</source_obj> <sink_obj>300</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_946"> <id>996</id> <edge_type>1</edge_type> <source_obj>289</source_obj> <sink_obj>300</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_947"> <id>997</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>301</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_948"> <id>998</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>301</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_949"> <id>999</id> <edge_type>1</edge_type> <source_obj>300</source_obj> <sink_obj>301</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_950"> <id>1000</id> <edge_type>1</edge_type> <source_obj>297</source_obj> <sink_obj>302</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_951"> <id>1001</id> <edge_type>1</edge_type> <source_obj>302</source_obj> <sink_obj>303</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_952"> <id>1002</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>304</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_953"> <id>1003</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>304</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_954"> <id>1004</id> <edge_type>1</edge_type> <source_obj>303</source_obj> <sink_obj>304</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_955"> <id>1005</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>305</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_956"> <id>1006</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>305</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_957"> <id>1007</id> <edge_type>1</edge_type> <source_obj>295</source_obj> <sink_obj>305</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_958"> <id>1008</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>306</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_959"> <id>1009</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>306</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_960"> <id>1010</id> <edge_type>1</edge_type> <source_obj>298</source_obj> <sink_obj>306</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_961"> <id>1011</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>307</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_962"> <id>1012</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>307</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_963"> <id>1013</id> <edge_type>1</edge_type> <source_obj>300</source_obj> <sink_obj>307</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_964"> <id>1014</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>308</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_965"> <id>1015</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>308</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_966"> <id>1016</id> <edge_type>1</edge_type> <source_obj>303</source_obj> <sink_obj>308</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_967"> <id>1017</id> <edge_type>1</edge_type> <source_obj>296</source_obj> <sink_obj>309</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_968"> <id>1018</id> <edge_type>1</edge_type> <source_obj>309</source_obj> <sink_obj>310</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_969"> <id>1020</id> <edge_type>1</edge_type> <source_obj>1019</source_obj> <sink_obj>310</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_970"> <id>1023</id> <edge_type>1</edge_type> <source_obj>309</source_obj> <sink_obj>311</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_971"> <id>1025</id> <edge_type>1</edge_type> <source_obj>1024</source_obj> <sink_obj>311</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_972"> <id>1026</id> <edge_type>1</edge_type> <source_obj>311</source_obj> <sink_obj>312</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_973"> <id>1028</id> <edge_type>1</edge_type> <source_obj>1027</source_obj> <sink_obj>312</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_974"> <id>1030</id> <edge_type>1</edge_type> <source_obj>1029</source_obj> <sink_obj>312</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_975"> <id>1031</id> <edge_type>1</edge_type> <source_obj>299</source_obj> <sink_obj>313</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_976"> <id>1032</id> <edge_type>1</edge_type> <source_obj>313</source_obj> <sink_obj>314</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_977"> <id>1033</id> <edge_type>1</edge_type> <source_obj>1019</source_obj> <sink_obj>314</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_978"> <id>1035</id> <edge_type>1</edge_type> <source_obj>313</source_obj> <sink_obj>315</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_979"> <id>1036</id> <edge_type>1</edge_type> <source_obj>1024</source_obj> <sink_obj>315</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_980"> <id>1037</id> <edge_type>1</edge_type> <source_obj>315</source_obj> <sink_obj>316</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_981"> <id>1038</id> <edge_type>1</edge_type> <source_obj>1027</source_obj> <sink_obj>316</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_982"> <id>1039</id> <edge_type>1</edge_type> <source_obj>1029</source_obj> <sink_obj>316</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_983"> <id>1040</id> <edge_type>1</edge_type> <source_obj>301</source_obj> <sink_obj>317</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_984"> <id>1041</id> <edge_type>1</edge_type> <source_obj>304</source_obj> <sink_obj>318</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_985"> <id>1042</id> <edge_type>1</edge_type> <source_obj>317</source_obj> <sink_obj>319</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_986"> <id>1043</id> <edge_type>1</edge_type> <source_obj>318</source_obj> <sink_obj>319</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_987"> <id>1044</id> <edge_type>1</edge_type> <source_obj>319</source_obj> <sink_obj>320</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_988"> <id>1045</id> <edge_type>1</edge_type> <source_obj>313</source_obj> <sink_obj>320</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_989"> <id>1046</id> <edge_type>1</edge_type> <source_obj>312</source_obj> <sink_obj>321</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_990"> <id>1047</id> <edge_type>1</edge_type> <source_obj>310</source_obj> <sink_obj>321</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_991"> <id>1048</id> <edge_type>1</edge_type> <source_obj>314</source_obj> <sink_obj>322</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_992"> <id>1049</id> <edge_type>1</edge_type> <source_obj>316</source_obj> <sink_obj>322</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_993"> <id>1050</id> <edge_type>1</edge_type> <source_obj>322</source_obj> <sink_obj>323</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_994"> <id>1051</id> <edge_type>1</edge_type> <source_obj>321</source_obj> <sink_obj>323</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_995"> <id>1052</id> <edge_type>1</edge_type> <source_obj>323</source_obj> <sink_obj>324</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_996"> <id>1053</id> <edge_type>1</edge_type> <source_obj>320</source_obj> <sink_obj>324</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_997"> <id>1054</id> <edge_type>1</edge_type> <source_obj>324</source_obj> <sink_obj>325</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_998"> <id>1055</id> <edge_type>1</edge_type> <source_obj>305</source_obj> <sink_obj>325</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_999"> <id>1056</id> <edge_type>1</edge_type> <source_obj>317</source_obj> <sink_obj>326</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1000"> <id>1057</id> <edge_type>1</edge_type> <source_obj>1019</source_obj> <sink_obj>326</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1001"> <id>1059</id> <edge_type>1</edge_type> <source_obj>317</source_obj> <sink_obj>327</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1002"> <id>1060</id> <edge_type>1</edge_type> <source_obj>1024</source_obj> <sink_obj>327</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1003"> <id>1061</id> <edge_type>1</edge_type> <source_obj>327</source_obj> <sink_obj>328</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1004"> <id>1062</id> <edge_type>1</edge_type> <source_obj>1027</source_obj> <sink_obj>328</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1005"> <id>1063</id> <edge_type>1</edge_type> <source_obj>1029</source_obj> <sink_obj>328</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1006"> <id>1064</id> <edge_type>1</edge_type> <source_obj>319</source_obj> <sink_obj>329</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1007"> <id>1065</id> <edge_type>1</edge_type> <source_obj>309</source_obj> <sink_obj>329</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1008"> <id>1066</id> <edge_type>1</edge_type> <source_obj>326</source_obj> <sink_obj>330</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1009"> <id>1067</id> <edge_type>1</edge_type> <source_obj>328</source_obj> <sink_obj>330</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1010"> <id>1068</id> <edge_type>1</edge_type> <source_obj>330</source_obj> <sink_obj>331</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1011"> <id>1069</id> <edge_type>1</edge_type> <source_obj>322</source_obj> <sink_obj>331</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1012"> <id>1070</id> <edge_type>1</edge_type> <source_obj>331</source_obj> <sink_obj>332</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1013"> <id>1071</id> <edge_type>1</edge_type> <source_obj>329</source_obj> <sink_obj>332</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1014"> <id>1072</id> <edge_type>1</edge_type> <source_obj>332</source_obj> <sink_obj>333</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1015"> <id>1073</id> <edge_type>1</edge_type> <source_obj>306</source_obj> <sink_obj>333</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1016"> <id>1074</id> <edge_type>1</edge_type> <source_obj>318</source_obj> <sink_obj>334</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1017"> <id>1075</id> <edge_type>1</edge_type> <source_obj>1019</source_obj> <sink_obj>334</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1018"> <id>1077</id> <edge_type>1</edge_type> <source_obj>318</source_obj> <sink_obj>335</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1019"> <id>1078</id> <edge_type>1</edge_type> <source_obj>1024</source_obj> <sink_obj>335</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1020"> <id>1079</id> <edge_type>1</edge_type> <source_obj>335</source_obj> <sink_obj>336</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1021"> <id>1080</id> <edge_type>1</edge_type> <source_obj>1027</source_obj> <sink_obj>336</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1022"> <id>1081</id> <edge_type>1</edge_type> <source_obj>1029</source_obj> <sink_obj>336</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1023"> <id>1082</id> <edge_type>1</edge_type> <source_obj>309</source_obj> <sink_obj>337</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1024"> <id>1083</id> <edge_type>1</edge_type> <source_obj>318</source_obj> <sink_obj>337</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1025"> <id>1084</id> <edge_type>1</edge_type> <source_obj>337</source_obj> <sink_obj>338</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1026"> <id>1085</id> <edge_type>1</edge_type> <source_obj>313</source_obj> <sink_obj>338</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1027"> <id>1086</id> <edge_type>1</edge_type> <source_obj>334</source_obj> <sink_obj>339</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1028"> <id>1087</id> <edge_type>1</edge_type> <source_obj>336</source_obj> <sink_obj>339</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1029"> <id>1088</id> <edge_type>1</edge_type> <source_obj>339</source_obj> <sink_obj>340</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1030"> <id>1089</id> <edge_type>1</edge_type> <source_obj>330</source_obj> <sink_obj>340</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1031"> <id>1090</id> <edge_type>1</edge_type> <source_obj>340</source_obj> <sink_obj>341</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1032"> <id>1091</id> <edge_type>1</edge_type> <source_obj>338</source_obj> <sink_obj>341</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1033"> <id>1092</id> <edge_type>1</edge_type> <source_obj>341</source_obj> <sink_obj>342</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1034"> <id>1093</id> <edge_type>1</edge_type> <source_obj>307</source_obj> <sink_obj>342</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1035"> <id>1094</id> <edge_type>1</edge_type> <source_obj>313</source_obj> <sink_obj>343</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1036"> <id>1095</id> <edge_type>1</edge_type> <source_obj>317</source_obj> <sink_obj>343</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1037"> <id>1096</id> <edge_type>1</edge_type> <source_obj>343</source_obj> <sink_obj>344</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1038"> <id>1097</id> <edge_type>1</edge_type> <source_obj>309</source_obj> <sink_obj>344</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1039"> <id>1098</id> <edge_type>1</edge_type> <source_obj>339</source_obj> <sink_obj>345</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1040"> <id>1099</id> <edge_type>1</edge_type> <source_obj>321</source_obj> <sink_obj>345</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1041"> <id>1100</id> <edge_type>1</edge_type> <source_obj>345</source_obj> <sink_obj>346</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1042"> <id>1101</id> <edge_type>1</edge_type> <source_obj>344</source_obj> <sink_obj>346</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1043"> <id>1102</id> <edge_type>1</edge_type> <source_obj>346</source_obj> <sink_obj>347</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1044"> <id>1103</id> <edge_type>1</edge_type> <source_obj>308</source_obj> <sink_obj>347</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1045"> <id>1104</id> <edge_type>2</edge_type> <source_obj>294</source_obj> <sink_obj>348</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1046"> <id>1105</id> <edge_type>2</edge_type> <source_obj>357</source_obj> <sink_obj>377</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1047"> <id>1106</id> <edge_type>1</edge_type> <source_obj>355</source_obj> <sink_obj>352</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_1048"> <id>1107</id> <edge_type>2</edge_type> <source_obj>378</source_obj> <sink_obj>352</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_1049"> <id>1108</id> <edge_type>1</edge_type> <source_obj>509</source_obj> <sink_obj>352</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1050"> <id>1109</id> <edge_type>2</edge_type> <source_obj>351</source_obj> <sink_obj>352</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1051"> <id>1110</id> <edge_type>1</edge_type> <source_obj>352</source_obj> <sink_obj>353</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1052"> <id>1111</id> <edge_type>1</edge_type> <source_obj>515</source_obj> <sink_obj>353</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1053"> <id>1112</id> <edge_type>1</edge_type> <source_obj>352</source_obj> <sink_obj>355</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1054"> <id>1113</id> <edge_type>1</edge_type> <source_obj>518</source_obj> <sink_obj>355</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1055"> <id>1114</id> <edge_type>1</edge_type> <source_obj>353</source_obj> <sink_obj>356</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1056"> <id>1115</id> <edge_type>2</edge_type> <source_obj>361</source_obj> <sink_obj>356</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1057"> <id>1116</id> <edge_type>2</edge_type> <source_obj>380</source_obj> <sink_obj>356</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1058"> <id>1118</id> <edge_type>1</edge_type> <source_obj>352</source_obj> <sink_obj>358</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1059"> <id>1119</id> <edge_type>1</edge_type> <source_obj>527</source_obj> <sink_obj>358</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1060"> <id>1120</id> <edge_type>1</edge_type> <source_obj>358</source_obj> <sink_obj>359</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1061"> <id>1121</id> <edge_type>2</edge_type> <source_obj>367</source_obj> <sink_obj>360</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1062"> <id>1122</id> <edge_type>1</edge_type> <source_obj>365</source_obj> <sink_obj>362</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_1063"> <id>1123</id> <edge_type>2</edge_type> <source_obj>376</source_obj> <sink_obj>362</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_1064"> <id>1124</id> <edge_type>1</edge_type> <source_obj>509</source_obj> <sink_obj>362</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1065"> <id>1125</id> <edge_type>2</edge_type> <source_obj>361</source_obj> <sink_obj>362</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1066"> <id>1126</id> <edge_type>1</edge_type> <source_obj>362</source_obj> <sink_obj>363</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1067"> <id>1127</id> <edge_type>1</edge_type> <source_obj>515</source_obj> <sink_obj>363</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1068"> <id>1128</id> <edge_type>1</edge_type> <source_obj>362</source_obj> <sink_obj>365</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1069"> <id>1129</id> <edge_type>1</edge_type> <source_obj>518</source_obj> <sink_obj>365</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1070"> <id>1130</id> <edge_type>1</edge_type> <source_obj>363</source_obj> <sink_obj>366</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1071"> <id>1131</id> <edge_type>2</edge_type> <source_obj>376</source_obj> <sink_obj>366</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1072"> <id>1132</id> <edge_type>2</edge_type> <source_obj>378</source_obj> <sink_obj>366</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1073"> <id>1133</id> <edge_type>1</edge_type> <source_obj>362</source_obj> <sink_obj>368</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1074"> <id>1134</id> <edge_type>1</edge_type> <source_obj>359</source_obj> <sink_obj>369</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1075"> <id>1135</id> <edge_type>1</edge_type> <source_obj>368</source_obj> <sink_obj>369</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1076"> <id>1136</id> <edge_type>1</edge_type> <source_obj>369</source_obj> <sink_obj>370</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1077"> <id>1137</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>371</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1078"> <id>1138</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>371</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1079"> <id>1139</id> <edge_type>1</edge_type> <source_obj>370</source_obj> <sink_obj>371</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1080"> <id>1140</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>372</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1081"> <id>1141</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>372</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1082"> <id>1142</id> <edge_type>1</edge_type> <source_obj>370</source_obj> <sink_obj>372</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1083"> <id>1143</id> <edge_type>1</edge_type> <source_obj>372</source_obj> <sink_obj>373</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1084"> <id>1144</id> <edge_type>1</edge_type> <source_obj>373</source_obj> <sink_obj>374</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1085"> <id>1145</id> <edge_type>1</edge_type> <source_obj>371</source_obj> <sink_obj>374</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1086"> <id>1146</id> <edge_type>2</edge_type> <source_obj>367</source_obj> <sink_obj>375</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1087"> <id>1147</id> <edge_type>2</edge_type> <source_obj>384</source_obj> <sink_obj>379</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1088"> <id>1150</id> <edge_type>1</edge_type> <source_obj>224</source_obj> <sink_obj>381</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1089"> <id>1151</id> <edge_type>1</edge_type> <source_obj>527</source_obj> <sink_obj>381</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1090"> <id>1152</id> <edge_type>1</edge_type> <source_obj>381</source_obj> <sink_obj>382</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1091"> <id>1153</id> <edge_type>2</edge_type> <source_obj>390</source_obj> <sink_obj>383</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1092"> <id>1154</id> <edge_type>2</edge_type> <source_obj>390</source_obj> <sink_obj>418</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1093"> <id>1155</id> <edge_type>1</edge_type> <source_obj>509</source_obj> <sink_obj>385</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1094"> <id>1156</id> <edge_type>2</edge_type> <source_obj>384</source_obj> <sink_obj>385</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1095"> <id>1157</id> <edge_type>1</edge_type> <source_obj>388</source_obj> <sink_obj>385</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_1096"> <id>1158</id> <edge_type>2</edge_type> <source_obj>419</source_obj> <sink_obj>385</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_1097"> <id>1159</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>386</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1098"> <id>1160</id> <edge_type>1</edge_type> <source_obj>515</source_obj> <sink_obj>386</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1099"> <id>1161</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>388</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1100"> <id>1162</id> <edge_type>1</edge_type> <source_obj>518</source_obj> <sink_obj>388</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1101"> <id>1163</id> <edge_type>1</edge_type> <source_obj>386</source_obj> <sink_obj>389</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1102"> <id>1164</id> <edge_type>2</edge_type> <source_obj>397</source_obj> <sink_obj>389</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1103"> <id>1165</id> <edge_type>2</edge_type> <source_obj>422</source_obj> <sink_obj>389</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1104"> <id>1166</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>391</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1105"> <id>1168</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>392</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1106"> <id>1169</id> <edge_type>1</edge_type> <source_obj>527</source_obj> <sink_obj>392</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1107"> <id>1170</id> <edge_type>1</edge_type> <source_obj>392</source_obj> <sink_obj>393</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1108"> <id>1171</id> <edge_type>1</edge_type> <source_obj>391</source_obj> <sink_obj>394</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1109"> <id>1172</id> <edge_type>1</edge_type> <source_obj>382</source_obj> <sink_obj>394</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1110"> <id>1175</id> <edge_type>1</edge_type> <source_obj>394</source_obj> <sink_obj>395</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1111"> <id>1176</id> <edge_type>1</edge_type> <source_obj>527</source_obj> <sink_obj>395</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1112"> <id>1177</id> <edge_type>2</edge_type> <source_obj>403</source_obj> <sink_obj>396</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1113"> <id>1178</id> <edge_type>1</edge_type> <source_obj>401</source_obj> <sink_obj>398</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_1114"> <id>1179</id> <edge_type>2</edge_type> <source_obj>417</source_obj> <sink_obj>398</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_1115"> <id>1180</id> <edge_type>1</edge_type> <source_obj>509</source_obj> <sink_obj>398</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1116"> <id>1181</id> <edge_type>2</edge_type> <source_obj>397</source_obj> <sink_obj>398</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1117"> <id>1182</id> <edge_type>1</edge_type> <source_obj>398</source_obj> <sink_obj>399</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1118"> <id>1183</id> <edge_type>1</edge_type> <source_obj>515</source_obj> <sink_obj>399</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1119"> <id>1184</id> <edge_type>1</edge_type> <source_obj>398</source_obj> <sink_obj>401</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1120"> <id>1185</id> <edge_type>1</edge_type> <source_obj>518</source_obj> <sink_obj>401</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1121"> <id>1186</id> <edge_type>1</edge_type> <source_obj>399</source_obj> <sink_obj>402</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1122"> <id>1187</id> <edge_type>2</edge_type> <source_obj>417</source_obj> <sink_obj>402</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1123"> <id>1188</id> <edge_type>2</edge_type> <source_obj>419</source_obj> <sink_obj>402</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1124"> <id>1189</id> <edge_type>1</edge_type> <source_obj>398</source_obj> <sink_obj>404</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1125"> <id>1190</id> <edge_type>1</edge_type> <source_obj>398</source_obj> <sink_obj>405</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1126"> <id>1191</id> <edge_type>1</edge_type> <source_obj>393</source_obj> <sink_obj>406</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1127"> <id>1192</id> <edge_type>1</edge_type> <source_obj>405</source_obj> <sink_obj>406</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1128"> <id>1193</id> <edge_type>1</edge_type> <source_obj>406</source_obj> <sink_obj>407</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1129"> <id>1194</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>408</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1130"> <id>1195</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>408</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1131"> <id>1196</id> <edge_type>1</edge_type> <source_obj>407</source_obj> <sink_obj>408</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1132"> <id>1197</id> <edge_type>1</edge_type> <source_obj>395</source_obj> <sink_obj>409</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1133"> <id>1198</id> <edge_type>1</edge_type> <source_obj>404</source_obj> <sink_obj>409</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1134"> <id>1199</id> <edge_type>1</edge_type> <source_obj>409</source_obj> <sink_obj>410</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1135"> <id>1200</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>411</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1136"> <id>1201</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>411</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1137"> <id>1202</id> <edge_type>1</edge_type> <source_obj>410</source_obj> <sink_obj>411</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1138"> <id>1203</id> <edge_type>1</edge_type> <source_obj>411</source_obj> <sink_obj>412</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1139"> <id>1204</id> <edge_type>1</edge_type> <source_obj>408</source_obj> <sink_obj>413</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1140"> <id>1205</id> <edge_type>1</edge_type> <source_obj>413</source_obj> <sink_obj>414</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1141"> <id>1206</id> <edge_type>1</edge_type> <source_obj>412</source_obj> <sink_obj>414</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1142"> <id>1207</id> <edge_type>1</edge_type> <source_obj>414</source_obj> <sink_obj>415</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1143"> <id>1208</id> <edge_type>1</edge_type> <source_obj>408</source_obj> <sink_obj>415</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1144"> <id>1209</id> <edge_type>2</edge_type> <source_obj>403</source_obj> <sink_obj>416</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1145"> <id>1210</id> <edge_type>1</edge_type> <source_obj>224</source_obj> <sink_obj>420</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1146"> <id>1211</id> <edge_type>1</edge_type> <source_obj>558</source_obj> <sink_obj>420</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1147"> <id>1212</id> <edge_type>2</edge_type> <source_obj>228</source_obj> <sink_obj>421</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1148"> <id>1213</id> <edge_type>2</edge_type> <source_obj>430</source_obj> <sink_obj>450</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1149"> <id>1214</id> <edge_type>1</edge_type> <source_obj>428</source_obj> <sink_obj>425</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_1150"> <id>1215</id> <edge_type>2</edge_type> <source_obj>451</source_obj> <sink_obj>425</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_1151"> <id>1216</id> <edge_type>1</edge_type> <source_obj>509</source_obj> <sink_obj>425</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1152"> <id>1217</id> <edge_type>2</edge_type> <source_obj>424</source_obj> <sink_obj>425</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1153"> <id>1218</id> <edge_type>1</edge_type> <source_obj>425</source_obj> <sink_obj>426</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1154"> <id>1219</id> <edge_type>1</edge_type> <source_obj>515</source_obj> <sink_obj>426</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1155"> <id>1220</id> <edge_type>1</edge_type> <source_obj>425</source_obj> <sink_obj>428</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1156"> <id>1221</id> <edge_type>1</edge_type> <source_obj>518</source_obj> <sink_obj>428</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1157"> <id>1222</id> <edge_type>1</edge_type> <source_obj>426</source_obj> <sink_obj>429</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1158"> <id>1223</id> <edge_type>2</edge_type> <source_obj>434</source_obj> <sink_obj>429</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1159"> <id>1224</id> <edge_type>2</edge_type> <source_obj>453</source_obj> <sink_obj>429</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1160"> <id>1226</id> <edge_type>1</edge_type> <source_obj>425</source_obj> <sink_obj>431</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1161"> <id>1227</id> <edge_type>1</edge_type> <source_obj>527</source_obj> <sink_obj>431</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1162"> <id>1228</id> <edge_type>1</edge_type> <source_obj>431</source_obj> <sink_obj>432</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1163"> <id>1229</id> <edge_type>2</edge_type> <source_obj>440</source_obj> <sink_obj>433</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1164"> <id>1230</id> <edge_type>1</edge_type> <source_obj>438</source_obj> <sink_obj>435</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_1165"> <id>1231</id> <edge_type>2</edge_type> <source_obj>449</source_obj> <sink_obj>435</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_1166"> <id>1232</id> <edge_type>1</edge_type> <source_obj>509</source_obj> <sink_obj>435</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1167"> <id>1233</id> <edge_type>2</edge_type> <source_obj>434</source_obj> <sink_obj>435</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1168"> <id>1234</id> <edge_type>1</edge_type> <source_obj>435</source_obj> <sink_obj>436</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1169"> <id>1235</id> <edge_type>1</edge_type> <source_obj>515</source_obj> <sink_obj>436</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1170"> <id>1236</id> <edge_type>1</edge_type> <source_obj>435</source_obj> <sink_obj>438</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1171"> <id>1237</id> <edge_type>1</edge_type> <source_obj>518</source_obj> <sink_obj>438</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1172"> <id>1238</id> <edge_type>1</edge_type> <source_obj>436</source_obj> <sink_obj>439</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1173"> <id>1239</id> <edge_type>2</edge_type> <source_obj>449</source_obj> <sink_obj>439</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1174"> <id>1240</id> <edge_type>2</edge_type> <source_obj>451</source_obj> <sink_obj>439</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1175"> <id>1241</id> <edge_type>1</edge_type> <source_obj>435</source_obj> <sink_obj>441</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1176"> <id>1242</id> <edge_type>1</edge_type> <source_obj>432</source_obj> <sink_obj>442</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1177"> <id>1243</id> <edge_type>1</edge_type> <source_obj>441</source_obj> <sink_obj>442</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1178"> <id>1244</id> <edge_type>1</edge_type> <source_obj>442</source_obj> <sink_obj>443</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1179"> <id>1245</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>444</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1180"> <id>1246</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>444</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1181"> <id>1247</id> <edge_type>1</edge_type> <source_obj>443</source_obj> <sink_obj>444</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1182"> <id>1248</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>445</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1183"> <id>1249</id> <edge_type>1</edge_type> <source_obj>457</source_obj> <sink_obj>445</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1184"> <id>1250</id> <edge_type>1</edge_type> <source_obj>443</source_obj> <sink_obj>445</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1185"> <id>1251</id> <edge_type>1</edge_type> <source_obj>445</source_obj> <sink_obj>446</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1186"> <id>1252</id> <edge_type>1</edge_type> <source_obj>446</source_obj> <sink_obj>447</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1187"> <id>1253</id> <edge_type>1</edge_type> <source_obj>444</source_obj> <sink_obj>447</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1188"> <id>1254</id> <edge_type>2</edge_type> <source_obj>440</source_obj> <sink_obj>448</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1189"> <id>1420</id> <edge_type>2</edge_type> <source_obj>30</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1190"> <id>1421</id> <edge_type>2</edge_type> <source_obj>36</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1191"> <id>1422</id> <edge_type>2</edge_type> <source_obj>36</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1192"> <id>1423</id> <edge_type>2</edge_type> <source_obj>40</source_obj> <sink_obj>46</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1193"> <id>1424</id> <edge_type>2</edge_type> <source_obj>46</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1194"> <id>1425</id> <edge_type>2</edge_type> <source_obj>46</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1195"> <id>1426</id> <edge_type>2</edge_type> <source_obj>55</source_obj> <sink_obj>46</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_1196"> <id>1427</id> <edge_type>2</edge_type> <source_obj>57</source_obj> <sink_obj>36</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_1197"> <id>1428</id> <edge_type>2</edge_type> <source_obj>59</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1198"> <id>1429</id> <edge_type>2</edge_type> <source_obj>64</source_obj> <sink_obj>163</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1199"> <id>1430</id> <edge_type>2</edge_type> <source_obj>64</source_obj> <sink_obj>109</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1200"> <id>1431</id> <edge_type>2</edge_type> <source_obj>109</source_obj> <sink_obj>119</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1201"> <id>1432</id> <edge_type>2</edge_type> <source_obj>119</source_obj> <sink_obj>161</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1202"> <id>1433</id> <edge_type>2</edge_type> <source_obj>119</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1203"> <id>1434</id> <edge_type>2</edge_type> <source_obj>158</source_obj> <sink_obj>119</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_1204"> <id>1435</id> <edge_type>2</edge_type> <source_obj>161</source_obj> <sink_obj>64</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_1205"> <id>1436</id> <edge_type>2</edge_type> <source_obj>163</source_obj> <sink_obj>169</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1206"> <id>1437</id> <edge_type>2</edge_type> <source_obj>169</source_obj> <sink_obj>192</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1207"> <id>1438</id> <edge_type>2</edge_type> <source_obj>169</source_obj> <sink_obj>173</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1208"> <id>1439</id> <edge_type>2</edge_type> <source_obj>173</source_obj> <sink_obj>179</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1209"> <id>1440</id> <edge_type>2</edge_type> <source_obj>179</source_obj> <sink_obj>190</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1210"> <id>1441</id> <edge_type>2</edge_type> <source_obj>179</source_obj> <sink_obj>188</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1211"> <id>1442</id> <edge_type>2</edge_type> <source_obj>188</source_obj> <sink_obj>179</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_1212"> <id>1443</id> <edge_type>2</edge_type> <source_obj>190</source_obj> <sink_obj>169</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_1213"> <id>1444</id> <edge_type>2</edge_type> <source_obj>192</source_obj> <sink_obj>198</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1214"> <id>1445</id> <edge_type>2</edge_type> <source_obj>198</source_obj> <sink_obj>223</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1215"> <id>1446</id> <edge_type>2</edge_type> <source_obj>198</source_obj> <sink_obj>202</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1216"> <id>1447</id> <edge_type>2</edge_type> <source_obj>202</source_obj> <sink_obj>208</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1217"> <id>1448</id> <edge_type>2</edge_type> <source_obj>208</source_obj> <sink_obj>221</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1218"> <id>1449</id> <edge_type>2</edge_type> <source_obj>208</source_obj> <sink_obj>219</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1219"> <id>1450</id> <edge_type>2</edge_type> <source_obj>219</source_obj> <sink_obj>208</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_1220"> <id>1451</id> <edge_type>2</edge_type> <source_obj>221</source_obj> <sink_obj>198</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_1221"> <id>1452</id> <edge_type>2</edge_type> <source_obj>223</source_obj> <sink_obj>228</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1222"> <id>1453</id> <edge_type>2</edge_type> <source_obj>228</source_obj> <sink_obj>424</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1223"> <id>1454</id> <edge_type>2</edge_type> <source_obj>228</source_obj> <sink_obj>230</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1224"> <id>1455</id> <edge_type>2</edge_type> <source_obj>230</source_obj> <sink_obj>236</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1225"> <id>1456</id> <edge_type>2</edge_type> <source_obj>236</source_obj> <sink_obj>286</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1226"> <id>1457</id> <edge_type>2</edge_type> <source_obj>236</source_obj> <sink_obj>240</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1227"> <id>1458</id> <edge_type>2</edge_type> <source_obj>240</source_obj> <sink_obj>246</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1228"> <id>1459</id> <edge_type>2</edge_type> <source_obj>246</source_obj> <sink_obj>259</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1229"> <id>1460</id> <edge_type>2</edge_type> <source_obj>246</source_obj> <sink_obj>257</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1230"> <id>1461</id> <edge_type>2</edge_type> <source_obj>257</source_obj> <sink_obj>246</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_1231"> <id>1462</id> <edge_type>2</edge_type> <source_obj>259</source_obj> <sink_obj>236</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_1232"> <id>1463</id> <edge_type>2</edge_type> <source_obj>286</source_obj> <sink_obj>384</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1233"> <id>1464</id> <edge_type>2</edge_type> <source_obj>286</source_obj> <sink_obj>288</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1234"> <id>1465</id> <edge_type>2</edge_type> <source_obj>288</source_obj> <sink_obj>294</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1235"> <id>1466</id> <edge_type>2</edge_type> <source_obj>294</source_obj> <sink_obj>351</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1236"> <id>1467</id> <edge_type>2</edge_type> <source_obj>294</source_obj> <sink_obj>349</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1237"> <id>1468</id> <edge_type>2</edge_type> <source_obj>349</source_obj> <sink_obj>294</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_1238"> <id>1469</id> <edge_type>2</edge_type> <source_obj>351</source_obj> <sink_obj>357</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1239"> <id>1470</id> <edge_type>2</edge_type> <source_obj>357</source_obj> <sink_obj>380</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1240"> <id>1471</id> <edge_type>2</edge_type> <source_obj>357</source_obj> <sink_obj>361</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1241"> <id>1472</id> <edge_type>2</edge_type> <source_obj>361</source_obj> <sink_obj>367</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1242"> <id>1473</id> <edge_type>2</edge_type> <source_obj>367</source_obj> <sink_obj>378</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1243"> <id>1474</id> <edge_type>2</edge_type> <source_obj>367</source_obj> <sink_obj>376</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1244"> <id>1475</id> <edge_type>2</edge_type> <source_obj>376</source_obj> <sink_obj>367</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_1245"> <id>1476</id> <edge_type>2</edge_type> <source_obj>378</source_obj> <sink_obj>357</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_1246"> <id>1477</id> <edge_type>2</edge_type> <source_obj>380</source_obj> <sink_obj>384</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1247"> <id>1478</id> <edge_type>2</edge_type> <source_obj>384</source_obj> <sink_obj>390</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1248"> <id>1479</id> <edge_type>2</edge_type> <source_obj>390</source_obj> <sink_obj>422</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1249"> <id>1480</id> <edge_type>2</edge_type> <source_obj>390</source_obj> <sink_obj>397</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1250"> <id>1481</id> <edge_type>2</edge_type> <source_obj>397</source_obj> <sink_obj>403</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1251"> <id>1482</id> <edge_type>2</edge_type> <source_obj>403</source_obj> <sink_obj>419</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1252"> <id>1483</id> <edge_type>2</edge_type> <source_obj>403</source_obj> <sink_obj>417</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1253"> <id>1484</id> <edge_type>2</edge_type> <source_obj>417</source_obj> <sink_obj>403</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_1254"> <id>1485</id> <edge_type>2</edge_type> <source_obj>419</source_obj> <sink_obj>390</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_1255"> <id>1486</id> <edge_type>2</edge_type> <source_obj>422</source_obj> <sink_obj>228</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_1256"> <id>1487</id> <edge_type>2</edge_type> <source_obj>424</source_obj> <sink_obj>430</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1257"> <id>1488</id> <edge_type>2</edge_type> <source_obj>430</source_obj> <sink_obj>453</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1258"> <id>1489</id> <edge_type>2</edge_type> <source_obj>430</source_obj> <sink_obj>434</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1259"> <id>1490</id> <edge_type>2</edge_type> <source_obj>434</source_obj> <sink_obj>440</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1260"> <id>1491</id> <edge_type>2</edge_type> <source_obj>440</source_obj> <sink_obj>451</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1261"> <id>1492</id> <edge_type>2</edge_type> <source_obj>440</source_obj> <sink_obj>449</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1262"> <id>1493</id> <edge_type>2</edge_type> <source_obj>449</source_obj> <sink_obj>440</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_1263"> <id>1494</id> <edge_type>2</edge_type> <source_obj>451</source_obj> <sink_obj>430</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_1264"> <id>1495</id> <edge_type>4</edge_type> <source_obj>215</source_obj> <sink_obj>217</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1265"> <id>1496</id> <edge_type>4</edge_type> <source_obj>251</source_obj> <sink_obj>255</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1266"> <id>1497</id> <edge_type>4</edge_type> <source_obj>281</source_obj> <sink_obj>283</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1267"> <id>1498</id> <edge_type>4</edge_type> <source_obj>279</source_obj> <sink_obj>282</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1268"> <id>1499</id> <edge_type>4</edge_type> <source_obj>277</source_obj> <sink_obj>280</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1269"> <id>1500</id> <edge_type>4</edge_type> <source_obj>276</source_obj> <sink_obj>278</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1270"> <id>1501</id> <edge_type>4</edge_type> <source_obj>273</source_obj> <sink_obj>275</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1271"> <id>1502</id> <edge_type>4</edge_type> <source_obj>272</source_obj> <sink_obj>274</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1272"> <id>1503</id> <edge_type>4</edge_type> <source_obj>269</source_obj> <sink_obj>271</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1273"> <id>1504</id> <edge_type>4</edge_type> <source_obj>268</source_obj> <sink_obj>270</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1274"> <id>1505</id> <edge_type>4</edge_type> <source_obj>265</source_obj> <sink_obj>267</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1275"> <id>1506</id> <edge_type>4</edge_type> <source_obj>263</source_obj> <sink_obj>266</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1276"> <id>1507</id> <edge_type>4</edge_type> <source_obj>261</source_obj> <sink_obj>264</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1277"> <id>1508</id> <edge_type>4</edge_type> <source_obj>260</source_obj> <sink_obj>262</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_1278"> <id>1509</id> <edge_type>4</edge_type> <source_obj>413</source_obj> <sink_obj>415</sink_obj> <is_back_edge>0</is_back_edge> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>48</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_1279"> <mId>1</mId> <mTag>encrypt</mTag> <mType>0</mType> <sub_regions> <count>13</count> <item_version>0</item_version> <item>2</item> <item>3</item> <item>7</item> <item>8</item> <item>12</item> <item>13</item> <item>17</item> <item>18</item> <item>22</item> <item>23</item> <item>43</item> <item>44</item> <item>48</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>1486</mMinLatency> <mMaxLatency>2056</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1280"> <mId>2</mId> <mTag>Entry</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>30</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1281"> <mId>3</mId> <mTag>Loop 1</mTag> <mType>1</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>4</item> <item>5</item> <item>6</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>4</mMinTripCount> <mMaxTripCount>4</mMaxTripCount> <mMinLatency>40</mMinLatency> <mMaxLatency>40</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1282"> <mId>4</mId> <mTag>Region 1</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>36</item> <item>40</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1283"> <mId>5</mId> <mTag>Loop 1.1</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>46</item> <item>55</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>4</mMinTripCount> <mMaxTripCount>4</mMaxTripCount> <mMinLatency>8</mMinLatency> <mMaxLatency>8</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1284"> <mId>6</mId> <mTag>Region 2</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>57</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1285"> <mId>7</mId> <mTag>Region 3</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>59</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1286"> <mId>8</mId> <mTag>Loop 2</mTag> <mType>1</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>9</item> <item>10</item> <item>11</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>10</mMinTripCount> <mMaxTripCount>10</mMaxTripCount> <mMinLatency>210</mMinLatency> <mMaxLatency>210</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1287"> <mId>9</mId> <mTag>Region 4</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>64</item> <item>109</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>3</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1288"> <mId>10</mId> <mTag>Loop 2.1</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>119</item> <item>158</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>4</mMinTripCount> <mMaxTripCount>4</mMaxTripCount> <mMinLatency>16</mMinLatency> <mMaxLatency>16</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1289"> <mId>11</mId> <mTag>Region 5</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>161</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1290"> <mId>12</mId> <mTag>Region 6</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>163</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1291"> <mId>13</mId> <mTag>Loop 3</mTag> <mType>1</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>14</item> <item>15</item> <item>16</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>4</mMinTripCount> <mMaxTripCount>4</mMaxTripCount> <mMinLatency>40</mMinLatency> <mMaxLatency>40</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1292"> <mId>14</mId> <mTag>Region 7</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>169</item> <item>173</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1293"> <mId>15</mId> <mTag>Loop 3.1</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>179</item> <item>188</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>4</mMinTripCount> <mMaxTripCount>4</mMaxTripCount> <mMinLatency>8</mMinLatency> <mMaxLatency>8</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1294"> <mId>16</mId> <mTag>Region 8</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>190</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1295"> <mId>17</mId> <mTag>Region 9</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>192</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1296"> <mId>18</mId> <mTag>Loop 4</mTag> <mType>1</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>19</item> <item>20</item> <item>21</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>4</mMinTripCount> <mMaxTripCount>4</mMaxTripCount> <mMinLatency>40</mMinLatency> <mMaxLatency>40</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1297"> <mId>19</mId> <mTag>Region 10</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>198</item> <item>202</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1298"> <mId>20</mId> <mTag>Loop 4.1</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>208</item> <item>219</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>4</mMinTripCount> <mMaxTripCount>4</mMaxTripCount> <mMinLatency>8</mMinLatency> <mMaxLatency>8</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1299"> <mId>21</mId> <mTag>Region 11</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>221</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1300"> <mId>22</mId> <mTag>Region 12</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>223</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1301"> <mId>23</mId> <mTag>Loop 5</mTag> <mType>1</mType> <sub_regions> <count>10</count> <item_version>0</item_version> <item>24</item> <item>25</item> <item>29</item> <item>30</item> <item>31</item> <item>32</item> <item>36</item> <item>37</item> <item>38</item> <item>42</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>10</mMinTripCount> <mMaxTripCount>10</mMaxTripCount> <mMinLatency>1110</mMinLatency> <mMaxLatency>1680</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1302"> <mId>24</mId> <mTag>Region 13</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>228</item> <item>230</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1303"> <mId>25</mId> <mTag>Loop 5.1</mTag> <mType>1</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>26</item> <item>27</item> <item>28</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>4</mMinTripCount> <mMaxTripCount>4</mMaxTripCount> <mMinLatency>56</mMinLatency> <mMaxLatency>56</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1304"> <mId>26</mId> <mTag>Region 14</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>236</item> <item>240</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1305"> <mId>27</mId> <mTag>Loop 5.1.1</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>246</item> <item>257</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>4</mMinTripCount> <mMaxTripCount>4</mMaxTripCount> <mMinLatency>12</mMinLatency> <mMaxLatency>12</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1306"> <mId>28</mId> <mTag>Region 15</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>259</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1307"> <mId>29</mId> <mTag>Region 16</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>286</item> <item>288</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>11</mMinLatency> <mMaxLatency>11</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1308"> <mId>30</mId> <mTag>Loop 5.2</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>294</item> <item>349</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>4</mMinTripCount> <mMaxTripCount>4</mMaxTripCount> <mMinLatency>16</mMinLatency> <mMaxLatency>16</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1309"> <mId>31</mId> <mTag>Region 17</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>351</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1310"> <mId>32</mId> <mTag>Loop 5.3</mTag> <mType>1</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>33</item> <item>34</item> <item>35</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>4</mMinTripCount> <mMaxTripCount>4</mMaxTripCount> <mMinLatency>40</mMinLatency> <mMaxLatency>40</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1311"> <mId>33</mId> <mTag>Region 18</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>357</item> <item>361</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1312"> <mId>34</mId> <mTag>Loop 5.3.1</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>367</item> <item>376</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>4</mMinTripCount> <mMaxTripCount>4</mMaxTripCount> <mMinLatency>8</mMinLatency> <mMaxLatency>8</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1313"> <mId>35</mId> <mTag>Region 19</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>378</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1314"> <mId>36</mId> <mTag>Region 20</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>380</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1315"> <mId>37</mId> <mTag>Region 21</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>384</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1316"> <mId>38</mId> <mTag>Loop 5.4</mTag> <mType>1</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>39</item> <item>40</item> <item>41</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>4</mMinTripCount> <mMaxTripCount>4</mMaxTripCount> <mMinLatency>40</mMinLatency> <mMaxLatency>40</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1317"> <mId>39</mId> <mTag>Region 22</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>390</item> <item>397</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1318"> <mId>40</mId> <mTag>Loop 5.4.1</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>403</item> <item>417</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>4</mMinTripCount> <mMaxTripCount>4</mMaxTripCount> <mMinLatency>8</mMinLatency> <mMaxLatency>8</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1319"> <mId>41</mId> <mTag>Region 23</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>419</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1320"> <mId>42</mId> <mTag>Region 24</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>422</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1321"> <mId>43</mId> <mTag>Region 25</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>424</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1322"> <mId>44</mId> <mTag>Loop 6</mTag> <mType>1</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>45</item> <item>46</item> <item>47</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>4</mMinTripCount> <mMaxTripCount>4</mMaxTripCount> <mMinLatency>40</mMinLatency> <mMaxLatency>40</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1323"> <mId>45</mId> <mTag>Region 26</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>430</item> <item>434</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1324"> <mId>46</mId> <mTag>Loop 6.1</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>440</item> <item>449</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>4</mMinTripCount> <mMaxTripCount>4</mMaxTripCount> <mMinLatency>8</mMinLatency> <mMaxLatency>8</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1325"> <mId>47</mId> <mTag>Region 27</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>451</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1326"> <mId>48</mId> <mTag>Return</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>453</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> </cdfg_regions> <fsm class_id="-1"></fsm> <res class_id="-1"></res> <node_label_latency class_id="26" tracking_level="0" version="0"> <count>365</count> <item_version>0</item_version> <item class_id="27" tracking_level="0" version="0"> <first>9</first> <second class_id="28" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>10</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>11</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>12</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>13</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>14</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>15</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>16</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>17</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>18</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>19</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>20</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>21</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>22</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>23</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>29</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>31</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>32</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>34</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>35</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>38</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>39</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>41</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>42</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>44</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>45</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>47</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>48</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>49</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>50</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>51</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>52</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>53</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>54</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>56</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>58</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>60</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>61</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>63</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>65</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>66</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>67</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>68</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>69</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>70</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>71</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>72</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>73</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>74</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>75</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>76</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>77</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>78</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>79</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>80</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>81</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>82</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>83</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>84</first> <second> <first>4</first> <second>1</second> </second> </item> <item> <first>85</first> <second> <first>4</first> <second>1</second> </second> </item> <item> <first>86</first> <second> <first>5</first> <second>1</second> </second> </item> <item> <first>87</first> <second> <first>5</first> <second>1</second> </second> </item> <item> <first>88</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>89</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>90</first> <second> <first>6</first> <second>1</second> </second> </item> <item> <first>91</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>92</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>93</first> <second> <first>6</first> <second>1</second> </second> </item> <item> <first>94</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>95</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>96</first> <second> <first>6</first> <second>1</second> </second> </item> <item> <first>97</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>98</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>99</first> <second> <first>6</first> <second>1</second> </second> </item> <item> <first>100</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>101</first> <second> <first>6</first> <second>1</second> </second> </item> <item> <first>102</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>103</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>104</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>105</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>106</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>107</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>108</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>110</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>111</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>112</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>113</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>114</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>115</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>117</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>118</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>120</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>121</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>122</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>123</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>124</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>125</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>126</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>127</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>128</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>129</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>130</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>131</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>132</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>133</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>134</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>135</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>136</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>137</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>138</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>139</first> <second> <first>11</first> <second>0</second> </second> </item> <item> <first>140</first> <second> <first>11</first> <second>0</second> </second> </item> <item> <first>141</first> <second> <first>11</first> <second>0</second> </second> </item> <item> <first>142</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>143</first> <second> <first>11</first> <second>0</second> </second> </item> <item> <first>144</first> <second> <first>11</first> <second>0</second> </second> </item> <item> <first>145</first> <second> <first>8</first> <second>1</second> </second> </item> <item> <first>146</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>147</first> <second> <first>8</first> <second>1</second> </second> </item> <item> <first>148</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>149</first> <second> <first>9</first> <second>1</second> </second> </item> <item> <first>150</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>151</first> <second> <first>9</first> <second>1</second> </second> </item> <item> <first>152</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>153</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>154</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>155</first> <second> <first>11</first> <second>0</second> </second> </item> <item> <first>156</first> <second> <first>11</first> <second>0</second> </second> </item> <item> <first>157</first> <second> <first>11</first> <second>0</second> </second> </item> <item> <first>159</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>160</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>162</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>164</first> <second> <first>12</first> <second>0</second> </second> </item> <item> <first>165</first> <second> <first>12</first> <second>0</second> </second> </item> <item> <first>167</first> <second> <first>12</first> <second>0</second> </second> </item> <item> <first>168</first> <second> <first>12</first> <second>0</second> </second> </item> <item> <first>170</first> <second> <first>12</first> <second>0</second> </second> </item> <item> <first>171</first> <second> <first>12</first> <second>0</second> </second> </item> <item> <first>172</first> <second> <first>12</first> <second>0</second> </second> </item> <item> <first>174</first> <second> <first>13</first> <second>0</second> </second> </item> <item> <first>175</first> <second> <first>13</first> <second>0</second> </second> </item> <item> <first>177</first> <second> <first>13</first> <second>0</second> </second> </item> <item> <first>178</first> <second> <first>13</first> <second>0</second> </second> </item> <item> <first>180</first> <second> <first>13</first> <second>0</second> </second> </item> <item> <first>181</first> <second> <first>13</first> <second>0</second> </second> </item> <item> <first>182</first> <second> <first>13</first> <second>0</second> </second> </item> <item> <first>183</first> <second> <first>13</first> <second>0</second> </second> </item> <item> <first>184</first> <second> <first>14</first> <second>0</second> </second> </item> <item> <first>185</first> <second> <first>13</first> <second>1</second> </second> </item> <item> <first>186</first> <second> <first>14</first> <second>0</second> </second> </item> <item> <first>187</first> <second> <first>14</first> <second>0</second> </second> </item> <item> <first>189</first> <second> <first>13</first> <second>0</second> </second> </item> <item> <first>191</first> <second> <first>12</first> <second>0</second> </second> </item> <item> <first>193</first> <second> <first>15</first> <second>0</second> </second> </item> <item> <first>194</first> <second> <first>15</first> <second>0</second> </second> </item> <item> <first>196</first> <second> <first>15</first> <second>0</second> </second> </item> <item> <first>197</first> <second> <first>15</first> <second>0</second> </second> </item> <item> <first>199</first> <second> <first>15</first> <second>0</second> </second> </item> <item> <first>200</first> <second> <first>15</first> <second>0</second> </second> </item> <item> <first>201</first> <second> <first>15</first> <second>0</second> </second> </item> <item> <first>203</first> <second> <first>16</first> <second>0</second> </second> </item> <item> <first>204</first> <second> <first>16</first> <second>0</second> </second> </item> <item> <first>206</first> <second> <first>16</first> <second>0</second> </second> </item> <item> <first>207</first> <second> <first>16</first> <second>0</second> </second> </item> <item> <first>209</first> <second> <first>16</first> <second>0</second> </second> </item> <item> <first>210</first> <second> <first>16</first> <second>0</second> </second> </item> <item> <first>211</first> <second> <first>16</first> <second>0</second> </second> </item> <item> <first>212</first> <second> <first>16</first> <second>0</second> </second> </item> <item> <first>213</first> <second> <first>16</first> <second>0</second> </second> </item> <item> <first>214</first> <second> <first>16</first> <second>1</second> </second> </item> <item> <first>215</first> <second> <first>16</first> <second>1</second> </second> </item> <item> <first>216</first> <second> <first>17</first> <second>0</second> </second> </item> <item> <first>217</first> <second> <first>17</first> <second>0</second> </second> </item> <item> <first>218</first> <second> <first>17</first> <second>0</second> </second> </item> <item> <first>220</first> <second> <first>16</first> <second>0</second> </second> </item> <item> <first>222</first> <second> <first>15</first> <second>0</second> </second> </item> <item> <first>224</first> <second> <first>18</first> <second>0</second> </second> </item> <item> <first>225</first> <second> <first>18</first> <second>0</second> </second> </item> <item> <first>227</first> <second> <first>18</first> <second>0</second> </second> </item> <item> <first>229</first> <second> <first>18</first> <second>0</second> </second> </item> <item> <first>231</first> <second> <first>19</first> <second>0</second> </second> </item> <item> <first>232</first> <second> <first>19</first> <second>0</second> </second> </item> <item> <first>234</first> <second> <first>19</first> <second>0</second> </second> </item> <item> <first>235</first> <second> <first>19</first> <second>0</second> </second> </item> <item> <first>237</first> <second> <first>19</first> <second>0</second> </second> </item> <item> <first>238</first> <second> <first>19</first> <second>0</second> </second> </item> <item> <first>239</first> <second> <first>19</first> <second>0</second> </second> </item> <item> <first>241</first> <second> <first>20</first> <second>0</second> </second> </item> <item> <first>242</first> <second> <first>20</first> <second>0</second> </second> </item> <item> <first>244</first> <second> <first>20</first> <second>0</second> </second> </item> <item> <first>245</first> <second> <first>20</first> <second>0</second> </second> </item> <item> <first>247</first> <second> <first>20</first> <second>0</second> </second> </item> <item> <first>248</first> <second> <first>20</first> <second>0</second> </second> </item> <item> <first>249</first> <second> <first>20</first> <second>0</second> </second> </item> <item> <first>250</first> <second> <first>20</first> <second>0</second> </second> </item> <item> <first>251</first> <second> <first>20</first> <second>1</second> </second> </item> <item> <first>252</first> <second> <first>21</first> <second>0</second> </second> </item> <item> <first>253</first> <second> <first>21</first> <second>0</second> </second> </item> <item> <first>254</first> <second> <first>21</first> <second>1</second> </second> </item> <item> <first>255</first> <second> <first>22</first> <second>0</second> </second> </item> <item> <first>256</first> <second> <first>22</first> <second>0</second> </second> </item> <item> <first>258</first> <second> <first>20</first> <second>0</second> </second> </item> <item> <first>260</first> <second> <first>19</first> <second>1</second> </second> </item> <item> <first>261</first> <second> <first>19</first> <second>1</second> </second> </item> <item> <first>262</first> <second> <first>28</first> <second>0</second> </second> </item> <item> <first>263</first> <second> <first>23</first> <second>1</second> </second> </item> <item> <first>264</first> <second> <first>28</first> <second>0</second> </second> </item> <item> <first>265</first> <second> <first>23</first> <second>1</second> </second> </item> <item> <first>266</first> <second> <first>29</first> <second>0</second> </second> </item> <item> <first>267</first> <second> <first>29</first> <second>0</second> </second> </item> <item> <first>268</first> <second> <first>24</first> <second>1</second> </second> </item> <item> <first>269</first> <second> <first>24</first> <second>1</second> </second> </item> <item> <first>270</first> <second> <first>30</first> <second>0</second> </second> </item> <item> <first>271</first> <second> <first>30</first> <second>0</second> </second> </item> <item> <first>272</first> <second> <first>25</first> <second>1</second> </second> </item> <item> <first>273</first> <second> <first>25</first> <second>1</second> </second> </item> <item> <first>274</first> <second> <first>31</first> <second>0</second> </second> </item> <item> <first>275</first> <second> <first>31</first> <second>0</second> </second> </item> <item> <first>276</first> <second> <first>26</first> <second>1</second> </second> </item> <item> <first>277</first> <second> <first>26</first> <second>1</second> </second> </item> <item> <first>278</first> <second> <first>32</first> <second>0</second> </second> </item> <item> <first>279</first> <second> <first>27</first> <second>1</second> </second> </item> <item> <first>280</first> <second> <first>32</first> <second>0</second> </second> </item> <item> <first>281</first> <second> <first>27</first> <second>1</second> </second> </item> <item> <first>282</first> <second> <first>33</first> <second>0</second> </second> </item> <item> <first>283</first> <second> <first>33</first> <second>0</second> </second> </item> <item> <first>284</first> <second> <first>33</first> <second>0</second> </second> </item> <item> <first>285</first> <second> <first>33</first> <second>0</second> </second> </item> <item> <first>287</first> <second> <first>33</first> <second>0</second> </second> </item> <item> <first>289</first> <second> <first>34</first> <second>0</second> </second> </item> <item> <first>290</first> <second> <first>34</first> <second>0</second> </second> </item> <item> <first>292</first> <second> <first>34</first> <second>0</second> </second> </item> <item> <first>293</first> <second> <first>34</first> <second>0</second> </second> </item> <item> <first>295</first> <second> <first>34</first> <second>0</second> </second> </item> <item> <first>296</first> <second> <first>34</first> <second>0</second> </second> </item> <item> <first>297</first> <second> <first>34</first> <second>0</second> </second> </item> <item> <first>298</first> <second> <first>34</first> <second>0</second> </second> </item> <item> <first>299</first> <second> <first>34</first> <second>0</second> </second> </item> <item> <first>300</first> <second> <first>35</first> <second>0</second> </second> </item> <item> <first>301</first> <second> <first>35</first> <second>0</second> </second> </item> <item> <first>302</first> <second> <first>35</first> <second>0</second> </second> </item> <item> <first>303</first> <second> <first>35</first> <second>0</second> </second> </item> <item> <first>304</first> <second> <first>35</first> <second>0</second> </second> </item> <item> <first>305</first> <second> <first>36</first> <second>0</second> </second> </item> <item> <first>306</first> <second> <first>36</first> <second>0</second> </second> </item> <item> <first>307</first> <second> <first>37</first> <second>0</second> </second> </item> <item> <first>308</first> <second> <first>37</first> <second>0</second> </second> </item> <item> <first>309</first> <second> <first>34</first> <second>1</second> </second> </item> <item> <first>310</first> <second> <first>35</first> <second>0</second> </second> </item> <item> <first>311</first> <second> <first>35</first> <second>0</second> </second> </item> <item> <first>312</first> <second> <first>35</first> <second>0</second> </second> </item> <item> <first>313</first> <second> <first>34</first> <second>1</second> </second> </item> <item> <first>314</first> <second> <first>35</first> <second>0</second> </second> </item> <item> <first>315</first> <second> <first>35</first> <second>0</second> </second> </item> <item> <first>316</first> <second> <first>35</first> <second>0</second> </second> </item> <item> <first>317</first> <second> <first>35</first> <second>1</second> </second> </item> <item> <first>318</first> <second> <first>35</first> <second>1</second> </second> </item> <item> <first>319</first> <second> <first>36</first> <second>0</second> </second> </item> <item> <first>320</first> <second> <first>36</first> <second>0</second> </second> </item> <item> <first>321</first> <second> <first>35</first> <second>0</second> </second> </item> <item> <first>322</first> <second> <first>35</first> <second>0</second> </second> </item> <item> <first>323</first> <second> <first>36</first> <second>0</second> </second> </item> <item> <first>324</first> <second> <first>36</first> <second>0</second> </second> </item> <item> <first>325</first> <second> <first>36</first> <second>0</second> </second> </item> <item> <first>326</first> <second> <first>36</first> <second>0</second> </second> </item> <item> <first>327</first> <second> <first>36</first> <second>0</second> </second> </item> <item> <first>328</first> <second> <first>36</first> <second>0</second> </second> </item> <item> <first>329</first> <second> <first>36</first> <second>0</second> </second> </item> <item> <first>330</first> <second> <first>36</first> <second>0</second> </second> </item> <item> <first>331</first> <second> <first>36</first> <second>0</second> </second> </item> <item> <first>332</first> <second> <first>36</first> <second>0</second> </second> </item> <item> <first>333</first> <second> <first>36</first> <second>0</second> </second> </item> <item> <first>334</first> <second> <first>36</first> <second>0</second> </second> </item> <item> <first>335</first> <second> <first>36</first> <second>0</second> </second> </item> <item> <first>336</first> <second> <first>36</first> <second>0</second> </second> </item> <item> <first>337</first> <second> <first>36</first> <second>0</second> </second> </item> <item> <first>338</first> <second> <first>36</first> <second>0</second> </second> </item> <item> <first>339</first> <second> <first>36</first> <second>0</second> </second> </item> <item> <first>340</first> <second> <first>36</first> <second>0</second> </second> </item> <item> <first>341</first> <second> <first>36</first> <second>0</second> </second> </item> <item> <first>342</first> <second> <first>37</first> <second>0</second> </second> </item> <item> <first>343</first> <second> <first>36</first> <second>0</second> </second> </item> <item> <first>344</first> <second> <first>36</first> <second>0</second> </second> </item> <item> <first>345</first> <second> <first>36</first> <second>0</second> </second> </item> <item> <first>346</first> <second> <first>36</first> <second>0</second> </second> </item> <item> <first>347</first> <second> <first>37</first> <second>0</second> </second> </item> <item> <first>348</first> <second> <first>37</first> <second>0</second> </second> </item> <item> <first>350</first> <second> <first>34</first> <second>0</second> </second> </item> <item> <first>352</first> <second> <first>38</first> <second>0</second> </second> </item> <item> <first>353</first> <second> <first>38</first> <second>0</second> </second> </item> <item> <first>355</first> <second> <first>38</first> <second>0</second> </second> </item> <item> <first>356</first> <second> <first>38</first> <second>0</second> </second> </item> <item> <first>358</first> <second> <first>38</first> <second>0</second> </second> </item> <item> <first>359</first> <second> <first>38</first> <second>0</second> </second> </item> <item> <first>360</first> <second> <first>38</first> <second>0</second> </second> </item> <item> <first>362</first> <second> <first>39</first> <second>0</second> </second> </item> <item> <first>363</first> <second> <first>39</first> <second>0</second> </second> </item> <item> <first>365</first> <second> <first>39</first> <second>0</second> </second> </item> <item> <first>366</first> <second> <first>39</first> <second>0</second> </second> </item> <item> <first>368</first> <second> <first>39</first> <second>0</second> </second> </item> <item> <first>369</first> <second> <first>39</first> <second>0</second> </second> </item> <item> <first>370</first> <second> <first>39</first> <second>0</second> </second> </item> <item> <first>371</first> <second> <first>40</first> <second>0</second> </second> </item> <item> <first>372</first> <second> <first>39</first> <second>0</second> </second> </item> <item> <first>373</first> <second> <first>39</first> <second>1</second> </second> </item> <item> <first>374</first> <second> <first>40</first> <second>0</second> </second> </item> <item> <first>375</first> <second> <first>40</first> <second>0</second> </second> </item> <item> <first>377</first> <second> <first>39</first> <second>0</second> </second> </item> <item> <first>379</first> <second> <first>38</first> <second>0</second> </second> </item> <item> <first>381</first> <second> <first>38</first> <second>0</second> </second> </item> <item> <first>382</first> <second> <first>38</first> <second>0</second> </second> </item> <item> <first>383</first> <second> <first>38</first> <second>0</second> </second> </item> <item> <first>385</first> <second> <first>41</first> <second>0</second> </second> </item> <item> <first>386</first> <second> <first>41</first> <second>0</second> </second> </item> <item> <first>388</first> <second> <first>41</first> <second>0</second> </second> </item> <item> <first>389</first> <second> <first>41</first> <second>0</second> </second> </item> <item> <first>391</first> <second> <first>41</first> <second>0</second> </second> </item> <item> <first>392</first> <second> <first>41</first> <second>0</second> </second> </item> <item> <first>393</first> <second> <first>41</first> <second>0</second> </second> </item> <item> <first>394</first> <second> <first>41</first> <second>0</second> </second> </item> <item> <first>395</first> <second> <first>41</first> <second>0</second> </second> </item> <item> <first>396</first> <second> <first>41</first> <second>0</second> </second> </item> <item> <first>398</first> <second> <first>42</first> <second>0</second> </second> </item> <item> <first>399</first> <second> <first>42</first> <second>0</second> </second> </item> <item> <first>401</first> <second> <first>42</first> <second>0</second> </second> </item> <item> <first>402</first> <second> <first>42</first> <second>0</second> </second> </item> <item> <first>404</first> <second> <first>42</first> <second>0</second> </second> </item> <item> <first>405</first> <second> <first>42</first> <second>0</second> </second> </item> <item> <first>406</first> <second> <first>42</first> <second>0</second> </second> </item> <item> <first>407</first> <second> <first>42</first> <second>0</second> </second> </item> <item> <first>408</first> <second> <first>42</first> <second>0</second> </second> </item> <item> <first>409</first> <second> <first>42</first> <second>0</second> </second> </item> <item> <first>410</first> <second> <first>42</first> <second>0</second> </second> </item> <item> <first>411</first> <second> <first>42</first> <second>0</second> </second> </item> <item> <first>412</first> <second> <first>42</first> <second>1</second> </second> </item> <item> <first>413</first> <second> <first>42</first> <second>1</second> </second> </item> <item> <first>414</first> <second> <first>43</first> <second>0</second> </second> </item> <item> <first>415</first> <second> <first>43</first> <second>0</second> </second> </item> <item> <first>416</first> <second> <first>43</first> <second>0</second> </second> </item> <item> <first>418</first> <second> <first>42</first> <second>0</second> </second> </item> <item> <first>420</first> <second> <first>41</first> <second>0</second> </second> </item> <item> <first>421</first> <second> <first>41</first> <second>0</second> </second> </item> <item> <first>423</first> <second> <first>18</first> <second>0</second> </second> </item> <item> <first>425</first> <second> <first>44</first> <second>0</second> </second> </item> <item> <first>426</first> <second> <first>44</first> <second>0</second> </second> </item> <item> <first>428</first> <second> <first>44</first> <second>0</second> </second> </item> <item> <first>429</first> <second> <first>44</first> <second>0</second> </second> </item> <item> <first>431</first> <second> <first>44</first> <second>0</second> </second> </item> <item> <first>432</first> <second> <first>44</first> <second>0</second> </second> </item> <item> <first>433</first> <second> <first>44</first> <second>0</second> </second> </item> <item> <first>435</first> <second> <first>45</first> <second>0</second> </second> </item> <item> <first>436</first> <second> <first>45</first> <second>0</second> </second> </item> <item> <first>438</first> <second> <first>45</first> <second>0</second> </second> </item> <item> <first>439</first> <second> <first>45</first> <second>0</second> </second> </item> <item> <first>441</first> <second> <first>45</first> <second>0</second> </second> </item> <item> <first>442</first> <second> <first>45</first> <second>0</second> </second> </item> <item> <first>443</first> <second> <first>45</first> <second>0</second> </second> </item> <item> <first>444</first> <second> <first>46</first> <second>0</second> </second> </item> <item> <first>445</first> <second> <first>45</first> <second>0</second> </second> </item> <item> <first>446</first> <second> <first>45</first> <second>1</second> </second> </item> <item> <first>447</first> <second> <first>46</first> <second>0</second> </second> </item> <item> <first>448</first> <second> <first>46</first> <second>0</second> </second> </item> <item> <first>450</first> <second> <first>45</first> <second>0</second> </second> </item> <item> <first>452</first> <second> <first>44</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="29" tracking_level="0" version="0"> <count>57</count> <item_version>0</item_version> <item class_id="30" tracking_level="0" version="0"> <first>30</first> <second class_id="31" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>36</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>40</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>46</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>55</first> <second> <first>2</first> <second>3</second> </second> </item> <item> <first>57</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>59</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>64</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>109</first> <second> <first>2</first> <second>5</second> </second> </item> <item> <first>119</first> <second> <first>6</first> <second>6</second> </second> </item> <item> <first>158</first> <second> <first>6</first> <second>9</second> </second> </item> <item> <first>161</first> <second> <first>6</first> <second>6</second> </second> </item> <item> <first>163</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>169</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>173</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>179</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>188</first> <second> <first>4</first> <second>5</second> </second> </item> <item> <first>190</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>192</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>198</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>202</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>208</first> <second> <first>5</first> <second>5</second> </second> </item> <item> <first>219</first> <second> <first>5</first> <second>6</second> </second> </item> <item> <first>221</first> <second> <first>5</first> <second>5</second> </second> </item> <item> <first>223</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>228</first> <second> <first>5</first> <second>5</second> </second> </item> <item> <first>230</first> <second> <first>5</first> <second>5</second> </second> </item> <item> <first>236</first> <second> <first>6</first> <second>6</second> </second> </item> <item> <first>240</first> <second> <first>6</first> <second>6</second> </second> </item> <item> <first>246</first> <second> <first>7</first> <second>7</second> </second> </item> <item> <first>257</first> <second> <first>7</first> <second>9</second> </second> </item> <item> <first>259</first> <second> <first>7</first> <second>7</second> </second> </item> <item> <first>286</first> <second> <first>6</first> <second>17</second> </second> </item> <item> <first>288</first> <second> <first>17</first> <second>17</second> </second> </item> <item> <first>294</first> <second> <first>18</first> <second>18</second> </second> </item> <item> <first>349</first> <second> <first>18</first> <second>21</second> </second> </item> <item> <first>351</first> <second> <first>18</first> <second>18</second> </second> </item> <item> <first>357</first> <second> <first>19</first> <second>19</second> </second> </item> <item> <first>361</first> <second> <first>19</first> <second>19</second> </second> </item> <item> <first>367</first> <second> <first>20</first> <second>20</second> </second> </item> <item> <first>376</first> <second> <first>20</first> <second>21</second> </second> </item> <item> <first>378</first> <second> <first>20</first> <second>20</second> </second> </item> <item> <first>380</first> <second> <first>19</first> <second>19</second> </second> </item> <item> <first>384</first> <second> <first>19</first> <second>19</second> </second> </item> <item> <first>390</first> <second> <first>20</first> <second>20</second> </second> </item> <item> <first>397</first> <second> <first>20</first> <second>20</second> </second> </item> <item> <first>403</first> <second> <first>21</first> <second>21</second> </second> </item> <item> <first>417</first> <second> <first>21</first> <second>22</second> </second> </item> <item> <first>419</first> <second> <first>21</first> <second>21</second> </second> </item> <item> <first>422</first> <second> <first>20</first> <second>20</second> </second> </item> <item> <first>424</first> <second> <first>5</first> <second>5</second> </second> </item> <item> <first>430</first> <second> <first>6</first> <second>6</second> </second> </item> <item> <first>434</first> <second> <first>6</first> <second>6</second> </second> </item> <item> <first>440</first> <second> <first>7</first> <second>7</second> </second> </item> <item> <first>449</first> <second> <first>7</first> <second>8</second> </second> </item> <item> <first>451</first> <second> <first>7</first> <second>7</second> </second> </item> <item> <first>453</first> <second> <first>6</first> <second>6</second> </second> </item> </bblk_ent_exit> <regions class_id="32" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </regions> <dp_fu_nodes class_id="33" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_fu_nodes> <dp_fu_nodes_expression class_id="34" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="35" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>0</count> <item_version>0</item_version> </dp_reg_nodes> <dp_regname_nodes> <count>0</count> <item_version>0</item_version> </dp_regname_nodes> <dp_reg_phi> <count>0</count> <item_version>0</item_version> </dp_reg_phi> <dp_regname_phi> <count>0</count> <item_version>0</item_version> </dp_regname_phi> <dp_port_io_nodes class_id="36" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_port_io_nodes> <port2core class_id="37" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
27.268382
75
0.605845
fb0db7bb2a47c0ae430a3ac909dc62b3f748444d
19,172
adb
Ada
ada/core/agar-object.adb
auzkok/libagar
8dffa4afe73df47cf7e461c3073b744373d3af0b
[ "BSD-2-Clause" ]
286
2017-07-31T20:05:16.000Z
2022-03-26T20:26:24.000Z
ada/core/agar-object.adb
kalatestimine/libagar
f830265ad00a82d4cddd8b59943bd3887ebb1486
[ "BSD-2-Clause" ]
67
2017-08-30T18:56:21.000Z
2021-09-08T03:38:20.000Z
ada/core/agar-object.adb
kalatestimine/libagar
f830265ad00a82d4cddd8b59943bd3887ebb1486
[ "BSD-2-Clause" ]
31
2017-08-14T13:34:12.000Z
2022-03-14T15:33:49.000Z
------------------------------------------------------------------------------ -- AGAR CORE LIBRARY -- -- A G A R . O B J E C T -- -- B o d y -- -- -- -- Copyright (c) 2018-2019, Julien Nadeau Carriere ([email protected]) -- -- Copyright (c) 2010, coreland ([email protected]) -- -- -- -- Permission to use, copy, modify, and/or distribute this software for any -- -- purpose with or without fee is hereby granted, provided that the above -- -- copyright notice and this permission notice appear in all copies. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -- -- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -- -- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -- -- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -- -- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -- -- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -- -- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -- ------------------------------------------------------------------------------ with Agar.Error; package body Agar.Object is use Interfaces.C; use Agar.Event; function New_Object (Parent : in Object_Access; Name : in String; Class : in Class_Not_Null_Access) return Object_Access is Ch_Name : aliased C.char_array := C.To_C(Name); begin return AG_ObjectNew (Parent => Parent.all'Address, Name => CS.To_Chars_Ptr(Ch_Name'Unchecked_Access), Class => Class); end; function New_Object (Parent : in Object_Access; Class : in Class_Not_Null_Access) return Object_Access is begin return AG_ObjectNew (Parent => Parent.all'Address, Name => CS.Null_Ptr, Class => Class); end; function New_Object (Class : in Class_Not_Null_Access) return Object_Access is begin return AG_ObjectNew (Parent => System.Null_Address, Name => CS.Null_Ptr, Class => Class); end; procedure Init_Object (Object : in Object_Not_Null_Access; Class : in Class_Not_Null_Access; Static : in Boolean := False; Name_On_Attach : in Boolean := False) is C_Flags : C.unsigned := 0; begin AG_ObjectInit (Object, Class); C_Flags := Object.Flags; if Static then C_Flags := C_Flags or OBJECT_STATIC; end if; if Name_On_Attach then C_Flags := C_Flags or OBJECT_NAME_ON_ATTACH; end if; Object.Flags := C_Flags; end; procedure Attach (Parent : in Object_Access; Child : in Object_not_null_Access) is begin AG_ObjectAttach (Parent => Parent, Child => Child); end; function Find (Root : in Object_Not_Null_Access; Path : in String) return Object_Access is Ch_Path : aliased C.char_array := C.To_C(Path); begin return AG_ObjectFindS (Root => Root, Path => CS.To_Chars_Ptr(Ch_Path'Unchecked_Access)); end; function Find_Parent (Object : in Object_Not_Null_Access; Name : in String; Class : in String) return Object_Access is Ch_Name : aliased C.char_array := C.To_C(Name); Ch_Class : aliased C.char_array := C.To_C(Class); begin return AG_ObjectFindParent (Object => Object, Name => CS.To_Chars_Ptr(Ch_Name'Unchecked_Access), Class => CS.To_Chars_Ptr(Ch_Class'Unchecked_Access)); end; function Find_Child (Parent : in Object_Not_Null_Access; Name : in String) return Object_Access is Ch_Name : aliased C.char_array := C.To_C(Name); begin return AG_ObjectFindChild (Parent => Parent, Name => CS.To_Chars_Ptr(Ch_Name'Unchecked_Access)); end; function Get_Name (Object : in Object_Not_Null_Access) return String is Ch_Name : aliased C.char_array (0 .. C.size_t(HIERARCHY_MAX)); Result : C.int; begin Result := AG_ObjectCopyName (Object => Object, Buffer => Ch_Name'Address, Size => Ch_Name'Length); if Integer(Result) /= 0 then raise Program_Error with Agar.Error.Get_Error; end if; return C.To_Ada(Ch_Name); end; procedure Set_Name (Object : in Object_Not_Null_Access; Name : in String) is Ch_Name : aliased C.char_array := C.To_C(Name); begin AG_ObjectSetNameS (Object => Object, Name => CS.To_Chars_Ptr(Ch_Name'Unchecked_Access)); end; function Generate_Name (Object : in Object_Not_Null_Access; Class : in Class_Not_Null_Access) return String is Ch_Name : aliased C.char_array (0 .. C.size_t(NAME_MAX)); begin AG_ObjectGenName (Object => Object, Class => Class, Buffer => Ch_Name'Address, Size => Ch_Name'Length); return C.To_Ada(Ch_Name); end; function Generate_Name (Object : in Object_Not_Null_Access; Prefix : in String) return String is Ch_Name : aliased C.char_array (0 .. C.size_t(NAME_MAX)); Ch_Prefix : aliased C.char_array := C.To_C(Prefix); begin AG_ObjectGenNamePfx (Object => Object, Prefix => CS.To_Chars_Ptr(Ch_Prefix'Unchecked_Access), Buffer => Ch_Name'Address, Size => Ch_Name'Length); return C.To_Ada(Ch_Name); end; procedure Register_Namespace (Name : in String; Prefix : in String; URL : in String) is Ch_Name : aliased C.char_array := C.To_C(Name); Ch_Prefix : aliased C.char_array := C.To_C(Prefix); Ch_URL : aliased C.char_array := C.To_C(URL); begin AG_RegisterNamespace (Name => CS.To_Chars_Ptr(Ch_Name'Unchecked_Access), Prefix => CS.To_Chars_Ptr(Ch_Prefix'Unchecked_Access), URL => CS.To_Chars_Ptr(Ch_URL'Unchecked_Access)); end; procedure Unregister_Namespace (Name : in String) is Ch_Name : aliased C.char_array := C.To_C(Name); begin AG_UnregisterNamespace(CS.To_Chars_Ptr(Ch_Name'Unchecked_Access)); end; function Create_Class (Hierarchy : in String; Object_Size : in Natural; Class_Size : in Natural; Major : in Natural := 1; Minor : in Natural := 0; Init_Func : in Init_Func_Access := null; Reset_Func : in Reset_Func_Access := null; Destroy_Func : in Destroy_Func_Access := null; Load_Func : in Load_Func_Access := null; Save_Func : in Save_Func_Access := null; Edit_Func : in Edit_Func_Access := null) return Class_Not_Null_Access is Ch_Hierarchy : aliased C.char_array := C.To_C(Hierarchy); Class : Class_Access; begin Class := AG_CreateClass (Hierarchy => CS.To_Chars_Ptr(Ch_Hierarchy'Unchecked_Access), Object_Size => AG_Size(Object_Size / System.Storage_Unit), Class_Size => AG_Size(Class_Size / System.Storage_Unit), Major => C.unsigned(Major), Minor => C.unsigned(Minor)); if Class = null then raise Program_Error with Agar.Error.Get_Error; end if; if Init_Func /= null then AG_ClassSetInit (Class, Init_Func); end if; if Reset_Func /= null then AG_ClassSetReset (Class, Reset_Func); end if; if Destroy_Func /= null then AG_ClassSetDestroy (Class, Destroy_Func); end if; if Load_Func /= null then AG_ClassSetLoad (Class, Load_Func); end if; if Save_Func /= null then AG_ClassSetSave (Class, Save_Func); end if; if Edit_Func /= null then AG_ClassSetEdit (Class, Edit_Func); end if; return Class; end Create_Class; procedure Class_Set_Init (Class : in Class_Not_Null_Access; Init_Func : in Init_Func_Access) is begin AG_ClassSetInit(Class, Init_Func); end; function Class_Set_Init (Class : in Class_Not_Null_Access; Init_Func : in Init_Func_Access) return Init_Func_Access is begin return AG_ClassSetInit(Class, Init_Func); end; procedure Class_Set_Reset (Class : in Class_Not_Null_Access; Reset_Func : in Reset_Func_Access) is begin AG_ClassSetReset(Class, Reset_Func); end; function Class_Set_Reset (Class : in Class_Not_Null_Access; Reset_Func : in Reset_Func_Access) return Reset_Func_Access is begin return AG_ClassSetReset(Class, Reset_Func); end; procedure Class_Set_Destroy (Class : in Class_Not_Null_Access; Destroy_Func : in Destroy_Func_Access) is begin AG_ClassSetDestroy(Class, Destroy_Func); end; function Class_Set_Destroy (Class : in Class_Not_Null_Access; Destroy_Func : in Destroy_Func_Access) return Destroy_Func_Access is begin return AG_ClassSetDestroy(Class, Destroy_Func); end; procedure Class_Set_Load (Class : in Class_Not_Null_Access; Load_Func : in Load_Func_Access) is begin AG_ClassSetLoad(Class, Load_Func); end; function Class_Set_Load (Class : in Class_Not_Null_Access; Load_Func : in Load_Func_Access) return Load_Func_Access is begin return AG_ClassSetLoad(Class, Load_Func); end; procedure Class_Set_Save (Class : in Class_Not_Null_Access; Save_Func : in Save_Func_Access) is begin AG_ClassSetSave(Class, Save_Func); end; function Class_Set_Save (Class : in Class_Not_Null_Access; Save_Func : in Save_Func_Access) return Save_Func_Access is begin return AG_ClassSetSave(Class, Save_Func); end; procedure Class_Set_Edit (Class : in Class_Not_Null_Access; Edit_Func : in Edit_Func_Access) is begin AG_ClassSetEdit(Class, Edit_Func); end; function Class_Set_Edit (Class : in Class_Not_Null_Access; Edit_Func : in Edit_Func_Access) return Edit_Func_Access is begin return AG_ClassSetEdit(Class, Edit_Func); end; function Lookup_Class (Class : in String) return Class_Access is Ch_Class : aliased C.char_array := C.To_C(Class); begin return AG_LookupClass (Class => CS.To_Chars_Ptr(Ch_Class'Unchecked_Access)); end; function Load_Class (Class : in String) return Class_Access is Ch_Class : aliased C.char_array := C.To_C(Class); begin return AG_LoadClass (Class => CS.To_Chars_Ptr(Ch_Class'Unchecked_Access)); end; procedure Register_Module_Directory (Path : in String) is Ch_Path : aliased C.char_array := C.To_C(Path); begin AG_RegisterModuleDirectory (Path => CS.To_Chars_Ptr(Ch_Path'Unchecked_Access)); end; procedure Unregister_Module_Directory (Path : in String) is Ch_Path : aliased C.char_array := C.To_C(Path); begin AG_UnregisterModuleDirectory (Path => CS.To_Chars_Ptr(Ch_Path'Unchecked_Access)); end; function Is_Of_Class (Object : in Object_Not_Null_Access; Pattern : in String) return Boolean is Ch_Pattern : aliased C.char_array := C.To_C(Pattern); begin return AG_OfClass (Object => Object, Pattern => CS.To_Chars_Ptr(Ch_Pattern'Unchecked_Access)) = 1; end; function Is_A (Object : in Object_Not_Null_Access; Pattern : in String) return Boolean is Ch_Pattern : aliased C.char_array := C.To_C(Pattern); begin return AG_OfClass (Object => Object, Pattern => CS.To_Chars_Ptr(Ch_Pattern'Unchecked_Access)) = 1; end; function In_Use (Object : in Object_Not_Null_Access) return Boolean is begin return AG_ObjectInUse(Object) = 1; end; ------------------- -- Serialization -- ------------------- function Load (Object : in Object_Not_Null_Access) return Boolean is begin return AG_ObjectLoad(Object) = 0; end; function Load (Object : in Object_Not_Null_Access; File : in String) return Boolean is Ch_File : aliased C.char_array := C.To_C(File); begin return AG_ObjectLoadFromFile (Object => Object, File => CS.To_Chars_Ptr(Ch_File'Unchecked_Access)) = 0; end; function Load_Data (Object : in Object_Not_Null_Access) return Boolean is begin return AG_ObjectLoadData(Object) = 0; end; function Load_Data (Object : in Object_Not_Null_Access; File : in String) return Boolean is Ch_File : aliased C.char_array := C.To_C(File); begin return AG_ObjectLoadDataFromFile (Object => Object, File => CS.To_Chars_Ptr(Ch_File'Unchecked_Access)) = 0; end; function Load_Generic (Object : in Object_Not_Null_Access) return Boolean is begin return AG_ObjectLoadGeneric(Object) = 0; end; function Load_Generic (Object : in Object_Not_Null_Access; File : in String) return Boolean is Ch_File : aliased C.char_array := C.To_C(File); begin return AG_ObjectLoadGenericFromFile (Object => Object, File => CS.To_Chars_Ptr(Ch_File'Unchecked_Access)) = 0; end; function Save (Object : in Object_Not_Null_Access) return Boolean is begin return AG_ObjectSave(Object) = 0; end; function Save (Object : in Object_Not_Null_Access; File : in String) return Boolean is Ch_File : aliased C.char_array := C.To_C(File); begin return AG_ObjectSaveToFile (Object => Object, File => CS.To_Chars_Ptr(Ch_File'Unchecked_Access)) = 0; end; function Save_All (Object : in Object_Not_Null_Access) return Boolean is begin return AG_ObjectSaveAll(Object) = 0; end; function Serialize (Object : in Object_Not_Null_Access; Source : in DS.Data_Source_Not_Null_Access) return Boolean is begin return AG_ObjectSerialize(Object, Source) = 0; end; function Unserialize (Object : in Object_Not_Null_Access; Source : in DS.Data_Source_Not_Null_Access) return Boolean is begin return AG_ObjectUnserialize(Object, Source) = 0; end; function Read_Header (Source : in DS.Data_Source_Not_Null_Access; Header : in Header_Access) return Boolean is begin return AG_ObjectReadHeader (Source, Header) = 0; end; function Page_In (Object : in Object_Not_Null_Access) return Boolean is begin return AG_ObjectPageIn (Object) = 0; end; function Page_Out (Object : in Object_Not_Null_Access) return Boolean is begin return AG_ObjectPageOut (Object) = 0; end; ------------ -- Events -- ------------ function Set_Event (Object : in Object_Not_Null_Access; Event : in String; Func : in Event_Func_Access; Async : in Boolean := False; Propagate : in Boolean := False) return Event_Not_Null_Access is Ch_Event : aliased C.char_array := C.To_C(Event); Result : constant Event_Not_Null_Access := AG_SetEvent (Object => Object, Event => CS.To_Chars_Ptr(Ch_Event'Unchecked_Access), Func => Func, Format => CS.Null_Ptr); begin -- TODO Async, Propagate return (Result); end; procedure Set_Event (Object : in Object_Not_Null_Access; Event : in String; Func : in Event_Func_Access; Async : in Boolean := False; Propagate : in Boolean := False) is Ch_Event : aliased C.char_array := C.To_C(Event); begin AG_SetEvent (Object => Object, Event => CS.To_Chars_Ptr(Ch_Event'Unchecked_Access), Func => Func, Format => CS.Null_Ptr); end; function Add_Event (Object : in Object_Not_Null_Access; Event : in String; Func : in Event_Func_Access; Async : in Boolean := False; Propagate : in Boolean := False) return Event_Not_Null_Access is Ch_Event : aliased C.char_array := C.To_C(Event); Result : constant Event_Not_Null_Access := AG_AddEvent (Object => Object, Event => CS.To_Chars_Ptr(Ch_Event'Unchecked_Access), Func => Func, Format => CS.Null_Ptr); begin return (Result); end; procedure Add_Event (Object : in Object_Not_Null_Access; Event : in String; Func : in Event_Func_Access; Async : in Boolean := False; Propagate : in Boolean := False) is Ch_Event : aliased C.char_array := C.To_C(Event); begin AG_AddEvent (Object => Object, Event => CS.To_Chars_Ptr(Ch_Event'Unchecked_Access), Func => Func, Format => CS.Null_Ptr); end; procedure Post_Event (Object : in Object_Not_Null_Access; Event : in String) is Ch_Event : aliased C.char_array := C.To_C(Event); begin AG_PostEvent (Object => Object, Event => CS.To_Chars_Ptr(Ch_Event'Unchecked_Access), Format => CS.Null_Ptr); end; procedure Post_Event (Object : in Object_Not_Null_Access; Event : in Event_Not_Null_Access) is begin AG_PostEventByPtr (Object => Object, Event => Event, Format => CS.Null_Ptr); end; procedure Debug (Object : in Object_Access; Message : in String) is Ch_Format : aliased C.char_array := C.To_C("%s"); Ch_Message : aliased C.char_array := C.To_C(Message); begin AG_Debug (Object => Object, Format => CS.To_Chars_Ptr(Ch_Format'Unchecked_Access), Message => CS.To_Chars_Ptr(Ch_Message'Unchecked_Access)); end; ------------ -- Timers -- ------------ function Add_Timer (Object : in Object_Access; Timer : in TMR.Timer_not_null_Access; Interval : in Interfaces.Unsigned_32; Func : in TMR.Timer_Callback) return Boolean is begin return 0 = AG_AddTimer (Object => Object, Timer => Timer, Interval => Interval, Func => Func, Flags => 0, Format => CS.Null_Ptr); end; function Add_Timer (Object : in Object_Access; Interval : in Interfaces.Unsigned_32; Func : in TMR.Timer_Callback) return TMR.Timer_Access is begin return AG_AddTimerAuto (Object => Object, Interval => Interval, Func => Func, Format => CS.Null_Ptr); end; --------------- -- Variables -- --------------- function Defined (Object : in Object_not_null_Access; Variable : in String) return Boolean is Ch_Name : aliased C.char_array := C.To_C(Variable); Result : C.int; begin Lock(Object); Result := AG_Defined (Object => Object, Name => CS.To_Chars_Ptr(Ch_Name'Unchecked_Access)); Unlock(Object); return Result = 1; end; -- -- Compare two variables with no dereference. Discrete types are compared -- by value. Strings are compared case-sensitively. Reference types are -- compared by their pointer value. -- function "=" (Left, Right : in Variable_not_null_Access) return Boolean is begin return 0 = AG_CompareVariables (Left, Right); end; end Agar.Object;
29.22561
82
0.638692
1045c6858388e91b1584174cb5cd9bf3b0dc9614
6,154
ads
Ada
source/amf/mof/cmof/amf-internals-cmof_package_imports.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
24
2016-11-29T06:59:41.000Z
2021-08-30T11:55:16.000Z
source/amf/mof/cmof/amf-internals-cmof_package_imports.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
2
2019-01-16T05:15:20.000Z
2019-02-03T10:03:32.000Z
source/amf/mof/cmof/amf-internals-cmof_package_imports.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
4
2017-07-18T07:11:05.000Z
2020-06-21T03:02:25.000Z
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with AMF.CMOF.Elements.Collections; with AMF.CMOF.Namespaces; with AMF.CMOF.Package_Imports; with AMF.CMOF.Packages; with AMF.Internals.CMOF_Directed_Relationships; with AMF.Visitors; package AMF.Internals.CMOF_Package_Imports is type CMOF_Package_Import_proxy is limited new AMF.Internals.CMOF_Directed_Relationships.CMOF_Directed_Relationship_Proxy and AMF.CMOF.Package_Imports.CMOF_Package_Import with null record; -- XXX These subprograms are stubs overriding function All_Owned_Elements (Self : not null access constant CMOF_Package_Import_Proxy) return AMF.CMOF.Elements.Collections.Set_Of_CMOF_Element; overriding function Get_Visibility (Self : not null access constant CMOF_Package_Import_Proxy) return CMOF.CMOF_Visibility_Kind; overriding procedure Set_Visibility (Self : not null access CMOF_Package_Import_Proxy; To : CMOF.CMOF_Visibility_Kind); overriding function Get_Imported_Package (Self : not null access constant CMOF_Package_Import_Proxy) return AMF.CMOF.Packages.CMOF_Package_Access; -- Getter of PackageImport::importedPackage. -- -- Specifies the Package whose members are imported into a Namespace. overriding procedure Set_Imported_Package (Self : not null access CMOF_Package_Import_Proxy; To : AMF.CMOF.Packages.CMOF_Package_Access); overriding function Get_Importing_Namespace (Self : not null access constant CMOF_Package_Import_Proxy) return AMF.CMOF.Namespaces.CMOF_Namespace_Access; -- Getter of PackageImport::importingNamespace. -- -- Specifies the Namespace that imports the members from a Package. overriding procedure Set_Importing_Namespace (Self : not null access CMOF_Package_Import_Proxy; To : AMF.CMOF.Namespaces.CMOF_Namespace_Access); overriding procedure Enter_Element (Self : not null access constant CMOF_Package_Import_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control); -- Dispatch call to corresponding subprogram of visitor interface. overriding procedure Leave_Element (Self : not null access constant CMOF_Package_Import_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control); -- Dispatch call to corresponding subprogram of visitor interface. overriding procedure Visit_Element (Self : not null access constant CMOF_Package_Import_Proxy; Iterator : in out AMF.Visitors.Abstract_Iterator'Class; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control); -- Dispatch call to corresponding subprogram of iterator interface. end AMF.Internals.CMOF_Package_Imports;
53.982456
91
0.564186
20493367ea38d9844747299221a75e74f5eb6b8b
1,410
adb
Ada
courses/spark_for_ada_programmers/labs/source/090_proving_absence_of_run_time_errors/main.adb
AdaCore/training_material
6651eb2c53f8c39649b8e0b3c757bc8ff963025a
[ "CC-BY-4.0" ]
15
2020-10-07T08:56:45.000Z
2022-02-08T23:13:22.000Z
courses/spark_for_ada_programmers/labs/source/090_proving_absence_of_run_time_errors/main.adb
AdaCore/training_material
6651eb2c53f8c39649b8e0b3c757bc8ff963025a
[ "CC-BY-4.0" ]
20
2020-11-05T14:35:20.000Z
2022-01-13T15:59:33.000Z
courses/spark_for_ada_programmers/labs/source/090_proving_absence_of_run_time_errors/main.adb
AdaCore/training_material
6651eb2c53f8c39649b8e0b3c757bc8ff963025a
[ "CC-BY-4.0" ]
6
2020-10-08T15:57:06.000Z
2021-08-31T12:03:08.000Z
with Text_IO; procedure Main with SPARK_Mode is -- The function below is intended to determine whether a given triangle -- (specified by the lengths of its three sides) is a right-angle triangle. -- The postcondition and the code have been made simpler by making a -- precondition on the caller that the longest side is given first. -- (Note that the function could have been implemented as a simple -- expression function.) function Is_Right_Angle_Triangle (Long_Side : Natural; Side_2 : Natural; Side_3 : Natural) return Boolean with Post => (if Long_Side * Long_Side = (Side_2 * Side_2) + (Side_3 * Side_3) then Is_Right_Angle_Triangle'Result = True) is begin -- Note that this function has multiple return statements. In SPARK 2005 -- this was not permitted due to flow analysis restrictions, but these -- restrictions have been lifted in SPARK 2014. if Long_Side * Long_Side = (Side_2 * Side_2) + (Side_3 * Side_3) then return True; else return False; end if; end Is_Right_Angle_Triangle; begin -- Main Program if Is_Right_Angle_Triangle (Natural'Last, Natural'Last, Natural'Last) then Text_IO.Put_Line ("Yes"); else Text_IO.Put_Line ("False"); end if; end Main;
36.153846
79
0.639007
0b24c74f57c3a9465ba7deaa631f0521b8f1914d
34,632
adb
Ada
Ada95/src/terminal_interface-curses-menus.adb
mvaisakh/android_external_libncurses
d44c8a16d7f1ed276d0de0b3f6f1a5596c5f556f
[ "DOC", "Unlicense" ]
35
2015-03-07T13:26:22.000Z
2021-11-06T16:18:59.000Z
Ada95/src/terminal_interface-curses-menus.adb
mvaisakh/android_external_libncurses
d44c8a16d7f1ed276d0de0b3f6f1a5596c5f556f
[ "DOC", "Unlicense" ]
3
2017-04-07T21:02:48.000Z
2017-04-08T17:59:35.000Z
Ada95/src/terminal_interface-curses-menus.adb
mvaisakh/android_external_libncurses
d44c8a16d7f1ed276d0de0b3f6f1a5596c5f556f
[ "DOC", "Unlicense" ]
19
2015-06-16T06:13:44.000Z
2021-07-24T02:37:45.000Z
------------------------------------------------------------------------------ -- -- -- GNAT ncurses Binding -- -- -- -- Terminal_Interface.Curses.Menus -- -- -- -- B O D Y -- -- -- ------------------------------------------------------------------------------ -- Copyright (c) 1998-2004,2008 Free Software Foundation, Inc. -- -- -- -- Permission is hereby granted, free of charge, to any person obtaining a -- -- copy of this software and associated documentation files (the -- -- "Software"), to deal in the Software without restriction, including -- -- without limitation the rights to use, copy, modify, merge, publish, -- -- distribute, distribute with modifications, sublicense, and/or sell -- -- copies of the Software, and to permit persons to whom the Software is -- -- furnished to do so, subject to the following conditions: -- -- -- -- The above copyright notice and this permission notice shall be included -- -- in all copies or substantial portions of the Software. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -- -- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -- -- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -- -- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -- -- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -- -- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -- -- THE USE OR OTHER DEALINGS IN THE SOFTWARE. -- -- -- -- Except as contained in this notice, the name(s) of the above copyright -- -- holders shall not be used in advertising or otherwise to promote the -- -- sale, use or other dealings in this Software without prior written -- -- authorization. -- ------------------------------------------------------------------------------ -- Author: Juergen Pfeifer, 1996 -- Version Control: -- $Revision: 1.26 $ -- $Date: 2008/07/26 18:50:58 $ -- Binding Version 01.00 ------------------------------------------------------------------------------ with Ada.Unchecked_Deallocation; with Terminal_Interface.Curses.Aux; use Terminal_Interface.Curses.Aux; with Interfaces.C; use Interfaces.C; with Interfaces.C.Strings; use Interfaces.C.Strings; with Interfaces.C.Pointers; with Ada.Unchecked_Conversion; package body Terminal_Interface.Curses.Menus is type C_Item_Array is array (Natural range <>) of aliased Item; package I_Array is new Interfaces.C.Pointers (Natural, Item, C_Item_Array, Null_Item); use type System.Bit_Order; subtype chars_ptr is Interfaces.C.Strings.chars_ptr; function MOS_2_CInt is new Ada.Unchecked_Conversion (Menu_Option_Set, C_Int); function CInt_2_MOS is new Ada.Unchecked_Conversion (C_Int, Menu_Option_Set); function IOS_2_CInt is new Ada.Unchecked_Conversion (Item_Option_Set, C_Int); function CInt_2_IOS is new Ada.Unchecked_Conversion (C_Int, Item_Option_Set); ------------------------------------------------------------------------------ procedure Request_Name (Key : in Menu_Request_Code; Name : out String) is function Request_Name (Key : C_Int) return chars_ptr; pragma Import (C, Request_Name, "menu_request_name"); begin Fill_String (Request_Name (C_Int (Key)), Name); end Request_Name; function Request_Name (Key : Menu_Request_Code) return String is function Request_Name (Key : C_Int) return chars_ptr; pragma Import (C, Request_Name, "menu_request_name"); begin return Fill_String (Request_Name (C_Int (Key))); end Request_Name; function Create (Name : String; Description : String := "") return Item is type Char_Ptr is access all Interfaces.C.char; function Newitem (Name, Desc : Char_Ptr) return Item; pragma Import (C, Newitem, "new_item"); type Name_String is new char_array (0 .. Name'Length); type Name_String_Ptr is access Name_String; pragma Controlled (Name_String_Ptr); type Desc_String is new char_array (0 .. Description'Length); type Desc_String_Ptr is access Desc_String; pragma Controlled (Desc_String_Ptr); Name_Str : constant Name_String_Ptr := new Name_String; Desc_Str : constant Desc_String_Ptr := new Desc_String; Name_Len, Desc_Len : size_t; Result : Item; begin To_C (Name, Name_Str.all, Name_Len); To_C (Description, Desc_Str.all, Desc_Len); Result := Newitem (Name_Str.all (Name_Str.all'First)'Access, Desc_Str.all (Desc_Str.all'First)'Access); if Result = Null_Item then raise Eti_System_Error; end if; return Result; end Create; procedure Delete (Itm : in out Item) is function Descname (Itm : Item) return chars_ptr; pragma Import (C, Descname, "item_description"); function Itemname (Itm : Item) return chars_ptr; pragma Import (C, Itemname, "item_name"); function Freeitem (Itm : Item) return C_Int; pragma Import (C, Freeitem, "free_item"); Res : Eti_Error; Ptr : chars_ptr; begin Ptr := Descname (Itm); if Ptr /= Null_Ptr then Interfaces.C.Strings.Free (Ptr); end if; Ptr := Itemname (Itm); if Ptr /= Null_Ptr then Interfaces.C.Strings.Free (Ptr); end if; Res := Freeitem (Itm); if Res /= E_Ok then Eti_Exception (Res); end if; Itm := Null_Item; end Delete; ------------------------------------------------------------------------------- procedure Set_Value (Itm : in Item; Value : in Boolean := True) is function Set_Item_Val (Itm : Item; Val : C_Int) return C_Int; pragma Import (C, Set_Item_Val, "set_item_value"); Res : constant Eti_Error := Set_Item_Val (Itm, Boolean'Pos (Value)); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Value; function Value (Itm : Item) return Boolean is function Item_Val (Itm : Item) return C_Int; pragma Import (C, Item_Val, "item_value"); begin if Item_Val (Itm) = Curses_False then return False; else return True; end if; end Value; ------------------------------------------------------------------------------- function Visible (Itm : Item) return Boolean is function Item_Vis (Itm : Item) return C_Int; pragma Import (C, Item_Vis, "item_visible"); begin if Item_Vis (Itm) = Curses_False then return False; else return True; end if; end Visible; ------------------------------------------------------------------------------- procedure Set_Options (Itm : in Item; Options : in Item_Option_Set) is function Set_Item_Opts (Itm : Item; Opt : C_Int) return C_Int; pragma Import (C, Set_Item_Opts, "set_item_opts"); Opt : constant C_Int := IOS_2_CInt (Options); Res : Eti_Error; begin Res := Set_Item_Opts (Itm, Opt); if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Options; procedure Switch_Options (Itm : in Item; Options : in Item_Option_Set; On : Boolean := True) is function Item_Opts_On (Itm : Item; Opt : C_Int) return C_Int; pragma Import (C, Item_Opts_On, "item_opts_on"); function Item_Opts_Off (Itm : Item; Opt : C_Int) return C_Int; pragma Import (C, Item_Opts_Off, "item_opts_off"); Opt : constant C_Int := IOS_2_CInt (Options); Err : Eti_Error; begin if On then Err := Item_Opts_On (Itm, Opt); else Err := Item_Opts_Off (Itm, Opt); end if; if Err /= E_Ok then Eti_Exception (Err); end if; end Switch_Options; procedure Get_Options (Itm : in Item; Options : out Item_Option_Set) is function Item_Opts (Itm : Item) return C_Int; pragma Import (C, Item_Opts, "item_opts"); Res : constant C_Int := Item_Opts (Itm); begin Options := CInt_2_IOS (Res); end Get_Options; function Get_Options (Itm : Item := Null_Item) return Item_Option_Set is Ios : Item_Option_Set; begin Get_Options (Itm, Ios); return Ios; end Get_Options; ------------------------------------------------------------------------------- procedure Name (Itm : in Item; Name : out String) is function Itemname (Itm : Item) return chars_ptr; pragma Import (C, Itemname, "item_name"); begin Fill_String (Itemname (Itm), Name); end Name; function Name (Itm : in Item) return String is function Itemname (Itm : Item) return chars_ptr; pragma Import (C, Itemname, "item_name"); begin return Fill_String (Itemname (Itm)); end Name; procedure Description (Itm : in Item; Description : out String) is function Descname (Itm : Item) return chars_ptr; pragma Import (C, Descname, "item_description"); begin Fill_String (Descname (Itm), Description); end Description; function Description (Itm : in Item) return String is function Descname (Itm : Item) return chars_ptr; pragma Import (C, Descname, "item_description"); begin return Fill_String (Descname (Itm)); end Description; ------------------------------------------------------------------------------- procedure Set_Current (Men : in Menu; Itm : in Item) is function Set_Curr_Item (Men : Menu; Itm : Item) return C_Int; pragma Import (C, Set_Curr_Item, "set_current_item"); Res : constant Eti_Error := Set_Curr_Item (Men, Itm); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Current; function Current (Men : Menu) return Item is function Curr_Item (Men : Menu) return Item; pragma Import (C, Curr_Item, "current_item"); Res : constant Item := Curr_Item (Men); begin if Res = Null_Item then raise Menu_Exception; end if; return Res; end Current; procedure Set_Top_Row (Men : in Menu; Line : in Line_Position) is function Set_Toprow (Men : Menu; Line : C_Int) return C_Int; pragma Import (C, Set_Toprow, "set_top_row"); Res : constant Eti_Error := Set_Toprow (Men, C_Int (Line)); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Top_Row; function Top_Row (Men : Menu) return Line_Position is function Toprow (Men : Menu) return C_Int; pragma Import (C, Toprow, "top_row"); Res : constant C_Int := Toprow (Men); begin if Res = Curses_Err then raise Menu_Exception; end if; return Line_Position (Res); end Top_Row; function Get_Index (Itm : Item) return Positive is function Get_Itemindex (Itm : Item) return C_Int; pragma Import (C, Get_Itemindex, "item_index"); Res : constant C_Int := Get_Itemindex (Itm); begin if Res = Curses_Err then raise Menu_Exception; end if; return Positive (Natural (Res) + Positive'First); end Get_Index; ------------------------------------------------------------------------------- procedure Post (Men : in Menu; Post : in Boolean := True) is function M_Post (Men : Menu) return C_Int; pragma Import (C, M_Post, "post_menu"); function M_Unpost (Men : Menu) return C_Int; pragma Import (C, M_Unpost, "unpost_menu"); Res : Eti_Error; begin if Post then Res := M_Post (Men); else Res := M_Unpost (Men); end if; if Res /= E_Ok then Eti_Exception (Res); end if; end Post; ------------------------------------------------------------------------------- procedure Set_Options (Men : in Menu; Options : in Menu_Option_Set) is function Set_Menu_Opts (Men : Menu; Opt : C_Int) return C_Int; pragma Import (C, Set_Menu_Opts, "set_menu_opts"); Opt : constant C_Int := MOS_2_CInt (Options); Res : Eti_Error; begin Res := Set_Menu_Opts (Men, Opt); if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Options; procedure Switch_Options (Men : in Menu; Options : in Menu_Option_Set; On : in Boolean := True) is function Menu_Opts_On (Men : Menu; Opt : C_Int) return C_Int; pragma Import (C, Menu_Opts_On, "menu_opts_on"); function Menu_Opts_Off (Men : Menu; Opt : C_Int) return C_Int; pragma Import (C, Menu_Opts_Off, "menu_opts_off"); Opt : constant C_Int := MOS_2_CInt (Options); Err : Eti_Error; begin if On then Err := Menu_Opts_On (Men, Opt); else Err := Menu_Opts_Off (Men, Opt); end if; if Err /= E_Ok then Eti_Exception (Err); end if; end Switch_Options; procedure Get_Options (Men : in Menu; Options : out Menu_Option_Set) is function Menu_Opts (Men : Menu) return C_Int; pragma Import (C, Menu_Opts, "menu_opts"); Res : constant C_Int := Menu_Opts (Men); begin Options := CInt_2_MOS (Res); end Get_Options; function Get_Options (Men : Menu := Null_Menu) return Menu_Option_Set is Mos : Menu_Option_Set; begin Get_Options (Men, Mos); return Mos; end Get_Options; ------------------------------------------------------------------------------- procedure Set_Window (Men : in Menu; Win : in Window) is function Set_Menu_Win (Men : Menu; Win : Window) return C_Int; pragma Import (C, Set_Menu_Win, "set_menu_win"); Res : constant Eti_Error := Set_Menu_Win (Men, Win); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Window; function Get_Window (Men : Menu) return Window is function Menu_Win (Men : Menu) return Window; pragma Import (C, Menu_Win, "menu_win"); W : constant Window := Menu_Win (Men); begin return W; end Get_Window; procedure Set_Sub_Window (Men : in Menu; Win : in Window) is function Set_Menu_Sub (Men : Menu; Win : Window) return C_Int; pragma Import (C, Set_Menu_Sub, "set_menu_sub"); Res : constant Eti_Error := Set_Menu_Sub (Men, Win); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Sub_Window; function Get_Sub_Window (Men : Menu) return Window is function Menu_Sub (Men : Menu) return Window; pragma Import (C, Menu_Sub, "menu_sub"); W : constant Window := Menu_Sub (Men); begin return W; end Get_Sub_Window; procedure Scale (Men : in Menu; Lines : out Line_Count; Columns : out Column_Count) is type C_Int_Access is access all C_Int; function M_Scale (Men : Menu; Yp, Xp : C_Int_Access) return C_Int; pragma Import (C, M_Scale, "scale_menu"); X, Y : aliased C_Int; Res : constant Eti_Error := M_Scale (Men, Y'Access, X'Access); begin if Res /= E_Ok then Eti_Exception (Res); end if; Lines := Line_Count (Y); Columns := Column_Count (X); end Scale; ------------------------------------------------------------------------------- procedure Position_Cursor (Men : Menu) is function Pos_Menu_Cursor (Men : Menu) return C_Int; pragma Import (C, Pos_Menu_Cursor, "pos_menu_cursor"); Res : constant Eti_Error := Pos_Menu_Cursor (Men); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Position_Cursor; ------------------------------------------------------------------------------- procedure Set_Mark (Men : in Menu; Mark : in String) is type Char_Ptr is access all Interfaces.C.char; function Set_Mark (Men : Menu; Mark : Char_Ptr) return C_Int; pragma Import (C, Set_Mark, "set_menu_mark"); Txt : char_array (0 .. Mark'Length); Len : size_t; Res : Eti_Error; begin To_C (Mark, Txt, Len); Res := Set_Mark (Men, Txt (Txt'First)'Access); if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Mark; procedure Mark (Men : in Menu; Mark : out String) is function Get_Menu_Mark (Men : Menu) return chars_ptr; pragma Import (C, Get_Menu_Mark, "menu_mark"); begin Fill_String (Get_Menu_Mark (Men), Mark); end Mark; function Mark (Men : Menu) return String is function Get_Menu_Mark (Men : Menu) return chars_ptr; pragma Import (C, Get_Menu_Mark, "menu_mark"); begin return Fill_String (Get_Menu_Mark (Men)); end Mark; ------------------------------------------------------------------------------- procedure Set_Foreground (Men : in Menu; Fore : in Character_Attribute_Set := Normal_Video; Color : in Color_Pair := Color_Pair'First) is function Set_Menu_Fore (Men : Menu; Attr : C_Chtype) return C_Int; pragma Import (C, Set_Menu_Fore, "set_menu_fore"); Ch : constant Attributed_Character := (Ch => Character'First, Color => Color, Attr => Fore); Res : constant Eti_Error := Set_Menu_Fore (Men, AttrChar_To_Chtype (Ch)); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Foreground; procedure Foreground (Men : in Menu; Fore : out Character_Attribute_Set) is function Menu_Fore (Men : Menu) return C_Chtype; pragma Import (C, Menu_Fore, "menu_fore"); begin Fore := Chtype_To_AttrChar (Menu_Fore (Men)).Attr; end Foreground; procedure Foreground (Men : in Menu; Fore : out Character_Attribute_Set; Color : out Color_Pair) is function Menu_Fore (Men : Menu) return C_Chtype; pragma Import (C, Menu_Fore, "menu_fore"); begin Fore := Chtype_To_AttrChar (Menu_Fore (Men)).Attr; Color := Chtype_To_AttrChar (Menu_Fore (Men)).Color; end Foreground; procedure Set_Background (Men : in Menu; Back : in Character_Attribute_Set := Normal_Video; Color : in Color_Pair := Color_Pair'First) is function Set_Menu_Back (Men : Menu; Attr : C_Chtype) return C_Int; pragma Import (C, Set_Menu_Back, "set_menu_back"); Ch : constant Attributed_Character := (Ch => Character'First, Color => Color, Attr => Back); Res : constant Eti_Error := Set_Menu_Back (Men, AttrChar_To_Chtype (Ch)); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Background; procedure Background (Men : in Menu; Back : out Character_Attribute_Set) is function Menu_Back (Men : Menu) return C_Chtype; pragma Import (C, Menu_Back, "menu_back"); begin Back := Chtype_To_AttrChar (Menu_Back (Men)).Attr; end Background; procedure Background (Men : in Menu; Back : out Character_Attribute_Set; Color : out Color_Pair) is function Menu_Back (Men : Menu) return C_Chtype; pragma Import (C, Menu_Back, "menu_back"); begin Back := Chtype_To_AttrChar (Menu_Back (Men)).Attr; Color := Chtype_To_AttrChar (Menu_Back (Men)).Color; end Background; procedure Set_Grey (Men : in Menu; Grey : in Character_Attribute_Set := Normal_Video; Color : in Color_Pair := Color_Pair'First) is function Set_Menu_Grey (Men : Menu; Attr : C_Chtype) return C_Int; pragma Import (C, Set_Menu_Grey, "set_menu_grey"); Ch : constant Attributed_Character := (Ch => Character'First, Color => Color, Attr => Grey); Res : constant Eti_Error := Set_Menu_Grey (Men, AttrChar_To_Chtype (Ch)); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Grey; procedure Grey (Men : in Menu; Grey : out Character_Attribute_Set) is function Menu_Grey (Men : Menu) return C_Chtype; pragma Import (C, Menu_Grey, "menu_grey"); begin Grey := Chtype_To_AttrChar (Menu_Grey (Men)).Attr; end Grey; procedure Grey (Men : in Menu; Grey : out Character_Attribute_Set; Color : out Color_Pair) is function Menu_Grey (Men : Menu) return C_Chtype; pragma Import (C, Menu_Grey, "menu_grey"); begin Grey := Chtype_To_AttrChar (Menu_Grey (Men)).Attr; Color := Chtype_To_AttrChar (Menu_Grey (Men)).Color; end Grey; procedure Set_Pad_Character (Men : in Menu; Pad : in Character := Space) is function Set_Menu_Pad (Men : Menu; Ch : C_Int) return C_Int; pragma Import (C, Set_Menu_Pad, "set_menu_pad"); Res : constant Eti_Error := Set_Menu_Pad (Men, C_Int (Character'Pos (Pad))); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Pad_Character; procedure Pad_Character (Men : in Menu; Pad : out Character) is function Menu_Pad (Men : Menu) return C_Int; pragma Import (C, Menu_Pad, "menu_pad"); begin Pad := Character'Val (Menu_Pad (Men)); end Pad_Character; ------------------------------------------------------------------------------- procedure Set_Spacing (Men : in Menu; Descr : in Column_Position := 0; Row : in Line_Position := 0; Col : in Column_Position := 0) is function Set_Spacing (Men : Menu; D, R, C : C_Int) return C_Int; pragma Import (C, Set_Spacing, "set_menu_spacing"); Res : constant Eti_Error := Set_Spacing (Men, C_Int (Descr), C_Int (Row), C_Int (Col)); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Spacing; procedure Spacing (Men : in Menu; Descr : out Column_Position; Row : out Line_Position; Col : out Column_Position) is type C_Int_Access is access all C_Int; function Get_Spacing (Men : Menu; D, R, C : C_Int_Access) return C_Int; pragma Import (C, Get_Spacing, "menu_spacing"); D, R, C : aliased C_Int; Res : constant Eti_Error := Get_Spacing (Men, D'Access, R'Access, C'Access); begin if Res /= E_Ok then Eti_Exception (Res); else Descr := Column_Position (D); Row := Line_Position (R); Col := Column_Position (C); end if; end Spacing; ------------------------------------------------------------------------------- function Set_Pattern (Men : Menu; Text : String) return Boolean is type Char_Ptr is access all Interfaces.C.char; function Set_Pattern (Men : Menu; Pattern : Char_Ptr) return C_Int; pragma Import (C, Set_Pattern, "set_menu_pattern"); S : char_array (0 .. Text'Length); L : size_t; Res : Eti_Error; begin To_C (Text, S, L); Res := Set_Pattern (Men, S (S'First)'Access); case Res is when E_No_Match => return False; when E_Ok => return True; when others => Eti_Exception (Res); return False; end case; end Set_Pattern; procedure Pattern (Men : in Menu; Text : out String) is function Get_Pattern (Men : Menu) return chars_ptr; pragma Import (C, Get_Pattern, "menu_pattern"); begin Fill_String (Get_Pattern (Men), Text); end Pattern; ------------------------------------------------------------------------------- procedure Set_Format (Men : in Menu; Lines : in Line_Count; Columns : in Column_Count) is function Set_Menu_Fmt (Men : Menu; Lin : C_Int; Col : C_Int) return C_Int; pragma Import (C, Set_Menu_Fmt, "set_menu_format"); Res : constant Eti_Error := Set_Menu_Fmt (Men, C_Int (Lines), C_Int (Columns)); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Format; procedure Format (Men : in Menu; Lines : out Line_Count; Columns : out Column_Count) is type C_Int_Access is access all C_Int; function Menu_Fmt (Men : Menu; Y, X : C_Int_Access) return C_Int; pragma Import (C, Menu_Fmt, "menu_format"); L, C : aliased C_Int; Res : constant Eti_Error := Menu_Fmt (Men, L'Access, C'Access); begin if Res /= E_Ok then Eti_Exception (Res); else Lines := Line_Count (L); Columns := Column_Count (C); end if; end Format; ------------------------------------------------------------------------------- procedure Set_Item_Init_Hook (Men : in Menu; Proc : in Menu_Hook_Function) is function Set_Item_Init (Men : Menu; Proc : Menu_Hook_Function) return C_Int; pragma Import (C, Set_Item_Init, "set_item_init"); Res : constant Eti_Error := Set_Item_Init (Men, Proc); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Item_Init_Hook; procedure Set_Item_Term_Hook (Men : in Menu; Proc : in Menu_Hook_Function) is function Set_Item_Term (Men : Menu; Proc : Menu_Hook_Function) return C_Int; pragma Import (C, Set_Item_Term, "set_item_term"); Res : constant Eti_Error := Set_Item_Term (Men, Proc); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Item_Term_Hook; procedure Set_Menu_Init_Hook (Men : in Menu; Proc : in Menu_Hook_Function) is function Set_Menu_Init (Men : Menu; Proc : Menu_Hook_Function) return C_Int; pragma Import (C, Set_Menu_Init, "set_menu_init"); Res : constant Eti_Error := Set_Menu_Init (Men, Proc); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Menu_Init_Hook; procedure Set_Menu_Term_Hook (Men : in Menu; Proc : in Menu_Hook_Function) is function Set_Menu_Term (Men : Menu; Proc : Menu_Hook_Function) return C_Int; pragma Import (C, Set_Menu_Term, "set_menu_term"); Res : constant Eti_Error := Set_Menu_Term (Men, Proc); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Menu_Term_Hook; function Get_Item_Init_Hook (Men : Menu) return Menu_Hook_Function is function Item_Init (Men : Menu) return Menu_Hook_Function; pragma Import (C, Item_Init, "item_init"); begin return Item_Init (Men); end Get_Item_Init_Hook; function Get_Item_Term_Hook (Men : Menu) return Menu_Hook_Function is function Item_Term (Men : Menu) return Menu_Hook_Function; pragma Import (C, Item_Term, "item_term"); begin return Item_Term (Men); end Get_Item_Term_Hook; function Get_Menu_Init_Hook (Men : Menu) return Menu_Hook_Function is function Menu_Init (Men : Menu) return Menu_Hook_Function; pragma Import (C, Menu_Init, "menu_init"); begin return Menu_Init (Men); end Get_Menu_Init_Hook; function Get_Menu_Term_Hook (Men : Menu) return Menu_Hook_Function is function Menu_Term (Men : Menu) return Menu_Hook_Function; pragma Import (C, Menu_Term, "menu_term"); begin return Menu_Term (Men); end Get_Menu_Term_Hook; ------------------------------------------------------------------------------- procedure Redefine (Men : in Menu; Items : in Item_Array_Access) is function Set_Items (Men : Menu; Items : System.Address) return C_Int; pragma Import (C, Set_Items, "set_menu_items"); Res : Eti_Error; begin pragma Assert (Items (Items'Last) = Null_Item); if Items (Items'Last) /= Null_Item then raise Menu_Exception; else Res := Set_Items (Men, Items.all'Address); if Res /= E_Ok then Eti_Exception (Res); end if; end if; end Redefine; function Item_Count (Men : Menu) return Natural is function Count (Men : Menu) return C_Int; pragma Import (C, Count, "item_count"); begin return Natural (Count (Men)); end Item_Count; function Items (Men : Menu; Index : Positive) return Item is use I_Array; function C_Mitems (Men : Menu) return Pointer; pragma Import (C, C_Mitems, "menu_items"); P : Pointer := C_Mitems (Men); begin if P = null or else Index > Item_Count (Men) then raise Menu_Exception; else P := P + ptrdiff_t (C_Int (Index) - 1); return P.all; end if; end Items; ------------------------------------------------------------------------------- function Create (Items : Item_Array_Access) return Menu is function Newmenu (Items : System.Address) return Menu; pragma Import (C, Newmenu, "new_menu"); M : Menu; begin pragma Assert (Items (Items'Last) = Null_Item); if Items (Items'Last) /= Null_Item then raise Menu_Exception; else M := Newmenu (Items.all'Address); if M = Null_Menu then raise Menu_Exception; end if; return M; end if; end Create; procedure Delete (Men : in out Menu) is function Free (Men : Menu) return C_Int; pragma Import (C, Free, "free_menu"); Res : constant Eti_Error := Free (Men); begin if Res /= E_Ok then Eti_Exception (Res); end if; Men := Null_Menu; end Delete; ------------------------------------------------------------------------------ function Driver (Men : Menu; Key : Key_Code) return Driver_Result is function Driver (Men : Menu; Key : C_Int) return C_Int; pragma Import (C, Driver, "menu_driver"); R : constant Eti_Error := Driver (Men, C_Int (Key)); begin if R /= E_Ok then case R is when E_Unknown_Command => return Unknown_Request; when E_No_Match => return No_Match; when E_Request_Denied | E_Not_Selectable => return Request_Denied; when others => Eti_Exception (R); end case; end if; return Menu_Ok; end Driver; procedure Free (IA : in out Item_Array_Access; Free_Items : in Boolean := False) is procedure Release is new Ada.Unchecked_Deallocation (Item_Array, Item_Array_Access); begin if IA /= null and then Free_Items then for I in IA'First .. (IA'Last - 1) loop if IA (I) /= Null_Item then Delete (IA (I)); end if; end loop; end if; Release (IA); end Free; ------------------------------------------------------------------------------- function Default_Menu_Options return Menu_Option_Set is begin return Get_Options (Null_Menu); end Default_Menu_Options; function Default_Item_Options return Item_Option_Set is begin return Get_Options (Null_Item); end Default_Item_Options; ------------------------------------------------------------------------------- end Terminal_Interface.Curses.Menus;
33.853372
79
0.528788
206e44071de89e973479ae9241754579eebed685
4,706
ads
Ada
dependencies/agar/ada-gui/agar-gui-widget-textbox.ads
amvb/GUCEF
08fd423bbb5cdebbe4b70df24c0ae51716b65825
[ "Apache-2.0" ]
286
2017-07-31T20:05:16.000Z
2022-03-26T20:26:24.000Z
dependencies/agar/ada-gui/agar-gui-widget-textbox.ads
amvb/GUCEF
08fd423bbb5cdebbe4b70df24c0ae51716b65825
[ "Apache-2.0" ]
67
2017-08-30T18:56:21.000Z
2021-09-08T03:38:20.000Z
dependencies/agar/ada-gui/agar-gui-widget-textbox.ads
amvb/GUCEF
08fd423bbb5cdebbe4b70df24c0ae51716b65825
[ "Apache-2.0" ]
31
2017-08-14T13:34:12.000Z
2022-03-14T15:33:49.000Z
with agar.gui.widget.scrollbar; with agar.gui.widget.editable; package agar.gui.widget.textbox is use type c.unsigned; subtype cursor_pos_t is agar.gui.widget.editable.cursor_pos_t; type flags_t is new c.unsigned; TEXTBOX_MULTILINE : constant flags_t := 16#00001#; TEXTBOX_PASSWORD : constant flags_t := 16#00004#; TEXTBOX_ABANDON_FOCUS : constant flags_t := 16#00008#; TEXTBOX_COMBO : constant flags_t := 16#00010#; TEXTBOX_HFILL : constant flags_t := 16#00020#; TEXTBOX_VFILL : constant flags_t := 16#00040#; TEXTBOX_EXPAND : constant flags_t := TEXTBOX_HFILL or TEXTBOX_VFILL; TEXTBOX_READONLY : constant flags_t := 16#00100#; TEXTBOX_INT_ONLY : constant flags_t := 16#00200#; TEXTBOX_FLT_ONLY : constant flags_t := 16#00400#; TEXTBOX_CATCH_TAB : constant flags_t := 16#00800#; TEXTBOX_CURSOR_MOVING : constant flags_t := 16#01000#; TEXTBOX_STATIC : constant flags_t := 16#04000#; TEXTBOX_NOEMACS : constant flags_t := 16#08000#; TEXTBOX_NOWORDSEEK : constant flags_t := 16#10000#; TEXTBOX_NOLATIN1 : constant flags_t := 16#20000#; type textbox_t is limited private; type textbox_access_t is access all textbox_t; pragma convention (c, textbox_access_t); string_max : constant := agar.gui.widget.editable.string_max; -- API function allocate (parent : widget_access_t; flags : flags_t; label : string) return textbox_access_t; pragma inline (allocate); procedure set_static (textbox : textbox_access_t; enable : boolean); pragma inline (set_static); procedure set_password (textbox : textbox_access_t; enable : boolean); pragma inline (set_password); procedure set_float_only (textbox : textbox_access_t; enable : boolean); pragma inline (set_float_only); procedure set_integer_only (textbox : textbox_access_t; enable : boolean); pragma inline (set_integer_only); procedure set_label (textbox : textbox_access_t; text : string); pragma inline (set_label); procedure size_hint (textbox : textbox_access_t; text : string); pragma inline (size_hint); procedure size_hint_pixels (textbox : textbox_access_t; width : positive; height : positive); pragma inline (size_hint_pixels); -- cursor manipulation procedure map_position (textbox : textbox_access_t; x : integer; y : integer; index : out natural; pos : out cursor_pos_t; absolute : boolean); pragma inline (map_position); function move_cursor (textbox : textbox_access_t; x : integer; y : integer; absolute : boolean) return integer; pragma inline (move_cursor); function get_cursor_position (textbox : textbox_access_t) return integer; pragma inline (get_cursor_position); function set_cursor_position (textbox : textbox_access_t; position : integer) return integer; pragma inline (set_cursor_position); -- text manipulation procedure set_string (textbox : textbox_access_t; text : string); pragma inline (set_string); procedure set_string_ucs4 (textbox : textbox_access_t; text : wide_wide_string); pragma inline (set_string_ucs4); procedure clear_string (textbox : textbox_access_t); pragma import (c, clear_string, "agar_gui_widget_textbox_clear_string"); procedure buffer_changed (textbox : textbox_access_t); pragma import (c, buffer_changed, "agar_gui_widget_textbox_buffer_changed"); function get_integer (textbox : textbox_access_t) return integer; pragma inline (get_integer); function get_float (textbox : textbox_access_t) return float; pragma inline (get_float); function get_long_float (textbox : textbox_access_t) return long_float; pragma inline (get_long_float); function widget (textbox : textbox_access_t) return widget_access_t; pragma inline (widget); private type textbox_t is record widget : aliased widget_t; editable : agar.gui.widget.editable.editable_access_t; label_text : cs.chars_ptr; label : c.int; flags : flags_t; box_pad_x : c.int; box_pad_y : c.int; label_pad_left : c.int; label_pad_right : c.int; width_label : c.int; height_label : c.int; horiz_scrollbar : agar.gui.widget.scrollbar.scrollbar_access_t; vert_scrollbar : agar.gui.widget.scrollbar.scrollbar_access_t; r : agar.gui.rect.rect_t; r_label : agar.gui.rect.rect_t; end record; pragma convention (c, textbox_t); end agar.gui.widget.textbox;
29.597484
78
0.691458
0e861ee0dac2c920d893c34225feb10acf505ce9
13,886
adb
Ada
arch/ARM/STM32/driversL4/stm32-dma.adb
morbos/Ada_Drivers_Library
a4ab26799be60997c38735f4056160c4af597ef7
[ "BSD-3-Clause" ]
2
2018-05-16T03:56:39.000Z
2019-07-31T13:53:56.000Z
arch/ARM/STM32/driversL4/stm32-dma.adb
morbos/Ada_Drivers_Library
a4ab26799be60997c38735f4056160c4af597ef7
[ "BSD-3-Clause" ]
null
null
null
arch/ARM/STM32/driversL4/stm32-dma.adb
morbos/Ada_Drivers_Library
a4ab26799be60997c38735f4056160c4af597ef7
[ "BSD-3-Clause" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2015, AdaCore -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- 3. Neither the name of STMicroelectronics nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- -- -- -- This file is based on: -- -- -- -- @file stm32f4xx_hal_dma.h -- -- @author MCD Application Team -- -- @version V1.1.0 -- -- @date 19-June-2014 -- -- @brief Header file of DMA HAL module. -- -- -- -- COPYRIGHT(c) 2014 STMicroelectronics -- ------------------------------------------------------------------------------ -- This file provides definitions for the DMA controllers on the STM32F4 (ARM -- Cortex M4F) microcontrollers from ST Microelectronics. -- See Application Note AN4031: "Using the STM32F2 and STM32F4 DMA controller" -- and Reference Manual RM0090: "STM32F405xx/07xx, STM32F415xx/17xx, -- STM32F42xxx and STM32F43xxx advanced ARM-based 32-bit MCUs" In the -- application note, see especially section four, titled "Tips and -- warnings while programming the DMA controller" -- The basic call sequence, given a Controller and a Stream, is as follows: -- 1) Configure -- Configures the Controller and Stream per application requirements. This -- is the primary setup call, specifying the static characteristics of all -- the transfers to be performed on the stream, such as the direction, the -- channel, and so forth. The Controller is disabled after the call. -- 2) Configure_Data_Flow -- Sets the dynamic parameters of a given transfer, i.e., the source and -- destination addresses and the number of data items to transfer. -- 3) Enable -- Enables transfers on the Controller and Stream. Transfers will begin -- immediately unless programmed otherwise. -- You can enable some or all DMA interrupts prior to the call to Enable, if -- required by your usage. -- Ensure all the status flags are cleared prior to the call to Enable, since -- a transfer will then begin. This can be accomplished by relying on the fact -- that the board has just powered-up, by a call to Reset, or by a call to -- Clear_All_Status. -- Note that there are convenience routines that do steps two and three: -- Start_Transfer -- Start_Transfer_with_Interrupts pragma Restrictions (No_Elaboration_Code); with System; use System; with Ada.Real_Time; use Ada.Real_Time; private with STM32_SVD.DMA; package body STM32.DMA with SPARK_Mode => Off is procedure Enable (This : DMA_Controller; Channel : DMA_Channel_Selector) is begin null; end Enable; -- Before enabling a stream to start a new transfer, the event status flags -- corresponding to the stream must be cleared. Note that the unit may not -- be enabled by the time the call returns. procedure Disable (This : in out DMA_Controller; Channel : DMA_Channel_Selector) is begin case Channel is when Channel_1 => This.CCR1.EN := False; when Channel_2 => This.CCR2.EN := False; when Channel_3 => This.CCR3.EN := False; when Channel_4 => This.CCR4.EN := False; when Channel_5 => This.CCR5.EN := False; when Channel_6 => This.CCR6.EN := False; when Channel_7 => This.CCR7.EN := False; end case; end Disable; function Enabled (This : DMA_Controller; Channel : DMA_Channel_Selector) return Boolean is begin return False; end Enabled; procedure Reset (This : in out DMA_Controller; Channel : DMA_Channel_Selector) is begin null; end Reset; procedure Configure_Data_Flow (This : DMA_Controller; Channel : DMA_Channel_Selector; Source : Address; Destination : Address; Data_Count : UInt16) is begin null; end Configure_Data_Flow; procedure Start_Transfer (This : DMA_Controller; Channel : DMA_Channel_Selector; Source : Address; Destination : Address; Data_Count : UInt16) is begin null; end Start_Transfer; procedure Start_Transfer_with_Interrupts (This : DMA_Controller; Channel : DMA_Channel_Selector; Source : Address; Destination : Address; Data_Count : UInt16; Enabled_Interrupts : Interrupt_Selections := (others => True)) is begin null; end Start_Transfer_with_Interrupts; procedure Abort_Transfer (This : DMA_Controller; Channel : DMA_Channel_Selector; Result : out DMA_Error_Code) is begin -- Disables the specified stream and then waits until the request is -- effective. If a stream is disabled while a data transfer is ongoing, the -- current datum will be transferred and the stream will be disabled only -- after the transfer of this single datum completes. null; end Abort_Transfer; procedure Poll_For_Completion (This : in out DMA_Controller; Channel : DMA_Channel_Selector; Expected_Level : DMA_Transfer_Level; Timeout : Time_Span; Result : out DMA_Error_Code) is begin null; end Poll_For_Completion; procedure Set_NDT (This : DMA_Controller; Channel : DMA_Channel_Selector; Data_Count : UInt16) is begin null; end Set_NDT; -- Sets the number of data items to be transferred on the stream. -- The Data_Count parameter specifies the number of data items to be -- transferred (from 0 to 65535) on the next transfer. The value is -- as described for procedure Configure_Data_Flow. function Items_Transferred (This : DMA_Controller; Channel : DMA_Channel_Selector) return UInt16 is -- returns the number of items transferred begin return 0; end Items_Transferred; function Current_NDT (This : DMA_Controller; Channel : DMA_Channel_Selector) return UInt16 is begin return 0; end Current_NDT; function Circular_Mode (This : DMA_Controller; Channel : DMA_Channel_Selector) return Boolean is begin return False; end Circular_Mode; procedure Enable_Interrupt (This : DMA_Controller; Channel : DMA_Channel_Selector; Source : DMA_Interrupt) is -- The postcondition should not be relied upon completely because it is -- possible, under just the wrong conditions, for the interrupt to be -- disabled immediately, prior to return from this routine begin null; end Enable_Interrupt; procedure Disable_Interrupt (This : DMA_Controller; Channel : DMA_Channel_Selector; Source : DMA_Interrupt) is begin null; end Disable_Interrupt; function Interrupt_Enabled (This : DMA_Controller; Channel : DMA_Channel_Selector; Source : DMA_Interrupt) return Boolean is begin return False; end Interrupt_Enabled; procedure Clear_Status (This : in out DMA_Controller; Channel : DMA_Channel_Selector; Flag : DMA_Status_Flag) is begin null; end Clear_Status; procedure Clear_All_Status (This : in out DMA_Controller; Channel : DMA_Channel_Selector) is begin null; end Clear_All_Status; function Status (This : DMA_Controller; Channel : DMA_Channel_Selector; Flag : DMA_Status_Flag) return Boolean is begin return False; end Status; function Selected_Channel (This : DMA_Controller; Channel : DMA_Channel_Selector) return DMA_Channel_Selector is begin return Channel; -- !!! end Selected_Channel; function Transfer_Direction (This : DMA_Controller; Channel : DMA_Channel_Selector) return DMA_Data_Transfer_Direction is begin return Memory_To_Memory; -- !!! end Transfer_Direction; function Peripheral_Data_Width (This : DMA_Controller; Channel : DMA_Channel_Selector) return DMA_Data_Transfer_Widths is begin return Words; -- !!! end Peripheral_Data_Width; function Memory_Data_Width (This : DMA_Controller; Channel : DMA_Channel_Selector) return DMA_Data_Transfer_Widths is begin return Words; -- !!! end Memory_Data_Width; function Operating_Mode (This : DMA_Controller; Channel : DMA_Channel_Selector) return DMA_Mode is begin return Normal_Mode; -- !!! end Operating_Mode; function Priority (This : DMA_Controller; Channel : DMA_Channel_Selector) return DMA_Priority_Level is begin return Priority_Low; -- !!! end Priority; function Current_Memory_Buffer (This : DMA_Controller; Channel : DMA_Channel_Selector) return Memory_Buffer_Target is begin return Memory_Buffer_0; -- !!! end Current_Memory_Buffer; procedure Select_Current_Memory_Buffer (This : DMA_Controller; Channel : DMA_Channel_Selector; Buffer : Memory_Buffer_Target) is begin null; end Select_Current_Memory_Buffer; procedure Set_Memory_Buffer (This : DMA_Controller; Channel : DMA_Channel_Selector; Buffer : Memory_Buffer_Target; To : System.Address) is begin null; end Set_Memory_Buffer; procedure Configure_Double_Buffered_Mode (This : DMA_Controller; Channel : DMA_Channel_Selector; Buffer_0_Value : Address; Buffer_1_Value : Address; First_Buffer_Used : Memory_Buffer_Target) is begin null; end Configure_Double_Buffered_Mode; procedure Enable_Double_Buffered_Mode (This : DMA_Controller; Channel : DMA_Channel_Selector) is begin null; end Enable_Double_Buffered_Mode; procedure Disable_Double_Buffered_Mode (This : DMA_Controller; Channel : DMA_Channel_Selector) is begin null; end Disable_Double_Buffered_Mode; function Double_Buffered (This : DMA_Controller; Channel : DMA_Channel_Selector) return Boolean is begin return False; end Double_Buffered; procedure Configure (This : in out DMA_Controller; Channel : DMA_Channel_Selector; Config : DMA_Channel_Configuration) is Req : UInt4; begin Disable (This, Channel); -- Setup the request -- Config.Request Req := 0; case Channel is when Channel_1 => This.CSELR.C1S := Req; when Channel_2 => This.CSELR.C2S := Req; when Channel_3 => This.CSELR.C3S := Req; when Channel_4 => This.CSELR.C4S := Req; when Channel_5 => This.CSELR.C5S := Req; when Channel_6 => This.CSELR.C6S := Req; when Channel_7 => This.CSELR.C7S := Req; end case; end Configure; function Aligned (This : Address; Width : DMA_Data_Transfer_Widths) return Boolean is begin return False; end Aligned; end STM32.DMA;
32.596244
79
0.602693
fb1d6bb9f2e549ed3ac50d5ba4bde1d2b50ff5a2
181
ads
Ada
src/interfaces/adabase-interfaces.ads
jrmarino/AdaBase
660f278613773dc4007c8b3fab21bcfddc1828b3
[ "0BSD" ]
30
2016-02-21T11:09:30.000Z
2021-12-08T14:12:32.000Z
src/interfaces/adabase-interfaces.ads
jrmarino/AdaBase
660f278613773dc4007c8b3fab21bcfddc1828b3
[ "0BSD" ]
3
2018-10-29T18:44:48.000Z
2022-03-12T23:14:20.000Z
src/interfaces/adabase-interfaces.ads
jrmarino/AdaBase
660f278613773dc4007c8b3fab21bcfddc1828b3
[ "0BSD" ]
3
2015-04-22T12:17:27.000Z
2017-01-19T14:29:59.000Z
-- This file is covered by the Internet Software Consortium (ISC) License -- Reference: ../../License.txt package AdaBase.Interfaces is pragma Pure; end AdaBase.Interfaces;
20.111111
74
0.734807
4a0b80ed3c83fb7f98efbe4745e1036093de9206
3,186
ads
Ada
awa/plugins/awa-counters/src/awa-counters-beans.ads
fuzzysloth/ada-awa
f9b921eeea29841667a028f2fc4528e4385d247a
[ "Apache-2.0" ]
null
null
null
awa/plugins/awa-counters/src/awa-counters-beans.ads
fuzzysloth/ada-awa
f9b921eeea29841667a028f2fc4528e4385d247a
[ "Apache-2.0" ]
null
null
null
awa/plugins/awa-counters/src/awa-counters-beans.ads
fuzzysloth/ada-awa
f9b921eeea29841667a028f2fc4528e4385d247a
[ "Apache-2.0" ]
null
null
null
----------------------------------------------------------------------- -- awa-counters-beans -- Counter bean definition -- Copyright (C) 2015, 2016 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Ada.Strings.Unbounded; with ADO.Objects; with ADO.Schemas; with ADO.Queries; with Util.Beans.Objects; with Util.Beans.Basic; with AWA.Counters.Modules; with AWA.Counters.Models; -- == Counter Bean == -- The <b>Counter_Bean</b> allows to represent a counter associated with some database -- entity and allows its control by the <awa:counter> component. -- package AWA.Counters.Beans is type Counter_Bean (Of_Type : ADO.Objects.Object_Key_Type; Of_Class : ADO.Schemas.Class_Mapping_Access) is new Util.Beans.Basic.Readonly_Bean with record Counter : Counter_Index_Type; Value : Integer := -1; Object : ADO.Objects.Object_Key (Of_Type, Of_Class); end record; type Counter_Bean_Access is access all Counter_Bean'Class; -- Get the value identified by the name. overriding function Get_Value (From : in Counter_Bean; Name : in String) return Util.Beans.Objects.Object; type Counter_Stat_Bean is new AWA.Counters.Models.Stat_List_Bean with record Module : AWA.Counters.Modules.Counter_Module_Access; Stats : aliased AWA.Counters.Models.Stat_Info_List_Bean; Stats_Bean : AWA.Counters.Models.Stat_Info_List_Bean_Access; end record; type Counter_Stat_Bean_Access is access all Counter_Stat_Bean'Class; -- Get the query definition to collect the counter statistics. function Get_Query (From : in Counter_Stat_Bean) return ADO.Queries.Query_Definition_Access; overriding function Get_Value (List : in Counter_Stat_Bean; Name : in String) return Util.Beans.Objects.Object; -- Set the value identified by the name. overriding procedure Set_Value (From : in out Counter_Stat_Bean; Name : in String; Value : in Util.Beans.Objects.Object); -- Load the statistics information. overriding procedure Load (List : in out Counter_Stat_Bean; Outcome : in out Ada.Strings.Unbounded.Unbounded_String); -- Create the Blog_Stat_Bean bean instance. function Create_Counter_Stat_Bean (Module : in AWA.Counters.Modules.Counter_Module_Access) return Util.Beans.Basic.Readonly_Bean_Access; end AWA.Counters.Beans;
39.825
95
0.670119
503a445a35260cd035936781ea472d45cff2db24
8,307
adb
Ada
src/clic-config.adb
alire-project/clic
e57e289e4825e1ce4be96b5cdd1979a02a08c8ba
[ "MIT" ]
9
2021-08-30T16:11:30.000Z
2021-11-06T22:41:17.000Z
src/clic-config.adb
alire-project/clic
e57e289e4825e1ce4be96b5cdd1979a02a08c8ba
[ "MIT" ]
8
2021-09-05T09:20:31.000Z
2022-03-09T10:07:52.000Z
src/clic-config.adb
alire-project/clic
e57e289e4825e1ce4be96b5cdd1979a02a08c8ba
[ "MIT" ]
2
2021-09-16T14:17:20.000Z
2021-09-21T09:11:23.000Z
with Ada.Strings.Unbounded; with Simple_Logging; package body CLIC.Config is use Ada.Strings.Unbounded; use TOML; package Trace renames Simple_Logging; function Image (F : TOML.Any_Float) return String; ---------------------- -- Import_Recursive -- ---------------------- procedure Import_Recursive (This : in out Instance; Table : TOML.TOML_Value; Origin : String; Check : Check_Import := null; Prefix : String := "") is begin if Table = No_TOML_Value or else Table.Kind /= TOML_Table then return; end if; for Ent of Iterate_On_Table (Table) loop declare Key : constant String := (if Prefix = "" then "" else Prefix & ".") & To_String (Ent.Key); begin if not Is_Valid_Config_Key (Key) then Trace.Error ("Invalid configuration key '" & Key & "' in " & "'" & Origin & "'"); elsif Ent.Value.Kind = TOML_Table then -- Recursive call on the table Import_Recursive (This, Ent.Value, Origin, Check, Key); else Trace.Debug ("Load config key: '" & Key & "' = '" & Ent.Value.Kind'Img & "'"); if Ent.Value.Kind not in TOML_String | TOML_Float | TOML_Integer | TOML_Boolean then Trace.Error ("Invalid type '" & Ent.Value.Kind'Img & "' for key '" & Key & "' in configuration file '" & Origin & "'"); Trace.Error ("'" & Key & "' is ignored"); elsif Check /= null and then not Check (Key, Ent.Value) then Trace.Error ("'" & Key & "' is ignored"); else -- Insert the config value, potentially replacing a previous -- definition. This.Config_Map.Include (To_Unbounded_String (Key), (Value => Ent.Value, Origin => To_Unbounded_String (Origin))); end if; end if; end; end loop; end Import_Recursive; ------------ -- Import -- ------------ procedure Import (This : in out Instance; Table : TOML.TOML_Value; Origin : String; Check : Check_Import := null) is begin Import_Recursive (This, Table, Origin, Check); end Import; ------------- -- Defined -- ------------- function Defined (This : Instance; Key : Config_Key) return Boolean is begin return This.Config_Map.Contains (+Key); end Defined; ------------------- -- Get_As_String -- ------------------- function Get_As_String (This : Instance; Key : Config_Key) return String is begin if This.Defined (Key) then return Image (This.Get (Key).Value); else return ""; end if; end Get_As_String; --------- -- Get -- --------- function Get (This : Instance; Key : Config_Key) return Config_Value is begin if This.Defined (Key) then return This.Config_Map.Element (+Key); else return No_Config_Value; end if; end Get; --------- -- Get -- --------- function Get (This : Instance; Key : Config_Key; Default : Boolean) return Boolean is function Get_With_Default_Bool is new Get_With_Default_Gen (Boolean, TOML_Boolean, "Boolean", TOML.As_Boolean, Boolean'Image); begin return Get_With_Default_Bool (This, Key, Default); end Get; --------- -- Get -- --------- function Get (This : Instance; Key : Config_Key; Default : String) return String is function Id (Str : String) return String is (Str); function Get_With_Default_Str is new Get_With_Default_Gen (String, TOML_String, "String", TOML.As_String, Id); begin return Get_With_Default_Str (This, Key, Default); end Get; --------- -- Get -- --------- function Get (This : Instance; Key : Config_Key; Default : TOML.Any_Integer) return TOML.Any_Integer is function Get_With_Default_Int is new Get_With_Default_Gen (TOML.Any_Integer, TOML_Integer, "Integer", TOML.As_Integer, Any_Integer'Image); begin return Get_With_Default_Int (This, Key, Default); end Get; --------- -- Get -- --------- function Get (This : Instance; Key : Config_Key; Default : TOML.Any_Float) return TOML.Any_Float is function Get_With_Default_Int is new Get_With_Default_Gen (TOML.Any_Float, TOML_Float, "Float", TOML.As_Float, Image); begin return Get_With_Default_Int (This, Key, Default); end Get; ----------- -- Clear -- ----------- procedure Clear (This : in out Instance) is begin This.Config_Map.Clear; end Clear; -------------------------- -- Get_With_Default_Gen -- -------------------------- function Get_With_Default_Gen (This : Instance; Key : Config_Key; Default : Return_Type) return Return_Type is Val : constant Config_Value := This.Get (Key); begin if Val.Value.Is_Null then Trace.Detail ("Using default value for configuration '" & Key & "': '" & Image (Default) & "'"); return Default; elsif Val.Value.Kind /= Expected_TOML_Kind then Trace.Error ("Invalid type ('" & Val.Value.Kind'Img & "') for configuration '" & Key & "'"); Trace.Error ("in '" & To_String (Val.Origin) & "'"); Trace.Error (Type_Name & " expected"); Trace.Error ("Using default: '" & Image (Default) & "'"); return Default; else return TOML_As_Return_Type (Val.Value); end if; end Get_With_Default_Gen; ------------------- -- To_TOML_Value -- ------------------- function To_TOML_Value (Str : String) return TOML.TOML_Value is Result : constant TOML.Read_Result := TOML.Load_String ("key=" & Str); begin if not Result.Success or else Result.Value.Kind /= TOML_Table or else not Result.Value.Has ("key") then -- Conversion failed -- Interpret as a string return Create_String (Str); else return Result.Value.Get ("key"); end if; end To_TOML_Value; --------------------- -- No_Config_Value -- --------------------- function No_Config_Value return Config_Value is (Value => TOML.No_TOML_Value, Origin => Null_Unbounded_String); ----------- -- Image -- ----------- function Image (F : TOML.Any_Float) return String is begin case F.Kind is when Regular => return AAA.Strings.Trim (F.Value'Image); when NaN | Infinity => return (if F.Positive then "" else "-") & (if F.Kind = NaN then "nan" else "inf"); end case; end Image; ----------- -- Image -- ----------- function Image (Val : TOML.TOML_Value) return String is begin case Val.Kind is when TOML_Boolean => return (if Val.As_Boolean then "true" else "false"); when TOML_Integer => return AAA.Strings.Trim (Val.As_Integer'Img); when TOML_Float => return Image (Val.As_Float); when TOML_String => return Val.As_String; when others => return ""; end case; end Image; end CLIC.Config;
27.69
79
0.486698
fbb6e0963770929100f35945a6af732886532008
6,000
adb
Ada
mat/src/mat-readers-streams-sockets.adb
stcarrez/mat
fb242feb5662b8130680cd06e50da7ef40b95bd7
[ "Apache-2.0" ]
7
2015-01-18T23:04:30.000Z
2021-04-06T14:07:56.000Z
mat/src/mat-readers-streams-sockets.adb
stcarrez/mat
fb242feb5662b8130680cd06e50da7ef40b95bd7
[ "Apache-2.0" ]
null
null
null
mat/src/mat-readers-streams-sockets.adb
stcarrez/mat
fb242feb5662b8130680cd06e50da7ef40b95bd7
[ "Apache-2.0" ]
null
null
null
----------------------------------------------------------------------- -- mat-readers-sockets -- Reader for TCP/IP sockets -- Copyright (C) 2014, 2019 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Util.Log.Loggers; package body MAT.Readers.Streams.Sockets is -- The logger Log : constant Util.Log.Loggers.Logger := Util.Log.Loggers.Create ("MAT.Readers.Sockets"); BUFFER_SIZE : constant Natural := 100 * 1024; -- ------------------------------ -- Initialize the socket listener. -- ------------------------------ overriding procedure Initialize (Listener : in out Socket_Listener_Type) is begin GNAT.Sockets.Create_Selector (Listener.Accept_Selector); end Initialize; -- ------------------------------ -- Destroy the socket listener. -- ------------------------------ overriding procedure Finalize (Listener : in out Socket_Listener_Type) is begin GNAT.Sockets.Close_Selector (Listener.Accept_Selector); end Finalize; -- ------------------------------ -- Open the socket to accept connections and start the listener task. -- ------------------------------ procedure Start (Listener : in out Socket_Listener_Type; List : in MAT.Events.Probes.Reader_List_Type_Access; Address : in GNAT.Sockets.Sock_Addr_Type) is begin Log.Info ("Starting the listener socket task"); Listener.List := List; Listener.Listener.Start (Listener'Unchecked_Access, Address); end Start; -- ------------------------------ -- Stop the listener socket. -- ------------------------------ procedure Stop (Listener : in out Socket_Listener_Type) is begin GNAT.Sockets.Abort_Selector (Listener.Accept_Selector); end Stop; -- ------------------------------ -- Create a target instance for the new client. -- ------------------------------ procedure Create_Target (Listener : in out Socket_Listener_Type; Client : in GNAT.Sockets.Socket_Type; Address : in GNAT.Sockets.Sock_Addr_Type) is Reader : constant Socket_Reader_Type_Access := new Socket_Reader_Type; Stream : constant access Util.Streams.Input_Stream'Class := Reader.Socket'Access; begin Reader.Client := Client; Reader.Stream.Initialize (Input => Stream, Size => BUFFER_SIZE); Reader.Server.Start (Reader, Client); Listener.List.Initialize (Reader.all); Listener.Clients.Append (Reader); end Create_Target; task body Socket_Listener_Task is use type GNAT.Sockets.Selector_Status; Peer : GNAT.Sockets.Sock_Addr_Type; Server : GNAT.Sockets.Socket_Type; Instance : Socket_Listener_Type_Access; Client : GNAT.Sockets.Socket_Type; Selector_Status : GNAT.Sockets.Selector_Status; begin select accept Start (Listener : in Socket_Listener_Type_Access; Address : in GNAT.Sockets.Sock_Addr_Type) do Instance := Listener; GNAT.Sockets.Create_Socket (Server); GNAT.Sockets.Set_Socket_Option (Server, GNAT.Sockets.Socket_Level, (GNAT.Sockets.Reuse_Address, True)); GNAT.Sockets.Bind_Socket (Server, Address); GNAT.Sockets.Listen_Socket (Server); end Start; or terminate; end select; loop GNAT.Sockets.Accept_Socket (Server => Server, Socket => Client, Address => Peer, Timeout => GNAT.Sockets.Forever, Selector => Instance.Accept_Selector'Access, Status => Selector_Status); exit when Selector_Status = GNAT.Sockets.Aborted; if Selector_Status = GNAT.Sockets.Completed then Instance.Create_Target (Client => Client, Address => Peer); end if; end loop; GNAT.Sockets.Close_Socket (Server); declare Iter : Socket_Client_Lists.Cursor := Instance.Clients.First; begin while Socket_Client_Lists.Has_Element (Iter) loop GNAT.Sockets.Close_Socket (Socket_Client_Lists.Element (Iter).Client); Iter := Socket_Client_Lists.Next (Iter); end loop; end; end Socket_Listener_Task; task body Socket_Reader_Task is Instance : Socket_Reader_Type_Access; Socket : GNAT.Sockets.Socket_Type; begin select accept Start (Reader : in Socket_Reader_Type_Access; Client : in GNAT.Sockets.Socket_Type) do Instance := Reader; Socket := Client; end Start; or terminate; end select; Instance.Socket.Open (Socket); Instance.Read_All; GNAT.Sockets.Close_Socket (Socket); exception when E : others => Log.Error ("Exception", E, True); GNAT.Sockets.Close_Socket (Socket); end Socket_Reader_Task; procedure Close (Reader : in out Socket_Reader_Type) is begin Reader.Stop := True; end Close; end MAT.Readers.Streams.Sockets;
37.735849
93
0.577
dc63c676ea3e2bda978147eaf5930d2340986adc
336
ads
Ada
src/startup.ads
JCGobbi/Nucleo-STM32G474RE
8dc1c4948ffeb11841eed10f1c3708f00fa1d832
[ "BSD-3-Clause" ]
null
null
null
src/startup.ads
JCGobbi/Nucleo-STM32G474RE
8dc1c4948ffeb11841eed10f1c3708f00fa1d832
[ "BSD-3-Clause" ]
null
null
null
src/startup.ads
JCGobbi/Nucleo-STM32G474RE
8dc1c4948ffeb11841eed10f1c3708f00fa1d832
[ "BSD-3-Clause" ]
null
null
null
-- Initialization is executed only once at power-on and executes -- routines that set-up peripherals. package Startup is procedure Initialize; -- Initializes peripherals and configures them into a known state. procedure Start_Inverter; -- Start the inverter private Initialized : Boolean := False; end Startup;
19.764706
70
0.738095
dfed92d66927d4b98a4ce88b57611cb302d23cad
1,509
adb
Ada
3-mid/impact/source/2d/dynamics/contacts/impact-d2-contact-polygon.adb
charlie5/lace
e9b7dc751d500ff3f559617a6fc3089ace9dc134
[ "0BSD" ]
20
2015-11-04T09:23:59.000Z
2022-01-14T10:21:42.000Z
3-mid/impact/source/2d/dynamics/contacts/impact-d2-contact-polygon.adb
charlie5/lace
e9b7dc751d500ff3f559617a6fc3089ace9dc134
[ "0BSD" ]
2
2015-11-04T17:05:56.000Z
2015-12-08T03:16:13.000Z
3-mid/impact/source/2d/dynamics/contacts/impact-d2-contact-polygon.adb
charlie5/lace
e9b7dc751d500ff3f559617a6fc3089ace9dc134
[ "0BSD" ]
1
2015-12-07T12:53:52.000Z
2015-12-07T12:53:52.000Z
with impact.d2.Colliders, impact.d2.Shape.polygon; package body impact.d2.Contact.polygon is function to_b2CircleContact (fixtureA, fixtureB : access fixture.b2Fixture'Class) return b2PolygonContact is use type shape.Kind; new_Contact : Contact.polygon.b2PolygonContact; begin define (new_Contact, fixtureA, fixtureB); pragma Assert (new_Contact.m_fixtureA.GetKind = Shape.e_polygon); pragma Assert (new_Contact.m_fixtureB.GetKind = Shape.e_polygon); return new_Contact; end to_b2CircleContact; overriding procedure Evaluate (Self : in out b2PolygonContact; manifold : access collision.b2Manifold; xfA, xfB : in b2Transform) is begin colliders.b2CollidePolygons (manifold, Shape.polygon.view (Self.m_fixtureA.GetShape), xfA, Shape.polygon.view (Self.m_fixtureB.GetShape), xfB); end Evaluate; function Create (fixtureA, fixtureB : access Fixture.b2Fixture) return access b2Contact'Class is new_Contact : constant Contact.polygon.view := new Contact.polygon.b2PolygonContact; begin define (new_Contact.all, fixtureA, fixtureB); return new_Contact.all'Access; end Create; procedure Destroy (contact : in out impact.d2.Contact.view) is begin contact.destruct; free (contact); end Destroy; end impact.d2.Contact.polygon;
26.473684
108
0.655401
cb3e284d9b8bbc6d4717ddee02f63b4023ff914c
500
adb
Ada
memsim-master/src/parser-parse_eor.adb
strenkml/EE368
00f15bce9e65badddc613355643b1061fd4a8195
[ "MIT" ]
null
null
null
memsim-master/src/parser-parse_eor.adb
strenkml/EE368
00f15bce9e65badddc613355643b1061fd4a8195
[ "MIT" ]
null
null
null
memsim-master/src/parser-parse_eor.adb
strenkml/EE368
00f15bce9e65badddc613355643b1061fd4a8195
[ "MIT" ]
null
null
null
with Memory.Transform.EOR; use Memory.Transform.EOR; with Parser.Transform_Parser; separate (Parser) procedure Parse_EOR(parser : in out Parser_Type; result : out Memory_Pointer) is package EOR_Parser is new Transform_Parser( T_Type => Memory.Transform.EOR.EOR_Type, T_Pointer => Memory.Transform.EOR.EOR_Pointer, Create_Transform => Memory.Transform.EOR.Create_EOR ); begin EOR_Parser.Parse(parser, result); end Parse_EOR;
25
60
0.688
cb131c3caab27bd4755f829d7ab201b3fd546896
2,063
ads
Ada
Milesian_calendar.ads
Louis-Aime/Milesian_calendar_Ada
c03b46cd48b921a5f1fa4abc60607197cdce9f14
[ "MIT" ]
null
null
null
Milesian_calendar.ads
Louis-Aime/Milesian_calendar_Ada
c03b46cd48b921a5f1fa4abc60607197cdce9f14
[ "MIT" ]
null
null
null
Milesian_calendar.ads
Louis-Aime/Milesian_calendar_Ada
c03b46cd48b921a5f1fa4abc60607197cdce9f14
[ "MIT" ]
null
null
null
-- Package Milesian_calendar -- Definitions and basic operation on the Milesian calendar -- with respect to Julian Day defined in Julian package. ---------------------------------------------------------------------------- -- Copyright Miletus 2015 -- Permission is hereby granted, free of charge, to any person obtaining -- a copy of this software and associated documentation files (the -- "Software"), to deal in the Software without restriction, including -- without limitation the rights to use, copy, modify, merge, publish, -- distribute, sublicense, and/or sell copies of the Software, and to -- permit persons to whom the Software is furnished to do so, subject to -- the following conditions: -- 1. The above copyright notice and this permission notice shall be included -- in all copies or substantial portions of the Software. -- 2. Changes with respect to any former version shall be documented. -- -- The software is provided "as is", without warranty of any kind, -- express of implied, including but not limited to the warranties of -- merchantability, fitness for a particular purpose and noninfringement. -- In no event shall the authors of copyright holders be liable for any -- claim, damages or other liability, whether in an action of contract, -- tort or otherwise, arising from, out of or in connection with the software -- or the use or other dealings in the software. -- Inquiries: www.calendriermilesien.org ------------------------------------------------------------------------------- with Scaliger; use Scaliger; -- Defines Julian_Day and General date (i.e. Day 1..31, Month 1..12, Year). package Milesian_calendar is Type Milesian_date is new General_date; -- the function names are similar to names of conversion functions in php function JD_to_Milesian (jd : Julian_Day) return Milesian_date ; -- given an integer Julian day, compute the corresponding Milesian date function Milesian_to_JD (md : Milesian_date) return Julian_Day ; -- given a date in Milesian, compute the Julian day end Milesian_calendar;
50.317073
79
0.7111
50f9616746e4fbefc516505a00f46583340cec38
22
ads
Ada
tests/src/p2/p2.ads
persan/gprTools
0a67ea3179a1a5802ca45014ed00c044a945e5a1
[ "BSD-3-Clause" ]
2
2015-05-15T16:03:26.000Z
2018-12-26T19:32:41.000Z
tests/src/p2/p2.ads
persan/gprTools
0a67ea3179a1a5802ca45014ed00c044a945e5a1
[ "BSD-3-Clause" ]
null
null
null
tests/src/p2/p2.ads
persan/gprTools
0a67ea3179a1a5802ca45014ed00c044a945e5a1
[ "BSD-3-Clause" ]
null
null
null
package p2 is end p2;
7.333333
13
0.727273
500279360e3d065898e7273e891baa56ced2f646
4,054
ads
Ada
boards/MicroBit/src/microbit-time.ads
shakram02/Ada_Drivers_Library
a407ca7ddbc2d9756647016c2f8fd8ef24a239ff
[ "BSD-3-Clause" ]
192
2016-06-01T18:32:04.000Z
2022-03-26T22:52:31.000Z
boards/MicroBit/src/microbit-time.ads
shakram02/Ada_Drivers_Library
a407ca7ddbc2d9756647016c2f8fd8ef24a239ff
[ "BSD-3-Clause" ]
239
2016-05-26T20:02:01.000Z
2022-03-31T09:46:56.000Z
boards/MicroBit/src/microbit-time.ads
shakram02/Ada_Drivers_Library
a407ca7ddbc2d9756647016c2f8fd8ef24a239ff
[ "BSD-3-Clause" ]
142
2016-06-05T08:12:20.000Z
2022-03-24T17:37:17.000Z
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2016, AdaCore -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- 3. Neither the name of the copyright holder nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ with HAL; use HAL; with HAL.Time; package MicroBit.Time is subtype Time_Ms is UInt64; function Clock return Time_Ms; procedure Delay_Ms (Milliseconds : UInt64); procedure Sleep (Milliseconds : UInt64) renames Delay_Ms; function Tick_Period return Time_Ms; type Tick_Callback is access procedure; function Tick_Subscriber (Callback : not null Tick_Callback) return Boolean; -- Return True if callback is already a tick event subscriber function Tick_Subscribe (Callback : not null Tick_Callback) return Boolean with Pre => not Tick_Subscriber (Callback), Post => (if Tick_Subscribe'Result then Tick_Subscriber (Callback)); -- Subscribe a callback to the tick event. The function return True on -- success, False if there's no more room for subscribers. function Tick_Unsubscribe (Callback : not null Tick_Callback) return Boolean with Pre => Tick_Subscriber (Callback), Post => (if Tick_Unsubscribe'Result then not Tick_Subscriber (Callback)); -- Unsubscribe a callback to the tick event. The function return True on -- success, False if the callback was not a subscriber. function HAL_Delay return not null HAL.Time.Any_Delays; private type MB_Delays is new HAL.Time.Delays with null record; overriding procedure Delay_Microseconds (This : in out MB_Delays; Us : Integer); overriding procedure Delay_Milliseconds (This : in out MB_Delays; Ms : Integer); overriding procedure Delay_Seconds (This : in out MB_Delays; S : Integer); end MicroBit.Time;
49.439024
83
0.578441
5094aad89881c309ebb8ad45d7be19c970722881
3,240
ads
Ada
line_collision/example.ads
Lucretia/old_nehe_ada95
d0378c3bfce202eb01bf00b57c128735dbe8582d
[ "BSD-3-Clause" ]
null
null
null
line_collision/example.ads
Lucretia/old_nehe_ada95
d0378c3bfce202eb01bf00b57c128735dbe8582d
[ "BSD-3-Clause" ]
null
null
null
line_collision/example.ads
Lucretia/old_nehe_ada95
d0378c3bfce202eb01bf00b57c128735dbe8582d
[ "BSD-3-Clause" ]
null
null
null
--------------------------------------------------------------------------------- -- Copyright 2004-2005 © Luke A. Guest -- -- This code is to be used for tutorial purposes only. -- You may not redistribute this code in any form without my express permission. --------------------------------------------------------------------------------- with Interfaces.C; use Interfaces.C; with SDL.Types; use SDL.Types; with SDL.Keysym; with SDL.Video; with SDL.Timer; with Ada.Strings.Unbounded; use Ada.Strings.Unbounded; with GL; with GL.EXT; with Vector3; with Line_Segment; with Plane; use type GL.GLfloat; package Example is procedure PrintGLInfo; procedure PrintUsage; procedure CalculateFPS; function Initialise return Boolean; procedure Uninitialise; procedure Update;--(Ticks : in Integer); procedure Draw; function GetTitle return String; function GetWidth return Integer; function GetHeight return Integer; function GetBitsPerPixel return Integer; procedure SetLastTickCount(Ticks : in Integer); procedure SetSurface(Surface : in SDL.Video.Surface_Ptr); function GetSurface return SDL.Video.Surface_Ptr; procedure SetKey(Key : in SDL.Keysym.Key; Down : in Boolean); procedure SetActive(Active : in Boolean); function IsActive return Boolean; procedure SetQuit(Quit : in Boolean); function Quit return Boolean; private type KeysArray is array(SDL.Keysym.K_FIRST .. SDL.Keysym.K_LAST) of Boolean; GLVendor : Unbounded_String; GLVersion : Unbounded_String; GLRenderer : Unbounded_String; GLExtensions : Unbounded_String; GLUVersion : Unbounded_String; GLUExtensions : Unbounded_String; Title : String := "Line Collision Demo in Ada/SDL"; Width : Integer := 640; Height : Integer := 480; BitsPerPixel : Integer := 16; IsFullScreen : Boolean := False; Keys : KeysArray := (others => False); IsVisible : Boolean := False; LastTickCount : Integer := 0; ScreenSurface : SDL.Video.Surface_Ptr := null; AppActive : Boolean := True; AppQuit : Boolean := False; CameraXSpeed : GL.GLfloat := 0.0; CameraYSpeed : GL.GLfloat := 0.0; Zoom : GL.GLfloat := -6.0; ShiftPressed : Boolean := False; CtrlPressed : Boolean := False; NPressed : Boolean := False; MPressed : Boolean := False; OPressed : Boolean := False; KPressed : Boolean := False; DPressed : Boolean := False; LastElapsedTime : Float := 0.0; FrameCount : Integer := 0; FPS : Float := 0.0; TestPlane : Plane.Object := Plane.CreateX; TestLine : Line_Segment.Object := Line_Segment.Create(Vector3.Object'(-1.0, 0.0, 0.0), Vector3.Object'(1.0, 0.0, 0.0)); LineDelta : Float := 0.5; LineSmallDelta : Float := 0.1; end Example;
38.117647
130
0.559568
234c7119a51dbb44451718d17d752ce87050c16e
7,418
ada
Ada
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/cd/cd2a23e.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/cd/cd2a23e.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/cd/cd2a23e.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
-- CD2A23E.ADA -- Grant of Unlimited Rights -- -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687, -- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained -- unlimited rights in the software and documentation contained herein. -- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making -- this public release, the Government intends to confer upon all -- recipients unlimited rights equal to those held by the Government. -- These rights include rights to use, duplicate, release or disclose the -- released technical data and computer software in whole or in part, in -- any manner and for any purpose whatsoever, and to have or permit others -- to do so. -- -- DISCLAIMER -- -- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR -- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED -- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE -- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE -- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A -- PARTICULAR PURPOSE OF SAID MATERIAL. --* -- OBJECTIVE: -- CHECK THAT WHEN A SIZE SPECIFICATION AND AN ENUMERATION -- REPRESENTATION CLAUSE ARE GIVEN FOR AN ENUMERATION TYPE, -- THEN SUCH A TYPE CAN BE PASSED AS AN ACTUAL PARAMETER TO A -- GENERIC PROCEDURE. -- HISTORY: -- JET 08/18/87 CREATED ORIGINAL TEST. -- DHH 04/18/89 CHANGED EXTENSION FROM '.DEP' TO '.ADA', CHANGED -- OPERATORS ON 'SIZE TESTS, AND ADDED CHECK ON -- REPRESENTATION CLAUSE. -- BCB 03/05/90 ADDED CALL TO LENGTH_CHECK TO VERIFY THAT THE SIZE -- SPECIFICATION IS OBEYED. -- LDC 10/03/90 ADDED EXCEPTION HANDER FOR CHECK OF 'SUCC, 'PRED, -- ADDED CASES FOR >=, /=, ASSIGNMENT, QUALIFICATION, -- AND EXPLICIT CONVERSION. -- WMC 03/27/92 ELIMINATED TEST REDUNDANCIES. WITH REPORT; USE REPORT; WITH LENGTH_CHECK; -- CONTAINS A CALL TO 'FAILED'. PROCEDURE CD2A23E IS TYPE BASIC_ENUM IS (ZERO, ONE, TWO); BASIC_SIZE : CONSTANT := 8; FOR BASIC_ENUM USE (ZERO => 3, ONE => 4, TWO => 5); FOR BASIC_ENUM'SIZE USE BASIC_SIZE; BEGIN TEST ("CD2A23E", "CHECK THAT WHEN A SIZE SPECIFICATION AND AN " & "ENUMERATION REPRESENTATION CLAUSE ARE " & "GIVEN FOR AN ENUMERATION TYPE, " & "THEN SUCH A TYPE CAN BE " & "PASSED AS AN ACTUAL PARAMETER TO A GENERIC " & "PROCEDURE"); DECLARE -- TYPE DECLARATION GIVEN WITHIN GENERIC PROCEDURE. GENERIC TYPE GPARM IS (<>); PROCEDURE GENPROC (C0, C1, C2: GPARM); PROCEDURE GENPROC (C0, C1, C2: GPARM) IS SUBTYPE CHECK_TYPE IS GPARM; C3 : GPARM; CHECKVAR : CHECK_TYPE; FUNCTION IDENT (CH : CHECK_TYPE) RETURN CHECK_TYPE IS BEGIN IF EQUAL (3, 3) THEN RETURN CH; ELSE RETURN C1; END IF; END IDENT; PROCEDURE CHECK_1 IS NEW LENGTH_CHECK (CHECK_TYPE); BEGIN -- GENPROC. CHECK_1 (C0, BASIC_SIZE, "CHECK_TYPE"); CHECKVAR := IDENT (C0); CHECK_1 (CHECKVAR, CHECK_TYPE'SIZE, "CHECK_TYPE"); IF CHECK_TYPE'SIZE /= IDENT_INT (BASIC_SIZE) THEN FAILED ("INCORRECT VALUE FOR CHECK_TYPE'SIZE"); END IF; IF C0'SIZE < IDENT_INT (BASIC_SIZE) THEN FAILED ("INCORRECT VALUE FOR C0'SIZE"); END IF; IF NOT ((IDENT(C0) < IDENT (C1)) AND (IDENT(C2) > IDENT (C1)) AND (IDENT(C1) <= IDENT (C1)) AND (IDENT(C2) = IDENT (C2))) THEN FAILED ("INCORRECT RESULTS FOR RELATIONAL " & "OPERATORS"); END IF; IF CHECK_TYPE'FIRST /= IDENT (C0) THEN FAILED ("INCORRECT VALUE FOR CHECK_TYPE'FIRST"); END IF; IF CHECK_TYPE'POS (C0) /= IDENT_INT (0) OR CHECK_TYPE'POS (C1) /= IDENT_INT (1) OR CHECK_TYPE'POS (C2) /= IDENT_INT (2) THEN FAILED ("INCORRECT VALUE FOR CHECK_TYPE'POS"); END IF; IF CHECK_TYPE'SUCC (C0) /= IDENT (C1) OR CHECK_TYPE'SUCC (C1) /= IDENT (C2) THEN FAILED ("INCORRECT VALUE FOR CHECK_TYPE'SUCC"); END IF; BEGIN IF CHECK_TYPE'SUCC (IDENT(C2)) /= IDENT (C1) THEN FAILED ("CONSTRAINT ERROR NOT RAISED FOR " & "CHECK_TYPE'SUCC"); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => IF 3 /= IDENT_INT(3) THEN COMMENT ("DON'T OPTIMIZE EXCEPTION -1"); END IF; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED FOR " & "CHECK_TYPE'SUCC"); END; BEGIN IF CHECK_TYPE'PRED(IDENT(C0)) /= IDENT (C1) THEN FAILED ("CONSTRAINT ERROR NOT RAISED FOR " & "CHECK_TYPE'PRED"); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => IF 3 /= IDENT_INT(3) THEN COMMENT ("DON'T OPTIMIZE EXCEPTION -2"); END IF; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED FOR " & "CHECK_TYPE'PRED"); END; IF CHECK_TYPE'PRED (C1) /= IDENT (C0) OR CHECK_TYPE'PRED (C2) /= IDENT (C1) THEN FAILED ("INCORRECT VALUE FOR CHECK_TYPE'PRED"); END IF; IF CHECK_TYPE'IMAGE (C0) /= IDENT_STR ("ZERO") OR CHECK_TYPE'IMAGE (C1) /= IDENT_STR ("ONE") OR CHECK_TYPE'IMAGE (C2) /= IDENT_STR ("TWO") THEN FAILED ("INCORRECT VALUE FOR CHECK_TYPE'IMAGE"); END IF; CHECKVAR := CHECK_TYPE'VALUE ("ONE"); C3 := GPARM(CHECKVAR); IF C3 /= IDENT(C1) THEN FAILED ("INCORRECT VALUE FOR CONVERSION"); END IF; CHECK_1 (IDENT(C0), BASIC_SIZE, "CHECK_ENUM"); IF CHECK_TYPE'(C2) /= IDENT(C2) THEN FAILED ("INCORRECT VALUE FOR QUALIFICATION"); END IF; C3 := CHECK_TYPE'VALUE ("TWO"); IF C3 /= IDENT(C2) THEN FAILED ("INCORRECT VALUE FOR ASSIGNMENT"); END IF; END GENPROC; PROCEDURE NEWPROC IS NEW GENPROC (BASIC_ENUM); BEGIN NEWPROC (ZERO, ONE, TWO); END; RESULT; END CD2A23E;
37.276382
79
0.502561
1067b86c7d241681909f6d95afbec66c4d8672f8
1,410
adb
Ada
Read Only/gdb-6.8/gdb/testsuite/gdb.ada/fixed_points/fixed_points.adb
samyvic/OS-Project
1622bc1641876584964effd91d65ef02e92728e1
[ "Apache-2.0" ]
null
null
null
Read Only/gdb-6.8/gdb/testsuite/gdb.ada/fixed_points/fixed_points.adb
samyvic/OS-Project
1622bc1641876584964effd91d65ef02e92728e1
[ "Apache-2.0" ]
null
null
null
Read Only/gdb-6.8/gdb/testsuite/gdb.ada/fixed_points/fixed_points.adb
samyvic/OS-Project
1622bc1641876584964effd91d65ef02e92728e1
[ "Apache-2.0" ]
null
null
null
-- Copyright 2004, 2007, 2008 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. with System; procedure Fixed_Points is type Base_Fixed_Point_Type is delta 1.0 / 16.0 range (System.Min_Int / 2) * 1.0 / 16.0 .. (System.Max_Int / 2) * 1.0 / 16.0; subtype Fixed_Point_Subtype is Base_Fixed_Point_Type range -50.0 .. 50.0; type New_Fixed_Point_Type is new Base_Fixed_Point_Type range -50.0 .. 50.0; Base_Object : Base_Fixed_Point_Type := -50.0; Subtype_Object : Fixed_Point_Subtype := -50.0; New_Type_Object : New_Fixed_Point_Type := -50.0; begin Base_Object := 1.0/16.0; -- Set breakpoint here Subtype_Object := 1.0/16.0; New_Type_Object := 1.0/16.0; end Fixed_Points;
36.153846
73
0.685816
fbc039ccfac2ca43a1c794ad015d49e7b50d6a69
5,042
ads
Ada
demo/adainclude/s-bbpara.ads
e3l6/SSMDev
2929757aab3842aefd84debb2d7c3e8b28c2b340
[ "MIT" ]
null
null
null
demo/adainclude/s-bbpara.ads
e3l6/SSMDev
2929757aab3842aefd84debb2d7c3e8b28c2b340
[ "MIT" ]
null
null
null
demo/adainclude/s-bbpara.ads
e3l6/SSMDev
2929757aab3842aefd84debb2d7c3e8b28c2b340
[ "MIT" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . B B . P A R A M E T E R S -- -- -- -- S p e c -- -- -- -- Copyright (C) 1999-2002 Universidad Politecnica de Madrid -- -- Copyright (C) 2003-2005 The European Space Agency -- -- Copyright (C) 2003-2013, AdaCore -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- -- -- -- -- -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- -- The port of GNARL to bare board targets was initially developed by the -- -- Real-Time Systems Group at the Technical University of Madrid. -- -- -- ------------------------------------------------------------------------------ -- This package defines basic parameters used by the low level tasking system -- This is the TMS570 (ARMv7) version of this package pragma Restrictions (No_Elaboration_Code); package System.BB.Parameters is pragma Pure; Clock_Frequency : constant := 168_000_000; ---------------- -- Interrupts -- ---------------- -- These definitions are in this package in order to isolate target -- dependencies. Number_Of_Interrupt_ID : constant := 85; -- Number of interrupts (for both the interrupt controller and the -- Sys_Tick_Trap). This static constant is used to declare a type, and -- the handler table. Trap_Vectors : constant := 16; -- While on this target there is little difference between interrupts -- and traps, we consider the following traps: -- -- Name Nr -- -- Reset_Vector 1 -- NMI_Vector 2 -- Hard_Fault_Vector 3 -- Mem_Manage_Vector 4 -- Bus_Fault_Vector 5 -- Usage_Fault_Vector 6 -- SVC_Vector 10 -- Debug_Mon_Vector 11 -- Pend_SV_Vector 13 -- Sys_Tick_Vector 14 -- Interrupt_Request_Vector 15 -- -- These trap vectors correspond to different low-level trap handlers in -- the run time. Note that as all interrupt requests (IRQs) will use the -- same interrupt wrapper, there is no benefit to consider using separate -- vectors for each. Context_Buffer_Capacity : constant := 10; -- The context buffer contains registers r4 .. r11 and the SP_process -- (PSP). The size is rounded up to an even number for alignment ------------ -- Stacks -- ------------ Interrupt_Stack_Size : constant := 2 * 1024; -- Size of each of the interrupt stacks in bytes. While there nominally is -- an interrupt stack per interrupt priority, the entire space is used as a -- single stack. ---------- -- CPUS -- ---------- Max_Number_Of_CPUs : constant := 1; -- Maximum number of CPUs Multiprocessor : constant Boolean := Max_Number_Of_CPUs /= 1; -- Are we on a multiprocessor board? end System.BB.Parameters;
47.121495
79
0.451012
0b6406728178aae1f80abef86f4917608331bde5
214,839
adb
Ada
submissions/M2/Design_Analysis/lab1/dct_prj/solution6/.autopilot/db/read_data.adb
maanjum95/SynthesisDigitalSystems_Lab
afc942decf7595eb1557ff78074693de2eea1780
[ "MIT" ]
null
null
null
submissions/M2/Design_Analysis/lab1/dct_prj/solution6/.autopilot/db/read_data.adb
maanjum95/SynthesisDigitalSystems_Lab
afc942decf7595eb1557ff78074693de2eea1780
[ "MIT" ]
null
null
null
submissions/M2/Design_Analysis/lab1/dct_prj/solution6/.autopilot/db/read_data.adb
maanjum95/SynthesisDigitalSystems_Lab
afc942decf7595eb1557ff78074693de2eea1780
[ "MIT" ]
null
null
null
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="15"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName/> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>read_data</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>9</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>input_r</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>input</originalName> <rtlName/> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>0</direction> <if_type>1</if_type> <array_size>64</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>buf_0</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>buf[0]</originalName> <rtlName/> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>1</direction> <if_type>1</if_type> <array_size>8</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_3"> <Value> <Obj> <type>1</type> <id>3</id> <name>buf_1</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>buf[1]</originalName> <rtlName/> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>1</direction> <if_type>1</if_type> <array_size>8</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_4"> <Value> <Obj> <type>1</type> <id>4</id> <name>buf_2</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>buf[2]</originalName> <rtlName/> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>1</direction> <if_type>1</if_type> <array_size>8</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_5"> <Value> <Obj> <type>1</type> <id>5</id> <name>buf_3</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>buf[3]</originalName> <rtlName/> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>1</direction> <if_type>1</if_type> <array_size>8</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_6"> <Value> <Obj> <type>1</type> <id>6</id> <name>buf_4</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>buf[4]</originalName> <rtlName/> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>1</direction> <if_type>1</if_type> <array_size>8</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_7"> <Value> <Obj> <type>1</type> <id>7</id> <name>buf_5</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>buf[5]</originalName> <rtlName/> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>1</direction> <if_type>1</if_type> <array_size>8</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_8"> <Value> <Obj> <type>1</type> <id>8</id> <name>buf_6</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>buf[6]</originalName> <rtlName/> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>1</direction> <if_type>1</if_type> <array_size>8</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_9"> <Value> <Obj> <type>1</type> <id>9</id> <name>buf_7</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>buf[7]</originalName> <rtlName/> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>1</direction> <if_type>1</if_type> <array_size>8</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>48</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_10"> <Value> <Obj> <type>0</type> <id>10</id> <name>_ln103</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second class_id="11" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="12" tracking_level="0" version="0"> <first class_id="13" tracking_level="0" version="0"> <first>dct.cpp</first> <second>read_data</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>77</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.73</m_delay> <m_topoIndex>1</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>12</id> <name>indvar_flatten</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>79</item> <item>80</item> <item>81</item> <item>82</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>2</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>13</id> <name>r_0</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>84</item> <item>85</item> <item>86</item> <item>87</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>3</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>14</id> <name>c_0</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>c</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>88</item> <item>89</item> <item>90</item> <item>91</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>4</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>15</id> <name>icmp_ln103</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>icmp_ln103_fu_230_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>92</item> <item>94</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.71</m_delay> <m_topoIndex>5</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>16</id> <name>add_ln103</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>add_ln103_fu_236_p2</rtlName> <coreName/> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>95</item> <item>97</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.85</m_delay> <m_topoIndex>6</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>17</id> <name>_ln103</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>98</item> <item>99</item> <item>100</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>7</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>19</id> <name>r</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName>r</originalName> <rtlName>r_fu_242_p2</rtlName> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>105</item> <item>106</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.80</m_delay> <m_topoIndex>8</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>22</id> <name>icmp_ln105</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>105</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>105</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>icmp_ln105_fu_248_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>107</item> <item>109</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.72</m_delay> <m_topoIndex>9</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>23</id> <name>select_ln103</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>select_ln103_fu_254_p3</rtlName> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>110</item> <item>111</item> <item>112</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.18</m_delay> <m_topoIndex>10</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>24</id> <name>select_ln103_1</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>select_ln103_1_fu_262_p3</rtlName> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>113</item> <item>114</item> <item>115</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.18</m_delay> <m_topoIndex>11</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>25</id> <name>trunc_ln103</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>trunc_ln103_fu_270_p1</rtlName> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>116</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>12</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>26</id> <name>shl_ln106_mid2</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>shl_ln106_mid2_fu_274_p3</rtlName> <coreName/> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>118</item> <item>119</item> <item>121</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>13</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>27</id> <name>zext_ln103</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln103_fu_307_p1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>122</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>22</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>28</id> <name>zext_ln105</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>105</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>105</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln105_fu_282_p1</rtlName> <coreName/> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>123</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>14</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>32</id> <name>add_ln106</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>add_ln106_fu_286_p2</rtlName> <coreName/> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>124</item> <item>125</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.84</m_delay> <m_topoIndex>15</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>33</id> <name>zext_ln106</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln106_fu_292_p1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>126</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>16</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>34</id> <name>input_addr</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>127</item> <item>129</item> <item>130</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>17</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>35</id> <name>input_load</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>131</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.29</m_delay> <m_topoIndex>18</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>36</id> <name>trunc_ln106</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>trunc_ln106_fu_297_p1</rtlName> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>132</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>19</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>37</id> <name>_ln106</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>16</count> <item_version>0</item_version> <item>133</item> <item>134</item> <item>135</item> <item>136</item> <item>138</item> <item>139</item> <item>141</item> <item>142</item> <item>144</item> <item>145</item> <item>147</item> <item>148</item> <item>150</item> <item>151</item> <item>153</item> <item>154</item> </oprand_edges> <opcode>switch</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.72</m_delay> <m_topoIndex>20</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>39</id> <name>buf_6_addr</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>191</item> <item>192</item> <item>193</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>23</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>40</id> <name>buf_6_addr_write_ln106</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>194</item> <item>195</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.73</m_delay> <m_topoIndex>24</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>41</id> <name>_ln106</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>196</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>25</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>43</id> <name>buf_5_addr</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>185</item> <item>186</item> <item>187</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>26</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>44</id> <name>buf_5_addr_write_ln106</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>188</item> <item>189</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.73</m_delay> <m_topoIndex>27</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>45</id> <name>_ln106</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>190</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>28</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>47</id> <name>buf_4_addr</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>179</item> <item>180</item> <item>181</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>29</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>48</id> <name>buf_4_addr_write_ln106</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>182</item> <item>183</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.73</m_delay> <m_topoIndex>30</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>49</id> <name>_ln106</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>184</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>31</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>51</id> <name>buf_3_addr</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>173</item> <item>174</item> <item>175</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>32</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>52</id> <name>buf_3_addr_write_ln106</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>176</item> <item>177</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.73</m_delay> <m_topoIndex>33</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>53</id> <name>_ln106</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>178</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>34</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>55</id> <name>buf_2_addr</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>167</item> <item>168</item> <item>169</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>35</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>56</id> <name>buf_2_addr_write_ln106</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>170</item> <item>171</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.73</m_delay> <m_topoIndex>36</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>57</id> <name>_ln106</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>172</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>37</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>59</id> <name>buf_1_addr</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>161</item> <item>162</item> <item>163</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>38</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>60</id> <name>buf_1_addr_write_ln106</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>164</item> <item>165</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.73</m_delay> <m_topoIndex>39</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>61</id> <name>_ln106</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>166</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>40</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>63</id> <name>buf_0_addr</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>155</item> <item>156</item> <item>157</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>41</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>64</id> <name>buf_0_addr_write_ln106</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>158</item> <item>159</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.73</m_delay> <m_topoIndex>42</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>65</id> <name>_ln106</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>160</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>43</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>67</id> <name>buf_7_addr</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>197</item> <item>198</item> <item>199</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>44</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_53"> <Value> <Obj> <type>0</type> <id>68</id> <name>buf_7_addr_write_ln106</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>200</item> <item>201</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.73</m_delay> <m_topoIndex>45</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_54"> <Value> <Obj> <type>0</type> <id>69</id> <name>_ln106</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>202</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>46</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_55"> <Value> <Obj> <type>0</type> <id>72</id> <name>c</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>105</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>105</second> </item> </second> </item> </inlineStackInfo> <originalName>c</originalName> <rtlName>c_fu_301_p2</rtlName> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>101</item> <item>103</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.80</m_delay> <m_topoIndex>21</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_56"> <Value> <Obj> <type>0</type> <id>73</id> <name>_ln0</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>104</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>47</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_57"> <Value> <Obj> <type>0</type> <id>75</id> <name>_ln108</name> <fileName>dct.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>108</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>108</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>48</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>14</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_58"> <Value> <Obj> <type>2</type> <id>78</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>7</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_59"> <Value> <Obj> <type>2</type> <id>83</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_60"> <Value> <Obj> <type>2</type> <id>93</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>7</bitwidth> </Value> <const_type>0</const_type> <content>64</content> </item> <item class_id_reference="16" object_id="_61"> <Value> <Obj> <type>2</type> <id>96</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>7</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_62"> <Value> <Obj> <type>2</type> <id>102</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_63"> <Value> <Obj> <type>2</type> <id>108</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>8</content> </item> <item class_id_reference="16" object_id="_64"> <Value> <Obj> <type>2</type> <id>120</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_65"> <Value> <Obj> <type>2</type> <id>128</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_66"> <Value> <Obj> <type>2</type> <id>137</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_67"> <Value> <Obj> <type>2</type> <id>140</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>2</content> </item> <item class_id_reference="16" object_id="_68"> <Value> <Obj> <type>2</type> <id>143</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>3</content> </item> <item class_id_reference="16" object_id="_69"> <Value> <Obj> <type>2</type> <id>146</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>4</content> </item> <item class_id_reference="16" object_id="_70"> <Value> <Obj> <type>2</type> <id>149</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>5</content> </item> <item class_id_reference="16" object_id="_71"> <Value> <Obj> <type>2</type> <id>152</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>6</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>13</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_72"> <Obj> <type>3</type> <id>11</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>10</item> </node_objs> </item> <item class_id_reference="18" object_id="_73"> <Obj> <type>3</type> <id>18</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>6</count> <item_version>0</item_version> <item>12</item> <item>13</item> <item>14</item> <item>15</item> <item>16</item> <item>17</item> </node_objs> </item> <item class_id_reference="18" object_id="_74"> <Obj> <type>3</type> <id>38</id> <name>RD_Loop_Col_begin</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>14</count> <item_version>0</item_version> <item>19</item> <item>22</item> <item>23</item> <item>24</item> <item>25</item> <item>26</item> <item>27</item> <item>28</item> <item>32</item> <item>33</item> <item>34</item> <item>35</item> <item>36</item> <item>37</item> </node_objs> </item> <item class_id_reference="18" object_id="_75"> <Obj> <type>3</type> <id>42</id> <name>branch6</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>39</item> <item>40</item> <item>41</item> </node_objs> </item> <item class_id_reference="18" object_id="_76"> <Obj> <type>3</type> <id>46</id> <name>branch5</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>43</item> <item>44</item> <item>45</item> </node_objs> </item> <item class_id_reference="18" object_id="_77"> <Obj> <type>3</type> <id>50</id> <name>branch4</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>47</item> <item>48</item> <item>49</item> </node_objs> </item> <item class_id_reference="18" object_id="_78"> <Obj> <type>3</type> <id>54</id> <name>branch3</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>51</item> <item>52</item> <item>53</item> </node_objs> </item> <item class_id_reference="18" object_id="_79"> <Obj> <type>3</type> <id>58</id> <name>branch2</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>55</item> <item>56</item> <item>57</item> </node_objs> </item> <item class_id_reference="18" object_id="_80"> <Obj> <type>3</type> <id>62</id> <name>branch1</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>59</item> <item>60</item> <item>61</item> </node_objs> </item> <item class_id_reference="18" object_id="_81"> <Obj> <type>3</type> <id>66</id> <name>branch0</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>63</item> <item>64</item> <item>65</item> </node_objs> </item> <item class_id_reference="18" object_id="_82"> <Obj> <type>3</type> <id>70</id> <name>branch7</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>67</item> <item>68</item> <item>69</item> </node_objs> </item> <item class_id_reference="18" object_id="_83"> <Obj> <type>3</type> <id>74</id> <name>RD_Loop_Col_end</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>72</item> <item>73</item> </node_objs> </item> <item class_id_reference="18" object_id="_84"> <Obj> <type>3</type> <id>76</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>75</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>130</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_85"> <id>77</id> <edge_type>2</edge_type> <source_obj>18</source_obj> <sink_obj>10</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_86"> <id>79</id> <edge_type>1</edge_type> <source_obj>78</source_obj> <sink_obj>12</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_87"> <id>80</id> <edge_type>2</edge_type> <source_obj>11</source_obj> <sink_obj>12</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_88"> <id>81</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>12</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_89"> <id>82</id> <edge_type>2</edge_type> <source_obj>74</source_obj> <sink_obj>12</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_90"> <id>84</id> <edge_type>1</edge_type> <source_obj>83</source_obj> <sink_obj>13</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_91"> <id>85</id> <edge_type>2</edge_type> <source_obj>11</source_obj> <sink_obj>13</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_92"> <id>86</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>13</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_93"> <id>87</id> <edge_type>2</edge_type> <source_obj>74</source_obj> <sink_obj>13</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_94"> <id>88</id> <edge_type>1</edge_type> <source_obj>83</source_obj> <sink_obj>14</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_95"> <id>89</id> <edge_type>2</edge_type> <source_obj>11</source_obj> <sink_obj>14</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_96"> <id>90</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>14</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_97"> <id>91</id> <edge_type>2</edge_type> <source_obj>74</source_obj> <sink_obj>14</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_98"> <id>92</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>15</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_99"> <id>94</id> <edge_type>1</edge_type> <source_obj>93</source_obj> <sink_obj>15</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_100"> <id>95</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>16</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_101"> <id>97</id> <edge_type>1</edge_type> <source_obj>96</source_obj> <sink_obj>16</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_102"> <id>98</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>17</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_103"> <id>99</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>17</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_104"> <id>100</id> <edge_type>2</edge_type> <source_obj>76</source_obj> <sink_obj>17</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_105"> <id>101</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_106"> <id>103</id> <edge_type>1</edge_type> <source_obj>102</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_107"> <id>104</id> <edge_type>2</edge_type> <source_obj>18</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_108"> <id>105</id> <edge_type>1</edge_type> <source_obj>102</source_obj> <sink_obj>19</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_109"> <id>106</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>19</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_110"> <id>107</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_111"> <id>109</id> <edge_type>1</edge_type> <source_obj>108</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_112"> <id>110</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_113"> <id>111</id> <edge_type>1</edge_type> <source_obj>83</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_114"> <id>112</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_115"> <id>113</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_116"> <id>114</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_117"> <id>115</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_118"> <id>116</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_119"> <id>119</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_120"> <id>121</id> <edge_type>1</edge_type> <source_obj>120</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_121"> <id>122</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_122"> <id>123</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_123"> <id>124</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>32</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_124"> <id>125</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>32</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_125"> <id>126</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_126"> <id>127</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_127"> <id>129</id> <edge_type>1</edge_type> <source_obj>128</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_128"> <id>130</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_129"> <id>131</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_130"> <id>132</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_131"> <id>133</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_132"> <id>134</id> <edge_type>2</edge_type> <source_obj>70</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_133"> <id>135</id> <edge_type>1</edge_type> <source_obj>120</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_134"> <id>136</id> <edge_type>2</edge_type> <source_obj>66</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_135"> <id>138</id> <edge_type>1</edge_type> <source_obj>137</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_136"> <id>139</id> <edge_type>2</edge_type> <source_obj>62</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_137"> <id>141</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_138"> <id>142</id> <edge_type>2</edge_type> <source_obj>58</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_139"> <id>144</id> <edge_type>1</edge_type> <source_obj>143</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_140"> <id>145</id> <edge_type>2</edge_type> <source_obj>54</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_141"> <id>147</id> <edge_type>1</edge_type> <source_obj>146</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_142"> <id>148</id> <edge_type>2</edge_type> <source_obj>50</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_143"> <id>150</id> <edge_type>1</edge_type> <source_obj>149</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_144"> <id>151</id> <edge_type>2</edge_type> <source_obj>46</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_145"> <id>153</id> <edge_type>1</edge_type> <source_obj>152</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_146"> <id>154</id> <edge_type>2</edge_type> <source_obj>42</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_147"> <id>155</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_148"> <id>156</id> <edge_type>1</edge_type> <source_obj>128</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_149"> <id>157</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_150"> <id>158</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_151"> <id>159</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_152"> <id>160</id> <edge_type>2</edge_type> <source_obj>74</source_obj> <sink_obj>65</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_153"> <id>161</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_154"> <id>162</id> <edge_type>1</edge_type> <source_obj>128</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_155"> <id>163</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_156"> <id>164</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_157"> <id>165</id> <edge_type>1</edge_type> <source_obj>59</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_158"> <id>166</id> <edge_type>2</edge_type> <source_obj>74</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_159"> <id>167</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_160"> <id>168</id> <edge_type>1</edge_type> <source_obj>128</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_161"> <id>169</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_162"> <id>170</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_163"> <id>171</id> <edge_type>1</edge_type> <source_obj>55</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_164"> <id>172</id> <edge_type>2</edge_type> <source_obj>74</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_165"> <id>173</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_166"> <id>174</id> <edge_type>1</edge_type> <source_obj>128</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_167"> <id>175</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_168"> <id>176</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_169"> <id>177</id> <edge_type>1</edge_type> <source_obj>51</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_170"> <id>178</id> <edge_type>2</edge_type> <source_obj>74</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_171"> <id>179</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_172"> <id>180</id> <edge_type>1</edge_type> <source_obj>128</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_173"> <id>181</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_174"> <id>182</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_175"> <id>183</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_176"> <id>184</id> <edge_type>2</edge_type> <source_obj>74</source_obj> <sink_obj>49</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_177"> <id>185</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_178"> <id>186</id> <edge_type>1</edge_type> <source_obj>128</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_179"> <id>187</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_180"> <id>188</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_181"> <id>189</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_182"> <id>190</id> <edge_type>2</edge_type> <source_obj>74</source_obj> <sink_obj>45</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_183"> <id>191</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_184"> <id>192</id> <edge_type>1</edge_type> <source_obj>128</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_185"> <id>193</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_186"> <id>194</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_187"> <id>195</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_188"> <id>196</id> <edge_type>2</edge_type> <source_obj>74</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_189"> <id>197</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>67</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_190"> <id>198</id> <edge_type>1</edge_type> <source_obj>128</source_obj> <sink_obj>67</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_191"> <id>199</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>67</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_192"> <id>200</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_193"> <id>201</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_194"> <id>202</id> <edge_type>2</edge_type> <source_obj>74</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_195"> <id>234</id> <edge_type>2</edge_type> <source_obj>11</source_obj> <sink_obj>18</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_196"> <id>235</id> <edge_type>2</edge_type> <source_obj>18</source_obj> <sink_obj>76</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_197"> <id>236</id> <edge_type>2</edge_type> <source_obj>18</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_198"> <id>237</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>70</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_199"> <id>238</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_200"> <id>239</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>62</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_201"> <id>240</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_202"> <id>241</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_203"> <id>242</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_204"> <id>243</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>46</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_205"> <id>244</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_206"> <id>245</id> <edge_type>2</edge_type> <source_obj>42</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_207"> <id>246</id> <edge_type>2</edge_type> <source_obj>46</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_208"> <id>247</id> <edge_type>2</edge_type> <source_obj>50</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_209"> <id>248</id> <edge_type>2</edge_type> <source_obj>54</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_210"> <id>249</id> <edge_type>2</edge_type> <source_obj>58</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_211"> <id>250</id> <edge_type>2</edge_type> <source_obj>62</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_212"> <id>251</id> <edge_type>2</edge_type> <source_obj>66</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_213"> <id>252</id> <edge_type>2</edge_type> <source_obj>70</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_214"> <id>253</id> <edge_type>2</edge_type> <source_obj>74</source_obj> <sink_obj>18</sink_obj> <is_back_edge>1</is_back_edge> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_215"> <mId>1</mId> <mTag>read_data</mTag> <mType>0</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>2</item> <item>3</item> <item>4</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>66</mMinLatency> <mMaxLatency>66</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_216"> <mId>2</mId> <mTag>Entry</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>11</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_217"> <mId>3</mId> <mTag>RD_Loop_Row_RD_Loop_Col</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>11</count> <item_version>0</item_version> <item>18</item> <item>38</item> <item>42</item> <item>46</item> <item>50</item> <item>54</item> <item>58</item> <item>62</item> <item>66</item> <item>70</item> <item>74</item> </basic_blocks> <mII>1</mII> <mDepth>2</mDepth> <mMinTripCount>64</mMinTripCount> <mMaxTripCount>64</mMaxTripCount> <mMinLatency>64</mMinLatency> <mMaxLatency>64</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_218"> <mId>4</mId> <mTag>Return</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>76</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> </cdfg_regions> <fsm class_id="24" tracking_level="1" version="0" object_id="_219"> <states class_id="25" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_220"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_221"> <id>10</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_222"> <id>2</id> <operations> <count>20</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_223"> <id>12</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_224"> <id>13</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_225"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_226"> <id>15</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_227"> <id>16</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_228"> <id>17</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_229"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_230"> <id>22</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_231"> <id>23</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_232"> <id>24</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_233"> <id>25</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_234"> <id>26</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_235"> <id>28</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_236"> <id>32</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_237"> <id>33</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_238"> <id>34</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_239"> <id>35</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_240"> <id>36</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_241"> <id>37</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_242"> <id>72</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_243"> <id>3</id> <operations> <count>33</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_244"> <id>20</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_245"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_246"> <id>27</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_247"> <id>29</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_248"> <id>30</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_249"> <id>31</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_250"> <id>35</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_251"> <id>39</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_252"> <id>40</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_253"> <id>41</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_254"> <id>43</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_255"> <id>44</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_256"> <id>45</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_257"> <id>47</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_258"> <id>48</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_259"> <id>49</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_260"> <id>51</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_261"> <id>52</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_262"> <id>53</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_263"> <id>55</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_264"> <id>56</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_265"> <id>57</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_266"> <id>59</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_267"> <id>60</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_268"> <id>61</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_269"> <id>63</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_270"> <id>64</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_271"> <id>65</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_272"> <id>67</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_273"> <id>68</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_274"> <id>69</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_275"> <id>71</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_276"> <id>73</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_277"> <id>4</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_278"> <id>75</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_279"> <inState>1</inState> <outState>2</outState> <condition class_id="31" tracking_level="0" version="0"> <id>-1</id> <sop class_id="32" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="33" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_280"> <inState>3</inState> <outState>2</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_281"> <inState>2</inState> <outState>4</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item class_id="34" tracking_level="0" version="0"> <first class_id="35" tracking_level="0" version="0"> <first>15</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_282"> <inState>2</inState> <outState>3</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>15</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="36" tracking_level="1" version="0" object_id="_283"> <dp_component_resource class_id="37" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_component_resource> <dp_expression_resource> <count>11</count> <item_version>0</item_version> <item class_id="38" tracking_level="0" version="0"> <first>add_ln103_fu_236_p2 ( + ) </first> <second class_id="39" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="40" tracking_level="0" version="0"> <first>(0P0)</first> <second>7</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>add_ln106_fu_286_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>6</second> </item> <item> <first>(1P1)</first> <second>6</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>ap_block_state1 ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_enable_pp0 ( xor ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>2</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter1 ( xor ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>2</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>c_fu_301_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>4</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>12</second> </item> </second> </item> <item> <first>icmp_ln103_fu_230_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>7</second> </item> <item> <first>(1P1)</first> <second>8</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>11</second> </item> </second> </item> <item> <first>icmp_ln105_fu_248_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>4</second> </item> <item> <first>(1P1)</first> <second>5</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>11</second> </item> </second> </item> <item> <first>r_fu_242_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>4</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>12</second> </item> </second> </item> <item> <first>select_ln103_1_fu_262_p3 ( select ) </first> <second> <count>5</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>4</second> </item> <item> <first>(2P2)</first> <second>4</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>4</second> </item> </second> </item> <item> <first>select_ln103_fu_254_p3 ( select ) </first> <second> <count>5</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>(2P2)</first> <second>4</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>4</second> </item> </second> </item> </dp_expression_resource> <dp_fifo_resource> <count>0</count> <item_version>0</item_version> </dp_fifo_resource> <dp_memory_resource> <count>0</count> <item_version>0</item_version> </dp_memory_resource> <dp_multiplexer_resource> <count>7</count> <item_version>0</item_version> <item> <first>ap_NS_fsm</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>4</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>4</second> </item> <item> <first>LUT</first> <second>21</second> </item> </second> </item> <item> <first>ap_done</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter1</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>3</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>ap_phi_mux_r_0_phi_fu_212_p4</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>4</second> </item> <item> <first>(2Count)</first> <second>8</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>c_0_reg_219</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>4</second> </item> <item> <first>(2Count)</first> <second>8</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>indvar_flatten_reg_197</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>7</second> </item> <item> <first>(2Count)</first> <second>14</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>r_0_reg_208</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>4</second> </item> <item> <first>(2Count)</first> <second>8</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> </dp_multiplexer_resource> <dp_register_resource> <count>10</count> <item_version>0</item_version> <item> <first>ap_CS_fsm</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>3</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>3</second> </item> </second> </item> <item> <first>ap_done_reg</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter0</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter1</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>c_0_reg_219</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>4</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>4</second> </item> </second> </item> <item> <first>icmp_ln103_reg_318</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>indvar_flatten_reg_197</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>7</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>7</second> </item> </second> </item> <item> <first>r_0_reg_208</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>4</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>4</second> </item> </second> </item> <item> <first>select_ln103_1_reg_327</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>4</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>4</second> </item> </second> </item> <item> <first>trunc_ln106_reg_338</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>3</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>3</second> </item> </second> </item> </dp_register_resource> <dp_dsp_resource> <count>0</count> <item_version>0</item_version> </dp_dsp_resource> <dp_component_map class_id="41" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_component_map> <dp_expression_map> <count>8</count> <item_version>0</item_version> <item class_id="42" tracking_level="0" version="0"> <first>add_ln103_fu_236_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>add_ln106_fu_286_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>c_fu_301_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>icmp_ln103_fu_230_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>icmp_ln105_fu_248_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>r_fu_242_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>select_ln103_1_fu_262_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>select_ln103_fu_254_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> </dp_expression_map> <dp_fifo_map> <count>0</count> <item_version>0</item_version> </dp_fifo_map> <dp_memory_map> <count>0</count> <item_version>0</item_version> </dp_memory_map> </res> <node_label_latency class_id="43" tracking_level="0" version="0"> <count>48</count> <item_version>0</item_version> <item class_id="44" tracking_level="0" version="0"> <first>10</first> <second class_id="45" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>12</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>13</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>14</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>15</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>16</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>17</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>19</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>22</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>23</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>24</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>25</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>26</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>27</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>28</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>32</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>33</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>34</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>35</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>36</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>39</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>40</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>41</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>43</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>44</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>45</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>47</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>48</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>49</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>51</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>52</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>53</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>55</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>56</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>57</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>59</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>60</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>61</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>63</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>64</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>65</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>67</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>68</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>69</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>72</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>73</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>75</first> <second> <first>3</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="46" tracking_level="0" version="0"> <count>13</count> <item_version>0</item_version> <item class_id="47" tracking_level="0" version="0"> <first>11</first> <second class_id="48" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>18</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>38</first> <second> <first>1</first> <second>2</second> </second> </item> <item> <first>42</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>46</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>50</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>54</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>58</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>62</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>66</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>70</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>74</first> <second> <first>1</first> <second>2</second> </second> </item> <item> <first>76</first> <second> <first>2</first> <second>2</second> </second> </item> </bblk_ent_exit> <regions class_id="49" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="50" tracking_level="1" version="0" object_id="_284"> <region_name>RD_Loop_Row_RD_Loop_Col</region_name> <basic_blocks> <count>11</count> <item_version>0</item_version> <item>18</item> <item>38</item> <item>42</item> <item>46</item> <item>50</item> <item>54</item> <item>58</item> <item>62</item> <item>66</item> <item>70</item> <item>74</item> </basic_blocks> <nodes> <count>0</count> <item_version>0</item_version> </nodes> <anchor_node>-1</anchor_node> <region_type>8</region_type> <interval>1</interval> <pipe_depth>2</pipe_depth> </item> </regions> <dp_fu_nodes class_id="51" tracking_level="0" version="0"> <count>35</count> <item_version>0</item_version> <item class_id="52" tracking_level="0" version="0"> <first>72</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>79</first> <second> <count>2</count> <item_version>0</item_version> <item>35</item> <item>35</item> </second> </item> <item> <first>85</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>92</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>99</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>106</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>113</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>120</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>127</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>134</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>141</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>148</first> <second> <count>1</count> <item_version>0</item_version> <item>56</item> </second> </item> <item> <first>155</first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>162</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>169</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>176</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>183</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>190</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>201</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>212</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>223</first> <second> <count>1</count> <item_version>0</item_version> <item>14</item> </second> </item> <item> <first>230</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>236</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>242</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>248</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>254</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>262</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>270</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>274</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>282</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>286</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>292</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>297</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>301</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>307</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="54" tracking_level="0" version="0"> <count>26</count> <item_version>0</item_version> <item class_id="55" tracking_level="0" version="0"> <first>add_ln103_fu_236</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>add_ln106_fu_286</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>buf_0_addr_gep_fu_169</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>buf_1_addr_gep_fu_155</first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>buf_2_addr_gep_fu_141</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>buf_3_addr_gep_fu_127</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>buf_4_addr_gep_fu_113</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>buf_5_addr_gep_fu_99</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>buf_6_addr_gep_fu_85</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>buf_7_addr_gep_fu_183</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>c_0_phi_fu_223</first> <second> <count>1</count> <item_version>0</item_version> <item>14</item> </second> </item> <item> <first>c_fu_301</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>icmp_ln103_fu_230</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>icmp_ln105_fu_248</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>indvar_flatten_phi_fu_201</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>input_addr_gep_fu_72</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>r_0_phi_fu_212</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>r_fu_242</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>select_ln103_1_fu_262</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>select_ln103_fu_254</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>shl_ln106_mid2_fu_274</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>trunc_ln103_fu_270</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>trunc_ln106_fu_297</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>zext_ln103_fu_307</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>zext_ln105_fu_282</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>zext_ln106_fu_292</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="56" tracking_level="0" version="0"> <count>9</count> <item_version>0</item_version> <item class_id="57" tracking_level="0" version="0"> <first class_id="58" tracking_level="0" version="0"> <first>buf_0</first> <second>0</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first> <first>buf_1</first> <second>0</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first> <first>buf_2</first> <second>0</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>56</item> </second> </item> <item> <first> <first>buf_3</first> <second>0</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first> <first>buf_4</first> <second>0</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first> <first>buf_5</first> <second>0</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first> <first>buf_6</first> <second>0</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first> <first>buf_7</first> <second>0</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first> <first>input_r</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>35</item> <item>35</item> </second> </item> </dp_mem_port_nodes> <dp_reg_nodes> <count>9</count> <item_version>0</item_version> <item> <first>197</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>208</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>219</first> <second> <count>1</count> <item_version>0</item_version> <item>14</item> </second> </item> <item> <first>318</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>322</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>327</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>333</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>338</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>342</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>9</count> <item_version>0</item_version> <item> <first>add_ln103_reg_322</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>c_0_reg_219</first> <second> <count>1</count> <item_version>0</item_version> <item>14</item> </second> </item> <item> <first>c_reg_342</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>icmp_ln103_reg_318</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>indvar_flatten_reg_197</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>input_addr_reg_333</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>r_0_reg_208</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>select_ln103_1_reg_327</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>trunc_ln106_reg_338</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>3</count> <item_version>0</item_version> <item> <first>197</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>208</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>219</first> <second> <count>1</count> <item_version>0</item_version> <item>14</item> </second> </item> </dp_reg_phi> <dp_regname_phi> <count>3</count> <item_version>0</item_version> <item> <first>c_0_reg_219</first> <second> <count>1</count> <item_version>0</item_version> <item>14</item> </second> </item> <item> <first>indvar_flatten_reg_197</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>r_0_reg_208</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> </dp_regname_phi> <dp_port_io_nodes class_id="59" tracking_level="0" version="0"> <count>9</count> <item_version>0</item_version> <item class_id="60" tracking_level="0" version="0"> <first>buf_0(p0)</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>store</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> </second> </item> <item> <first>buf_1(p0)</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>store</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> </second> </item> <item> <first>buf_2(p0)</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>store</first> <second> <count>1</count> <item_version>0</item_version> <item>56</item> </second> </item> </second> </item> <item> <first>buf_3(p0)</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>store</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> </second> </item> <item> <first>buf_4(p0)</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>store</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> </second> </item> <item> <first>buf_5(p0)</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>store</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> </second> </item> <item> <first>buf_6(p0)</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>store</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> </second> </item> <item> <first>buf_7(p0)</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>store</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> </second> </item> <item> <first>input_r(p0)</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>load</first> <second> <count>2</count> <item_version>0</item_version> <item>35</item> <item>35</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="61" tracking_level="0" version="0"> <count>9</count> <item_version>0</item_version> <item class_id="62" tracking_level="0" version="0"> <first>1</first> <second>RAM</second> </item> <item> <first>2</first> <second>RAM</second> </item> <item> <first>3</first> <second>RAM</second> </item> <item> <first>4</first> <second>RAM</second> </item> <item> <first>5</first> <second>RAM</second> </item> <item> <first>6</first> <second>RAM</second> </item> <item> <first>7</first> <second>RAM</second> </item> <item> <first>8</first> <second>RAM</second> </item> <item> <first>9</first> <second>RAM</second> </item> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
31.258402
89
0.456104
df5d6b5294da484ce6cc1dcead3c994474301130
1,384
adb
Ada
3-mid/opengl/source/lean/shader/opengl-program-lit-textured_skinned.adb
charlie5/lace-alire
9ace9682cf4daac7adb9f980c2868d6225b8111c
[ "0BSD" ]
1
2022-01-20T07:13:42.000Z
2022-01-20T07:13:42.000Z
3-mid/opengl/source/lean/shader/opengl-program-lit-textured_skinned.adb
charlie5/lace-alire
9ace9682cf4daac7adb9f980c2868d6225b8111c
[ "0BSD" ]
null
null
null
3-mid/opengl/source/lean/shader/opengl-program-lit-textured_skinned.adb
charlie5/lace-alire
9ace9682cf4daac7adb9f980c2868d6225b8111c
[ "0BSD" ]
null
null
null
with ada.Strings.fixed; package body openGL.Program.lit.textured_skinned is overriding procedure define (Self : in out Item; use_vertex_Shader : in Shader.view; use_fragment_Shader : in Shader.view) is use ada.Strings, ada.Strings.fixed; begin openGL.Program.lit.item (Self).define (use_vertex_Shader, use_fragment_Shader); -- Define base class. for i in Self.bone_transform_Uniforms'Range loop Self.bone_transform_Uniforms (i).define (Self'Access, "bone_Matrices[" & Trim (Integer'Image (i - 1), Left) & "]"); end loop; end define; overriding procedure set_Uniforms (Self : in Item) is begin openGL.Program.lit.item (Self).set_Uniforms; -- Texture -- declare sampler_Uniform : constant Variable.uniform.int := Self.uniform_Variable ("sTexture"); begin sampler_Uniform.Value_is (0); end; end set_Uniforms; procedure bone_Transform_is (Self : in Item; Which : in Integer; Now : in Matrix_4x4) is begin Self.bone_transform_Uniforms (Which).Value_is (Now); end bone_Transform_is; end openGL.Program.lit.textured_skinned;
26.615385
111
0.577312
fb64b87cd28ab059810d28735d2ee7082257f950
8,005
adb
Ada
tools/css-analysis-rules-types.adb
stcarrez/ada-css
f7c337306094993186c507540701d04a4753b724
[ "Apache-2.0" ]
3
2017-01-03T22:18:22.000Z
2017-01-10T07:58:17.000Z
tools/css-analysis-rules-types.adb
stcarrez/ada-css
f7c337306094993186c507540701d04a4753b724
[ "Apache-2.0" ]
null
null
null
tools/css-analysis-rules-types.adb
stcarrez/ada-css
f7c337306094993186c507540701d04a4753b724
[ "Apache-2.0" ]
null
null
null
----------------------------------------------------------------------- -- css-analysis-rules-types -- Rules for CSS pre-defined value types -- Copyright (C) 2017 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- package body CSS.Analysis.Rules.Types is use CSS.Core.Values; -- ------------------------------ -- Print the rule definition to the print stream. -- ------------------------------ procedure Print (Rule : in Builtin_Rule_Type; Stream : in out CSS.Printer.File_Type'Class) is begin Stream.Print (Ada.Strings.Unbounded.To_String (Rule.Name)); end Print; -- ------------------------------ -- Check if the value represents an integer without unit. -- ------------------------------ overriding function Match (Rule : in Integer_Rule_Type; Value : in CSS.Core.Values.Value_Type) return Boolean is pragma Unreferenced (Rule); begin return Get_Type (Value) = VALUE_NUMBER and Get_Unit (Value) = UNIT_NONE; end Match; -- ------------------------------ -- Check if the value represents a number or integer without unit. -- ------------------------------ overriding function Match (Rule : in Number_Rule_Type; Value : in CSS.Core.Values.Value_Type) return Boolean is pragma Unreferenced (Rule); begin return Get_Type (Value) = VALUE_NUMBER and Get_Unit (Value) = UNIT_NONE; end Match; -- ------------------------------ -- Check if the value represents a percentage. -- ------------------------------ overriding function Match (Rule : in Percentage_Rule_Type; Value : in CSS.Core.Values.Value_Type) return Boolean is pragma Unreferenced (Rule); begin return Get_Type (Value) = VALUE_NUMBER and Get_Unit (Value) = UNIT_NONE; end Match; -- ------------------------------ -- Check if the value represents a length. -- ------------------------------ overriding function Match (Rule : in Length_Rule_Type; Value : in CSS.Core.Values.Value_Type) return Boolean is pragma Unreferenced (Rule); begin if Get_Type (Value) /= VALUE_NUMBER then return False; end if; if Get_Unit (Value) in Length_Unit_Type then return True; end if; if Get_Unit (Value) /= UNIT_NONE then return False; end if; return Get_Value (Value) = "0"; end Match; -- ------------------------------ -- Check if the value represents a time. -- ------------------------------ overriding function Match (Rule : in Time_Rule_Type; Value : in CSS.Core.Values.Value_Type) return Boolean is pragma Unreferenced (Rule); begin return Get_Type (Value) = VALUE_NUMBER and Get_Unit (Value) in Time_Unit_Type; end Match; -- ------------------------------ -- Check if the value represents a resolution. -- ------------------------------ overriding function Match (Rule : in Resolution_Rule_Type; Value : in CSS.Core.Values.Value_Type) return Boolean is pragma Unreferenced (Rule); begin return Get_Type (Value) = VALUE_NUMBER and Get_Unit (Value) = UNIT_PI; end Match; -- ------------------------------ -- Check if the value represents an angle. -- ------------------------------ overriding function Match (Rule : in Angle_Rule_Type; Value : in CSS.Core.Values.Value_Type) return Boolean is pragma Unreferenced (Rule); begin return Get_Type (Value) = VALUE_NUMBER and Get_Unit (Value) in Angle_Unit_Type; end Match; -- ------------------------------ -- Check if the value represents a string. -- ------------------------------ overriding function Match (Rule : in String_Rule_Type; Value : in CSS.Core.Values.Value_Type) return Boolean is pragma Unreferenced (Rule); begin return Get_Type (Value) = VALUE_STRING; end Match; -- ------------------------------ -- Check if the value represents a url. -- ------------------------------ overriding function Match (Rule : in URL_Rule_Type; Value : in CSS.Core.Values.Value_Type) return Boolean is pragma Unreferenced (Rule); begin return Get_Type (Value) = VALUE_URL; end Match; -- ------------------------------ -- Check if the value represents an hexadecimal color. -- ------------------------------ overriding function Match (Rule : in Color_Rule_Type; Value : in CSS.Core.Values.Value_Type) return Boolean is pragma Unreferenced (Rule); begin return Get_Type (Value) = VALUE_COLOR; end Match; -- ------------------------------ -- Check if the value represents a custom identifier. -- ------------------------------ overriding function Match (Rule : in Identifier_Rule_Type; Value : in CSS.Core.Values.Value_Type) return Boolean is pragma Unreferenced (Rule); begin return Get_Type (Value) = VALUE_IDENT; end Match; -- ------------------------------ -- Register the builtin type in the repository. -- ------------------------------ procedure Register_Builtin (Repository : in out Repository_Type; Name : in String; Rule : in Builtin_Rule_Type_Access; Kind : in CSS.Core.Values.Value_Kind) is begin Rule.Name := Ada.Strings.Unbounded.To_Unbounded_String (Name); Repository.Types.Insert (Name, Rule.all'Access); end Register_Builtin; Int_Rule : aliased Types.Integer_Rule_Type; Percent_Rule : aliased Types.Percentage_Rule_Type; Length_Rule : aliased Types.Length_Rule_Type; Number_Rule : aliased Types.Number_Rule_Type; Angle_Rule : aliased Types.Angle_Rule_Type; String_Rule : aliased Types.String_Rule_Type; URL_Rule : aliased Types.URL_Rule_Type; Color_Rule : aliased Types.Color_Rule_Type; Ident_Rule : aliased Types.Identifier_Rule_Type; Resolution_Rule : aliased Types.Resolution_Rule_Type; Time_Rule : aliased Types.Time_Rule_Type; procedure Register (Repository : in out Repository_Type) is begin Register_Builtin (Repository, "<angle>", Angle_Rule'Access, VALUE_NUMBER); Register_Builtin (Repository, "<integer>", Int_Rule'Access, VALUE_NUMBER); Register_Builtin (Repository, "<number>", Number_Rule'Access, VALUE_NUMBER); Register_Builtin (Repository, "<length>", Length_Rule'Access, VALUE_NUMBER); Register_Builtin (Repository, "<percentage>", Percent_Rule'Access, VALUE_NUMBER); Register_Builtin (Repository, "<string>", String_Rule'Access, VALUE_STRING); Register_Builtin (Repository, "<url>", URL_Rule'Access, VALUE_URL); Register_Builtin (Repository, "<hex-color>", Color_Rule'Access, VALUE_COLOR); Register_Builtin (Repository, "<custom-ident>", Ident_Rule'Access, VALUE_IDENT); Register_Builtin (Repository, "<resolution>", Resolution_Rule'Access, VALUE_NUMBER); Register_Builtin (Repository, "<time>", Time_Rule'Access, VALUE_NUMBER); end Register; end CSS.Analysis.Rules.Types;
39.628713
90
0.580887
50dd536477287e52b7efaf7eb974ed6977d46234
247
adb
Ada
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/specs/renaming2_pkg4.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/specs/renaming2_pkg4.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/specs/renaming2_pkg4.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
package body Renaming2_Pkg4 is package body Inner is function Next_Value return Value_T is Next_Value : Value_T renames Value (Next); begin return Next_Value; end Next_Value; end Inner; end Renaming2_Pkg4;
19
50
0.688259
50ab9e71eb8aadb2af16502b00301a45ab0824dd
2,940
ada
Ada
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c4/c48004f.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c4/c48004f.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c4/c48004f.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
-- C48004F.ADA -- Grant of Unlimited Rights -- -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687, -- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained -- unlimited rights in the software and documentation contained herein. -- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making -- this public release, the Government intends to confer upon all -- recipients unlimited rights equal to those held by the Government. -- These rights include rights to use, duplicate, release or disclose the -- released technical data and computer software in whole or in part, in -- any manner and for any purpose whatsoever, and to have or permit others -- to do so. -- -- DISCLAIMER -- -- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR -- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED -- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE -- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE -- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A -- PARTICULAR PURPOSE OF SAID MATERIAL. --* -- CHECK THAT THE FORM "NEW T" IS PERMITTED IF T IS AN ACCESS TYPE. -- RM 01/12/80 -- JBG 03/03/83 -- EG 07/05/84 WITH REPORT; PROCEDURE C48004F IS USE REPORT; BEGIN TEST("C48004F","CHECK THAT THE FORM 'NEW T' IS PERMITTED IF T " & "IS AN ACCESS TYPE"); DECLARE TYPE AINT IS ACCESS INTEGER; TYPE A_AINT IS ACCESS AINT; VA_AINT : A_AINT; TYPE AST IS ACCESS STRING; SUBTYPE CAST_4 IS AST(1 .. 4); TYPE A_AST IS ACCESS AST; TYPE ACAST_3 IS ACCESS AST(1 .. 3); V_AAST : A_AST; V_ACAST_3 : ACAST_3; TYPE UR(A, B : INTEGER) IS RECORD C : INTEGER; END RECORD; SUBTYPE CR IS UR(1, 2); TYPE A_CR IS ACCESS CR; TYPE AA_CR IS ACCESS A_CR; V_AA_CR : AA_CR; BEGIN VA_AINT := NEW AINT; IF VA_AINT.ALL /= NULL THEN FAILED ("VARIABLE IS NOT NULL - CASE 1"); END IF; BEGIN V_ACAST_3 := NEW CAST_4; IF V_ACAST_3.ALL /= NULL THEN FAILED ("VARIABLE IS NOT NULL - CASE 2"); END IF; EXCEPTION WHEN OTHERS => FAILED ("EXCEPTION RAISED - CASE 2"); END; V_AAST := NEW AST; IF V_AAST.ALL /= NULL THEN FAILED ("VARIABLE IS NOT NULL - CASE 3"); END IF; V_AA_CR := NEW A_CR; IF V_AA_CR.ALL /= NULL THEN FAILED ("VARIABLE IS NOT NULL - CASE 4"); END IF; END; RESULT; END C48004F;
29.4
79
0.563946
10d0e40f3fa6e0a4af8aa62c5f61730fb562b28e
2,706
ads
Ada
Validation/pyFrame3DD-master/gcc-master/gcc/ada/par.ads
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/par.ads
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/par.ads
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- P A R -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2020, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING3. If not, go to -- -- http://www.gnu.org/licenses for a complete copy of the license. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- The Par function and its subunits contains all the parsing routines -- for the top down recursive descent parser that constructs the parse tree with Types; use Types; function Par (Configuration_Pragmas : Boolean) return List_Id; -- Top level parsing routine. There are two cases: -- -- If Configuration_Pragmas is False, Par parses a compilation unit in the -- current source file and sets the Cunit, Cunit_Entity and Unit_Name fields -- of the units table entry for Current_Source_Unit. On return the parse tree -- is complete, and decorated with any required implicit label declarations. -- The value returned in this case is always No_List. -- -- If Configuration_Pragmas is True, Par parses a list of configuration -- pragmas from the current source file, and returns the list of pragmas.
64.428571
78
0.485957
1c63f6f9db1959ff79db654d0a0fd5be6b8cb85a
3,234
ads
Ada
src/Utilities/OLD/tokenize.ads
fintatarta/eugen
2c384838ff0e81b51172310ce5d0e47d71ffd4fd
[ "MIT" ]
null
null
null
src/Utilities/OLD/tokenize.ads
fintatarta/eugen
2c384838ff0e81b51172310ce5d0e47d71ffd4fd
[ "MIT" ]
null
null
null
src/Utilities/OLD/tokenize.ads
fintatarta/eugen
2c384838ff0e81b51172310ce5d0e47d71ffd4fd
[ "MIT" ]
null
null
null
-- -*- Mode: Ada -*- -- Filename : tokenize.ads -- Description : Ruby-like split -- Author : Finta Tartaruga -- Created On : Tue Sep 11 22:05:53 2007 -- Last Modified By: R. Bernardini -- Last Modified On: November 14, 2007 -- Update Count : 1 -- Status : <TESTED> -- -- This package provides a function Split which divides its input -- string in smaller strings, separated by a "separator" (much as the -- split function in Perl, Ruby, and so on...). Function Split returns -- a Token_List (defined by this package) whose elements can be accessed -- by the function Element. -- -- Function Split can accept a third Boolean value Collate_Separator. -- If Collate_Separator is true, consecutive istances of the separator are -- considered as a single one. If Collate_Separator is False, for every -- pair of consecutive separator characters an empty string will be returned. -- Moreover, if Collate_Separator is True, any separator at the beginning of -- the string is ignored. Separators at the end are always ignored. -- -- The default value of Collate_Separator is true if the separator -- is the space, false otherwise. -- -- Examples: -- -- Split("Hello there") returns "Hello" and "there" -- Split("Hello there", ' ', False) returns "Hello", "" and "there" -- Split("Hello::there", ':') returns "Hello", "" and "there" -- Split("Hello::there", ':', True) returns "Hello" and "there" -- with Ada.Containers.Indefinite_Vectors; with Ada.Strings.Unbounded; use Ada.Strings.Unbounded; package Tokenize is package String_Vectors is new Ada.Containers.Indefinite_Vectors(Index_Type => Positive, Element_Type => String); subtype Token_List is String_Vectors.Vector; type Token_Array is array (Positive range <>) of Unbounded_String; -- -- Split string To_Be_Splitted in substring separated by -- Separator. If Collate_Separator is true consider consecutive -- istances of Separator as a single one -- function Split(To_Be_Splitted : String; Separator : Character; Collate_Separator : Boolean) return Token_List; function Split (To_Be_Splitted : String; Separators : String; Collate_Separator : Boolean) return Token_List; -- -- Similar to the three-parameter version, but the Separator -- char defaults to the space and Collate_Separator is True -- if Separator is the space, false otherwise -- function Split(To_Be_Splitted : String; Separator : Character := ' ') return Token_List; function Split (To_Be_Splitted : String; Separator : Character := ' ') return Token_Array; -- -- Return the Index-th token -- function Element (Container : Token_List; Index : Positive) return String renames String_Vectors.Element; -- -- Return the number of tokens -- function Length(Container : Token_List) return Natural; function To_Array (List : Token_List) return Token_Array; end Tokenize;
38.047059
77
0.644712
c5cad72965297b745e68de30880cb4b61039c66b
7,789
ads
Ada
src/gnat/alloc.ads
Letractively/ada-gen
d06d03821057f9177f2350e32dd09e467df08612
[ "Apache-2.0" ]
null
null
null
src/gnat/alloc.ads
Letractively/ada-gen
d06d03821057f9177f2350e32dd09e467df08612
[ "Apache-2.0" ]
null
null
null
src/gnat/alloc.ads
Letractively/ada-gen
d06d03821057f9177f2350e32dd09e467df08612
[ "Apache-2.0" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- A L L O C -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2009, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package contains definitions for initial sizes and growth increments -- for the various dynamic arrays used for principle compiler data strcutures. -- The indicated initial size is allocated for the start of each file, and -- the increment factor is a percentage used to increase the table size when -- it needs expanding (e.g. a value of 100 = 100% increase = double) -- Note: the initial values here are multiplied by Table_Factor, as set -- by the -gnatTnn switch. This variable is defined in Opt, as is the -- default value for the table factor. package Alloc is -- The comment shows the unit in which the table is defined All_Interp_Initial : constant := 1_000; -- Sem_Type All_Interp_Increment : constant := 100; Branches_Initial : constant := 1_000; -- Sem_Warn Branches_Increment : constant := 100; Conditionals_Initial : constant := 1_000; -- Sem_Warn Conditionals_Increment : constant := 100; Conditional_Stack_Initial : constant := 50; -- Sem_Warn Conditional_Stack_Increment : constant := 100; Elists_Initial : constant := 200; -- Elists Elists_Increment : constant := 100; Elmts_Initial : constant := 1_200; -- Elists Elmts_Increment : constant := 100; File_Name_Chars_Initial : constant := 10_000; -- Osint File_Name_Chars_Increment : constant := 100; Inlined_Bodies_Initial : constant := 50; -- Inline Inlined_Bodies_Increment : constant := 200; Inlined_Initial : constant := 100; -- Inline Inlined_Increment : constant := 100; In_Out_Warnings_Initial : constant := 100; -- Sem_Warn In_Out_Warnings_Increment : constant := 100; Interp_Map_Initial : constant := 200; -- Sem_Type Interp_Map_Increment : constant := 100; Lines_Initial : constant := 500; -- Sinput Lines_Increment : constant := 150; Linker_Option_Lines_Initial : constant := 5; -- Lib Linker_Option_Lines_Increment : constant := 200; Lists_Initial : constant := 4_000; -- Nlists Lists_Increment : constant := 200; Load_Stack_Initial : constant := 10; -- Lib Load_Stack_Increment : constant := 100; Name_Chars_Initial : constant := 50_000; -- Namet Name_Chars_Increment : constant := 100; Name_Qualify_Units_Initial : constant := 200; -- Exp_Dbug Name_Qualify_Units_Increment : constant := 300; Names_Initial : constant := 6_000; -- Namet Names_Increment : constant := 100; Nodes_Initial : constant := 50_000; -- Atree Nodes_Increment : constant := 100; Notes_Initial : constant := 100; -- Lib Notes_Increment : constant := 200; Obsolescent_Warnings_Initial : constant := 50; -- Sem_Prag Obsolescent_Warnings_Increment : constant := 200; Orig_Nodes_Initial : constant := 50_000; -- Atree Orig_Nodes_Increment : constant := 100; Pending_Instantiations_Initial : constant := 10; -- Inline Pending_Instantiations_Increment : constant := 100; Rep_Table_Initial : constant := 1000; -- Repinfo Rep_Table_Increment : constant := 200; Scope_Stack_Initial : constant := 10; -- Sem Scope_Stack_Increment : constant := 200; SFN_Table_Initial : constant := 10; -- Fname SFN_Table_Increment : constant := 200; Source_File_Initial : constant := 10; -- Sinput Source_File_Increment : constant := 200; String_Chars_Initial : constant := 2_500; -- Stringt String_Chars_Increment : constant := 150; Strings_Initial : constant := 5_00; -- Stringt Strings_Increment : constant := 150; Successors_Initial : constant := 2_00; -- Inline Successors_Increment : constant := 100; Udigits_Initial : constant := 10_000; -- Uintp Udigits_Increment : constant := 100; Uints_Initial : constant := 5_000; -- Uintp Uints_Increment : constant := 100; Units_Initial : constant := 30; -- Lib Units_Increment : constant := 100; Ureals_Initial : constant := 200; -- Urealp Ureals_Increment : constant := 100; Unreferenced_Entities_Initial : constant := 1_000; -- Sem_Warn Unreferenced_Entities_Increment : constant := 100; Warnings_Off_Pragmas_Initial : constant := 500; -- Sem_Warn Warnings_Off_Pragmas_Increment : constant := 100; With_List_Initial : constant := 10; -- Features With_List_Increment : constant := 300; Xrefs_Initial : constant := 5_000; -- Cross-refs Xrefs_Increment : constant := 300; end Alloc;
48.378882
79
0.504943