CombinedText
stringlengths
4
3.42M
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- G N A T C L E A N -- -- -- -- B o d y -- -- -- -- Copyright (C) 2003, 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, 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. -- -- -- ------------------------------------------------------------------------------ -- Gnatclean is a utility to delete files produced by the GNAT tools: -- ALI files, object files, tree files, expanded source files, library -- files, interface copy files, binder generated files and executable files. -- Gnatclean may be invoked for one or several executables, for a project -- file or a tree of project files with the optional specification of -- one of several executables. with Clean; procedure Gnatclean is begin -- The real work is done in Package Clean Clean.Gnatclean; end Gnatclean;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S T Y L E G -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2006, 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, 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. -- -- -- ------------------------------------------------------------------------------ -- This generic package collects the routines used for style checking, as -- activated by the relevant command line option. These are gathered in -- a separate package so that they can more easily be customized. Calls -- to these subprograms are only made if Opt.Style_Check is set True. -- Styleg does not depends on the GNAT tree (Atree, Sinfo, ...). -- For the compiler, there is also a child package Styleg.C that depends -- on the GNAT tree. with Types; use Types; generic with procedure Error_Msg (Msg : String; Flag_Location : Source_Ptr); -- Output a message at specified location with procedure Error_Msg_S (Msg : String); -- Output a message at current scan pointer location with procedure Error_Msg_SC (Msg : String); -- Output a message at the start of the current token with procedure Error_Msg_SP (Msg : String); -- Output a message at the start of the previous token package Styleg is procedure Check_Abs_Not; -- Called after scanning an ABS or NOT operator to check spacing procedure Check_Apostrophe; -- Called after scanning an apostrophe to check spacing procedure Check_Arrow; -- Called after scanning out an arrow to check spacing procedure Check_Attribute_Name (Reserved : Boolean); -- The current token is an attribute designator. Check that it -- is capitalized in an appropriate manner. Reserved is set if -- the attribute designator is a reserved word (access, digits, -- delta or range) to allow differing rules for the two cases. procedure Check_Box; -- Called after scanning out a box to check spacing procedure Check_Binary_Operator; -- Called after scanning out a binary operator other than a plus, minus -- or exponentiation operator. Intended for checking spacing rules. procedure Check_Exponentiation_Operator; -- Called after scanning out an exponentiation operator. Intended for -- checking spacing rules. procedure Check_Colon; -- Called after scanning out colon to check spacing procedure Check_Colon_Equal; -- Called after scanning out colon equal to check spacing procedure Check_Comma; -- Called after scanning out comma to check spacing procedure Check_Comment; -- Called with Scan_Ptr pointing to the first minus sign of a comment. -- Intended for checking any specific rules for comment placement/format. procedure Check_Dot_Dot; -- Called after scanning out dot dot to check spacing procedure Check_EOF; -- Called after scanning out EOF mark procedure Check_HT; -- Called with Scan_Ptr pointing to a horizontal tab character procedure Check_Indentation; -- Called at the start of a new statement or declaration, with Token_Ptr -- pointing to the first token of the statement or declaration. The check -- is that the starting column is appropriate to the indentation rules if -- Token_Ptr is the first token on the line. procedure Check_Left_Paren; -- Called after scanning out a left parenthesis to check spacing procedure Check_Line_Max_Length (Len : Int); -- Called with Scan_Ptr pointing to the first line terminator character -- terminating the current line. Used to check for appropriate line length. -- The parameter Len is the length of the current line. procedure Check_Line_Terminator (Len : Int); -- Called with Scan_Ptr pointing to the first line terminator terminating -- the current line, used to check for appropriate line terminator usage. -- The parameter Len is the length of the current line. procedure Check_Pragma_Name; -- The current token is a pragma identifier. Check that it is spelled -- properly (i.e. with an appropriate casing convention). procedure Check_Right_Paren; -- Called after scanning out a right parenthesis to check spacing procedure Check_Semicolon; -- Called after scanning out a semicolon to check spacing procedure Check_Then (If_Loc : Source_Ptr); -- Called to check that THEN and IF keywords are appropriately positioned. -- The parameters show the first characters of the two keywords. This -- procedure is called only if THEN appears at the start of a line with -- Token_Ptr pointing to the THEN keyword. procedure Check_Unary_Plus_Or_Minus; -- Called after scanning a unary plus or minus to check spacing procedure Check_Vertical_Bar; -- Called after scanning a vertical bar to check spacing procedure Check_Xtra_Parens (Loc : Source_Ptr); -- Called after scanning a conditional expression that has at least one -- level of parentheses around the entire expression. function Mode_In_Check return Boolean; pragma Inline (Mode_In_Check); -- Determines whether style checking is active and the Mode_In_Check is -- set, forbidding the explicit use of mode IN. procedure No_End_Name (Name : Node_Id); -- Called if an END is encountered where a name is allowed but not present. -- The parameter is the node whose name is the name that is permitted in -- the END line, and the scan pointer is positioned so that if an error -- message is to be generated in this situation, it should be generated -- using Error_Msg_SP. procedure No_Exit_Name (Name : Node_Id); -- Called when exiting a named loop, but a name is not present on the EXIT. -- The parameter is the node whose name should have followed EXIT, and the -- scan pointer is positioned so that if an error message is to be -- generated, it should be generated using Error_Msg_SP. procedure Non_Lower_Case_Keyword; -- Called if a reserved keyword is scanned which is not spelled in all -- lower case letters. On entry Token_Ptr points to the keyword token. -- This is not used for keywords appearing as attribute designators, -- where instead Check_Attribute_Name (True) is called. function RM_Column_Check return Boolean; pragma Inline (RM_Column_Check); -- Determines whether style checking is active and the RM column check -- mode is set requiring checking of RM format layout. end Styleg;
with Ada.Text_IO.Formatting; with System.Formatting.Float; with System.Formatting.Literals.Float; package body Ada.Text_IO.Float_IO is procedure Put_To_Field ( To : out String; Fore_Last, Last : out Natural; Item : Num; Aft : Field; Exp : Field); procedure Put_To_Field ( To : out String; Fore_Last, Last : out Natural; Item : Num; Aft : Field; Exp : Field) is Triming_Sign_Marks : constant System.Formatting.Sign_Marks := ('-', System.Formatting.No_Sign, System.Formatting.No_Sign); Aft_Width : constant Field := Field'Max (1, Aft); begin if Exp /= 0 then System.Formatting.Float.Image ( Long_Long_Float (Item), To, Fore_Last, Last, Signs => Triming_Sign_Marks, Aft_Width => Aft_Width, Exponent_Digits_Width => Exp - 1); -- excluding '.' else System.Formatting.Float.Image_No_Exponent ( Long_Long_Float (Item), To, Fore_Last, Last, Signs => Triming_Sign_Marks, Aft_Width => Aft_Width); end if; end Put_To_Field; procedure Get_From_Field ( From : String; Item : out Num; Last : out Positive); procedure Get_From_Field ( From : String; Item : out Num; Last : out Positive) is Base_Item : Long_Long_Float; Error : Boolean; begin System.Formatting.Literals.Float.Get_Literal ( From, Last, Base_Item, Error => Error); if Error or else Base_Item not in Long_Long_Float (Num'First) .. Long_Long_Float (Num'Last) then raise Data_Error; end if; Item := Num (Base_Item); end Get_From_Field; -- implementation procedure Get ( File : File_Type; Item : out Num; Width : Field := 0) is begin if Width /= 0 then declare S : String (1 .. Width); Last_1 : Natural; Last_2 : Natural; begin Formatting.Get_Field (File, S, Last_1); -- checking the predicate Get_From_Field (S (1 .. Last_1), Item, Last_2); if Last_2 /= Last_1 then raise Data_Error; end if; end; else declare S : constant String := Formatting.Get_Numeric_Literal ( File, -- checking the predicate Real => True); Last : Natural; begin Get_From_Field (S, Item, Last); if Last /= S'Last then raise Data_Error; end if; end; end if; end Get; procedure Get ( Item : out Num; Width : Field := 0) is begin Get (Current_Input.all, Item, Width); end Get; procedure Get ( File : not null File_Access; Item : out Num; Width : Field := 0) is begin Get (File.all, Item, Width); end Get; procedure Put ( File : File_Type; Item : Num; Fore : Field := Default_Fore; Aft : Field := Default_Aft; Exp : Field := Default_Exp) is S : String (1 .. Long_Long_Float'Width + Fore + Aft + Exp); Fore_Last, Last : Natural; Width : Field; begin Put_To_Field (S, Fore_Last, Last, Item, Aft, Exp); if Fore_Last = Last then -- infinity or NaN, reserve a minimum width Width := Fore + 1 + Aft; if Exp /= 0 then Width := Width + 1 + Exp; end if; else Width := Last - Fore_Last + Fore; end if; Formatting.Tail ( File, -- checking the predicate S (1 .. Last), Width); end Put; procedure Put ( Item : Num; Fore : Field := Default_Fore; Aft : Field := Default_Aft; Exp : Field := Default_Exp) is begin Put (Current_Output.all, Item, Fore, Aft, Exp); end Put; procedure Put ( File : not null File_Access; Item : Num; Fore : Field := Default_Fore; Aft : Field := Default_Aft; Exp : Field := Default_Exp) is begin Put (File.all, Item, Fore, Aft, Exp); end Put; procedure Get ( From : String; Item : out Num; Last : out Positive) is begin Formatting.Get_Tail (From, First => Last); Get_From_Field (From (Last .. From'Last), Item, Last); end Get; procedure Put ( To : out String; Item : Num; Aft : Field := Default_Aft; Exp : Field := Default_Exp) is S : String (1 .. Long_Long_Float'Width + Aft + Exp); Fore_Last, Last : Natural; begin Put_To_Field (S, Fore_Last, Last, Item, Aft, Exp); Formatting.Tail (To, S (1 .. Last)); end Put; procedure Put ( To : out String; Last : out Natural; Item : Num; Aft : Field := Default_Aft; Exp : Field := Default_Exp) is Fore_Last : Natural; begin Put_To_Field (To, Fore_Last, Last, Item, Aft, Exp); end Put; end Ada.Text_IO.Float_IO;
------------------------------------------------------------------------------ -- -- -- GNAT ncurses Binding -- -- -- -- Terminal_Interface.Curses.Mouse -- -- -- -- B O D Y -- -- -- ------------------------------------------------------------------------------ -- Copyright (c) 1998-2009,2014 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.25 $ -- $Date: 2014/09/13 19:10:18 $ -- Binding Version 01.00 ------------------------------------------------------------------------------ with Terminal_Interface.Curses.Aux; use Terminal_Interface.Curses.Aux; with Interfaces.C; use Interfaces.C; use Interfaces; package body Terminal_Interface.Curses.Mouse is use type System.Bit_Order; function Has_Mouse return Boolean is function Mouse_Avail return C_Int; pragma Import (C, Mouse_Avail, "has_mouse"); begin if Has_Key (Key_Mouse) or else Mouse_Avail /= 0 then return True; else return False; end if; end Has_Mouse; function Get_Mouse return Mouse_Event is type Event_Access is access all Mouse_Event; function Getmouse (Ev : Event_Access) return C_Int; pragma Import (C, Getmouse, "getmouse"); Event : aliased Mouse_Event; begin if Getmouse (Event'Access) = Curses_Err then raise Curses_Exception; end if; return Event; end Get_Mouse; procedure Register_Reportable_Event (Button : Mouse_Button; State : Button_State; Mask : in out Event_Mask) is Button_Nr : constant Natural := Mouse_Button'Pos (Button); State_Nr : constant Natural := Button_State'Pos (State); begin if Button in Modifier_Keys and then State /= Pressed then raise Curses_Exception; else if Button in Real_Buttons then Mask := Mask or ((2 ** (6 * Button_Nr)) ** State_Nr); else Mask := Mask or (BUTTON_CTRL ** (Button_Nr - 4)); end if; end if; end Register_Reportable_Event; procedure Register_Reportable_Events (Button : Mouse_Button; State : Button_States; Mask : in out Event_Mask) is begin for S in Button_States'Range loop if State (S) then Register_Reportable_Event (Button, S, Mask); end if; end loop; end Register_Reportable_Events; function Start_Mouse (Mask : Event_Mask := All_Events) return Event_Mask is function MMask (M : Event_Mask; O : access Event_Mask) return Event_Mask; pragma Import (C, MMask, "mousemask"); R : Event_Mask; Old : aliased Event_Mask; begin R := MMask (Mask, Old'Access); if R = No_Events then Beep; end if; return Old; end Start_Mouse; procedure End_Mouse (Mask : Event_Mask := No_Events) is begin if Mask /= No_Events then Beep; end if; end End_Mouse; procedure Dispatch_Event (Mask : Event_Mask; Button : out Mouse_Button; State : out Button_State); procedure Dispatch_Event (Mask : Event_Mask; Button : out Mouse_Button; State : out Button_State) is L : Event_Mask; begin Button := Alt; -- preset to non real button; if (Mask and BUTTON1_EVENTS) /= 0 then Button := Left; elsif (Mask and BUTTON2_EVENTS) /= 0 then Button := Middle; elsif (Mask and BUTTON3_EVENTS) /= 0 then Button := Right; elsif (Mask and BUTTON4_EVENTS) /= 0 then Button := Button4; end if; if Button in Real_Buttons then L := 2 ** (6 * Mouse_Button'Pos (Button)); for I in Button_State'Range loop if (Mask and L) /= 0 then State := I; exit; end if; L := 2 * L; end loop; else State := Pressed; if (Mask and BUTTON_CTRL) /= 0 then Button := Control; elsif (Mask and BUTTON_SHIFT) /= 0 then Button := Shift; elsif (Mask and BUTTON_ALT) /= 0 then Button := Alt; end if; end if; end Dispatch_Event; procedure Get_Event (Event : Mouse_Event; Y : out Line_Position; X : out Column_Position; Button : out Mouse_Button; State : out Button_State) is Mask : constant Event_Mask := Event.Bstate; begin X := Column_Position (Event.X); Y := Line_Position (Event.Y); Dispatch_Event (Mask, Button, State); end Get_Event; procedure Unget_Mouse (Event : Mouse_Event) is function Ungetmouse (Ev : Mouse_Event) return C_Int; pragma Import (C, Ungetmouse, "ungetmouse"); begin if Ungetmouse (Event) = Curses_Err then raise Curses_Exception; end if; end Unget_Mouse; function Enclosed_In_Window (Win : Window := Standard_Window; Event : Mouse_Event) return Boolean is function Wenclose (Win : Window; Y : C_Int; X : C_Int) return Curses_Bool; pragma Import (C, Wenclose, "wenclose"); begin if Wenclose (Win, C_Int (Event.Y), C_Int (Event.X)) = Curses_Bool_False then return False; else return True; end if; end Enclosed_In_Window; function Mouse_Interval (Msec : Natural := 200) return Natural is function Mouseinterval (Msec : C_Int) return C_Int; pragma Import (C, Mouseinterval, "mouseinterval"); begin return Natural (Mouseinterval (C_Int (Msec))); end Mouse_Interval; end Terminal_Interface.Curses.Mouse;
-- Copyright 2009-2020 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/>. procedure Foo is task type Caller is entry Initialize; entry Call_Break_Me; entry Finalize; end Caller; type Caller_Ptr is access Caller; procedure Break_Me is begin null; end Break_Me; task body Caller is begin accept Initialize do null; end Initialize; accept Call_Break_Me do Break_Me; end Call_Break_Me; accept Finalize do null; end Finalize; end Caller; Task_List : array (1 .. 3) of Caller_Ptr; begin -- Start all our tasks, and call the "Initialize" entry to make -- sure all of them have now been started. We call that entry -- immediately after having created the task in order to make sure -- that we wait for that task to be created before we try to create -- another one. That way, we know that the order in our Task_List -- corresponds to the order in the GNAT runtime. for J in Task_List'Range loop Task_List (J) := new Caller; Task_List (J).Initialize; end loop; -- Next, call their Call_Break_Me entry of each task, using the same -- order as the order used to create them. for J in Task_List'Range loop -- STOP_HERE Task_List (J).Call_Break_Me; end loop; -- And finally, let all the tasks die... for J in Task_List'Range loop Task_List (J).Finalize; end loop; end Foo;
package body Loop_Optimization3_Pkg is function F (n : Integer) return Integer is begin return n; end; end Loop_Optimization3_Pkg;
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- G N A T . S P I T B O L . T A B L E _ V S T R I N G -- -- -- -- S p e c -- -- -- -- $Revision$ -- -- -- Copyright (C) 1997-1998 Ada Core Technologies, 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 is maintained by Ada Core Technologies Inc (http://www.gnat.com). -- -- -- ------------------------------------------------------------------------------ -- SPITBOL tables with vstring (unbounded string) values -- This package provides a predefined instantiation of the table abstraction -- for type VString (Ada.Strings.Unbounded.Unbounded_String). This package -- is based on Macro-SPITBOL created by Robert Dewar. package GNAT.Spitbol.Table_VString is new GNAT.Spitbol.Table (VString, Nul, To_String); pragma Preelaborate (Table_VString);
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S E M -- -- -- -- B o d y -- -- -- -- 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. -- -- -- ------------------------------------------------------------------------------ with Atree; use Atree; with Debug; use Debug; with Debug_A; use Debug_A; with Elists; use Elists; with Exp_SPARK; use Exp_SPARK; with Expander; use Expander; with Ghost; use Ghost; with Lib; use Lib; with Lib.Load; use Lib.Load; with Nlists; use Nlists; with Output; use Output; with Restrict; use Restrict; with Sem_Attr; use Sem_Attr; with Sem_Ch2; use Sem_Ch2; with Sem_Ch3; use Sem_Ch3; with Sem_Ch4; use Sem_Ch4; with Sem_Ch5; use Sem_Ch5; with Sem_Ch6; use Sem_Ch6; with Sem_Ch7; use Sem_Ch7; with Sem_Ch8; use Sem_Ch8; with Sem_Ch9; use Sem_Ch9; with Sem_Ch10; use Sem_Ch10; with Sem_Ch11; use Sem_Ch11; with Sem_Ch12; use Sem_Ch12; with Sem_Ch13; use Sem_Ch13; with Sem_Prag; use Sem_Prag; with Sem_Util; use Sem_Util; with Sinfo; use Sinfo; with Stand; use Stand; with Stylesw; use Stylesw; with Uintp; use Uintp; with Uname; use Uname; with Unchecked_Deallocation; pragma Warnings (Off, Sem_Util); -- Suppress warnings of unused with for Sem_Util (used only in asserts) package body Sem is Debug_Unit_Walk : Boolean renames Debug_Flag_Dot_WW; -- Controls debugging printouts for Walk_Library_Items Outer_Generic_Scope : Entity_Id := Empty; -- Global reference to the outer scope that is generic. In a non-generic -- context, it is empty. At the moment, it is only used for avoiding -- freezing of external references in generics. Comp_Unit_List : Elist_Id := No_Elist; -- Used by Walk_Library_Items. This is a list of N_Compilation_Unit nodes -- processed by Semantics, in an appropriate order. Initialized to -- No_Elist, because it's too early to call New_Elmt_List; we will set it -- to New_Elmt_List on first use. generic with procedure Action (Withed_Unit : Node_Id); procedure Walk_Withs_Immediate (CU : Node_Id; Include_Limited : Boolean); -- Walk all the with clauses of CU, and call Action for the with'ed unit. -- Ignore limited withs, unless Include_Limited is True. CU must be an -- N_Compilation_Unit. generic with procedure Action (Withed_Unit : Node_Id); procedure Walk_Withs (CU : Node_Id; Include_Limited : Boolean); -- Same as Walk_Withs_Immediate, but also include with clauses on subunits -- of this unit, since they count as dependences on their parent library -- item. CU must be an N_Compilation_Unit whose Unit is not an N_Subunit. ------------- -- Analyze -- ------------- -- WARNING: This routine manages Ghost regions. Return statements must be -- replaced by gotos which jump to the end of the routine and restore the -- Ghost mode. procedure Analyze (N : Node_Id) is Saved_GM : constant Ghost_Mode_Type := Ghost_Mode; Saved_IGR : constant Node_Id := Ignored_Ghost_Region; -- Save the Ghost-related attributes to restore on exit begin Debug_A_Entry ("analyzing ", N); -- Immediate return if already analyzed if Analyzed (N) then Debug_A_Exit ("analyzing ", N, " (done, analyzed already)"); return; end if; -- A declaration may be subject to pragma Ghost. Set the mode now to -- ensure that any nodes generated during analysis and expansion are -- marked as Ghost. if Is_Declaration (N) then Mark_And_Set_Ghost_Declaration (N); end if; -- Otherwise processing depends on the node kind case Nkind (N) is when N_Abort_Statement => Analyze_Abort_Statement (N); when N_Abstract_Subprogram_Declaration => Analyze_Abstract_Subprogram_Declaration (N); when N_Accept_Alternative => Analyze_Accept_Alternative (N); when N_Accept_Statement => Analyze_Accept_Statement (N); when N_Aggregate => Analyze_Aggregate (N); when N_Allocator => Analyze_Allocator (N); when N_And_Then => Analyze_Short_Circuit (N); when N_Assignment_Statement => Analyze_Assignment (N); when N_Asynchronous_Select => Analyze_Asynchronous_Select (N); when N_At_Clause => Analyze_At_Clause (N); when N_Attribute_Reference => Analyze_Attribute (N); when N_Attribute_Definition_Clause => Analyze_Attribute_Definition_Clause (N); when N_Block_Statement => Analyze_Block_Statement (N); when N_Case_Expression => Analyze_Case_Expression (N); when N_Case_Statement => Analyze_Case_Statement (N); when N_Character_Literal => Analyze_Character_Literal (N); when N_Code_Statement => Analyze_Code_Statement (N); when N_Compilation_Unit => Analyze_Compilation_Unit (N); when N_Component_Declaration => Analyze_Component_Declaration (N); when N_Compound_Statement => Analyze_Compound_Statement (N); when N_Conditional_Entry_Call => Analyze_Conditional_Entry_Call (N); when N_Delay_Alternative => Analyze_Delay_Alternative (N); when N_Delay_Relative_Statement => Analyze_Delay_Relative (N); when N_Delay_Until_Statement => Analyze_Delay_Until (N); when N_Delta_Aggregate => Analyze_Aggregate (N); when N_Entry_Body => Analyze_Entry_Body (N); when N_Entry_Body_Formal_Part => Analyze_Entry_Body_Formal_Part (N); when N_Entry_Call_Alternative => Analyze_Entry_Call_Alternative (N); when N_Entry_Declaration => Analyze_Entry_Declaration (N); when N_Entry_Index_Specification => Analyze_Entry_Index_Specification (N); when N_Enumeration_Representation_Clause => Analyze_Enumeration_Representation_Clause (N); when N_Exception_Declaration => Analyze_Exception_Declaration (N); when N_Exception_Renaming_Declaration => Analyze_Exception_Renaming (N); when N_Exit_Statement => Analyze_Exit_Statement (N); when N_Expanded_Name => Analyze_Expanded_Name (N); when N_Explicit_Dereference => Analyze_Explicit_Dereference (N); when N_Expression_Function => Analyze_Expression_Function (N); when N_Expression_With_Actions => Analyze_Expression_With_Actions (N); when N_Extended_Return_Statement => Analyze_Extended_Return_Statement (N); when N_Extension_Aggregate => Analyze_Aggregate (N); when N_Formal_Object_Declaration => Analyze_Formal_Object_Declaration (N); when N_Formal_Package_Declaration => Analyze_Formal_Package_Declaration (N); when N_Formal_Subprogram_Declaration => Analyze_Formal_Subprogram_Declaration (N); when N_Formal_Type_Declaration => Analyze_Formal_Type_Declaration (N); when N_Free_Statement => Analyze_Free_Statement (N); when N_Freeze_Entity => Analyze_Freeze_Entity (N); when N_Freeze_Generic_Entity => Analyze_Freeze_Generic_Entity (N); when N_Full_Type_Declaration => Analyze_Full_Type_Declaration (N); when N_Function_Call => Analyze_Function_Call (N); when N_Function_Instantiation => Analyze_Function_Instantiation (N); when N_Generic_Function_Renaming_Declaration => Analyze_Generic_Function_Renaming (N); when N_Generic_Package_Declaration => Analyze_Generic_Package_Declaration (N); when N_Generic_Package_Renaming_Declaration => Analyze_Generic_Package_Renaming (N); when N_Generic_Procedure_Renaming_Declaration => Analyze_Generic_Procedure_Renaming (N); when N_Generic_Subprogram_Declaration => Analyze_Generic_Subprogram_Declaration (N); when N_Goto_Statement => Analyze_Goto_Statement (N); when N_Handled_Sequence_Of_Statements => Analyze_Handled_Statements (N); when N_Identifier => Analyze_Identifier (N); when N_If_Expression => Analyze_If_Expression (N); when N_If_Statement => Analyze_If_Statement (N); when N_Implicit_Label_Declaration => Analyze_Implicit_Label_Declaration (N); when N_In => Analyze_Membership_Op (N); when N_Incomplete_Type_Declaration => Analyze_Incomplete_Type_Decl (N); when N_Indexed_Component => Analyze_Indexed_Component_Form (N); when N_Integer_Literal => Analyze_Integer_Literal (N); when N_Iterator_Specification => Analyze_Iterator_Specification (N); when N_Itype_Reference => Analyze_Itype_Reference (N); when N_Label => Analyze_Label (N); when N_Loop_Parameter_Specification => Analyze_Loop_Parameter_Specification (N); when N_Loop_Statement => Analyze_Loop_Statement (N); when N_Not_In => Analyze_Membership_Op (N); when N_Null => Analyze_Null (N); when N_Null_Statement => Analyze_Null_Statement (N); when N_Number_Declaration => Analyze_Number_Declaration (N); when N_Object_Declaration => Analyze_Object_Declaration (N); when N_Object_Renaming_Declaration => Analyze_Object_Renaming (N); when N_Operator_Symbol => Analyze_Operator_Symbol (N); when N_Op_Abs => Analyze_Unary_Op (N); when N_Op_Add => Analyze_Arithmetic_Op (N); when N_Op_And => Analyze_Logical_Op (N); when N_Op_Concat => Analyze_Concatenation (N); when N_Op_Divide => Analyze_Arithmetic_Op (N); when N_Op_Eq => Analyze_Equality_Op (N); when N_Op_Expon => Analyze_Arithmetic_Op (N); when N_Op_Ge => Analyze_Comparison_Op (N); when N_Op_Gt => Analyze_Comparison_Op (N); when N_Op_Le => Analyze_Comparison_Op (N); when N_Op_Lt => Analyze_Comparison_Op (N); when N_Op_Minus => Analyze_Unary_Op (N); when N_Op_Mod => Analyze_Mod (N); when N_Op_Multiply => Analyze_Arithmetic_Op (N); when N_Op_Ne => Analyze_Equality_Op (N); when N_Op_Not => Analyze_Negation (N); when N_Op_Or => Analyze_Logical_Op (N); when N_Op_Plus => Analyze_Unary_Op (N); when N_Op_Rem => Analyze_Arithmetic_Op (N); when N_Op_Rotate_Left => Analyze_Arithmetic_Op (N); when N_Op_Rotate_Right => Analyze_Arithmetic_Op (N); when N_Op_Shift_Left => Analyze_Arithmetic_Op (N); when N_Op_Shift_Right => Analyze_Arithmetic_Op (N); when N_Op_Shift_Right_Arithmetic => Analyze_Arithmetic_Op (N); when N_Op_Subtract => Analyze_Arithmetic_Op (N); when N_Op_Xor => Analyze_Logical_Op (N); when N_Or_Else => Analyze_Short_Circuit (N); when N_Others_Choice => Analyze_Others_Choice (N); when N_Package_Body => Analyze_Package_Body (N); when N_Package_Body_Stub => Analyze_Package_Body_Stub (N); when N_Package_Declaration => Analyze_Package_Declaration (N); when N_Package_Instantiation => Analyze_Package_Instantiation (N); when N_Package_Renaming_Declaration => Analyze_Package_Renaming (N); when N_Package_Specification => Analyze_Package_Specification (N); when N_Parameter_Association => Analyze_Parameter_Association (N); when N_Pragma => Analyze_Pragma (N); when N_Private_Extension_Declaration => Analyze_Private_Extension_Declaration (N); when N_Private_Type_Declaration => Analyze_Private_Type_Declaration (N); when N_Procedure_Call_Statement => Analyze_Procedure_Call (N); when N_Procedure_Instantiation => Analyze_Procedure_Instantiation (N); when N_Protected_Body => Analyze_Protected_Body (N); when N_Protected_Body_Stub => Analyze_Protected_Body_Stub (N); when N_Protected_Definition => Analyze_Protected_Definition (N); when N_Protected_Type_Declaration => Analyze_Protected_Type_Declaration (N); when N_Qualified_Expression => Analyze_Qualified_Expression (N); when N_Quantified_Expression => Analyze_Quantified_Expression (N); when N_Raise_Expression => Analyze_Raise_Expression (N); when N_Raise_Statement => Analyze_Raise_Statement (N); when N_Raise_xxx_Error => Analyze_Raise_xxx_Error (N); when N_Range => Analyze_Range (N); when N_Range_Constraint => Analyze_Range (Range_Expression (N)); when N_Real_Literal => Analyze_Real_Literal (N); when N_Record_Representation_Clause => Analyze_Record_Representation_Clause (N); when N_Reference => Analyze_Reference (N); when N_Requeue_Statement => Analyze_Requeue (N); when N_Simple_Return_Statement => Analyze_Simple_Return_Statement (N); when N_Selected_Component => Find_Selected_Component (N); -- ??? why not Analyze_Selected_Component, needs comments when N_Selective_Accept => Analyze_Selective_Accept (N); when N_Single_Protected_Declaration => Analyze_Single_Protected_Declaration (N); when N_Single_Task_Declaration => Analyze_Single_Task_Declaration (N); when N_Slice => Analyze_Slice (N); when N_String_Literal => Analyze_String_Literal (N); when N_Subprogram_Body => Analyze_Subprogram_Body (N); when N_Subprogram_Body_Stub => Analyze_Subprogram_Body_Stub (N); when N_Subprogram_Declaration => Analyze_Subprogram_Declaration (N); when N_Subprogram_Renaming_Declaration => Analyze_Subprogram_Renaming (N); when N_Subtype_Declaration => Analyze_Subtype_Declaration (N); when N_Subtype_Indication => Analyze_Subtype_Indication (N); when N_Subunit => Analyze_Subunit (N); when N_Target_Name => Analyze_Target_Name (N); when N_Task_Body => Analyze_Task_Body (N); when N_Task_Body_Stub => Analyze_Task_Body_Stub (N); when N_Task_Definition => Analyze_Task_Definition (N); when N_Task_Type_Declaration => Analyze_Task_Type_Declaration (N); when N_Terminate_Alternative => Analyze_Terminate_Alternative (N); when N_Timed_Entry_Call => Analyze_Timed_Entry_Call (N); when N_Triggering_Alternative => Analyze_Triggering_Alternative (N); when N_Type_Conversion => Analyze_Type_Conversion (N); when N_Unchecked_Expression => Analyze_Unchecked_Expression (N); when N_Unchecked_Type_Conversion => Analyze_Unchecked_Type_Conversion (N); when N_Use_Package_Clause => Analyze_Use_Package (N); when N_Use_Type_Clause => Analyze_Use_Type (N); when N_Validate_Unchecked_Conversion => null; when N_Variant_Part => Analyze_Variant_Part (N); when N_With_Clause => Analyze_With_Clause (N); -- A call to analyze a marker is ignored because the node does not -- have any static and run-time semantics. when N_Call_Marker | N_Variable_Reference_Marker => null; -- A call to analyze the Empty node is an error, but most likely it -- is an error caused by an attempt to analyze a malformed piece of -- tree caused by some other error, so if there have been any other -- errors, we just ignore it, otherwise it is a real internal error -- which we complain about. -- We must also consider the case of call to a runtime function that -- is not available in the configurable runtime. when N_Empty => pragma Assert (Serious_Errors_Detected /= 0 or else Configurable_Run_Time_Violations /= 0); null; -- A call to analyze the error node is simply ignored, to avoid -- causing cascaded errors (happens of course only in error cases) -- Disable expansion in case it is still enabled, to prevent other -- subsequent compiler glitches. when N_Error => Expander_Mode_Save_And_Set (False); null; -- Push/Pop nodes normally don't come through an analyze call. An -- exception is the dummy ones bracketing a subprogram body. In any -- case there is nothing to be done to analyze such nodes. when N_Push_Pop_xxx_Label => null; -- SCIL nodes don't need analysis because they are decorated when -- they are built. They are added to the tree by Insert_Actions and -- the call to analyze them is generated when the full list is -- analyzed. when N_SCIL_Dispatch_Table_Tag_Init | N_SCIL_Dispatching_Call | N_SCIL_Membership_Test => null; -- A quantified expression with a missing "all" or "some" qualifier -- looks identical to an iterated component association. By language -- definition, the latter must be present within array aggregates. If -- this is not the case, then the iterated component association is -- really an illegal quantified expression. Diagnose this scenario. when N_Iterated_Component_Association => Diagnose_Iterated_Component_Association (N); when N_Iterated_Element_Association => null; -- May require a more precise error if misplaced. -- For the remaining node types, we generate compiler abort, because -- these nodes are always analyzed within the Sem_Chn routines and -- there should never be a case of making a call to the main Analyze -- routine for these node kinds. For example, an N_Access_Definition -- node appears only in the context of a type declaration, and is -- processed by the analyze routine for type declarations. when N_Abortable_Part | N_Access_Definition | N_Access_Function_Definition | N_Access_Procedure_Definition | N_Access_To_Object_Definition | N_Aspect_Specification | N_Case_Expression_Alternative | N_Case_Statement_Alternative | N_Compilation_Unit_Aux | N_Component_Association | N_Component_Clause | N_Component_Definition | N_Component_List | N_Constrained_Array_Definition | N_Contract | N_Decimal_Fixed_Point_Definition | N_Defining_Character_Literal | N_Defining_Identifier | N_Defining_Operator_Symbol | N_Defining_Program_Unit_Name | N_Delta_Constraint | N_Derived_Type_Definition | N_Designator | N_Digits_Constraint | N_Discriminant_Association | N_Discriminant_Specification | N_Elsif_Part | N_Entry_Call_Statement | N_Enumeration_Type_Definition | N_Exception_Handler | N_Floating_Point_Definition | N_Formal_Decimal_Fixed_Point_Definition | N_Formal_Derived_Type_Definition | N_Formal_Discrete_Type_Definition | N_Formal_Floating_Point_Definition | N_Formal_Modular_Type_Definition | N_Formal_Ordinary_Fixed_Point_Definition | N_Formal_Private_Type_Definition | N_Formal_Incomplete_Type_Definition | N_Formal_Signed_Integer_Type_Definition | N_Function_Specification | N_Generic_Association | N_Index_Or_Discriminant_Constraint | N_Iteration_Scheme | N_Mod_Clause | N_Modular_Type_Definition | N_Ordinary_Fixed_Point_Definition | N_Parameter_Specification | N_Pragma_Argument_Association | N_Procedure_Specification | N_Real_Range_Specification | N_Record_Definition | N_Signed_Integer_Type_Definition | N_Unconstrained_Array_Definition | N_Unused_At_End | N_Unused_At_Start | N_Variant => raise Program_Error; end case; Debug_A_Exit ("analyzing ", N, " (done)"); -- Mark relevant use-type and use-package clauses as effective -- preferring the original node over the analyzed one in the case that -- constant folding has occurred and removed references that need to be -- examined. Also, if the node in question is overloaded then this is -- deferred until resolution. declare Operat : Node_Id := Empty; begin -- Attempt to obtain a checkable operator node if Nkind (Original_Node (N)) in N_Op then Operat := Original_Node (N); elsif Nkind (N) in N_Op then Operat := N; end if; -- Mark the operator if Present (Operat) and then Present (Entity (Operat)) and then not Is_Overloaded (Operat) then Mark_Use_Clauses (Operat); end if; end; -- Now that we have analyzed the node, we call the expander to perform -- possible expansion. We skip this for subexpressions, because we don't -- have the type yet, and the expander will need to know the type before -- it can do its job. For subexpression nodes, the call to the expander -- happens in Sem_Res.Resolve. A special exception is Raise_xxx_Error, -- which can appear in a statement context, and needs expanding now in -- the case (distinguished by Etype, as documented in Sinfo). -- The Analyzed flag is also set at this point for non-subexpression -- nodes (in the case of subexpression nodes, we can't set the flag yet, -- since resolution and expansion have not yet been completed). Note -- that for N_Raise_xxx_Error we have to distinguish the expression -- case from the statement case. if Nkind (N) not in N_Subexpr or else (Nkind (N) in N_Raise_xxx_Error and then Etype (N) = Standard_Void_Type) then Expand (N); -- Replace a reference to a renaming with the renamed object for SPARK. -- In general this modification is performed by Expand_SPARK, however -- certain constructs may not reach the resolution or expansion phase -- and thus remain unchanged. The replacement is not performed when the -- construct is overloaded as resolution must first take place. This is -- also not done when analyzing a generic to preserve the original tree -- and because the reference may become overloaded in the instance. elsif GNATprove_Mode and then Nkind (N) in N_Expanded_Name | N_Identifier and then not Is_Overloaded (N) and then not Inside_A_Generic then Expand_SPARK_Potential_Renaming (N); end if; Restore_Ghost_Region (Saved_GM, Saved_IGR); end Analyze; -- Version with check(s) suppressed procedure Analyze (N : Node_Id; Suppress : Check_Id) is begin if Suppress = All_Checks then declare Svs : constant Suppress_Array := Scope_Suppress.Suppress; begin Scope_Suppress.Suppress := (others => True); Analyze (N); Scope_Suppress.Suppress := Svs; end; else declare Svg : constant Boolean := Scope_Suppress.Suppress (Suppress); begin Scope_Suppress.Suppress (Suppress) := True; Analyze (N); Scope_Suppress.Suppress (Suppress) := Svg; end; end if; end Analyze; ------------------ -- Analyze_List -- ------------------ procedure Analyze_List (L : List_Id) is Node : Node_Id; begin Node := First (L); while Present (Node) loop Analyze (Node); Next (Node); end loop; end Analyze_List; -- Version with check(s) suppressed procedure Analyze_List (L : List_Id; Suppress : Check_Id) is begin if Suppress = All_Checks then declare Svs : constant Suppress_Array := Scope_Suppress.Suppress; begin Scope_Suppress.Suppress := (others => True); Analyze_List (L); Scope_Suppress.Suppress := Svs; end; else declare Svg : constant Boolean := Scope_Suppress.Suppress (Suppress); begin Scope_Suppress.Suppress (Suppress) := True; Analyze_List (L); Scope_Suppress.Suppress (Suppress) := Svg; end; end if; end Analyze_List; -------------------------- -- Copy_Suppress_Status -- -------------------------- procedure Copy_Suppress_Status (C : Check_Id; From : Entity_Id; To : Entity_Id) is Found : Boolean; pragma Warnings (Off, Found); procedure Search_Stack (Top : Suppress_Stack_Entry_Ptr; Found : out Boolean); -- Search given suppress stack for matching entry for entity. If found -- then set Checks_May_Be_Suppressed on To, and push an appropriate -- entry for To onto the local suppress stack. ------------------ -- Search_Stack -- ------------------ procedure Search_Stack (Top : Suppress_Stack_Entry_Ptr; Found : out Boolean) is Ptr : Suppress_Stack_Entry_Ptr; begin Ptr := Top; while Ptr /= null loop if Ptr.Entity = From and then (Ptr.Check = All_Checks or else Ptr.Check = C) then if Ptr.Suppress then Set_Checks_May_Be_Suppressed (To, True); Push_Local_Suppress_Stack_Entry (Entity => To, Check => C, Suppress => True); Found := True; return; end if; end if; Ptr := Ptr.Prev; end loop; Found := False; return; end Search_Stack; -- Start of processing for Copy_Suppress_Status begin if not Checks_May_Be_Suppressed (From) then return; end if; -- First search the global entity suppress table for a matching entry. -- We also search this in reverse order so that if there are multiple -- pragmas for the same entity, the last one applies. Search_Stack (Global_Suppress_Stack_Top, Found); if Found then return; end if; -- Now search the local entity suppress stack, we search this in -- reverse order so that we get the innermost entry that applies to -- this case if there are nested entries. Note that for the purpose -- of this procedure we are ONLY looking for entries corresponding -- to a two-argument Suppress, where the second argument matches From. Search_Stack (Local_Suppress_Stack_Top, Found); end Copy_Suppress_Status; ------------------------- -- Enter_Generic_Scope -- ------------------------- procedure Enter_Generic_Scope (S : Entity_Id) is begin if No (Outer_Generic_Scope) then Outer_Generic_Scope := S; end if; end Enter_Generic_Scope; ------------------------ -- Exit_Generic_Scope -- ------------------------ procedure Exit_Generic_Scope (S : Entity_Id) is begin if S = Outer_Generic_Scope then Outer_Generic_Scope := Empty; end if; end Exit_Generic_Scope; ----------------------- -- Explicit_Suppress -- ----------------------- function Explicit_Suppress (E : Entity_Id; C : Check_Id) return Boolean is Ptr : Suppress_Stack_Entry_Ptr; begin if not Checks_May_Be_Suppressed (E) then return False; else Ptr := Global_Suppress_Stack_Top; while Ptr /= null loop if Ptr.Entity = E and then (Ptr.Check = All_Checks or else Ptr.Check = C) then return Ptr.Suppress; end if; Ptr := Ptr.Prev; end loop; end if; return False; end Explicit_Suppress; ----------------------------- -- External_Ref_In_Generic -- ----------------------------- function External_Ref_In_Generic (E : Entity_Id) return Boolean is Scop : Entity_Id; begin -- Entity is global if defined outside of current outer_generic_scope: -- Either the entity has a smaller depth that the outer generic, or it -- is in a different compilation unit, or it is defined within a unit -- in the same compilation, that is not within the outer_generic. if No (Outer_Generic_Scope) then return False; elsif Scope_Depth (Scope (E)) < Scope_Depth (Outer_Generic_Scope) or else not In_Same_Source_Unit (E, Outer_Generic_Scope) then return True; else Scop := Scope (E); while Present (Scop) loop if Scop = Outer_Generic_Scope then return False; elsif Scope_Depth (Scop) < Scope_Depth (Outer_Generic_Scope) then return True; else Scop := Scope (Scop); end if; end loop; return True; end if; end External_Ref_In_Generic; ---------------- -- Initialize -- ---------------- procedure Initialize is Next : Suppress_Stack_Entry_Ptr; procedure Free is new Unchecked_Deallocation (Suppress_Stack_Entry, Suppress_Stack_Entry_Ptr); begin -- Free any global suppress stack entries from a previous invocation -- of the compiler (in the normal case this loop does nothing). while Suppress_Stack_Entries /= null loop Next := Suppress_Stack_Entries.Next; Free (Suppress_Stack_Entries); Suppress_Stack_Entries := Next; end loop; Local_Suppress_Stack_Top := null; Global_Suppress_Stack_Top := null; -- Clear scope stack, and reset global variables Scope_Stack.Init; Unloaded_Subunits := False; end Initialize; ------------------------------ -- Insert_After_And_Analyze -- ------------------------------ procedure Insert_After_And_Analyze (N : Node_Id; M : Node_Id) is Node : Node_Id; begin if Present (M) then -- If we are not at the end of the list, then the easiest -- coding is simply to insert before our successor. if Present (Next (N)) then Insert_Before_And_Analyze (Next (N), M); -- Case of inserting at the end of the list else -- Capture the Node_Id of the node to be inserted. This Node_Id -- will still be the same after the insert operation. Node := M; Insert_After (N, M); -- Now just analyze from the inserted node to the end of -- the new list (note that this properly handles the case -- where any of the analyze calls result in the insertion of -- nodes after the analyzed node, expecting analysis). while Present (Node) loop Analyze (Node); Mark_Rewrite_Insertion (Node); Next (Node); end loop; end if; end if; end Insert_After_And_Analyze; -- Version with check(s) suppressed procedure Insert_After_And_Analyze (N : Node_Id; M : Node_Id; Suppress : Check_Id) is begin if Suppress = All_Checks then declare Svs : constant Suppress_Array := Scope_Suppress.Suppress; begin Scope_Suppress.Suppress := (others => True); Insert_After_And_Analyze (N, M); Scope_Suppress.Suppress := Svs; end; else declare Svg : constant Boolean := Scope_Suppress.Suppress (Suppress); begin Scope_Suppress.Suppress (Suppress) := True; Insert_After_And_Analyze (N, M); Scope_Suppress.Suppress (Suppress) := Svg; end; end if; end Insert_After_And_Analyze; ------------------------------- -- Insert_Before_And_Analyze -- ------------------------------- procedure Insert_Before_And_Analyze (N : Node_Id; M : Node_Id) is Node : Node_Id; begin if Present (M) then -- Capture the Node_Id of the first list node to be inserted. -- This will still be the first node after the insert operation, -- since Insert_List_After does not modify the Node_Id values. Node := M; Insert_Before (N, M); -- The insertion does not change the Id's of any of the nodes in -- the list, and they are still linked, so we can simply loop from -- the original first node until we meet the node before which the -- insertion is occurring. Note that this properly handles the case -- where any of the analyzed nodes insert nodes after themselves, -- expecting them to get analyzed. while Node /= N loop Analyze (Node); Mark_Rewrite_Insertion (Node); Next (Node); end loop; end if; end Insert_Before_And_Analyze; -- Version with check(s) suppressed procedure Insert_Before_And_Analyze (N : Node_Id; M : Node_Id; Suppress : Check_Id) is begin if Suppress = All_Checks then declare Svs : constant Suppress_Array := Scope_Suppress.Suppress; begin Scope_Suppress.Suppress := (others => True); Insert_Before_And_Analyze (N, M); Scope_Suppress.Suppress := Svs; end; else declare Svg : constant Boolean := Scope_Suppress.Suppress (Suppress); begin Scope_Suppress.Suppress (Suppress) := True; Insert_Before_And_Analyze (N, M); Scope_Suppress.Suppress (Suppress) := Svg; end; end if; end Insert_Before_And_Analyze; -------------------------------------------- -- Insert_Before_First_Source_Declaration -- -------------------------------------------- procedure Insert_Before_First_Source_Declaration (Stmt : Node_Id; Decls : List_Id) is Decl : Node_Id; begin -- Inspect the declarations of the related subprogram body looking for -- the first source declaration. pragma Assert (Present (Decls)); Decl := First (Decls); while Present (Decl) loop if Comes_From_Source (Decl) then Insert_Before (Decl, Stmt); return; end if; Next (Decl); end loop; -- If we get there, then the subprogram body lacks any source -- declarations. The body of _Postconditions now acts as the -- last declaration. Append (Stmt, Decls); end Insert_Before_First_Source_Declaration; ----------------------------------- -- Insert_List_After_And_Analyze -- ----------------------------------- procedure Insert_List_After_And_Analyze (N : Node_Id; L : List_Id) is After : constant Node_Id := Next (N); Node : Node_Id; begin if Is_Non_Empty_List (L) then -- Capture the Node_Id of the first list node to be inserted. -- This will still be the first node after the insert operation, -- since Insert_List_After does not modify the Node_Id values. Node := First (L); Insert_List_After (N, L); -- Now just analyze from the original first node until we get to the -- successor of the original insertion point (which may be Empty if -- the insertion point was at the end of the list). Note that this -- properly handles the case where any of the analyze calls result in -- the insertion of nodes after the analyzed node (possibly calling -- this routine recursively). while Node /= After loop Analyze (Node); Mark_Rewrite_Insertion (Node); Next (Node); end loop; end if; end Insert_List_After_And_Analyze; ------------------------------------ -- Insert_List_Before_And_Analyze -- ------------------------------------ procedure Insert_List_Before_And_Analyze (N : Node_Id; L : List_Id) is Node : Node_Id; begin if Is_Non_Empty_List (L) then -- Capture the Node_Id of the first list node to be inserted. This -- will still be the first node after the insert operation, since -- Insert_List_After does not modify the Node_Id values. Node := First (L); Insert_List_Before (N, L); -- The insertion does not change the Id's of any of the nodes in -- the list, and they are still linked, so we can simply loop from -- the original first node until we meet the node before which the -- insertion is occurring. Note that this properly handles the case -- where any of the analyzed nodes insert nodes after themselves, -- expecting them to get analyzed. while Node /= N loop Analyze (Node); Mark_Rewrite_Insertion (Node); Next (Node); end loop; end if; end Insert_List_Before_And_Analyze; ---------- -- Lock -- ---------- procedure Lock is begin Scope_Stack.Release; Scope_Stack.Locked := True; end Lock; ------------------------ -- Preanalysis_Active -- ------------------------ function Preanalysis_Active return Boolean is begin return not Full_Analysis and not Expander_Active; end Preanalysis_Active; ---------------- -- Preanalyze -- ---------------- procedure Preanalyze (N : Node_Id) is Save_Full_Analysis : constant Boolean := Full_Analysis; begin Full_Analysis := False; Expander_Mode_Save_And_Set (False); Analyze (N); Expander_Mode_Restore; Full_Analysis := Save_Full_Analysis; end Preanalyze; -------------------------------------- -- Push_Global_Suppress_Stack_Entry -- -------------------------------------- procedure Push_Global_Suppress_Stack_Entry (Entity : Entity_Id; Check : Check_Id; Suppress : Boolean) is begin Global_Suppress_Stack_Top := new Suppress_Stack_Entry' (Entity => Entity, Check => Check, Suppress => Suppress, Prev => Global_Suppress_Stack_Top, Next => Suppress_Stack_Entries); Suppress_Stack_Entries := Global_Suppress_Stack_Top; return; end Push_Global_Suppress_Stack_Entry; ------------------------------------- -- Push_Local_Suppress_Stack_Entry -- ------------------------------------- procedure Push_Local_Suppress_Stack_Entry (Entity : Entity_Id; Check : Check_Id; Suppress : Boolean) is begin Local_Suppress_Stack_Top := new Suppress_Stack_Entry' (Entity => Entity, Check => Check, Suppress => Suppress, Prev => Local_Suppress_Stack_Top, Next => Suppress_Stack_Entries); Suppress_Stack_Entries := Local_Suppress_Stack_Top; return; end Push_Local_Suppress_Stack_Entry; --------------- -- Semantics -- --------------- procedure Semantics (Comp_Unit : Node_Id) is procedure Do_Analyze; -- Perform the analysis of the compilation unit ---------------- -- Do_Analyze -- ---------------- -- WARNING: This routine manages Ghost regions. Return statements must -- be replaced by gotos which jump to the end of the routine and restore -- the Ghost mode. procedure Do_Analyze is Saved_GM : constant Ghost_Mode_Type := Ghost_Mode; Saved_IGR : constant Node_Id := Ignored_Ghost_Region; -- Save the Ghost-related attributes to restore on exit -- Generally style checks are preserved across compilations, with -- one exception: s-oscons.ads, which allows arbitrary long lines -- unconditionally, and has no restore mechanism, because it is -- intended as a lowest-level Pure package. Saved_ML : constant Int := Style_Max_Line_Length; Saved_CML : constant Boolean := Style_Check_Max_Line_Length; List : Elist_Id; begin List := Save_Scope_Stack; Push_Scope (Standard_Standard); -- Set up a clean environment before analyzing Install_Ghost_Region (None, Empty); Outer_Generic_Scope := Empty; Scope_Suppress := Suppress_Options; Scope_Stack.Table (Scope_Stack.Last).Component_Alignment_Default := Configuration_Component_Alignment; Scope_Stack.Table (Scope_Stack.Last).Is_Active_Stack_Base := True; -- Now analyze the top level compilation unit node Analyze (Comp_Unit); -- Check for scope mismatch on exit from compilation pragma Assert (Current_Scope = Standard_Standard or else Comp_Unit = Cunit (Main_Unit)); -- Then pop entry for Standard, and pop implicit types Pop_Scope; Restore_Scope_Stack (List); Restore_Ghost_Region (Saved_GM, Saved_IGR); Style_Max_Line_Length := Saved_ML; Style_Check_Max_Line_Length := Saved_CML; end Do_Analyze; -- Local variables -- The following locations save the corresponding global flags and -- variables so that they can be restored on completion. This is needed -- so that calls to Rtsfind start with the proper default values for -- these variables, and also that such calls do not disturb the settings -- for units being analyzed at a higher level. S_Current_Sem_Unit : constant Unit_Number_Type := Current_Sem_Unit; S_Full_Analysis : constant Boolean := Full_Analysis; S_GNAT_Mode : constant Boolean := GNAT_Mode; S_Global_Dis_Names : constant Boolean := Global_Discard_Names; S_In_Assertion_Expr : constant Nat := In_Assertion_Expr; S_In_Declare_Expr : constant Nat := In_Declare_Expr; S_In_Default_Expr : constant Boolean := In_Default_Expr; S_In_Spec_Expr : constant Boolean := In_Spec_Expression; S_Inside_A_Generic : constant Boolean := Inside_A_Generic; S_Outer_Gen_Scope : constant Entity_Id := Outer_Generic_Scope; S_Style_Check : constant Boolean := Style_Check; Already_Analyzed : constant Boolean := Analyzed (Comp_Unit); Curunit : constant Unit_Number_Type := Get_Cunit_Unit_Number (Comp_Unit); -- New value of Current_Sem_Unit Generic_Main : constant Boolean := Nkind (Unit (Cunit (Main_Unit))) in N_Generic_Declaration; -- If the main unit is generic, every compiled unit, including its -- context, is compiled with expansion disabled. Is_Main_Unit_Or_Main_Unit_Spec : constant Boolean := Curunit = Main_Unit or else (Nkind (Unit (Cunit (Main_Unit))) = N_Package_Body and then Library_Unit (Cunit (Main_Unit)) = Cunit (Curunit)); -- Configuration flags have special settings when compiling a predefined -- file as a main unit. This applies to its spec as well. Ext_Main_Source_Unit : constant Boolean := In_Extended_Main_Source_Unit (Comp_Unit); -- Determine if unit is in extended main source unit Save_Config_Attrs : Config_Switches_Type; -- Variable used to save values of config switches while we analyze the -- new unit, to be restored on exit for proper recursive behavior. Save_Cunit_Restrictions : Save_Cunit_Boolean_Restrictions; -- Used to save non-partition wide restrictions before processing new -- unit. All with'ed units are analyzed with config restrictions reset -- and we need to restore these saved values at the end. Save_Preanalysis_Counter : constant Nat := Inside_Preanalysis_Without_Freezing; -- Saves the preanalysis nesting-level counter; required since we may -- need to analyze a unit as a consequence of the preanalysis of an -- expression without freezing (and the loaded unit must be fully -- analyzed). -- Start of processing for Semantics begin Inside_Preanalysis_Without_Freezing := 0; if Debug_Unit_Walk then if Already_Analyzed then Write_Str ("(done)"); end if; Write_Unit_Info (Get_Cunit_Unit_Number (Comp_Unit), Unit (Comp_Unit), Prefix => "--> "); Indent; end if; Compiler_State := Analyzing; Current_Sem_Unit := Curunit; -- Compile predefined units with GNAT_Mode set to True, to properly -- process the categorization stuff. However, do not set GNAT_Mode -- to True for the renamings units (Text_IO, IO_Exceptions, Direct_IO, -- Sequential_IO) as this would prevent pragma Extend_System from being -- taken into account, for example when Text_IO is renaming DEC.Text_IO. if Is_Predefined_Unit (Current_Sem_Unit) and then not Is_Predefined_Renaming (Current_Sem_Unit) then GNAT_Mode := True; end if; -- For generic main, never do expansion if Generic_Main then Expander_Mode_Save_And_Set (False); -- Non generic case else Expander_Mode_Save_And_Set -- Turn on expansion if generating code (Operating_Mode = Generate_Code -- Or if special debug flag -gnatdx is set or else Debug_Flag_X -- Or if in configuration run-time mode. We do this so we get -- error messages about missing entities in the run-time even -- if we are compiling in -gnatc (no code generation) mode. -- Similar processing applies to No_Run_Time_Mode. However, -- don't do this if debug flag -gnatd.Z is set or when we are -- compiling a separate unit (this is to handle a situation -- where this new processing causes trouble). or else ((Configurable_Run_Time_Mode or No_Run_Time_Mode) and then not Debug_Flag_Dot_ZZ and then Nkind (Unit (Cunit (Main_Unit))) /= N_Subunit)); end if; Full_Analysis := True; Inside_A_Generic := False; In_Assertion_Expr := 0; In_Declare_Expr := 0; In_Default_Expr := False; In_Spec_Expression := False; Set_Comes_From_Source_Default (False); -- Save current config switches and reset then appropriately Save_Config_Attrs := Save_Config_Switches; Set_Config_Switches (Is_Internal_Unit (Current_Sem_Unit), Is_Main_Unit_Or_Main_Unit_Spec); -- Save current non-partition-wide restrictions Save_Cunit_Restrictions := Cunit_Boolean_Restrictions_Save; -- For unit in main extended unit, we reset the configuration values -- for the non-partition-wide restrictions. For other units reset them. if Ext_Main_Source_Unit then Restore_Config_Cunit_Boolean_Restrictions; else Reset_Cunit_Boolean_Restrictions; end if; -- Turn off style checks for unit that is not in the extended main -- source unit. This improves processing efficiency for such units -- (for which we don't want style checks anyway, and where they will -- get suppressed), and is definitely needed to stop some style checks -- from invading the run-time units (e.g. overriding checks). if not Ext_Main_Source_Unit then Style_Check := False; -- If this is part of the extended main source unit, set style check -- mode to match the style check mode of the main source unit itself. else Style_Check := Style_Check_Main; end if; -- Only do analysis of unit that has not already been analyzed if not Analyzed (Comp_Unit) then Initialize_Version (Current_Sem_Unit); -- Do analysis, and then append the compilation unit onto the -- Comp_Unit_List, if appropriate. This is done after analysis, -- so if this unit depends on some others, they have already been -- appended. We ignore bodies, except for the main unit itself, and -- for subprogram bodies that act as specs. We have also to guard -- against ill-formed subunits that have an improper context. Do_Analyze; if Present (Comp_Unit) and then Nkind (Unit (Comp_Unit)) in N_Proper_Body and then (Nkind (Unit (Comp_Unit)) /= N_Subprogram_Body or else not Acts_As_Spec (Comp_Unit)) and then not Ext_Main_Source_Unit then null; else Append_New_Elmt (Comp_Unit, To => Comp_Unit_List); if Debug_Unit_Walk then Write_Str ("Appending "); Write_Unit_Info (Get_Cunit_Unit_Number (Comp_Unit), Unit (Comp_Unit)); end if; end if; end if; -- Save indication of dynamic elaboration checks for ALI file Set_Dynamic_Elab (Current_Sem_Unit, Dynamic_Elaboration_Checks); -- Restore settings of saved switches to entry values Current_Sem_Unit := S_Current_Sem_Unit; Full_Analysis := S_Full_Analysis; Global_Discard_Names := S_Global_Dis_Names; GNAT_Mode := S_GNAT_Mode; In_Assertion_Expr := S_In_Assertion_Expr; In_Declare_Expr := S_In_Declare_Expr; In_Default_Expr := S_In_Default_Expr; In_Spec_Expression := S_In_Spec_Expr; Inside_A_Generic := S_Inside_A_Generic; Outer_Generic_Scope := S_Outer_Gen_Scope; Style_Check := S_Style_Check; Restore_Config_Switches (Save_Config_Attrs); -- Deal with restore of restrictions Cunit_Boolean_Restrictions_Restore (Save_Cunit_Restrictions); Expander_Mode_Restore; if Debug_Unit_Walk then Outdent; if Already_Analyzed then Write_Str ("(done)"); end if; Write_Unit_Info (Get_Cunit_Unit_Number (Comp_Unit), Unit (Comp_Unit), Prefix => "<-- "); end if; Inside_Preanalysis_Without_Freezing := Save_Preanalysis_Counter; end Semantics; -------- -- ss -- -------- function ss (Index : Int) return Scope_Stack_Entry is begin return Scope_Stack.Table (Index); end ss; --------- -- sst -- --------- function sst return Scope_Stack_Entry is begin return ss (Scope_Stack.Last); end sst; ------------ -- Unlock -- ------------ procedure Unlock is begin Scope_Stack.Locked := False; end Unlock; ------------------------ -- Walk_Library_Items -- ------------------------ procedure Walk_Library_Items is type Unit_Number_Set is array (Main_Unit .. Last_Unit) of Boolean; pragma Pack (Unit_Number_Set); Main_CU : constant Node_Id := Cunit (Main_Unit); Spec_CU : Node_Id := Empty; Seen, Done : Unit_Number_Set := (others => False); -- Seen (X) is True after we have seen unit X in the walk. This is used -- to prevent processing the same unit more than once. Done (X) is True -- after we have fully processed X, and is used only for debugging -- printouts and assertions. Do_Main : Boolean := False; -- Flag to delay processing the main body until after all other units. -- This is needed because the spec of the main unit may appear in the -- context of some other unit. We do not want this to force processing -- of the main body before all other units have been processed. -- -- Another circularity pattern occurs when the main unit is a child unit -- and the body of an ancestor has a with-clause of the main unit or on -- one of its children. In both cases the body in question has a with- -- clause on the main unit, and must be excluded from the traversal. In -- some convoluted cases this may lead to a CodePeer error because the -- spec of a subprogram declared in an instance within the parent will -- not be seen in the main unit. function Depends_On_Main (CU : Node_Id) return Boolean; -- The body of a unit that is withed by the spec of the main unit may in -- turn have a with_clause on that spec. In that case do not traverse -- the body, to prevent loops. It can also happen that the main body has -- a with_clause on a child, which of course has an implicit with on its -- parent. It's OK to traverse the child body if the main spec has been -- processed, otherwise we also have a circularity to avoid. procedure Do_Action (CU : Node_Id; Item : Node_Id); -- Calls Action, with some validity checks procedure Do_Unit_And_Dependents (CU : Node_Id; Item : Node_Id); -- Calls Do_Action, first on the units with'ed by this one, then on -- this unit. If it's an instance body, do the spec first. If it is -- an instance spec, do the body last. procedure Do_Withed_Unit (Withed_Unit : Node_Id); -- Apply Do_Unit_And_Dependents to a unit in a context clause procedure Process_Bodies_In_Context (Comp : Node_Id); -- The main unit and its spec may depend on bodies that contain generics -- that are instantiated in them. Iterate through the corresponding -- contexts before processing main (spec/body) itself, to process bodies -- that may be present, together with their context. The spec of main -- is processed wherever it appears in the list of units, while the body -- is processed as the last unit in the list. --------------------- -- Depends_On_Main -- --------------------- function Depends_On_Main (CU : Node_Id) return Boolean is CL : Node_Id; MCU : constant Node_Id := Unit (Main_CU); begin -- Problem does not arise with main subprograms if Nkind (MCU) not in N_Package_Body | N_Package_Declaration then return False; end if; CL := First (Context_Items (CU)); while Present (CL) loop if Nkind (CL) = N_With_Clause and then Library_Unit (CL) = Main_CU and then not Done (Get_Cunit_Unit_Number (Library_Unit (CL))) then return True; end if; Next (CL); end loop; return False; end Depends_On_Main; --------------- -- Do_Action -- --------------- procedure Do_Action (CU : Node_Id; Item : Node_Id) is begin -- This calls Action at the end. All the preceding code is just -- assertions and debugging output. pragma Assert (No (CU) or else Nkind (CU) = N_Compilation_Unit); case Nkind (Item) is when N_Generic_Function_Renaming_Declaration | N_Generic_Package_Declaration | N_Generic_Package_Renaming_Declaration | N_Generic_Procedure_Renaming_Declaration | N_Generic_Subprogram_Declaration | N_Package_Declaration | N_Package_Renaming_Declaration | N_Subprogram_Declaration | N_Subprogram_Renaming_Declaration => -- Specs are OK null; when N_Package_Body => -- Package bodies are processed separately if the main unit -- depends on them. null; when N_Subprogram_Body => -- A subprogram body must be the main unit pragma Assert (Acts_As_Spec (CU) or else CU = Main_CU); null; when N_Function_Instantiation | N_Package_Instantiation | N_Procedure_Instantiation => -- Can only happen if some generic body (needed for gnat2scil -- traversal, but not by GNAT) is not available, ignore. null; -- All other cases cannot happen when N_Subunit => pragma Assert (False, "subunit"); null; when N_Null_Statement => -- Do not call Action for an ignored ghost unit pragma Assert (Is_Ignored_Ghost_Node (Original_Node (Item))); return; when others => pragma Assert (False); null; end case; if Present (CU) then pragma Assert (Item /= Stand.Standard_Package_Node); pragma Assert (Item = Unit (CU)); declare Unit_Num : constant Unit_Number_Type := Get_Cunit_Unit_Number (CU); procedure Assert_Done (Withed_Unit : Node_Id); -- Assert Withed_Unit is already Done, unless it's a body. It -- might seem strange for a with_clause to refer to a body, but -- this happens in the case of a generic instantiation, which -- gets transformed into the instance body (and the instance -- spec is also created). With clauses pointing to the -- instantiation end up pointing to the instance body. ----------------- -- Assert_Done -- ----------------- procedure Assert_Done (Withed_Unit : Node_Id) is begin if Withed_Unit /= Main_CU and then not Done (Get_Cunit_Unit_Number (Withed_Unit)) then -- N_Null_Statement will happen in case of a ghost unit -- which gets rewritten. if Nkind (Unit (Withed_Unit)) not in N_Generic_Package_Declaration | N_Package_Body | N_Package_Renaming_Declaration | N_Subprogram_Body | N_Null_Statement then Write_Unit_Name (Unit_Name (Get_Cunit_Unit_Number (Withed_Unit))); Write_Str (" not yet walked!"); if Get_Cunit_Unit_Number (Withed_Unit) = Unit_Num then Write_Str (" (self-ref)"); end if; Write_Eol; pragma Assert (False); end if; end if; end Assert_Done; procedure Assert_Withed_Units_Done is new Walk_Withs (Assert_Done); begin if Debug_Unit_Walk then Write_Unit_Info (Unit_Num, Item, Withs => True); end if; -- Main unit should come last, except in the case where we -- skipped System_Aux_Id, in which case we missed the things it -- depends on, and in the case of parent bodies if present. pragma Assert (not Done (Main_Unit) or else Present (System_Aux_Id) or else Nkind (Item) = N_Package_Body); -- We shouldn't do the same thing twice pragma Assert (not Done (Unit_Num)); -- Everything we depend upon should already be done pragma Debug (Assert_Withed_Units_Done (CU, Include_Limited => False)); end; else -- Must be Standard, which has no entry in the units table pragma Assert (Item = Stand.Standard_Package_Node); if Debug_Unit_Walk then Write_Line ("Standard"); end if; end if; Action (Item); end Do_Action; -------------------- -- Do_Withed_Unit -- -------------------- procedure Do_Withed_Unit (Withed_Unit : Node_Id) is begin Do_Unit_And_Dependents (Withed_Unit, Unit (Withed_Unit)); -- If the unit in the with_clause is a generic instance, the clause -- now denotes the instance body. Traverse the corresponding spec -- because there may be no other dependence that will force the -- traversal of its own context. if Nkind (Unit (Withed_Unit)) = N_Package_Body and then Is_Generic_Instance (Defining_Entity (Unit (Library_Unit (Withed_Unit)))) then Do_Withed_Unit (Library_Unit (Withed_Unit)); end if; end Do_Withed_Unit; ---------------------------- -- Do_Unit_And_Dependents -- ---------------------------- procedure Do_Unit_And_Dependents (CU : Node_Id; Item : Node_Id) is Unit_Num : constant Unit_Number_Type := Get_Cunit_Unit_Number (CU); Child : Node_Id; Body_U : Unit_Number_Type; Parent_CU : Node_Id; procedure Do_Withed_Units is new Walk_Withs (Do_Withed_Unit); begin if not Seen (Unit_Num) then -- Process the with clauses Do_Withed_Units (CU, Include_Limited => False); -- Process the unit if it is a spec or the main unit, if it -- has no previous spec or we have done all other units. if Nkind (Item) not in N_Package_Body | N_Subprogram_Body or else Acts_As_Spec (CU) then if CU = Main_CU and then not Do_Main then Seen (Unit_Num) := False; else Seen (Unit_Num) := True; if CU = Library_Unit (Main_CU) then Process_Bodies_In_Context (CU); -- If main is a child unit, examine parent unit contexts -- to see if they include instantiated units. Also, if -- the parent itself is an instance, process its body -- because it may contain subprograms that are called -- in the main unit. if Is_Child_Unit (Cunit_Entity (Main_Unit)) then Child := Cunit_Entity (Main_Unit); while Is_Child_Unit (Child) loop Parent_CU := Cunit (Get_Cunit_Entity_Unit_Number (Scope (Child))); Process_Bodies_In_Context (Parent_CU); if Nkind (Unit (Parent_CU)) = N_Package_Body and then Nkind (Original_Node (Unit (Parent_CU))) = N_Package_Instantiation and then not Seen (Get_Cunit_Unit_Number (Parent_CU)) then Body_U := Get_Cunit_Unit_Number (Parent_CU); Seen (Body_U) := True; Do_Action (Parent_CU, Unit (Parent_CU)); Done (Body_U) := True; end if; Child := Scope (Child); end loop; end if; end if; Do_Action (CU, Item); Done (Unit_Num) := True; end if; end if; end if; end Do_Unit_And_Dependents; ------------------------------- -- Process_Bodies_In_Context -- ------------------------------- procedure Process_Bodies_In_Context (Comp : Node_Id) is Body_CU : Node_Id; Body_U : Unit_Number_Type; Clause : Node_Id; Spec : Node_Id; procedure Do_Withed_Units is new Walk_Withs (Do_Withed_Unit); -- Start of processing for Process_Bodies_In_Context begin Clause := First (Context_Items (Comp)); while Present (Clause) loop if Nkind (Clause) = N_With_Clause then Spec := Library_Unit (Clause); Body_CU := Library_Unit (Spec); -- If we are processing the spec of the main unit, load bodies -- only if the with_clause indicates that it forced the loading -- of the body for a generic instantiation. Note that bodies of -- parents that are instances have been loaded already. if Present (Body_CU) and then Body_CU /= Main_CU and then Nkind (Unit (Body_CU)) /= N_Subprogram_Body and then Nkind (Unit (Comp)) /= N_Package_Declaration then Body_U := Get_Cunit_Unit_Number (Body_CU); if not Seen (Body_U) and then not Depends_On_Main (Body_CU) then Seen (Body_U) := True; Do_Withed_Units (Body_CU, Include_Limited => False); Do_Action (Body_CU, Unit (Body_CU)); Done (Body_U) := True; end if; end if; end if; Next (Clause); end loop; end Process_Bodies_In_Context; -- Local Declarations Cur : Elmt_Id; -- Start of processing for Walk_Library_Items begin if Debug_Unit_Walk then Write_Line ("Walk_Library_Items:"); Indent; end if; -- Do Standard first, then walk the Comp_Unit_List Do_Action (Empty, Standard_Package_Node); -- First place the context of all instance bodies on the corresponding -- spec, because it may be needed to analyze the code at the place of -- the instantiation. Cur := First_Elmt (Comp_Unit_List); while Present (Cur) loop declare CU : constant Node_Id := Node (Cur); N : constant Node_Id := Unit (CU); begin if Nkind (N) = N_Package_Body and then Is_Generic_Instance (Defining_Entity (N)) then Append_List (Context_Items (CU), Context_Items (Library_Unit (CU))); end if; Next_Elmt (Cur); end; end loop; -- Now traverse compilation units (specs) in order Cur := First_Elmt (Comp_Unit_List); while Present (Cur) loop declare CU : constant Node_Id := Node (Cur); N : constant Node_Id := Unit (CU); Par : Entity_Id; begin pragma Assert (Nkind (CU) = N_Compilation_Unit); case Nkind (N) is -- If it is a subprogram body, process it if it has no -- separate spec. -- If it's a package body, ignore it, unless it is a body -- created for an instance that is the main unit. In the case -- of subprograms, the body is the wrapper package. In case of -- a package, the original file carries the body, and the spec -- appears as a later entry in the units list. -- Otherwise bodies appear in the list only because of inlining -- or instantiations, and they are processed only if relevant. -- The flag Withed_Body on a context clause indicates that a -- unit contains an instantiation that may be needed later, -- and therefore the body that contains the generic body (and -- its context) must be traversed immediately after the -- corresponding spec (see Do_Unit_And_Dependents). -- The main unit itself is processed separately after all other -- specs, and relevant bodies are examined in Process_Main. when N_Subprogram_Body => if Acts_As_Spec (N) then Do_Unit_And_Dependents (CU, N); end if; when N_Package_Body => if CU = Main_CU and then Nkind (Original_Node (Unit (Main_CU))) in N_Generic_Instantiation and then Present (Library_Unit (Main_CU)) then Do_Unit_And_Dependents (Library_Unit (Main_CU), Unit (Library_Unit (Main_CU))); end if; -- It is a spec, process it, and the units it depends on, -- unless it is a descendant of the main unit. This can happen -- when the body of a parent depends on some other descendant. when N_Null_Statement => -- Ignore an ignored ghost unit pragma Assert (Is_Ignored_Ghost_Node (Original_Node (N))); null; when others => -- Skip spec of main unit for now, we want to process it -- after all other specs. if Nkind (Unit (CU)) = N_Package_Declaration and then Library_Unit (CU) = Main_CU and then CU /= Main_CU then Spec_CU := CU; else Par := Scope (Defining_Entity (Unit (CU))); if Is_Child_Unit (Defining_Entity (Unit (CU))) then while Present (Par) and then Par /= Standard_Standard and then Par /= Cunit_Entity (Main_Unit) loop Par := Scope (Par); end loop; end if; if Par /= Cunit_Entity (Main_Unit) then Do_Unit_And_Dependents (CU, N); end if; end if; end case; end; Next_Elmt (Cur); end loop; -- Now process main package spec if skipped if Present (Spec_CU) then Do_Unit_And_Dependents (Spec_CU, Unit (Spec_CU)); end if; -- Now process package bodies on which main depends, followed by bodies -- of parents, if present, and finally main itself. if not Done (Main_Unit) then Do_Main := True; Process_Main : declare Parent_CU : Node_Id; Body_CU : Node_Id; Body_U : Unit_Number_Type; Child : Entity_Id; function Is_Subunit_Of_Main (U : Node_Id) return Boolean; -- If the main unit has subunits, their context may include -- bodies that are needed in the body of main. We must examine -- the context of the subunits, which are otherwise not made -- explicit in the main unit. ------------------------ -- Is_Subunit_Of_Main -- ------------------------ function Is_Subunit_Of_Main (U : Node_Id) return Boolean is Lib : Node_Id; begin if Present (U) and then Nkind (Unit (U)) = N_Subunit then Lib := Library_Unit (U); return Lib = Main_CU or else Is_Subunit_Of_Main (Lib); else return False; end if; end Is_Subunit_Of_Main; -- Start of processing for Process_Main begin Process_Bodies_In_Context (Main_CU); for Unit_Num in Done'Range loop if Is_Subunit_Of_Main (Cunit (Unit_Num)) then Process_Bodies_In_Context (Cunit (Unit_Num)); end if; end loop; -- If the main unit is a child unit, parent bodies may be present -- because they export instances or inlined subprograms. Check for -- presence of these, which are not present in context clauses. -- Note that if the parents are instances, their bodies have been -- processed before the main spec, because they may be needed -- therein, so the following loop only affects non-instances. if Is_Child_Unit (Cunit_Entity (Main_Unit)) then Child := Cunit_Entity (Main_Unit); while Is_Child_Unit (Child) loop Parent_CU := Cunit (Get_Cunit_Entity_Unit_Number (Scope (Child))); Body_CU := Library_Unit (Parent_CU); if Present (Body_CU) and then not Seen (Get_Cunit_Unit_Number (Body_CU)) and then not Depends_On_Main (Body_CU) then Body_U := Get_Cunit_Unit_Number (Body_CU); Seen (Body_U) := True; Do_Action (Body_CU, Unit (Body_CU)); Done (Body_U) := True; end if; Child := Scope (Child); end loop; end if; Do_Action (Main_CU, Unit (Main_CU)); Done (Main_Unit) := True; end Process_Main; end if; if Debug_Unit_Walk then if Done /= (Done'Range => True) then Write_Eol; Write_Line ("Ignored units:"); Indent; for Unit_Num in Done'Range loop if not Done (Unit_Num) then -- Units with configuration pragmas (.ads files) have empty -- compilation-unit nodes; skip printing info about them. if Present (Cunit (Unit_Num)) then Write_Unit_Info (Unit_Num, Unit (Cunit (Unit_Num)), Withs => True); end if; end if; end loop; Outdent; end if; end if; pragma Assert (Done (Main_Unit)); if Debug_Unit_Walk then Outdent; Write_Line ("end Walk_Library_Items."); end if; end Walk_Library_Items; ---------------- -- Walk_Withs -- ---------------- procedure Walk_Withs (CU : Node_Id; Include_Limited : Boolean) is pragma Assert (Nkind (CU) = N_Compilation_Unit); pragma Assert (Nkind (Unit (CU)) /= N_Subunit); procedure Walk_Immediate is new Walk_Withs_Immediate (Action); begin -- First walk the withs immediately on the library item Walk_Immediate (CU, Include_Limited); -- For a body, we must also check for any subunits which belong to it -- and which have context clauses of their own, since these with'ed -- units are part of its own dependencies. if Nkind (Unit (CU)) in N_Unit_Body then for S in Main_Unit .. Last_Unit loop -- We are only interested in subunits. For preproc. data and def. -- files, Cunit is Empty, so we need to test that first. if Cunit (S) /= Empty and then Nkind (Unit (Cunit (S))) = N_Subunit then declare Pnode : Node_Id; begin Pnode := Library_Unit (Cunit (S)); -- In -gnatc mode, the errors in the subunits will not have -- been recorded, but the analysis of the subunit may have -- failed, so just quit. if No (Pnode) then exit; end if; -- Find ultimate parent of the subunit while Nkind (Unit (Pnode)) = N_Subunit loop Pnode := Library_Unit (Pnode); end loop; -- See if it belongs to current unit, and if so, include its -- with_clauses. Do not process main unit prematurely. if Pnode = CU and then CU /= Cunit (Main_Unit) then Walk_Immediate (Cunit (S), Include_Limited); end if; end; end if; end loop; end if; end Walk_Withs; -------------------------- -- Walk_Withs_Immediate -- -------------------------- procedure Walk_Withs_Immediate (CU : Node_Id; Include_Limited : Boolean) is pragma Assert (Nkind (CU) = N_Compilation_Unit); Context_Item : Node_Id; Lib_Unit : Node_Id; begin Context_Item := First (Context_Items (CU)); while Present (Context_Item) loop if Nkind (Context_Item) = N_With_Clause and then (Include_Limited or else not Limited_Present (Context_Item)) then Lib_Unit := Library_Unit (Context_Item); Action (Lib_Unit); end if; Next (Context_Item); end loop; end Walk_Withs_Immediate; end Sem;
with Globals_Example1; package Globals_Example2 is type Record2 is record I_Attribute : Globals_Example1.Itype; end record; end Globals_Example2;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . T R A C E S . T A S K I N G -- -- -- -- B o d y -- -- -- -- Copyright (C) 2001-2014, Free Software Foundation, Inc. -- -- -- -- 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. 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. -- -- -- ------------------------------------------------------------------------------ package body System.Traces.Tasking is pragma Warnings (Off); -- kill warnings on unreferenced formals --------------------- -- Send_Trace_Info -- --------------------- procedure Send_Trace_Info (Id : Trace_T; Task_Name2 : ST.Task_Id) is begin null; end Send_Trace_Info; procedure Send_Trace_Info (Id : Trace_T; Task_Name2 : ST.Task_Id; Entry_Number : ST.Entry_Index) is begin null; end Send_Trace_Info; procedure Send_Trace_Info (Id : Trace_T; Task_Name : ST.Task_Id; Task_Name2 : ST.Task_Id; Entry_Number : ST.Entry_Index) is begin null; end Send_Trace_Info; procedure Send_Trace_Info (Id : Trace_T; Task_Name : ST.Task_Id; Task_Name2 : ST.Task_Id) is begin null; end Send_Trace_Info; procedure Send_Trace_Info (Id : Trace_T; Entry_Number : ST.Entry_Index) is begin null; end Send_Trace_Info; procedure Send_Trace_Info (Id : Trace_T; Acceptor : ST.Task_Id; Entry_Number : ST.Entry_Index; Timeout : Duration) is begin null; end Send_Trace_Info; procedure Send_Trace_Info (Id : Trace_T; Entry_Number : ST.Entry_Index; Timeout : Duration) is begin null; end Send_Trace_Info; procedure Send_Trace_Info (Id : Trace_T; Task_Name : ST.Task_Id; Number : Integer) is begin null; end Send_Trace_Info; procedure Send_Trace_Info (Id : Trace_T; Task_Name : ST.Task_Id; Number : Integer; Timeout : Duration) is begin null; end Send_Trace_Info; end System.Traces.Tasking;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- G N A T . D Y N A M I C _ T A B L E S -- -- -- -- S p e c -- -- -- -- Copyright (C) 2000-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. -- -- -- ------------------------------------------------------------------------------ -- Resizable one dimensional array support -- This package provides an implementation of dynamically resizable one -- dimensional arrays. The idea is to mimic the normal Ada semantics for -- arrays as closely as possible with the one additional capability of -- dynamically modifying the value of the Last attribute. -- This package provides a facility similar to that of Ada.Containers.Vectors. -- Note that these three interfaces should remain synchronized to keep as much -- coherency as possible among these related units: -- -- GNAT.Dynamic_Tables -- GNAT.Table -- Table (the compiler unit) pragma Compiler_Unit_Warning; with Ada.Unchecked_Conversion; generic type Table_Component_Type is private; type Table_Index_Type is range <>; Table_Low_Bound : Table_Index_Type := Table_Index_Type'First; Table_Initial : Positive := 8; Table_Increment : Natural := 100; Release_Threshold : Natural := 0; -- size in bytes package GNAT.Dynamic_Tables is -- Table_Component_Type and Table_Index_Type specify the type of the array, -- Table_Low_Bound is the lower bound. The effect is roughly to declare: -- Table : array (Table_Low_Bound .. <>) of Table_Component_Type; -- The lower bound of Table_Index_Type is ignored. -- Table_Component_Type must not be a type with controlled parts. -- The Table_Initial value controls the allocation of the table when it is -- first allocated. -- The Table_Increment value controls the amount of increase, if the table -- has to be increased in size. The value given is a percentage value (e.g. -- 100 = increase table size by 100%, i.e. double it). -- The Last and Set_Last subprograms provide control over the current -- logical allocation. They are quite efficient, so they can be used -- freely (expensive reallocation occurs only at major granularity -- chunks controlled by the allocation parameters). -- Note: we do not make the table components aliased, since this would -- restrict the use of table for discriminated types. If it is necessary -- to take the access of a table element, use Unrestricted_Access. -- WARNING: On HPPA, the virtual addressing approach used in this unit is -- incompatible with the indexing instructions on the HPPA. So when using -- this unit, compile your application with -mdisable-indexing. -- WARNING: If the table is reallocated, then the address of all its -- components will change. So do not capture the address of an element -- and then use the address later after the table may be reallocated. One -- tricky case of this is passing an element of the table to a subprogram -- by reference where the table gets reallocated during the execution of -- the subprogram. The best rule to follow is never to pass a table element -- as a parameter except for the case of IN mode parameters with scalar -- values. pragma Assert (Table_Low_Bound /= Table_Index_Type'Base'First); subtype Valid_Table_Index_Type is Table_Index_Type'Base range Table_Low_Bound .. Table_Index_Type'Base'Last; subtype Table_Last_Type is Table_Index_Type'Base range Table_Low_Bound - 1 .. Table_Index_Type'Base'Last; -- Table_Component_Type must not be a type with controlled parts. -- The Table_Initial value controls the allocation of the table when it is -- first allocated. -- The Table_Increment value controls the amount of increase, if the table -- has to be increased in size. The value given is a percentage value (e.g. -- 100 = increase table size by 100%, i.e. double it). -- The Last and Set_Last subprograms provide control over the current -- logical allocation. They are quite efficient, so they can be used -- freely (expensive reallocation occurs only at major granularity -- chunks controlled by the allocation parameters). -- Note: we do not make the table components aliased, since this would -- restrict the use of table for discriminated types. If it is necessary -- to take the access of a table element, use Unrestricted_Access. type Table_Type is array (Valid_Table_Index_Type range <>) of Table_Component_Type; subtype Big_Table_Type is Table_Type (Table_Low_Bound .. Valid_Table_Index_Type'Last); -- We work with pointers to a bogus array type that is constrained with -- the maximum possible range bound. This means that the pointer is a thin -- pointer, which is more efficient. Since subscript checks in any case -- must be on the logical, rather than physical bounds, safety is not -- compromised by this approach. -- To get subscript checking, rename a slice of the Table, like this: -- Table : Table_Type renames T.Table (First .. Last (T)); -- and then refer to components of Table. type Table_Ptr is access all Big_Table_Type; for Table_Ptr'Storage_Size use 0; -- The table is actually represented as a pointer to allow reallocation type Table_Private is private; -- Table private data that is not exported in Instance -- Private use only: subtype Empty_Table_Array_Type is Table_Type (Table_Low_Bound .. Table_Low_Bound - 1); type Empty_Table_Array_Ptr is access all Empty_Table_Array_Type; Empty_Table_Array : aliased Empty_Table_Array_Type; function Empty_Table_Array_Ptr_To_Table_Ptr is new Ada.Unchecked_Conversion (Empty_Table_Array_Ptr, Table_Ptr); Empty_Table_Ptr : constant Table_Ptr := Empty_Table_Array_Ptr_To_Table_Ptr (Empty_Table_Array'Access); -- End private use only. The above are used to initialize Table to point to -- an empty array. type Instance is record Table : Table_Ptr := Empty_Table_Ptr; -- The table itself. The lower bound is the value of First. Logically -- the upper bound is the current value of Last (although the actual -- size of the allocated table may be larger than this). The program may -- only access and modify Table entries in the range First .. Last. -- -- It's a good idea to access this via a renaming of a slice, in order -- to ensure bounds checking, as in: -- -- Tab : Table_Type renames X.Table (First .. X.Last); -- -- Note: The Table component must come first. See declarations of -- SCO_Unit_Table and SCO_Table in scos.h. Locked : Boolean := False; -- Table reallocation is permitted only if this is False. A client may -- set Locked to True, in which case any operation that might expand or -- shrink the table will cause an assertion failure. While a table is -- locked, its address in memory remains fixed and unchanging. P : Table_Private; end record; function Is_Empty (T : Instance) return Boolean; pragma Inline (Is_Empty); procedure Init (T : in out Instance); -- Reinitializes the table to empty. There is no need to call this before -- using a table; tables default to empty. procedure Free (T : in out Instance) renames Init; function First return Table_Index_Type; pragma Inline (First); -- Export First as synonym for Table_Low_Bound (parallel with use of Last) function Last (T : Instance) return Table_Last_Type; pragma Inline (Last); -- Returns the current value of the last used entry in the table, which can -- then be used as a subscript for Table. procedure Release (T : in out Instance); -- Storage is allocated in chunks according to the values given in the -- Table_Initial and Table_Increment parameters. If Release_Threshold is -- 0 or the length of the table does not exceed this threshold then a call -- to Release releases all storage that is allocated, but is not logically -- part of the current array value; otherwise the call to Release leaves -- the current array value plus 0.1% of the current table length free -- elements located at the end of the table. This parameter facilitates -- reopening large tables and adding a few elements without allocating a -- chunk of memory. In both cases current array values are not affected by -- this call. procedure Set_Last (T : in out Instance; New_Val : Table_Last_Type); pragma Inline (Set_Last); -- This procedure sets Last to the indicated value. If necessary the table -- is reallocated to accommodate the new value (i.e. on return the -- allocated table has an upper bound of at least Last). If Set_Last -- reduces the size of the table, then logically entries are removed from -- the table. If Set_Last increases the size of the table, then new entries -- are logically added to the table. procedure Increment_Last (T : in out Instance); pragma Inline (Increment_Last); -- Adds 1 to Last (same as Set_Last (Last + 1)) procedure Decrement_Last (T : in out Instance); pragma Inline (Decrement_Last); -- Subtracts 1 from Last (same as Set_Last (Last - 1)) procedure Append (T : in out Instance; New_Val : Table_Component_Type); pragma Inline (Append); -- Appends New_Val onto the end of the table -- Equivalent to: -- Increment_Last (T); -- T.Table (T.Last) := New_Val; procedure Append_All (T : in out Instance; New_Vals : Table_Type); -- Appends all components of New_Vals procedure Set_Item (T : in out Instance; Index : Valid_Table_Index_Type; Item : Table_Component_Type); pragma Inline (Set_Item); -- Put Item in the table at position Index. If Index points to an existing -- item (i.e. it is in the range First .. Last (T)), the item is replaced. -- Otherwise (i.e. Index > Last (T)), the table is expanded, and Last is -- set to Index. procedure Move (From, To : in out Instance); -- Moves from From to To, and sets From to empty procedure Allocate (T : in out Instance; Num : Integer := 1); pragma Inline (Allocate); -- Adds Num to Last generic with procedure Action (Index : Valid_Table_Index_Type; Item : Table_Component_Type; Quit : in out Boolean) is <>; procedure For_Each (Table : Instance); -- Calls procedure Action for each component of the table, or until one of -- these calls set Quit to True. generic with function Lt (Comp1, Comp2 : Table_Component_Type) return Boolean; procedure Sort_Table (Table : in out Instance); -- This procedure sorts the components of the table into ascending order -- making calls to Lt to do required comparisons, and using assignments -- to move components around. The Lt function returns True if Comp1 is -- less than Comp2 (in the sense of the desired sort), and False if Comp1 -- is greater than Comp2. For equal objects it does not matter if True or -- False is returned (it is slightly more efficient to return False). The -- sort is not stable (the order of equal items in the table is not -- preserved). private type Table_Private is record Last_Allocated : Table_Last_Type := Table_Low_Bound - 1; -- Subscript of the maximum entry in the currently allocated table. -- Initial value ensures that we initially allocate the table. Last : Table_Last_Type := Table_Low_Bound - 1; -- Current value of Last function -- Invariant: Last <= Last_Allocated end record; end GNAT.Dynamic_Tables;
with Ada.Command_Line; with Ada.Text_IO; with ZMQ; procedure Version is function Main return Ada.Command_Line.Exit_Status is Major, Minor, Patch : Natural; begin ZMQ.Version (Major, Minor, Patch); Ada.Text_IO.Put_Line ("Current 0MQ version is "&Major'Img&"."&Minor'Img&"."&Patch'Img); return 0; end Main; begin Ada.Command_Line.Set_Exit_Status (Main); end Version;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S Y S T E M . V A L _ L L U -- -- -- -- S p e c -- -- -- -- 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. -- -- -- -- -- -- -- -- -- -- -- -- 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 routines for scanning modular Long_Long_Unsigned -- values for use in Text_IO.Modular_IO, and the Value attribute. with System.Unsigned_Types; with System.Value_U; package System.Val_LLU is pragma Preelaborate; subtype Long_Long_Unsigned is Unsigned_Types.Long_Long_Unsigned; package Impl is new Value_U (Long_Long_Unsigned); function Scan_Raw_Long_Long_Unsigned (Str : String; Ptr : not null access Integer; Max : Integer) return Long_Long_Unsigned renames Impl.Scan_Raw_Unsigned; function Scan_Long_Long_Unsigned (Str : String; Ptr : not null access Integer; Max : Integer) return Long_Long_Unsigned renames Impl.Scan_Unsigned; function Value_Long_Long_Unsigned (Str : String) return Long_Long_Unsigned renames Impl.Value_Unsigned; end System.Val_LLU;
-- Copyright (c) 2019 Maxim Reznik <reznikmm@gmail.com> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- with League.Strings; with League.String_Vectors; package Slim.Messages.RESP is type RESP_Message is new Message with private; not overriding function Headers (Self : RESP_Message) return League.String_Vectors.Universal_String_Vector; private subtype Byte is Ada.Streams.Stream_Element; type RESP_Message is new Message with record Value : League.Strings.Universal_String; end record; overriding function Read (Data : not null access League.Stream_Element_Vectors.Stream_Element_Vector) return RESP_Message; overriding procedure Write (Self : RESP_Message; Tag : out Message_Tag; Data : out League.Stream_Element_Vectors.Stream_Element_Vector); overriding procedure Visit (Self : not null access RESP_Message; Visiter : in out Slim.Message_Visiters.Visiter'Class); end Slim.Messages.RESP;
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2019, Fabien Chouteau -- -- -- -- 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 Ada.Text_IO; with Ada.Command_Line; with GNAT.Command_Line; use GNAT.Command_Line; with GNAT.Strings; use GNAT.Strings; with LibRISCV.Sim.Hart; with LibRISCV.Sim.Platform; with LibRISCV.Sim.Memory_Bus; with LibRISCV.Loader; with LibRISCV.Signature; with LibRISCV.Sim.Shutdown; with LibRISCV.Sim.Log; with LibRISCV.Sim.GDB_Remote_Target; use LibRISCV; procedure Main is Config : Command_Line_Configuration; Signature_Path : aliased String_Access := null; Log_Enable : aliased String_Access := null; HTIF_Enable : aliased Boolean := False; GDB_Enable : aliased Boolean := False; SOC : aliased Sim.Platform.Instance (Hart_Count => 1); Bus : aliased Sim.Memory_Bus.Instance (RAM_Base => 16#8000_0000#, RAM_Size => 256 * 1024); GDB_Target : Sim.GDB_Remote_Target.Instance (SOC'Unchecked_Access, Bus'Unchecked_Access, 256); use type Sim.Platform.State_Kind; use type Sim.Hart.State_Kind; begin declare begin Define_Switch (Config, Signature_Path'Access, "-s:", Long_Switch => "--signature=", Help => "Pathname for the test signature output"); Define_Switch (Config, Log_Enable'Access, "-l:", Long_Switch => "--log=", Help => "Comma separated list of log topics to enable/disable"); Define_Switch (Config, HTIF_Enable'Access, "-t", Long_Switch => "--htif", Help => "Enable the Host Target interface"); Define_Switch (Config, GDB_Enable'Access, "-g", Long_Switch => "--gdb", Help => "Enable the GDB remote interface (localhost:1234)"); Set_Usage (Config, "[switches] binary.elf", "RISC-V simulator"); Getopt (Config); exception when GNAT.Command_Line.Invalid_Switch => Ada.Command_Line.Set_Exit_Status (1); return; when GNAT.Command_Line.Exit_From_Command_Line => return; end; if Signature_Path /= null and then Signature_Path.all /= "" then Signature.Signature_Filepath (Signature_Path.all); end if; if Log_Enable /= null and then Log_Enable.all /= "" then if not LibRISCV.Sim.Log.Set_Arg (Log_Enable.all) then Ada.Text_IO.Put_Line ("Invalid log argument: '" & Log_Enable.all & "'"); Ada.Command_Line.Set_Exit_Status (1); return; end if; end if; if HTIF_Enable then Bus.Enable_HTIF; end if; loop declare Arg : constant String := Get_Argument (Do_Expansion => True); begin exit when Arg'Length = 0; Loader.Load_Elf (Bus, Arg); end; end loop; SOC.Reset; if GDB_Enable then GDB_Target.Start_Server; else SOC.Resume; end if; loop if GDB_Enable then GDB_Target.Poll; end if; SOC.Cycle (Bus); if SOC.Get_Hart (1).State = Sim.Hart.Debug_Halt then case SOC.Get_Hart (1).Halt_Source is when Sim.Hart.None => null; when Sim.Hart.Single_Step => GDB_Target.Halted_On_Single_Step; when Sim.Hart.Breakpoint => GDB_Target.Halted_On_Breakpoint; when Sim.Hart.Watchpoint => null; end case; end if; exit when SOC.State = Sim.Platform.Reset or else Sim.Shutdown.Requested; end loop; Signature.Dump_Signature (Bus); end Main;
-- for Win64 SEH pragma Check_Policy (Trace => Ignore); with System.Address_To_Constant_Access_Conversions; with System.Storage_Elements; with C.basetsd; with C.winnt; separate (System.Unwind.Backtrace) package body Separated is pragma Suppress (All_Checks); use type Storage_Elements.Storage_Offset; use type C.basetsd.DWORD64; use type C.winnt.PRUNTIME_FUNCTION; package DWORD64_const_ptr_Conv is new Address_To_Constant_Access_Conversions ( C.basetsd.DWORD64, C.basetsd.DWORD64_const_ptr); procedure memset ( b : not null access C.winnt.UNWIND_HISTORY_TABLE; c : Integer; n : Storage_Elements.Storage_Count) with Import, Convention => Intrinsic, External_Name => "__builtin_memset"; procedure memset ( b : not null access C.winnt.KNONVOLATILE_CONTEXT_POINTERS; c : Integer; n : Storage_Elements.Storage_Count) with Import, Convention => Intrinsic, External_Name => "__builtin_memset"; -- implementation procedure Backtrace ( Item : aliased out Tracebacks_Array; Last : out Natural; Exclude_Min : Address; Exclude_Max : Address) is context : aliased C.winnt.CONTEXT; history : aliased C.winnt.UNWIND_HISTORY_TABLE := ( Count => <>, Search => <>, LowAddress => <>, HighAddress => <>, F_Entry => (others => <>)); begin pragma Check (Trace, Ada.Debug.Put ("start")); -- Get the context. C.winnt.RtlCaptureContext (context'Access); -- Setup unwind history table (a cached to speed-up unwinding). memset ( history'Access, 0, C.winnt.UNWIND_HISTORY_TABLE'Size / Standard'Storage_Unit); Last := Tracebacks_Array'First - 1; loop declare RuntimeFunction : C.winnt.PRUNTIME_FUNCTION; NvContext : aliased C.winnt.KNONVOLATILE_CONTEXT_POINTERS := ( FloatingContext => (others => <>), IntegerContext => (others => <>)); ImageBase : aliased C.basetsd.ULONG64; HandlerData : aliased C.winnt.PVOID; EstablisherFrame : aliased C.basetsd.ULONG64; begin -- Get function metadata. RuntimeFunction := C.winnt.RtlLookupFunctionEntry ( context.Rip, ImageBase'Access, history'Access); if RuntimeFunction = null then -- In case of failure, assume this is a leaf function. context.Rip := DWORD64_const_ptr_Conv.To_Pointer ( System'To_Address (context.Rsp)) .all; context.Rsp := context.Rsp + 8; else -- Unwind. memset ( NvContext'Access, 0, C.winnt.KNONVOLATILE_CONTEXT_POINTERS'Size / Standard'Storage_Unit); declare Dummy : C.winnt.PEXCEPTION_ROUTINE; begin Dummy := C.winnt.RtlVirtualUnwind ( 0, ImageBase, context.Rip, RuntimeFunction, context'Access, HandlerData'Access, EstablisherFrame'Access, NvContext'Access); end; end if; -- 0 means bottom of the stack. exit when System'To_Address (context.Rip) = Null_Address; if System'To_Address (context.Rip) >= Exclude_Min and then System'To_Address (context.Rip) <= Exclude_Max then Last := Tracebacks_Array'First - 1; -- reset pragma Check (Trace, Ada.Debug.Put ("exclude")); else Last := Last + 1; Item (Last) := System'To_Address (context.Rip) - Storage_Elements.Storage_Offset'(2); pragma Check (Trace, Ada.Debug.Put ("fill")); exit when Last >= Tracebacks_Array'Last; end if; end; end loop; pragma Check (Trace, Ada.Debug.Put ("end")); end Backtrace; end Separated;
-- This spec has been automatically generated from STM32L4x1.svd pragma Restrictions (No_Elaboration_Code); pragma Ada_2012; pragma Style_Checks (Off); with HAL; with System; package STM32_SVD.RTC is pragma Preelaborate; --------------- -- Registers -- --------------- subtype TR_SU_Field is HAL.UInt4; subtype TR_ST_Field is HAL.UInt3; subtype TR_MNU_Field is HAL.UInt4; subtype TR_MNT_Field is HAL.UInt3; subtype TR_HU_Field is HAL.UInt4; subtype TR_HT_Field is HAL.UInt2; -- time register type TR_Register is record -- Second units in BCD format SU : TR_SU_Field := 16#0#; -- Second tens in BCD format ST : TR_ST_Field := 16#0#; -- unspecified Reserved_7_7 : HAL.Bit := 16#0#; -- Minute units in BCD format MNU : TR_MNU_Field := 16#0#; -- Minute tens in BCD format MNT : TR_MNT_Field := 16#0#; -- unspecified Reserved_15_15 : HAL.Bit := 16#0#; -- Hour units in BCD format HU : TR_HU_Field := 16#0#; -- Hour tens in BCD format HT : TR_HT_Field := 16#0#; -- AM/PM notation PM : Boolean := False; -- unspecified Reserved_23_31 : HAL.UInt9 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for TR_Register use record SU at 0 range 0 .. 3; ST at 0 range 4 .. 6; Reserved_7_7 at 0 range 7 .. 7; MNU at 0 range 8 .. 11; MNT at 0 range 12 .. 14; Reserved_15_15 at 0 range 15 .. 15; HU at 0 range 16 .. 19; HT at 0 range 20 .. 21; PM at 0 range 22 .. 22; Reserved_23_31 at 0 range 23 .. 31; end record; subtype DR_DU_Field is HAL.UInt4; subtype DR_DT_Field is HAL.UInt2; subtype DR_MU_Field is HAL.UInt4; subtype DR_WDU_Field is HAL.UInt3; subtype DR_YU_Field is HAL.UInt4; subtype DR_YT_Field is HAL.UInt4; -- date register type DR_Register is record -- Date units in BCD format DU : DR_DU_Field := 16#1#; -- Date tens in BCD format DT : DR_DT_Field := 16#0#; -- unspecified Reserved_6_7 : HAL.UInt2 := 16#0#; -- Month units in BCD format MU : DR_MU_Field := 16#1#; -- Month tens in BCD format MT : Boolean := False; -- Week day units WDU : DR_WDU_Field := 16#1#; -- Year units in BCD format YU : DR_YU_Field := 16#0#; -- Year tens in BCD format YT : DR_YT_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 DR_Register use record DU at 0 range 0 .. 3; DT at 0 range 4 .. 5; Reserved_6_7 at 0 range 6 .. 7; MU at 0 range 8 .. 11; MT at 0 range 12 .. 12; WDU at 0 range 13 .. 15; YU at 0 range 16 .. 19; YT at 0 range 20 .. 23; Reserved_24_31 at 0 range 24 .. 31; end record; subtype CR_WCKSEL_Field is HAL.UInt3; subtype CR_OSEL_Field is HAL.UInt2; -- control register type CR_Register is record -- Wakeup clock selection WCKSEL : CR_WCKSEL_Field := 16#0#; -- Time-stamp event active edge TSEDGE : Boolean := False; -- Reference clock detection enable (50 or 60 Hz) REFCKON : Boolean := False; -- Bypass the shadow registers BYPSHAD : Boolean := False; -- Hour format FMT : Boolean := False; -- unspecified Reserved_7_7 : HAL.Bit := 16#0#; -- Alarm A enable ALRAE : Boolean := False; -- Alarm B enable ALRBE : Boolean := False; -- Wakeup timer enable WUTE : Boolean := False; -- Time stamp enable TSE : Boolean := False; -- Alarm A interrupt enable ALRAIE : Boolean := False; -- Alarm B interrupt enable ALRBIE : Boolean := False; -- Wakeup timer interrupt enable WUTIE : Boolean := False; -- Time-stamp interrupt enable TSIE : Boolean := False; -- Add 1 hour (summer time change) ADD1H : Boolean := False; -- Subtract 1 hour (winter time change) SUB1H : Boolean := False; -- Backup BKP : Boolean := False; -- Calibration output selection COSEL : Boolean := False; -- Output polarity POL : Boolean := False; -- Output selection OSEL : CR_OSEL_Field := 16#0#; -- Calibration output enable COE : Boolean := False; -- timestamp on internal event enable ITSE : Boolean := False; -- unspecified Reserved_25_31 : HAL.UInt7 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CR_Register use record WCKSEL at 0 range 0 .. 2; TSEDGE at 0 range 3 .. 3; REFCKON at 0 range 4 .. 4; BYPSHAD at 0 range 5 .. 5; FMT at 0 range 6 .. 6; Reserved_7_7 at 0 range 7 .. 7; ALRAE at 0 range 8 .. 8; ALRBE at 0 range 9 .. 9; WUTE at 0 range 10 .. 10; TSE at 0 range 11 .. 11; ALRAIE at 0 range 12 .. 12; ALRBIE at 0 range 13 .. 13; WUTIE at 0 range 14 .. 14; TSIE at 0 range 15 .. 15; ADD1H at 0 range 16 .. 16; SUB1H at 0 range 17 .. 17; BKP at 0 range 18 .. 18; COSEL at 0 range 19 .. 19; POL at 0 range 20 .. 20; OSEL at 0 range 21 .. 22; COE at 0 range 23 .. 23; ITSE at 0 range 24 .. 24; Reserved_25_31 at 0 range 25 .. 31; end record; -- initialization and status register type ISR_Register is record -- Read-only. Alarm A write flag ALRAWF : Boolean := True; -- Read-only. Alarm B write flag ALRBWF : Boolean := True; -- Read-only. Wakeup timer write flag WUTWF : Boolean := True; -- Shift operation pending SHPF : Boolean := False; -- Read-only. Initialization status flag INITS : Boolean := False; -- Registers synchronization flag RSF : Boolean := False; -- Read-only. Initialization flag INITF : Boolean := False; -- Initialization mode INIT : Boolean := False; -- Alarm A flag ALRAF : Boolean := False; -- Alarm B flag ALRBF : Boolean := False; -- Wakeup timer flag WUTF : Boolean := False; -- Time-stamp flag TSF : Boolean := False; -- Time-stamp overflow flag TSOVF : Boolean := False; -- Tamper detection flag TAMP1F : Boolean := False; -- RTC_TAMP2 detection flag TAMP2F : Boolean := False; -- RTC_TAMP3 detection flag TAMP3F : Boolean := False; -- Read-only. Recalibration pending Flag RECALPF : Boolean := False; -- unspecified Reserved_17_31 : HAL.UInt15 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for ISR_Register use record ALRAWF at 0 range 0 .. 0; ALRBWF at 0 range 1 .. 1; WUTWF at 0 range 2 .. 2; SHPF at 0 range 3 .. 3; INITS at 0 range 4 .. 4; RSF at 0 range 5 .. 5; INITF at 0 range 6 .. 6; INIT at 0 range 7 .. 7; ALRAF at 0 range 8 .. 8; ALRBF at 0 range 9 .. 9; WUTF at 0 range 10 .. 10; TSF at 0 range 11 .. 11; TSOVF at 0 range 12 .. 12; TAMP1F at 0 range 13 .. 13; TAMP2F at 0 range 14 .. 14; TAMP3F at 0 range 15 .. 15; RECALPF at 0 range 16 .. 16; Reserved_17_31 at 0 range 17 .. 31; end record; subtype PRER_PREDIV_S_Field is HAL.UInt15; subtype PRER_PREDIV_A_Field is HAL.UInt7; -- prescaler register type PRER_Register is record -- Synchronous prescaler factor PREDIV_S : PRER_PREDIV_S_Field := 16#FF#; -- unspecified Reserved_15_15 : HAL.Bit := 16#0#; -- Asynchronous prescaler factor PREDIV_A : PRER_PREDIV_A_Field := 16#7F#; -- unspecified Reserved_23_31 : HAL.UInt9 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for PRER_Register use record PREDIV_S at 0 range 0 .. 14; Reserved_15_15 at 0 range 15 .. 15; PREDIV_A at 0 range 16 .. 22; Reserved_23_31 at 0 range 23 .. 31; end record; subtype WUTR_WUT_Field is HAL.UInt16; -- wakeup timer register type WUTR_Register is record -- Wakeup auto-reload value bits WUT : WUTR_WUT_Field := 16#FFFF#; -- unspecified Reserved_16_31 : HAL.UInt16 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for WUTR_Register use record WUT at 0 range 0 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype ALRMAR_SU_Field is HAL.UInt4; subtype ALRMAR_ST_Field is HAL.UInt3; subtype ALRMAR_MNU_Field is HAL.UInt4; subtype ALRMAR_MNT_Field is HAL.UInt3; subtype ALRMAR_HU_Field is HAL.UInt4; subtype ALRMAR_HT_Field is HAL.UInt2; subtype ALRMAR_DU_Field is HAL.UInt4; subtype ALRMAR_DT_Field is HAL.UInt2; -- alarm A register type ALRMAR_Register is record -- Second units in BCD format SU : ALRMAR_SU_Field := 16#0#; -- Second tens in BCD format ST : ALRMAR_ST_Field := 16#0#; -- Alarm A seconds mask MSK1 : Boolean := False; -- Minute units in BCD format MNU : ALRMAR_MNU_Field := 16#0#; -- Minute tens in BCD format MNT : ALRMAR_MNT_Field := 16#0#; -- Alarm A minutes mask MSK2 : Boolean := False; -- Hour units in BCD format HU : ALRMAR_HU_Field := 16#0#; -- Hour tens in BCD format HT : ALRMAR_HT_Field := 16#0#; -- AM/PM notation PM : Boolean := False; -- Alarm A hours mask MSK3 : Boolean := False; -- Date units or day in BCD format DU : ALRMAR_DU_Field := 16#0#; -- Date tens in BCD format DT : ALRMAR_DT_Field := 16#0#; -- Week day selection WDSEL : Boolean := False; -- Alarm A date mask MSK4 : Boolean := False; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for ALRMAR_Register use record SU at 0 range 0 .. 3; ST at 0 range 4 .. 6; MSK1 at 0 range 7 .. 7; MNU at 0 range 8 .. 11; MNT at 0 range 12 .. 14; MSK2 at 0 range 15 .. 15; HU at 0 range 16 .. 19; HT at 0 range 20 .. 21; PM at 0 range 22 .. 22; MSK3 at 0 range 23 .. 23; DU at 0 range 24 .. 27; DT at 0 range 28 .. 29; WDSEL at 0 range 30 .. 30; MSK4 at 0 range 31 .. 31; end record; subtype ALRMBR_SU_Field is HAL.UInt4; subtype ALRMBR_ST_Field is HAL.UInt3; subtype ALRMBR_MNU_Field is HAL.UInt4; subtype ALRMBR_MNT_Field is HAL.UInt3; subtype ALRMBR_HU_Field is HAL.UInt4; subtype ALRMBR_HT_Field is HAL.UInt2; subtype ALRMBR_DU_Field is HAL.UInt4; subtype ALRMBR_DT_Field is HAL.UInt2; -- alarm B register type ALRMBR_Register is record -- Second units in BCD format SU : ALRMBR_SU_Field := 16#0#; -- Second tens in BCD format ST : ALRMBR_ST_Field := 16#0#; -- Alarm B seconds mask MSK1 : Boolean := False; -- Minute units in BCD format MNU : ALRMBR_MNU_Field := 16#0#; -- Minute tens in BCD format MNT : ALRMBR_MNT_Field := 16#0#; -- Alarm B minutes mask MSK2 : Boolean := False; -- Hour units in BCD format HU : ALRMBR_HU_Field := 16#0#; -- Hour tens in BCD format HT : ALRMBR_HT_Field := 16#0#; -- AM/PM notation PM : Boolean := False; -- Alarm B hours mask MSK3 : Boolean := False; -- Date units or day in BCD format DU : ALRMBR_DU_Field := 16#0#; -- Date tens in BCD format DT : ALRMBR_DT_Field := 16#0#; -- Week day selection WDSEL : Boolean := False; -- Alarm B date mask MSK4 : Boolean := False; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for ALRMBR_Register use record SU at 0 range 0 .. 3; ST at 0 range 4 .. 6; MSK1 at 0 range 7 .. 7; MNU at 0 range 8 .. 11; MNT at 0 range 12 .. 14; MSK2 at 0 range 15 .. 15; HU at 0 range 16 .. 19; HT at 0 range 20 .. 21; PM at 0 range 22 .. 22; MSK3 at 0 range 23 .. 23; DU at 0 range 24 .. 27; DT at 0 range 28 .. 29; WDSEL at 0 range 30 .. 30; MSK4 at 0 range 31 .. 31; end record; subtype WPR_KEY_Field is HAL.UInt8; -- write protection register type WPR_Register is record -- Write-only. Write protection key KEY : WPR_KEY_Field := 16#0#; -- unspecified Reserved_8_31 : HAL.UInt24 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for WPR_Register use record KEY at 0 range 0 .. 7; Reserved_8_31 at 0 range 8 .. 31; end record; subtype SSR_SS_Field is HAL.UInt16; -- sub second register type SSR_Register is record -- Read-only. Sub second value SS : SSR_SS_Field; -- unspecified Reserved_16_31 : HAL.UInt16; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for SSR_Register use record SS at 0 range 0 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype SHIFTR_SUBFS_Field is HAL.UInt15; -- shift control register type SHIFTR_Register is record -- Write-only. Subtract a fraction of a second SUBFS : SHIFTR_SUBFS_Field := 16#0#; -- unspecified Reserved_15_30 : HAL.UInt16 := 16#0#; -- Write-only. Add one second ADD1S : Boolean := False; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for SHIFTR_Register use record SUBFS at 0 range 0 .. 14; Reserved_15_30 at 0 range 15 .. 30; ADD1S at 0 range 31 .. 31; end record; subtype TSTR_SU_Field is HAL.UInt4; subtype TSTR_ST_Field is HAL.UInt3; subtype TSTR_MNU_Field is HAL.UInt4; subtype TSTR_MNT_Field is HAL.UInt3; subtype TSTR_HU_Field is HAL.UInt4; subtype TSTR_HT_Field is HAL.UInt2; -- time stamp time register type TSTR_Register is record -- Read-only. Second units in BCD format SU : TSTR_SU_Field; -- Read-only. Second tens in BCD format ST : TSTR_ST_Field; -- unspecified Reserved_7_7 : HAL.Bit; -- Read-only. Minute units in BCD format MNU : TSTR_MNU_Field; -- Read-only. Minute tens in BCD format MNT : TSTR_MNT_Field; -- unspecified Reserved_15_15 : HAL.Bit; -- Read-only. Hour units in BCD format HU : TSTR_HU_Field; -- Read-only. Hour tens in BCD format HT : TSTR_HT_Field; -- Read-only. AM/PM notation PM : Boolean; -- unspecified Reserved_23_31 : HAL.UInt9; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for TSTR_Register use record SU at 0 range 0 .. 3; ST at 0 range 4 .. 6; Reserved_7_7 at 0 range 7 .. 7; MNU at 0 range 8 .. 11; MNT at 0 range 12 .. 14; Reserved_15_15 at 0 range 15 .. 15; HU at 0 range 16 .. 19; HT at 0 range 20 .. 21; PM at 0 range 22 .. 22; Reserved_23_31 at 0 range 23 .. 31; end record; subtype TSDR_DU_Field is HAL.UInt4; subtype TSDR_DT_Field is HAL.UInt2; subtype TSDR_MU_Field is HAL.UInt4; subtype TSDR_WDU_Field is HAL.UInt3; -- time stamp date register type TSDR_Register is record -- Read-only. Date units in BCD format DU : TSDR_DU_Field; -- Read-only. Date tens in BCD format DT : TSDR_DT_Field; -- unspecified Reserved_6_7 : HAL.UInt2; -- Read-only. Month units in BCD format MU : TSDR_MU_Field; -- Read-only. Month tens in BCD format MT : Boolean; -- Read-only. Week day units WDU : TSDR_WDU_Field; -- unspecified Reserved_16_31 : HAL.UInt16; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for TSDR_Register use record DU at 0 range 0 .. 3; DT at 0 range 4 .. 5; Reserved_6_7 at 0 range 6 .. 7; MU at 0 range 8 .. 11; MT at 0 range 12 .. 12; WDU at 0 range 13 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype TSSSR_SS_Field is HAL.UInt16; -- timestamp sub second register type TSSSR_Register is record -- Read-only. Sub second value SS : TSSSR_SS_Field; -- unspecified Reserved_16_31 : HAL.UInt16; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for TSSSR_Register use record SS at 0 range 0 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype CALR_CALM_Field is HAL.UInt9; -- calibration register type CALR_Register is record -- Calibration minus CALM : CALR_CALM_Field := 16#0#; -- unspecified Reserved_9_12 : HAL.UInt4 := 16#0#; -- Use a 16-second calibration cycle period CALW16 : Boolean := False; -- Use an 8-second calibration cycle period CALW8 : Boolean := False; -- Increase frequency of RTC by 488.5 ppm CALP : Boolean := False; -- unspecified Reserved_16_31 : HAL.UInt16 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CALR_Register use record CALM at 0 range 0 .. 8; Reserved_9_12 at 0 range 9 .. 12; CALW16 at 0 range 13 .. 13; CALW8 at 0 range 14 .. 14; CALP at 0 range 15 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype TAMPCR_TAMPFREQ_Field is HAL.UInt3; subtype TAMPCR_TAMPFLT_Field is HAL.UInt2; subtype TAMPCR_TAMPPRCH_Field is HAL.UInt2; -- tamper configuration register type TAMPCR_Register is record -- Tamper 1 detection enable TAMP1E : Boolean := False; -- Active level for tamper 1 TAMP1TRG : Boolean := False; -- Tamper interrupt enable TAMPIE : Boolean := False; -- Tamper 2 detection enable TAMP2E : Boolean := False; -- Active level for tamper 2 TAMP2TRG : Boolean := False; -- Tamper 3 detection enable TAMP3E : Boolean := False; -- Active level for tamper 3 TAMP3TRG : Boolean := False; -- Activate timestamp on tamper detection event TAMPTS : Boolean := False; -- Tamper sampling frequency TAMPFREQ : TAMPCR_TAMPFREQ_Field := 16#0#; -- Tamper filter count TAMPFLT : TAMPCR_TAMPFLT_Field := 16#0#; -- Tamper precharge duration TAMPPRCH : TAMPCR_TAMPPRCH_Field := 16#0#; -- TAMPER pull-up disable TAMPPUDIS : Boolean := False; -- Tamper 1 interrupt enable TAMP1IE : Boolean := False; -- Tamper 1 no erase TAMP1NOERASE : Boolean := False; -- Tamper 1 mask flag TAMP1MF : Boolean := False; -- Tamper 2 interrupt enable TAMP2IE : Boolean := False; -- Tamper 2 no erase TAMP2NOERASE : Boolean := False; -- Tamper 2 mask flag TAMP2MF : Boolean := False; -- Tamper 3 interrupt enable TAMP3IE : Boolean := False; -- Tamper 3 no erase TAMP3NOERASE : Boolean := False; -- Tamper 3 mask flag TAMP3MF : Boolean := False; -- unspecified Reserved_25_31 : HAL.UInt7 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for TAMPCR_Register use record TAMP1E at 0 range 0 .. 0; TAMP1TRG at 0 range 1 .. 1; TAMPIE at 0 range 2 .. 2; TAMP2E at 0 range 3 .. 3; TAMP2TRG at 0 range 4 .. 4; TAMP3E at 0 range 5 .. 5; TAMP3TRG at 0 range 6 .. 6; TAMPTS at 0 range 7 .. 7; TAMPFREQ at 0 range 8 .. 10; TAMPFLT at 0 range 11 .. 12; TAMPPRCH at 0 range 13 .. 14; TAMPPUDIS at 0 range 15 .. 15; TAMP1IE at 0 range 16 .. 16; TAMP1NOERASE at 0 range 17 .. 17; TAMP1MF at 0 range 18 .. 18; TAMP2IE at 0 range 19 .. 19; TAMP2NOERASE at 0 range 20 .. 20; TAMP2MF at 0 range 21 .. 21; TAMP3IE at 0 range 22 .. 22; TAMP3NOERASE at 0 range 23 .. 23; TAMP3MF at 0 range 24 .. 24; Reserved_25_31 at 0 range 25 .. 31; end record; subtype ALRMASSR_SS_Field is HAL.UInt15; subtype ALRMASSR_MASKSS_Field is HAL.UInt4; -- alarm A sub second register type ALRMASSR_Register is record -- Sub seconds value SS : ALRMASSR_SS_Field := 16#0#; -- unspecified Reserved_15_23 : HAL.UInt9 := 16#0#; -- Mask the most-significant bits starting at this bit MASKSS : ALRMASSR_MASKSS_Field := 16#0#; -- unspecified Reserved_28_31 : HAL.UInt4 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for ALRMASSR_Register use record SS at 0 range 0 .. 14; Reserved_15_23 at 0 range 15 .. 23; MASKSS at 0 range 24 .. 27; Reserved_28_31 at 0 range 28 .. 31; end record; subtype ALRMBSSR_SS_Field is HAL.UInt15; subtype ALRMBSSR_MASKSS_Field is HAL.UInt4; -- alarm B sub second register type ALRMBSSR_Register is record -- Sub seconds value SS : ALRMBSSR_SS_Field := 16#0#; -- unspecified Reserved_15_23 : HAL.UInt9 := 16#0#; -- Mask the most-significant bits starting at this bit MASKSS : ALRMBSSR_MASKSS_Field := 16#0#; -- unspecified Reserved_28_31 : HAL.UInt4 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for ALRMBSSR_Register use record SS at 0 range 0 .. 14; Reserved_15_23 at 0 range 15 .. 23; MASKSS at 0 range 24 .. 27; Reserved_28_31 at 0 range 28 .. 31; end record; -- option register type OR_Register is record -- RTC_ALARM on PC13 output type RTC_ALARM_TYPE : Boolean := False; -- RTC_OUT remap RTC_OUT_RMP : Boolean := False; -- unspecified Reserved_2_31 : HAL.UInt30 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for OR_Register use record RTC_ALARM_TYPE at 0 range 0 .. 0; RTC_OUT_RMP at 0 range 1 .. 1; Reserved_2_31 at 0 range 2 .. 31; end record; ----------------- -- Peripherals -- ----------------- -- Real-time clock type RTC_Peripheral is record -- time register TR : aliased TR_Register; -- date register DR : aliased DR_Register; -- control register CR : aliased CR_Register; -- initialization and status register ISR : aliased ISR_Register; -- prescaler register PRER : aliased PRER_Register; -- wakeup timer register WUTR : aliased WUTR_Register; -- alarm A register ALRMAR : aliased ALRMAR_Register; -- alarm B register ALRMBR : aliased ALRMBR_Register; -- write protection register WPR : aliased WPR_Register; -- sub second register SSR : aliased SSR_Register; -- shift control register SHIFTR : aliased SHIFTR_Register; -- time stamp time register TSTR : aliased TSTR_Register; -- time stamp date register TSDR : aliased TSDR_Register; -- timestamp sub second register TSSSR : aliased TSSSR_Register; -- calibration register CALR : aliased CALR_Register; -- tamper configuration register TAMPCR : aliased TAMPCR_Register; -- alarm A sub second register ALRMASSR : aliased ALRMASSR_Register; -- alarm B sub second register ALRMBSSR : aliased ALRMBSSR_Register; -- option register OR_k : aliased OR_Register; -- backup register BKP0R : aliased HAL.UInt32; -- backup register BKP1R : aliased HAL.UInt32; -- backup register BKP2R : aliased HAL.UInt32; -- backup register BKP3R : aliased HAL.UInt32; -- backup register BKP4R : aliased HAL.UInt32; -- backup register BKP5R : aliased HAL.UInt32; -- backup register BKP6R : aliased HAL.UInt32; -- backup register BKP7R : aliased HAL.UInt32; -- backup register BKP8R : aliased HAL.UInt32; -- backup register BKP9R : aliased HAL.UInt32; -- backup register BKP10R : aliased HAL.UInt32; -- backup register BKP11R : aliased HAL.UInt32; -- backup register BKP12R : aliased HAL.UInt32; -- backup register BKP13R : aliased HAL.UInt32; -- backup register BKP14R : aliased HAL.UInt32; -- backup register BKP15R : aliased HAL.UInt32; -- backup register BKP16R : aliased HAL.UInt32; -- backup register BKP17R : aliased HAL.UInt32; -- backup register BKP18R : aliased HAL.UInt32; -- backup register BKP19R : aliased HAL.UInt32; -- backup register BKP20R : aliased HAL.UInt32; -- backup register BKP21R : aliased HAL.UInt32; -- backup register BKP22R : aliased HAL.UInt32; -- backup register BKP23R : aliased HAL.UInt32; -- backup register BKP24R : aliased HAL.UInt32; -- backup register BKP25R : aliased HAL.UInt32; -- backup register BKP26R : aliased HAL.UInt32; -- backup register BKP27R : aliased HAL.UInt32; -- backup register BKP28R : aliased HAL.UInt32; -- backup register BKP29R : aliased HAL.UInt32; -- backup register BKP30R : aliased HAL.UInt32; -- backup register BKP31R : aliased HAL.UInt32; end record with Volatile; for RTC_Peripheral use record TR at 16#0# range 0 .. 31; DR at 16#4# range 0 .. 31; CR at 16#8# range 0 .. 31; ISR at 16#C# range 0 .. 31; PRER at 16#10# range 0 .. 31; WUTR at 16#14# range 0 .. 31; ALRMAR at 16#1C# range 0 .. 31; ALRMBR at 16#20# range 0 .. 31; WPR at 16#24# range 0 .. 31; SSR at 16#28# range 0 .. 31; SHIFTR at 16#2C# range 0 .. 31; TSTR at 16#30# range 0 .. 31; TSDR at 16#34# range 0 .. 31; TSSSR at 16#38# range 0 .. 31; CALR at 16#3C# range 0 .. 31; TAMPCR at 16#40# range 0 .. 31; ALRMASSR at 16#44# range 0 .. 31; ALRMBSSR at 16#48# range 0 .. 31; OR_k at 16#4C# range 0 .. 31; BKP0R at 16#50# range 0 .. 31; BKP1R at 16#54# range 0 .. 31; BKP2R at 16#58# range 0 .. 31; BKP3R at 16#5C# range 0 .. 31; BKP4R at 16#60# range 0 .. 31; BKP5R at 16#64# range 0 .. 31; BKP6R at 16#68# range 0 .. 31; BKP7R at 16#6C# range 0 .. 31; BKP8R at 16#70# range 0 .. 31; BKP9R at 16#74# range 0 .. 31; BKP10R at 16#78# range 0 .. 31; BKP11R at 16#7C# range 0 .. 31; BKP12R at 16#80# range 0 .. 31; BKP13R at 16#84# range 0 .. 31; BKP14R at 16#88# range 0 .. 31; BKP15R at 16#8C# range 0 .. 31; BKP16R at 16#90# range 0 .. 31; BKP17R at 16#94# range 0 .. 31; BKP18R at 16#98# range 0 .. 31; BKP19R at 16#9C# range 0 .. 31; BKP20R at 16#A0# range 0 .. 31; BKP21R at 16#A4# range 0 .. 31; BKP22R at 16#A8# range 0 .. 31; BKP23R at 16#AC# range 0 .. 31; BKP24R at 16#B0# range 0 .. 31; BKP25R at 16#B4# range 0 .. 31; BKP26R at 16#B8# range 0 .. 31; BKP27R at 16#BC# range 0 .. 31; BKP28R at 16#C0# range 0 .. 31; BKP29R at 16#C4# range 0 .. 31; BKP30R at 16#C8# range 0 .. 31; BKP31R at 16#CC# range 0 .. 31; end record; -- Real-time clock RTC_Periph : aliased RTC_Peripheral with Import, Address => System'To_Address (16#40002800#); end STM32_SVD.RTC;
-- C95085F.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 CONSTRAINT_ERROR IS RAISED UNDER THE APPROPRIATE -- CIRCUMSTANCES FOR ACCESS PARAMETERS IN ENTRY CALLS, NAMELY -- WHEN THE ACTUAL INDEX BOUNDS OR DISCRIMINANTS ARE NOT EQUAL -- TO THE FORMAL CONSTRAINTS BEFORE THE CALL (FOR IN AND IN OUT -- MODES), AND WHEN THE FORMAL CONSTRAINTS ARE NOT EQUAL TO THE -- ACTUAL CONSTRAINTS UPON RETURN (FOR IN OUT AND OUT MODES). -- (C) BEFORE CALL, IN OUT MODE, STATIC ONE DIMENSIONAL BOUNDS. -- JWC 10/23/85 WITH REPORT; USE REPORT; PROCEDURE C95085F IS BEGIN TEST ("C95085F", "CHECK THAT CONSTRAINT_ERROR IS RAISED " & "APPROPRIATELY FOR ACCESS PARAMETERS"); -------------------------------------------------- DECLARE TYPE A IS ACCESS STRING; SUBTYPE A1 IS A (1..3); V : A (2..4) := NEW STRING (2..4); TASK TSK IS ENTRY E (X : IN OUT A1); END TSK; TASK BODY TSK IS BEGIN SELECT ACCEPT E (X : IN OUT A1) DO FAILED ("EXCEPTION NOT RAISED ON CALL"); END E; OR TERMINATE; END SELECT; EXCEPTION WHEN OTHERS => FAILED ("EXCEPTION RAISED IN TASK BODY"); END TSK; BEGIN TSK.E (V); FAILED ("EXCEPTION NOT RAISED BEFORE CALL"); EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED"); END; -------------------------------------------------- RESULT; END C95085F;
-- SPDX-FileCopyrightText: 2019 Max Reznik <reznikmm@gmail.com> -- -- SPDX-License-Identifier: MIT ------------------------------------------------------------- package body Program.Nodes.Record_Definitions is function Create (Record_Token : not null Program.Lexical_Elements.Lexical_Element_Access; Components : not null Program.Element_Vectors.Element_Vector_Access; End_Token : not null Program.Lexical_Elements.Lexical_Element_Access; Record_Token_2 : not null Program.Lexical_Elements.Lexical_Element_Access) return Record_Definition is begin return Result : Record_Definition := (Record_Token => Record_Token, Components => Components, End_Token => End_Token, Record_Token_2 => Record_Token_2, Enclosing_Element => null) do Initialize (Result); end return; end Create; function Create (Components : not null Program.Element_Vectors .Element_Vector_Access; Is_Part_Of_Implicit : Boolean := False; Is_Part_Of_Inherited : Boolean := False; Is_Part_Of_Instance : Boolean := False) return Implicit_Record_Definition is begin return Result : Implicit_Record_Definition := (Components => Components, Is_Part_Of_Implicit => Is_Part_Of_Implicit, Is_Part_Of_Inherited => Is_Part_Of_Inherited, Is_Part_Of_Instance => Is_Part_Of_Instance, Enclosing_Element => null) do Initialize (Result); end return; end Create; overriding function Components (Self : Base_Record_Definition) return not null Program.Element_Vectors.Element_Vector_Access is begin return Self.Components; end Components; overriding function Record_Token (Self : Record_Definition) return not null Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Record_Token; end Record_Token; overriding function End_Token (Self : Record_Definition) return not null Program.Lexical_Elements.Lexical_Element_Access is begin return Self.End_Token; end End_Token; overriding function Record_Token_2 (Self : Record_Definition) return not null Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Record_Token_2; end Record_Token_2; overriding function Is_Part_Of_Implicit (Self : Implicit_Record_Definition) return Boolean is begin return Self.Is_Part_Of_Implicit; end Is_Part_Of_Implicit; overriding function Is_Part_Of_Inherited (Self : Implicit_Record_Definition) return Boolean is begin return Self.Is_Part_Of_Inherited; end Is_Part_Of_Inherited; overriding function Is_Part_Of_Instance (Self : Implicit_Record_Definition) return Boolean is begin return Self.Is_Part_Of_Instance; end Is_Part_Of_Instance; procedure Initialize (Self : in out Base_Record_Definition'Class) is begin for Item in Self.Components.Each_Element loop Set_Enclosing_Element (Item.Element, Self'Unchecked_Access); end loop; null; end Initialize; overriding function Is_Record_Definition (Self : Base_Record_Definition) return Boolean is pragma Unreferenced (Self); begin return True; end Is_Record_Definition; overriding function Is_Definition (Self : Base_Record_Definition) return Boolean is pragma Unreferenced (Self); begin return True; end Is_Definition; overriding procedure Visit (Self : not null access Base_Record_Definition; Visitor : in out Program.Element_Visitors.Element_Visitor'Class) is begin Visitor.Record_Definition (Self); end Visit; overriding function To_Record_Definition_Text (Self : in out Record_Definition) return Program.Elements.Record_Definitions .Record_Definition_Text_Access is begin return Self'Unchecked_Access; end To_Record_Definition_Text; overriding function To_Record_Definition_Text (Self : in out Implicit_Record_Definition) return Program.Elements.Record_Definitions .Record_Definition_Text_Access is pragma Unreferenced (Self); begin return null; end To_Record_Definition_Text; end Program.Nodes.Record_Definitions;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Localization, Internationalization, Globalization for Ada -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2018, Vadim Godunko <vgodunko@gmail.com> -- -- 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 League.Characters.Latin; package body League.IRIs is use League.Characters.Latin; use type League.Characters.Universal_Character; package IRI_Parser is procedure Parse_IRI_Reference (Self : in out IRI'Class; Image : League.Strings.Universal_String); -- Parses 'IRI-reference' production. end IRI_Parser; procedure Normalize_Path (Self : in out IRI'Class); function Is_ALPHA (C : League.Characters.Universal_Character) return Boolean; -- Returns True when specified character is ALPHA. function Is_DIGIT (C : League.Characters.Universal_Character) return Boolean; -- Returns True when specified character is DIGIT. function Is_IUnreserved (C : League.Characters.Universal_Character) return Boolean; -- Returns True when specified character is iunreserved. function Is_Sub_Delims (C : League.Characters.Universal_Character) return Boolean; -- Returns True when specified character is sub-delims. --------- -- "=" -- --------- function "=" (Left : IRI; Right : IRI) return Boolean is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, """="" unimplemented"); raise Program_Error; return "=" (Left, Right); end "="; -------------------- -- Append_Segment -- -------------------- procedure Append_Segment (Self : in out IRI'Class; Segment : League.Strings.Universal_String) is begin Self.Path.Append (Segment); end Append_Segment; --------------- -- Authority -- --------------- function Authority (Self : IRI'Class) return League.Strings.Universal_String is begin return Result : League.Strings.Universal_String do -- Append user info. if not Self.User_Info.Is_Empty then Result.Append (Self.User_Info); Result.Append (Commercial_At); end if; -- Append host. Result.Append (Self.Host); -- Append port. if Self.Port /= 0 then declare Image : constant Wide_Wide_String := Integer'Wide_Wide_Image (Self.Port); begin Result.Append (Colon); Result.Append (Image (Image'First + 1 .. Image'Last)); end; end if; end return; end Authority; ----------- -- Clear -- ----------- procedure Clear (Self : in out IRI'Class) is begin Self.Scheme.Clear; Self.Has_Authority := False; Self.User_Info.Clear; Self.Host.Clear; Self.Port := 0; Self.Path_Is_Absolute := True; Self.Path.Clear; Self.Query.Clear; Self.Fragment.Clear; end Clear; ----------------------- -- Encoded_Authority -- ----------------------- function Encoded_Authority (Self : IRI'Class) return League.Stream_Element_Vectors.Stream_Element_Vector is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Encoded_Authority unimplemented"); raise Program_Error; return Encoded_Authority (Self); end Encoded_Authority; ---------------------- -- Encoded_Fragment -- ---------------------- function Encoded_Fragment (Self : IRI'Class) return League.Stream_Element_Vectors.Stream_Element_Vector is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Encoded_Fragment unimplemented"); raise Program_Error; return Encoded_Fragment (Self); end Encoded_Fragment; ------------------ -- Encoded_Host -- ------------------ function Encoded_Host (Self : IRI'Class) return League.Stream_Element_Vectors.Stream_Element_Vector is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Encoded_Host unimplemented"); raise Program_Error; return Encoded_Host (Self); end Encoded_Host; ------------------ -- Encoded_Path -- ------------------ function Encoded_Path (Self : IRI'Class) return League.Stream_Element_Vectors.Stream_Element_Vector is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Encoded_Path unimplemented"); raise Program_Error; return Encoded_Path (Self); end Encoded_Path; ------------------- -- Encoded_Query -- ------------------- function Encoded_Query (Self : IRI'Class) return League.Stream_Element_Vectors.Stream_Element_Vector is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Encoded_Query unimplemented"); raise Program_Error; return Encoded_Query (Self); end Encoded_Query; -------------------- -- Encoded_Scheme -- -------------------- function Encoded_Scheme (Self : IRI'Class) return League.Stream_Element_Vectors.Stream_Element_Vector is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Encoded_Scheme unimplemented"); raise Program_Error; return Encoded_Scheme (Self); end Encoded_Scheme; ----------------------- -- Encoded_User_Info -- ----------------------- function Encoded_User_Info (Self : IRI'Class) return League.Stream_Element_Vectors.Stream_Element_Vector is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Encoded_User_Info unimplemented"); raise Program_Error; return Encoded_User_Info (Self); end Encoded_User_Info; -------------- -- Fragment -- -------------- function Fragment (Self : IRI'Class) return League.Strings.Universal_String is begin return Self.Fragment; end Fragment; ------------------ -- From_Encoded -- ------------------ function From_Encoded (Item : League.Stream_Element_Vectors.Stream_Element_Vector) return IRI is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "From_Encoded unimplemented"); raise Program_Error; return From_Encoded (Item); end From_Encoded; --------------------------- -- From_Universal_String -- --------------------------- function From_Universal_String (Item : League.Strings.Universal_String) return IRI is begin return Result : IRI do Result.Set_IRI (Item); end return; end From_Universal_String; ---------------- -- IRI_Parser -- ---------------- package body IRI_Parser is -- All Parse_'production' subprograms has the same profile: -- -- - Self: object where parsed data is stored; -- -- - Image: textual representation of the IRI; -- -- - First: index of the first character to be parsed by subprogram; -- and index of the first character below successfully parsed -- production. Parameter is unchanged on failure; -- -- - Success: status of parsing. procedure Parse_Scheme (Self : in out IRI'Class; Image : League.Strings.Universal_String; First : in out Positive; Success : out Boolean); -- Parses 'scheme' production up to colon delimiter. First will point to -- colon delimiter on success. procedure Parse_IHier_Part (Self : in out IRI'Class; Image : League.Strings.Universal_String; First : in out Positive; Success : out Boolean); -- Parses 'ihier-part' production up to first unexpected character. -- First will point to that character. procedure Parse_IAuthority (Self : in out IRI'Class; Image : League.Strings.Universal_String; First : in out Positive; Success : out Boolean); -- Parses 'iauthority' production up to first unexpected character. -- First will point to that character. procedure Parse_IPath_Abempty (Self : in out IRI'Class; Image : League.Strings.Universal_String; First : in out Positive; Success : out Boolean); -- Parses 'ipath-abempty' production up to first unexpected character. -- First will point to that character. procedure Parse_IPath_Absolute (Self : in out IRI'Class; Image : League.Strings.Universal_String; First : in out Positive; Success : out Boolean); -- Parses 'ipath-absolute' production up to first unexpected character. -- First will point to that character. procedure Parse_ISegment (Self : in out IRI'Class; Image : League.Strings.Universal_String; First : in out Positive; Success : out Boolean); -- Parses 'isegment' production up to first unexpected character. First -- will point to that character. procedure Parse_IUserInfo (Self : in out IRI'Class; Image : League.Strings.Universal_String; First : in out Positive; Success : out Boolean); -- Parses 'iuserinfo' production up to commercial at delimiter. First -- will point to that character. procedure Parse_IHost (Self : in out IRI'Class; Image : League.Strings.Universal_String; First : in out Positive; Success : out Boolean); -- Parses 'ihost' production up to first unexpected character. First -- will point to that character. procedure Parse_IReg_Name (Self : in out IRI'Class; Image : League.Strings.Universal_String; First : in out Positive; Success : out Boolean); -- Parses 'ireg-name' production up to first unexpected character. First -- will point to that character. procedure Parse_Port (Self : in out IRI'Class; Image : League.Strings.Universal_String; First : in out Positive; Success : out Boolean); -- Parses 'port' production up to first unexpected character. First -- will point to that character. procedure Parse_IQuery (Self : in out IRI'Class; Image : League.Strings.Universal_String; First : in out Positive; Success : out Boolean); -- Parses 'iquery' production up to first unexpected character. First -- will point to that character. procedure Parse_IFragment (Self : in out IRI'Class; Image : League.Strings.Universal_String; First : in out Positive; Success : out Boolean); -- Parses 'ifragment' production up to first unexpected character. First -- will point to that character. procedure Parse_IPath_Noscheme (Self : in out IRI'Class; Image : League.Strings.Universal_String; First : in out Positive; Success : out Boolean); -- Parses 'ipath-noscheme' production up to first unexpected character. -- First will point to that character. procedure Parse_Pct_Encoded (Self : in out IRI'Class; Image : League.Strings.Universal_String; First : in out Positive; Success : out Boolean; Result : in out League.Strings.Universal_String); -- Parses 'pct-encoded' production. First will point to the character -- after production. Parsed data is normalized (converted into upper -- case) and appended to Result. -- Character classification subprograms. function Is_HEXDIG (C : League.Characters.Universal_Character) return Boolean; -- Returns True when specified character is HEXDIG. function Is_IPrivate (C : League.Characters.Universal_Character) return Boolean; -- Returns True when specified character is iprivate. --------------- -- Is_HEXDIG -- --------------- function Is_HEXDIG (C : League.Characters.Universal_Character) return Boolean is begin return (Digit_Zero <= C and C <= Digit_Nine) or (Latin_Capital_Letter_A <= C and C <= Latin_Capital_Letter_F) or (Latin_Small_Letter_A <= C and C <= Latin_Small_Letter_F); end Is_HEXDIG; ----------------- -- Is_IPrivate -- ----------------- function Is_IPrivate (C : League.Characters.Universal_Character) return Boolean is begin -- [RFC 3987] -- -- iprivate = %xE000-F8FF / %xF0000-FFFFD / %x100000-10FFFD -- XXX Compatibility with Legacy IRI must be checked! -- XXX Not implemented completely. return Is_IUnreserved (C); end Is_IPrivate; ---------------------- -- Parse_IAuthority -- ---------------------- procedure Parse_IAuthority (Self : in out IRI'Class; Image : League.Strings.Universal_String; First : in out Positive; Success : out Boolean) is -- [RFC 3987] -- -- iauthority = [ iuserinfo "@" ] ihost [ ":" port ] Current : Positive := First; begin Self.Has_Authority := True; -- Try to parse 'iuserinfo' production. By convention, it sets -- Success to True when user info delimiter is not found. Parse_IUserInfo (Self, Image, Current, Success); if not Success then return; end if; if Image.Element (Current) = Commercial_At then Current := Current + 1; end if; -- Parse 'ihost' production. Parse_IHost (Self, Image, Current, Success); if not Success then return; end if; -- Check port delimiter and parse 'port' production. if Current <= Image.Length and then Image.Element (Current) = Colon then Current := Current + 1; -- Skip colon charater. Parse_Port (Self, Image, Current, Success); if not Success then return; end if; end if; First := Current; Success := True; end Parse_IAuthority; --------------------- -- Parse_IFragment -- --------------------- procedure Parse_IFragment (Self : in out IRI'Class; Image : League.Strings.Universal_String; First : in out Positive; Success : out Boolean) is -- [RFC 3987] -- -- ifragment = *( ipchar / "/" / "?" ) -- -- ipchar = iunreserved / pct-encoded / sub-delims / ":" -- / "@" Current : Positive := First; C : League.Characters.Universal_Character; begin while Current <= Image.Length loop C := Image.Element (Current); if Is_IUnreserved (C) or Is_Sub_Delims (C) or C = Colon or C = Commercial_At or C = Solidus or C = Question_Mark then Self.Fragment.Append (C); Current := Current + 1; elsif C = Percent_Sign then Parse_Pct_Encoded (Self, Image, Current, Success, Self.Fragment); if not Success then return; end if; else exit; end if; end loop; First := Current; Success := True; end Parse_IFragment; ---------------------- -- Parse_IHier_Part -- ---------------------- procedure Parse_IHier_Part (Self : in out IRI'Class; Image : League.Strings.Universal_String; First : in out Positive; Success : out Boolean) is -- [RFC 3987] -- -- ihier-part = "//" iauthority ipath-abempty -- / ipath-absolute -- / ipath-rootless -- / ipath-empty -- -- ipath-abempty = *( "/" isegment ) -- -- ipath-absolute = "/" [ isegment-nz *( "/" isegment ) ] -- -- ipath-rootless = isegment-nz *( "/" isegment ) -- -- ipath-empty = 0<ipchar> -- -- isegment = *ipchar -- -- isegment-nz = 1*ipchar Current : Positive := First; begin -- Check whether first two characters are '/' and at least one -- additional character is present. if Current + 2 <= Image.Length and then Image.Element (Current) = Solidus and then Image.Element (Current + 1) = Solidus then -- Parse 'iauthority' and 'ihier-part' productions. Current := Current + 2; Parse_IAuthority (Self, Image, Current, Success); if not Success then return; end if; Parse_IPath_Abempty (Self, Image, Current, Success); if not Success then return; end if; First := Current; elsif Current < Image.Length and then Image.Element (Current) = Solidus then -- Parse 'ipath-absolute' production. Parse_IPath_Absolute (Self, Image, Current, Success); if not Success then return; end if; First := Current; elsif Current <= Image.Length then -- Try to parse 'ipath-rootless' production. -- XXX Not implemented. raise Program_Error; else -- 'ipath-empty' production. Self.Path_Is_Absolute := True; Success := True; end if; end Parse_IHier_Part; ----------------- -- Parse_IHost -- ----------------- procedure Parse_IHost (Self : in out IRI'Class; Image : League.Strings.Universal_String; First : in out Positive; Success : out Boolean) is -- [RFC 3987] -- -- ihost = IP-literal / IPv4address / ireg-name -- -- IP-literal = "[" ( IPv6address / IPvFuture ) "]" -- -- IPv4address = dec-octet "." dec-octet "." dec-octet "." -- dec-octet -- -- ireg-name = *( iunreserved / pct-encoded / sub-delims ) begin if Image.Element (First) = Left_Square_Bracket then -- XXX Not implemented. raise Program_Error; else -- 'IPv4address' production is just a case of 'ireg-name' -- production, it is not handled in some special way. Parse_IReg_Name (Self, Image, First, Success); end if; end Parse_IHost; ------------------------- -- Parse_IPath_Abempty -- ------------------------- procedure Parse_IPath_Abempty (Self : in out IRI'Class; Image : League.Strings.Universal_String; First : in out Positive; Success : out Boolean) is -- [RFC 3987] -- -- ipath-abempty = *( "/" isegment ) Current : Positive := First; begin Self.Path_Is_Absolute := True; while Current <= Image.Length loop exit when Image.Element (Current) /= Solidus; Current := Current + 1; Parse_ISegment (Self, Image, Current, Success); if not Success then return; end if; end loop; First := Current; Success := True; end Parse_IPath_Abempty; -------------------------- -- Parse_IPath_Absolute -- -------------------------- procedure Parse_IPath_Absolute (Self : in out IRI'Class; Image : League.Strings.Universal_String; First : in out Positive; Success : out Boolean) is -- [RFC 3987] -- -- ipath-absolute = "/" [ isegment-nz *( "/" isegment ) ] -- -- isegment-nz = 1*ipchar -- -- isegment = *ipchar Current : Positive := First; Old : Positive; begin -- Check whether first character is path separator. if Image.Element (Current) /= Solidus then Success := False; return; end if; Current := Current + 1; Self.Path_Is_Absolute := True; -- Parse 'isegment-nz' production. Old is used to detect that parsed -- segment has at least one character. Old := Current; Parse_ISegment (Self, Image, Current, Success); if not Success then return; end if; if Old = Current then Success := False; return; end if; -- Parse following segments. while Current <= Image.Length loop exit when Image.Element (Current) /= Solidus; Current := Current + 1; Parse_ISegment (Self, Image, Current, Success); if not Success then return; end if; end loop; First := Current; Success := True; end Parse_IPath_Absolute; -------------------------- -- Parse_IPath_Noscheme -- -------------------------- procedure Parse_IPath_Noscheme (Self : in out IRI'Class; Image : League.Strings.Universal_String; First : in out Positive; Success : out Boolean) is -- [RFC 3987] -- -- ipath-noscheme = isegment-nz-nc *( "/" isegment ) -- -- isegment-nz-nc = 1*( iunreserved / pct-encoded / sub-delims -- / "@" ) Segment : League.Strings.Universal_String; Current : Positive := First; C : League.Characters.Universal_Character; begin Self.Path_Is_Absolute := False; while Current <= Image.Length loop C := Image.Element (Current); if Is_IUnreserved (C) or Is_Sub_Delims (C) or C = Commercial_At then Segment.Append (C); Current := Current + 1; elsif C = Percent_Sign then Parse_Pct_Encoded (Self, Image, Current, Success, Segment); if not Success then return; end if; else exit; end if; end loop; if Segment.Is_Empty then Success := False; return; end if; Self.Path.Append (Segment); while Current <= Image.Length loop if Image.Element (Current) = Solidus then Current := Current + 1; Parse_ISegment (Self, Image, Current, Success); if not Success then return; end if; else exit; end if; end loop; First := Current; Success := True; end Parse_IPath_Noscheme; ------------------ -- Parse_IQuery -- ------------------ procedure Parse_IQuery (Self : in out IRI'Class; Image : League.Strings.Universal_String; First : in out Positive; Success : out Boolean) is -- [RFC 3987] -- -- iquery = *( ipchar / iprivate / "/" / "?" ) -- -- ipchar = iunreserved / pct-encoded / sub-delims / ":" -- / "@" Current : Positive := First; C : League.Characters.Universal_Character; begin while Current <= Image.Length loop C := Image.Element (Current); if Is_IUnreserved (C) or Is_Sub_Delims (C) or C = Colon or C = Commercial_At or C = Solidus or C = Question_Mark or Is_IPrivate (C) then Self.Query.Append (C); Current := Current + 1; elsif C = Percent_Sign then Parse_Pct_Encoded (Self, Image, Current, Success, Self.Query); if not Success then return; end if; else exit; end if; end loop; First := Current; Success := True; end Parse_IQuery; --------------------- -- Parse_IReg_Name -- --------------------- procedure Parse_IReg_Name (Self : in out IRI'Class; Image : League.Strings.Universal_String; First : in out Positive; Success : out Boolean) is -- [RFC 3987] -- -- ireg-name = *( iunreserved / pct-encoded / sub-delims ) C : League.Characters.Universal_Character; Current : Positive := First; begin while Current <= Image.Length loop C := Image.Element (Current); if Is_IUnreserved (C) or Is_Sub_Delims (C) then -- [RFC 3986] -- -- "Although host is case-insensitive, producers and -- normalizers should use lowercase for registered names and -- hexadecimal addresses for the sake of uniformity, while only -- using uppercase letters for percent-encodings." -- -- [RFC 3987] 5.3.2.1. Case Normalization -- -- "When an IRI uses components of the generic syntax, the -- component syntax equivalence rules always apply; namely, -- that the scheme and US-ASCII only host are case insensitive -- and therefore should be normalized to lowercase. if Is_ALPHA (C) then Self.Host.Append (C.Simple_Lowercase_Mapping); else Self.Host.Append (C); end if; Current := Current + 1; elsif C = Percent_Sign then Parse_Pct_Encoded (Self, Image, Current, Success, Self.Host); if not Success then Self.Host.Clear; return; end if; else exit; end if; end loop; First := Current; Success := True; end Parse_IReg_Name; ------------------------- -- Parse_IRI_Reference -- ------------------------- procedure Parse_IRI_Reference (Self : in out IRI'Class; Image : League.Strings.Universal_String) is -- [RFC 3987] -- -- IRI-reference = IRI / irelative-ref -- -- IRI = scheme ":" ihier-part [ "?" iquery ] -- [ "#" ifragment ] -- -- irelative-ref = irelative-part [ "?" iquery ] [ "#" ifragment ] -- -- irelative-part = "//" iauthority ipath-abempty -- / ipath-absolute -- / ipath-noscheme -- / ipath-empty -- -- ipath-absolute = "/" [ isegment-nz *( "/" isegment ) ] -- -- ipath-noscheme = isegment-nz-nc *( "/" isegment ) Success : Boolean; Current : Positive := 1; begin Self.Clear; -- Try to parse 'scheme' production. Parse_Scheme (Self, Image, Current, Success); if Success then -- Skip colon delimiter. Current := Current + 1; Parse_IHier_Part (Self, Image, Current, Success); if not Success then raise Constraint_Error; end if; elsif Current + 2 <= Image.Length and then Image.Element (Current) = Solidus and then Image.Element (Current + 1) = Solidus then -- Parse 'iauthority' and 'ihier-part' productions. Current := Current + 2; Parse_IAuthority (Self, Image, Current, Success); if not Success then raise Constraint_Error; end if; Parse_IPath_Abempty (Self, Image, Current, Success); if not Success then raise Constraint_Error; end if; elsif Current < Image.Length and then Image.Element (Current) = Solidus then -- Parse 'ipath-absolute' production. Parse_IPath_Absolute (Self, Image, Current, Success); if not Success then raise Constraint_Error; end if; elsif Current <= Image.Length then -- Parse 'ipath-noscheme' production. Parse_IPath_Noscheme (Self, Image, Current, Success); if not Success then raise Constraint_Error; end if; end if; -- Parse 'iquery' production if present. if Current <= Image.Length and then Image.Element (Current) = Question_Mark then -- Skip question mark delimiter. Current := Current + 1; Parse_IQuery (Self, Image, Current, Success); if not Success then raise Constraint_Error; end if; end if; -- Parse 'fragment' production if present. if Current <= Image.Length and then Image.Element (Current) = Number_Sign then -- Skip number sign delimiter. Current := Current + 1; Parse_IFragment (Self, Image, Current, Success); if not Success then raise Constraint_Error; end if; end if; if Current <= Image.Length then raise Constraint_Error; end if; end Parse_IRI_Reference; -------------------- -- Parse_ISegment -- -------------------- procedure Parse_ISegment (Self : in out IRI'Class; Image : League.Strings.Universal_String; First : in out Positive; Success : out Boolean) is -- [RFC 3987] -- -- isegment = *ipchar -- -- ipchar = iunreserved / pct-encoded / sub-delims / ":" -- / "@" Segment : League.Strings.Universal_String; C : League.Characters.Universal_Character; Current : Positive := First; begin while Current <= Image.Length loop C := Image.Element (Current); if Is_IUnreserved (C) or Is_Sub_Delims (C) or C = Colon or C = Commercial_At then Segment.Append (C); Current := Current + 1; elsif C = Percent_Sign then -- Percent encoded data. Parse_Pct_Encoded (Self, Image, Current, Success, Segment); if not Success then return; end if; else -- Unexpected character. exit; end if; end loop; -- Append parsed segment to the list of segments when it is not -- empty. if not Segment.Is_Empty then Self.Path.Append (Segment); end if; First := Current; Success := True; end Parse_ISegment; --------------------- -- Parse_IUserInfo -- --------------------- procedure Parse_IUserInfo (Self : in out IRI'Class; Image : League.Strings.Universal_String; First : in out Positive; Success : out Boolean) is -- [RFC 3987] -- -- iuserinfo = *( iunreserved / pct-encoded / sub-delims / ":" ) Current : Positive := First; C : League.Characters.Universal_Character; begin while Current <= Image.Length loop C := Image.Element (Current); if Is_IUnreserved (C) or Is_Sub_Delims (C) or C = Colon then Self.User_Info.Append (C); Current := Current + 1; elsif C = Percent_Sign then Parse_Pct_Encoded (Self, Image, Current, Success, Self.User_Info); if not Success then Self.User_Info.Clear; return; end if; else exit; end if; end loop; Success := True; if Current > Image.Length or else Image.Element (Current) /= Commercial_At then -- By convention, character after 'iuserinfo' should be '@'; -- otherwise it is impossible to distinguish 'ihost' and -- 'iuserinfo'. So, clear accumulated data to be able to try parse -- 'ihost'. Self.User_Info.Clear; else First := Current; end if; end Parse_IUserInfo; ----------------------- -- Parse_Pct_Encoded -- ----------------------- procedure Parse_Pct_Encoded (Self : in out IRI'Class; Image : League.Strings.Universal_String; First : in out Positive; Success : out Boolean; Result : in out League.Strings.Universal_String) is -- [RFC 3987] -- -- pct-encoded = "%" HEXDIG HEXDIG C1 : League.Characters.Universal_Character; C2 : League.Characters.Universal_Character; begin if First + 2 <= Image.Length and Image.Element (First) = Percent_Sign then C1 := Image.Element (First + 1); C2 := Image.Element (First + 2); if Is_HEXDIG (C1) and Is_HEXDIG (C2) then -- Append to result parsed and normalized (converted to -- uppercase) characters. Result.Append (Percent_Sign); Result.Append (C1.Simple_Uppercase_Mapping); Result.Append (C2.Simple_Uppercase_Mapping); First := First + 3; Success := True; else Success := False; end if; else Success := False; end if; end Parse_Pct_Encoded; ---------------- -- Parse_Port -- ---------------- procedure Parse_Port (Self : in out IRI'Class; Image : League.Strings.Universal_String; First : in out Positive; Success : out Boolean) is -- [RFC 3987] -- -- port = *DIGIT C : League.Characters.Universal_Character; Current : Positive := First; begin Self.Port := 0; while Current <= Image.Length loop C := Image.Element (Current); exit when not IS_DIGIT (C); Self.Port := Self.Port * 10 + (Wide_Wide_Character'Pos (C.To_Wide_Wide_Character) - Wide_Wide_Character'Pos('0')); Current := Current + 1; end loop; Success := True; First := Current; end Parse_Port; ------------------ -- Parse_Scheme -- ------------------ procedure Parse_Scheme (Self : in out IRI'Class; Image : League.Strings.Universal_String; First : in out Positive; Success : out Boolean) is -- [RFC 3987] -- -- scheme = ALPHA *( ALPHA / DIGIT / "+" / "-" / "." ) C : League.Characters.Universal_Character; Current : Positive := First; begin -- Check that at least two characters is available (one character of -- the scheme and colon delimiter). if Image.Length <= Current then Success := False; return; end if; -- Check first character of the scheme. C := Image.Element (Current); if not Is_ALPHA (C) then Success := False; return; else -- Convert to lowercase and append to result. Self.Scheme.Append (C.Simple_Lowercase_Mapping); Current := Current + 1; end if; while Current <= Image.Length loop C := Image.Element (Current); exit when not Is_ALPHA (C) and not IS_DIGIT (C) and C /= Plus_Sign and C /= Hyphen_Minus and C /= Full_Stop; -- Convert to lowercase and append to result. Self.Scheme.Append (C.Simple_Lowercase_Mapping); Current := Current + 1; end loop; -- Check that scheme is terminated by colon delimiter. if C /= Colon then Self.Scheme.Clear; Success := False; return; end if; Success := True; First := Current; end Parse_Scheme; end IRI_Parser; ----------------- -- Is_Absolute -- ----------------- function Is_Absolute (Self : IRI'Class) return Boolean is begin return not Self.Scheme.Is_Empty; end Is_Absolute; -------------- -- Is_ALPHA -- -------------- function Is_ALPHA (C : League.Characters.Universal_Character) return Boolean is begin return (Latin_Capital_Letter_A <= C and C <= Latin_Capital_Letter_Z) or (Latin_Small_Letter_A <= C and C <= Latin_Small_Letter_Z); end Is_ALPHA; -------------- -- Is_DIGIT -- -------------- function Is_DIGIT (C : League.Characters.Universal_Character) return Boolean is begin return Digit_Zero <= C and C <= Digit_Nine; end Is_DIGIT; -------------------- -- Is_IUnreserved -- -------------------- function Is_IUnreserved (C : League.Characters.Universal_Character) return Boolean is begin -- [RFC 3987] -- -- iunreserved = ALPHA / DIGIT / "-" / "." / "_" / "~" / ucschar -- -- ucschar = %xA0-D7FF / %xF900-FDCF / %xFDF0-FFEF -- / %x10000-1FFFD / %x20000-2FFFD / %x30000-3FFFD -- / %x40000-4FFFD / %x50000-5FFFD / %x60000-6FFFD -- / %x70000-7FFFD / %x80000-8FFFD / %x90000-9FFFD -- / %xA0000-AFFFD / %xB0000-BFFFD / %xC0000-CFFFD -- / %xD0000-DFFFD / %xE1000-EFFFD -- XXX Compatibility with Legacy IRI must be checked! -- XXX Not implemented completely. return Is_ALPHA (C) or (Digit_Zero <= C and C <= Digit_Nine) or C = Hyphen_Minus or C = Full_Stop or C = Low_Line or C = Tilde or (C.Is_Valid and No_Break_Space <= C); end Is_IUnreserved; ---------------------- -- Is_Path_Absolute -- ---------------------- function Is_Path_Absolute (Self : IRI'Class) return Boolean is begin return Self.Path_Is_Absolute; end Is_Path_Absolute; ------------------- -- Is_Sub_Delims -- ------------------- function Is_Sub_Delims (C : League.Characters.Universal_Character) return Boolean is begin -- sub-delims = "!" / "$" / "&" / "'" / "(" / ")" -- / "*" / "+" / "," / ";" / "=" return C = Exclamation_Mark or C = Dollar_Sign or C = Ampersand or C = Apostrophe or C = Left_Parenthesis or C = Right_Parenthesis or C = Asterisk or C = Plus_Sign or C = Comma or C = Semicolon or C = Equals_Sign; end Is_Sub_Delims; -------------- -- Is_Valid -- -------------- function Is_Valid (Self : IRI'Class) return Boolean is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Is_Valid unimplemented"); raise Program_Error; return Is_Valid (Self); end Is_Valid; -------------- -- Get_Host -- -------------- function Get_Host (Self : IRI'Class) return League.Strings.Universal_String is begin return Self.Host; end Get_Host; -------------- -- Get_Path -- -------------- function Get_Path (Self : IRI'Class) return League.String_Vectors.Universal_String_Vector is begin return Self.Path; end Get_Path; -------------- -- Get_Port -- -------------- function Get_Port (Self : IRI'Class; Default : Natural := 0) return Natural is begin return Self.Port; end Get_Port; ---------------- -- Get_Scheme -- ---------------- function Get_Scheme (Self : IRI'Class) return League.Strings.Universal_String is begin return Self.Scheme; end Get_Scheme; -------------------- -- Normalize_Path -- -------------------- procedure Normalize_Path (Self : in out IRI'Class) is begin -- XXX Not implemented. null; end Normalize_Path; ----------- -- Query -- ----------- function Query (Self : IRI'Class) return League.Strings.Universal_String is begin return Self.Query; end Query; ------------- -- Resolve -- ------------- function Resolve (Self : IRI'Class; Relative : IRI'Class) return IRI is begin return Result : IRI := IRI (Relative) do if Result.Scheme.Is_Empty then Result.Scheme := Self.Scheme; end if; if not Result.Has_Authority then Result.Has_Authority := Self.Has_Authority; end if; if Result.User_Info.Is_Empty then Result.User_Info := Self.User_Info; end if; if Result.Host.Is_Empty then Result.Host := Self.Host; end if; if Result.Port = 0 then Result.Port := Self.Port; end if; if not Result.Path_Is_Absolute then Result.Path.Prepend (Self.Path); Result.Path_Is_Absolute := Self.Path_Is_Absolute; end if; Normalize_Path (Result); end return; end Resolve; ----------------------- -- Set_Absolute_Path -- ----------------------- procedure Set_Absolute_Path (Self : in out IRI'Class; To : League.String_Vectors.Universal_String_Vector) is begin Self.Path := To; Self.Path_Is_Absolute := True; end Set_Absolute_Path; ------------------- -- Set_Authority -- ------------------- procedure Set_Authority (Self : in out IRI'Class; To : League.Strings.Universal_String) is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Set_Authority unimplemented"); raise Program_Error; end Set_Authority; ----------------- -- Set_Encoded -- ----------------- procedure Set_Encoded (Self : in out IRI'Class; To : League.Stream_Element_Vectors.Stream_Element_Vector) is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Set_Encoded unimplemented"); raise Program_Error; end Set_Encoded; --------------------------- -- Set_Encoded_Authority -- --------------------------- procedure Set_Encoded_Authority (Self : in out IRI'Class; To : League.Stream_Element_Vectors.Stream_Element_Vector) is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Set_Encoded_Authority unimplemented"); raise Program_Error; end Set_Encoded_Authority; -------------------------- -- Set_Encoded_Fragment -- -------------------------- procedure Set_Encoded_Fragment (Self : in out IRI'Class; To : League.Stream_Element_Vectors.Stream_Element_Vector) is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Set_Encoded_Fragment unimplemented"); raise Program_Error; end Set_Encoded_Fragment; ---------------------- -- Set_Encoded_Host -- ---------------------- procedure Set_Encoded_Host (Self : in out IRI'Class; To : League.Stream_Element_Vectors.Stream_Element_Vector) is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Set_Encoded_Host unimplemented"); raise Program_Error; end Set_Encoded_Host; ---------------------- -- Set_Encoded_Path -- ---------------------- procedure Set_Encoded_Path (Self : in out IRI'Class; To : League.Stream_Element_Vectors.Stream_Element_Vector) is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Set_Encoded_Path unimplemented"); raise Program_Error; end Set_Encoded_Path; ----------------------- -- Set_Encoded_Query -- ----------------------- procedure Set_Encoded_Query (Self : in out IRI'Class; To : League.Stream_Element_Vectors.Stream_Element_Vector) is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Set_Encoded_Query unimplemented"); raise Program_Error; end Set_Encoded_Query; ------------------------ -- Set_Encoded_Scheme -- ------------------------ procedure Set_Encoded_Scheme (Self : in out IRI'Class; To : League.Stream_Element_Vectors.Stream_Element_Vector) is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Set_Encoded_Scheme unimplemented"); raise Program_Error; end Set_Encoded_Scheme; --------------------------- -- Set_Encoded_User_Info -- --------------------------- procedure Set_Encoded_User_Info (Self : in out IRI'Class; To : League.Stream_Element_Vectors.Stream_Element_Vector) is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Set_Encoded_User_Info unimplemented"); raise Program_Error; end Set_Encoded_User_Info; ------------------ -- Set_Fragment -- ------------------ procedure Set_Fragment (Self : in out IRI'Class; To : League.Strings.Universal_String) is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Set_Fragment unimplemented"); raise Program_Error; end Set_Fragment; -------------- -- Set_Host -- -------------- procedure Set_Host (Self : in out IRI'Class; To : League.Strings.Universal_String) is begin -- [RFC 3987] -- -- ihost = IP-literal / IPv4address / ireg-name -- -- IP-literal = "[" ( IPv6address / IPvFuture ) "]" -- -- IPv4address = dec-octet "." dec-octet "." dec-octet "." -- dec-octet -- -- ireg-name = *( iunreserved / pct-encoded / sub-delims ) -- XXX Check for valid 'ihost' production should be added. Self.Has_Authority := True; Self.Host := To; end Set_Host; ------------- -- Set_IRI -- ------------- procedure Set_IRI (Self : in out IRI'Class; To : League.Strings.Universal_String) is begin IRI_Parser.Parse_IRI_Reference (Self, To); end Set_IRI; ----------------------- -- Set_Path_Absolute -- ----------------------- procedure Set_Path_Absolute (Self : in out IRI'Class; To : Boolean) is begin Self.Path_Is_Absolute := To; end Set_Path_Absolute; -------------- -- Set_Port -- -------------- procedure Set_Port (Self : in out IRI'Class; To : Natural) is begin Self.Port := To; end Set_Port; --------------- -- Set_Query -- --------------- procedure Set_Query (Self : in out IRI'Class; To : League.Strings.Universal_String) is begin Self.Query := To; end Set_Query; ----------------------- -- Set_Relative_Path -- ----------------------- procedure Set_Relative_Path (Self : in out IRI'Class; To : League.String_Vectors.Universal_String_Vector) is begin Self.Path := To; Self.Path_Is_Absolute := False; end Set_Relative_Path; ---------------- -- Set_Scheme -- ---------------- procedure Set_Scheme (Self : in out IRI'Class; To : League.Strings.Universal_String) is C : League.Characters.Universal_Character; begin if not To.Is_Empty then -- [RFC 3987] -- -- scheme = ALPHA *( ALPHA / DIGIT / "+" / "-" / "." ) if not Is_ALPHA (To (1)) then raise Constraint_Error with "Invalid scheme"; end if; for J in 2 .. To.Length loop C := To (J); if not Is_ALPHA (C) and then not Is_DIGIT (C) and then C /= Plus_Sign and then C /= Hyphen_Minus and then C /= Full_Stop then raise Constraint_Error with "Invalid scheme"; end if; end loop; end if; Self.Scheme := To; end Set_Scheme; ------------------- -- Set_User_Info -- ------------------- procedure Set_User_Info (Self : in out IRI'Class; To : League.Strings.Universal_String) is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "Set_User_Info unimplemented"); raise Program_Error; end Set_User_Info; ---------------- -- To_Encoded -- ---------------- function To_Encoded (Self : IRI'Class) return League.Stream_Element_Vectors.Stream_Element_Vector is begin -- Generated stub: replace with real body! pragma Compile_Time_Warning (Standard.True, "To_Encoded unimplemented"); raise Program_Error; return To_Encoded (Self); end To_Encoded; ------------------------- -- To_Universal_String -- ------------------------- function To_Universal_String (Self : IRI'Class) return League.Strings.Universal_String is procedure Append_IPChar (Result : in out League.Strings.Universal_String; Character : League.Characters.Universal_Character); -- Append character. All characters except ipchar are encoded. procedure Append_ISegment (Result : in out League.Strings.Universal_String; Segment : League.Strings.Universal_String); -- Append isegment. Encode all non ipchar characters. ------------------- -- Append_IPChar -- ------------------- procedure Append_IPChar (Result : in out League.Strings.Universal_String; Character : League.Characters.Universal_Character) is To_HEX : constant array (Natural range 0 .. 15) of League.Characters.Universal_Character := (Digit_Zero, Digit_One, Digit_Two, Digit_Three, Digit_Four, Digit_Five, Digit_Six, Digit_Seven, Digit_Eight, Digit_Nine, Latin_Capital_Letter_A, Latin_Capital_Letter_B, Latin_Capital_Letter_C, Latin_Capital_Letter_D, Latin_Capital_Letter_E, Latin_Capital_Letter_F); begin -- [RFC 3987] -- -- ipchar = iunreserved / pct-encoded / sub-delims / ":" -- / "@" -- -- Note: isegment-nz-nc doesn't allow ":" character, because it -- conflicts with scheme production. if Is_IUnreserved (Character) or else Is_Sub_Delims (Character) or else Character = Colon or else (not Self.Scheme.Is_Empty and then Character = Commercial_At) then Result.Append (Character); else declare Code : constant Natural := Wide_Wide_Character'Pos (Character.To_Wide_Wide_Character); begin if Code <= 16#7F# then Result.Append (Percent_Sign); Result.Append (To_Hex (Code / 16 mod 16)); Result.Append (To_Hex (Code mod 16)); else raise Program_Error; end if; end; end if; end Append_IPChar; --------------------- -- Append_ISegment -- --------------------- procedure Append_ISegment (Result : in out League.Strings.Universal_String; Segment : League.Strings.Universal_String) is begin for J in 1 .. Segment.Length loop Append_IPChar (Result, Segment (J)); end loop; end Append_ISegment; begin return Result : League.Strings.Universal_String do -- Append scheme when defined. if not Self.Scheme.Is_Empty then Result.Append (Self.Scheme); Result.Append (Colon); end if; -- Append two solidus and authority when present. if Self.Has_Authority then Result.Append (Solidus); Result.Append (Solidus); Result.Append (Self.Authority); end if; -- Append path. for J in 1 .. Self.Path.Length loop if J /= 1 or (J = 1 and Self.Path_Is_Absolute) then Result.Append (Solidus); end if; Append_ISegment (Result, Self.Path.Element (J)); end loop; -- Append query. if not Self.Query.Is_Empty then Result.Append (Question_Mark); Result.Append (Self.Query); end if; -- Append fragment. if not Self.Fragment.Is_Empty then Result.Append (Number_Sign); Result.Append (Self.Fragment); end if; end return; end To_Universal_String; --------------- -- User_Info -- --------------- function User_Info (Self : IRI'Class) return League.Strings.Universal_String is begin return Self.User_Info; end User_Info; end League.IRIs;
-- 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_list_extensions_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_list_extensions_cookie_t .Item; -- Pointer -- package C_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_list_extensions_cookie_t.Item, Element_Array => xcb.xcb_list_extensions_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_list_extensions_cookie_t .Pointer; -- Pointer_Pointer -- package C_Pointer_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_list_extensions_cookie_t.Pointer, Element_Array => xcb.xcb_list_extensions_cookie_t.Pointer_Array, Default_Terminator => null); subtype Pointer_Pointer is C_Pointer_Pointers.Pointer; end xcb.xcb_list_extensions_cookie_t;
-- The buffer of lines being edited -- Lines are numbered from 1 (the first line) to Last -- Line numbers are relative: when lines are added or deleted, the numbering of the other lines may change package Lined.Buffer with SPARK_Mode, Abstract_State => State, Initializes => State is procedure Clear with Global => (Output => State), Post => Last = 0; -- Makes the buffer empty -- The buffer is initially empty procedure Mark (Number : in Positive; Status : in Boolean) with Global => (In_Out => State), Pre => Number in 1 .. Last, Post => Marked (Number) = Status; -- Marks (Status True) or unmarks (Status False) line Number function Marked (Number : Positive) return Boolean With Global => (Input => State); -- Returns the mark status of line Number procedure Clear_Marks With Global => (In_Out => State), Post => (for all I in 1 .. Last => not Marked (I) ); -- Sets the marks for all lines in the buffer to False procedure Insert (Line : in String; Before : in Positive) with Global => (In_Out => State), Pre => Before in 1 .. Last + 1, Post => Buffer.Line (Before) = Line; -- Adds Line to the buffer before line number Before procedure Delete (Number : in Positive) with Global => (In_Out => State), Pre => Number in 1 .. Last, Post => Last = Last'Old - 1; -- Deletes line number Number from the buffer procedure Replace (Number : in Positive; Line : in String) with Global => (In_Out => State), Pre => Last < Integer'Last and then Number in 1 .. Last, Post => Buffer.Line (Number) = Line; -- Makes line Number in the buffer have the value Line function Default_File return String with Global => (Input => State); -- Initially returns "" procedure Set_File (Name : in String) with Global => (In_Out => State), Pre => Name /= "", Post => Default_File = Name; procedure Load (File_Name : in String) with Global => (In_Out => State), Post => Default_File = File_Name; -- Makes Default_File return File_Name -- Then, if a file named File_Name exists, clears the buffer, opens File_Name, reads it into the buffer, and closes it -- Otherwise, has no effect on the buffer procedure Write (File_Name : in String := "") with Global => (Input => State); -- If File_Name /= "", creates File_Name, writes the lines in the buffer to it, and closes it -- If File_Name = "" and Default_File /= "", creates Default_File, writes the lines in the buffer to it, and closes it -- If File_Name = "" and Default_File = "", has no effect function Last return Natural with Global => (Input => State), Post => Last'Result < Integer'Last; -- Returns the number of the last line in the buffer = number of lines in the buffer -- Last = 0 means the buffer is empty function Line (Number : Positive) return String with Global => (Input => State), Pre => Number in 1 .. Last; -- Returns line number Number in the buffer function Next (Number : Natural) return Positive with Global => (Input => State), Post => (if Number < Last then Next'Result = Number + 1 else Next'Result = 1); -- Increments line number Number with wrap around function Prev (Number : Natural) return Positive with Global => (Input => State), Pre => Number in 0 .. Last, Post => (if Number > 1 then Prev'Result = Number - 1 else Prev'Result = Last); -- Decrements line number Number with wrap around end Lined.Buffer;
------------------------------------------------------------------------------ -- -- -- GNU ADA RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . I N T E R R U P T S -- -- -- -- B o d y -- -- -- -- $Revision$ -- -- -- Copyright (C) 1991-2000 Free Software Foundation, Inc. -- -- -- -- 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 2, 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. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNARL; 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. -- -- -- -- GNARL was developed by the GNARL team at Florida State University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This is an OpenVMS/Alpha version of this package. -- Invariants: -- Once we associate a Server_Task with an interrupt, the task never -- goes away, and we never remove the association. -- There is no more than one interrupt per Server_Task and no more than -- one Server_Task per interrupt. -- Within this package, the lock L is used to protect the various status -- tables. If there is a Server_Task associated with an interrupt, we use -- the per-task lock of the Server_Task instead so that we protect the -- status between Interrupt_Manager and Server_Task. Protection among -- service requests are done using User Request to Interrupt_Manager -- rendezvous. with Ada.Task_Identification; -- used for Task_ID type with Ada.Exceptions; -- used for Raise_Exception with System.Task_Primitives; -- used for RTS_Lock -- Self with System.Interrupt_Management; -- used for Reserve -- Interrupt_ID -- Interrupt_Mask -- Abort_Task_Interrupt with System.Interrupt_Management.Operations; -- used for Thread_Block_Interrupt -- Thread_Unblock_Interrupt -- Install_Default_Action -- Install_Ignore_Action -- Copy_Interrupt_Mask -- Set_Interrupt_Mask -- Empty_Interrupt_Mask -- Fill_Interrupt_Mask -- Add_To_Interrupt_Mask -- Delete_From_Interrupt_Mask -- Interrupt_Wait -- Interrupt_Self_Process -- Get_Interrupt_Mask -- Set_Interrupt_Mask -- IS_Member -- Environment_Mask -- All_Tasks_Mask pragma Elaborate_All (System.Interrupt_Management.Operations); with System.Error_Reporting; pragma Warnings (Off, System.Error_Reporting); -- used for Shutdown with System.Task_Primitives.Operations; -- used for Write_Lock -- Unlock -- Abort -- Wakeup_Task -- Sleep -- Initialize_Lock with System.Task_Primitives.Interrupt_Operations; -- used for Set_Interrupt_ID with System.Storage_Elements; -- used for To_Address -- To_Integer -- Integer_Address with System.Tasking; -- used for Task_ID -- Task_Entry_Index -- Null_Task -- Self -- Interrupt_Manager_ID with System.Tasking.Utilities; -- used for Make_Independent with System.Tasking.Rendezvous; -- used for Call_Simple pragma Elaborate_All (System.Tasking.Rendezvous); with System.Tasking.Initialization; -- used for Defer_Abort -- Undefer_Abort with Unchecked_Conversion; package body System.Interrupts is use Tasking; use System.Error_Reporting; use Ada.Exceptions; package PRI renames System.Task_Primitives; package POP renames System.Task_Primitives.Operations; package PIO renames System.Task_Primitives.Interrupt_Operations; package IMNG renames System.Interrupt_Management; package IMOP renames System.Interrupt_Management.Operations; function To_System is new Unchecked_Conversion (Ada.Task_Identification.Task_Id, Task_ID); ----------------- -- Local Tasks -- ----------------- -- WARNING: System.Tasking.Utilities performs calls to this task -- with low-level constructs. Do not change this spec without synchro- -- nizing it. task Interrupt_Manager is entry Initialize (Mask : IMNG.Interrupt_Mask); entry Attach_Handler (New_Handler : in Parameterless_Handler; Interrupt : in Interrupt_ID; Static : in Boolean; Restoration : in Boolean := False); entry Exchange_Handler (Old_Handler : out Parameterless_Handler; New_Handler : in Parameterless_Handler; Interrupt : in Interrupt_ID; Static : in Boolean); entry Detach_Handler (Interrupt : in Interrupt_ID; Static : in Boolean); entry Bind_Interrupt_To_Entry (T : Task_ID; E : Task_Entry_Index; Interrupt : Interrupt_ID); entry Detach_Interrupt_Entries (T : Task_ID); entry Block_Interrupt (Interrupt : Interrupt_ID); entry Unblock_Interrupt (Interrupt : Interrupt_ID); entry Ignore_Interrupt (Interrupt : Interrupt_ID); entry Unignore_Interrupt (Interrupt : Interrupt_ID); pragma Interrupt_Priority (System.Interrupt_Priority'Last); end Interrupt_Manager; task type Server_Task (Interrupt : Interrupt_ID) is pragma Priority (System.Interrupt_Priority'Last); end Server_Task; type Server_Task_Access is access Server_Task; -------------------------------- -- Local Types and Variables -- -------------------------------- type Entry_Assoc is record T : Task_ID; E : Task_Entry_Index; end record; type Handler_Assoc is record H : Parameterless_Handler; Static : Boolean; -- Indicates static binding; end record; User_Handler : array (Interrupt_ID'Range) of Handler_Assoc := (others => (null, Static => False)); pragma Volatile_Components (User_Handler); -- Holds the protected procedure handler (if any) and its Static -- information for each interrupt. A handler is a Static one if -- it is specified through the pragma Attach_Handler. -- Attach_Handler. Otherwise, not static) User_Entry : array (Interrupt_ID'Range) of Entry_Assoc := (others => (T => Null_Task, E => Null_Task_Entry)); pragma Volatile_Components (User_Entry); -- Holds the task and entry index (if any) for each interrupt Blocked : array (Interrupt_ID'Range) of Boolean := (others => False); pragma Volatile_Components (Blocked); -- True iff the corresponding interrupt is blocked in the process level Ignored : array (Interrupt_ID'Range) of Boolean := (others => False); pragma Volatile_Components (Ignored); -- True iff the corresponding interrupt is blocked in the process level Last_Unblocker : array (Interrupt_ID'Range) of Task_ID := (others => Null_Task); pragma Volatile_Components (Last_Unblocker); -- Holds the ID of the last Task which Unblocked this Interrupt. -- It contains Null_Task if no tasks have ever requested the -- Unblocking operation or the Interrupt is currently Blocked. Server_ID : array (Interrupt_ID'Range) of Task_ID := (others => Null_Task); pragma Atomic_Components (Server_ID); -- Holds the Task_ID of the Server_Task for each interrupt. -- Task_ID is needed to accomplish locking per Interrupt base. Also -- is needed to decide whether to create a new Server_Task. -- Type and Head, Tail of the list containing Registered Interrupt -- Handlers. These definitions are used to register the handlers -- specified by the pragma Interrupt_Handler. type Registered_Handler; type R_Link is access all Registered_Handler; type Registered_Handler is record H : System.Address := System.Null_Address; Next : R_Link := null; end record; Registered_Handler_Head : R_Link := null; Registered_Handler_Tail : R_Link := null; Access_Hold : Server_Task_Access; -- variable used to allocate Server_Task using "new". L : aliased PRI.RTS_Lock; -- L protects contents in tables above corresponding to interrupts -- for which Server_ID (T) = null. -- -- If Server_ID (T) /= null then protection is via -- per-task (TCB) lock of Server_ID (T). -- -- For deadlock prevention, L should not be locked after -- any other lock is held. Task_Lock : array (Interrupt_ID'Range) of Boolean := (others => False); -- Boolean flags to give matching Locking and Unlocking. See the comments -- in Lock_Interrupt. ----------------------- -- Local Subprograms -- ----------------------- procedure Lock_Interrupt (Self_ID : Task_ID; Interrupt : Interrupt_ID); -- protect the tables using L or per-task lock. Set the Boolean -- value Task_Lock if the lock is made using per-task lock. -- This information is needed so that Unlock_Interrupt -- performs unlocking on the same lock. The situation we are preventing -- is, for example, when Attach_Handler is called for the first time -- we lock L and create an Server_Task. For a matching unlocking, if we -- rely on the fact that there is a Server_Task, we will unlock the -- per-task lock. procedure Unlock_Interrupt (Self_ID : Task_ID; Interrupt : Interrupt_ID); function Is_Registered (Handler : Parameterless_Handler) return Boolean; -------------------- -- Lock_Interrupt -- -------------------- -- ????? -- This package has been modified several times. -- Do we still need this fancy locking scheme, now that more operations -- are entries of the interrupt manager task? -- ????? -- More likely, we will need to convert one or more entry calls to -- protected operations, because presently we are violating locking order -- rules by calling a task entry from within the runtime system. procedure Lock_Interrupt (Self_ID : Task_ID; Interrupt : Interrupt_ID) is begin Initialization.Defer_Abort (Self_ID); POP.Write_Lock (L'Access); if Task_Lock (Interrupt) then -- We need to use per-task lock. POP.Unlock (L'Access); POP.Write_Lock (Server_ID (Interrupt)); -- Rely on the fact that once Server_ID is set to a non-null -- value it will never be set back to null. elsif Server_ID (Interrupt) /= Null_Task then -- We need to use per-task lock. Task_Lock (Interrupt) := True; POP.Unlock (L'Access); POP.Write_Lock (Server_ID (Interrupt)); end if; end Lock_Interrupt; ---------------------- -- Unlock_Interrupt -- ---------------------- procedure Unlock_Interrupt (Self_ID : Task_ID; Interrupt : Interrupt_ID) is begin if Task_Lock (Interrupt) then POP.Unlock (Server_ID (Interrupt)); else POP.Unlock (L'Access); end if; Initialization.Undefer_Abort (Self_ID); end Unlock_Interrupt; ---------------------------------- -- Register_Interrupt_Handler -- ---------------------------------- procedure Register_Interrupt_Handler (Handler_Addr : System.Address) is New_Node_Ptr : R_Link; begin -- This routine registers the Handler as usable for Dynamic -- Interrupt Handler. Routines attaching and detaching Handler -- dynamically should first consult if the Handler is rgistered. -- A Program Error should be raised if it is not registered. -- The pragma Interrupt_Handler can only appear in the library -- level PO definition and instantiation. Therefore, we do not need -- to implement Unregistering operation. Neither we need to -- protect the queue structure using a Lock. pragma Assert (Handler_Addr /= System.Null_Address); New_Node_Ptr := new Registered_Handler; New_Node_Ptr.H := Handler_Addr; if Registered_Handler_Head = null then Registered_Handler_Head := New_Node_Ptr; Registered_Handler_Tail := New_Node_Ptr; else Registered_Handler_Tail.Next := New_Node_Ptr; Registered_Handler_Tail := New_Node_Ptr; end if; end Register_Interrupt_Handler; ------------------- -- Is_Registered -- ------------------- -- See if the Handler has been "pragma"ed using Interrupt_Handler. -- Always consider a null handler as registered. function Is_Registered (Handler : Parameterless_Handler) return Boolean is type Fat_Ptr is record Object_Addr : System.Address; Handler_Addr : System.Address; end record; function To_Fat_Ptr is new Unchecked_Conversion (Parameterless_Handler, Fat_Ptr); Ptr : R_Link; Fat : Fat_Ptr; begin if Handler = null then return True; end if; Fat := To_Fat_Ptr (Handler); Ptr := Registered_Handler_Head; while (Ptr /= null) loop if Ptr.H = Fat.Handler_Addr then return True; end if; Ptr := Ptr.Next; end loop; return False; end Is_Registered; ----------------- -- Is_Reserved -- ----------------- function Is_Reserved (Interrupt : Interrupt_ID) return Boolean is begin return IMNG.Reserve (IMNG.Interrupt_ID (Interrupt)); end Is_Reserved; ----------------------- -- Is_Entry_Attached -- ----------------------- function Is_Entry_Attached (Interrupt : Interrupt_ID) return Boolean is begin if Is_Reserved (Interrupt) then Raise_Exception (Program_Error'Identity, "Interrupt" & Interrupt_ID'Image (Interrupt) & " is reserved"); end if; return User_Entry (Interrupt).T /= Null_Task; end Is_Entry_Attached; ------------------------- -- Is_Handler_Attached -- ------------------------- function Is_Handler_Attached (Interrupt : Interrupt_ID) return Boolean is begin if Is_Reserved (Interrupt) then Raise_Exception (Program_Error'Identity, "Interrupt" & Interrupt_ID'Image (Interrupt) & " is reserved"); end if; return User_Handler (Interrupt).H /= null; end Is_Handler_Attached; ---------------- -- Is_Blocked -- ---------------- function Is_Blocked (Interrupt : Interrupt_ID) return Boolean is begin if Is_Reserved (Interrupt) then Raise_Exception (Program_Error'Identity, "Interrupt" & Interrupt_ID'Image (Interrupt) & " is reserved"); end if; return Blocked (Interrupt); end Is_Blocked; ---------------- -- Is_Ignored -- ---------------- function Is_Ignored (Interrupt : Interrupt_ID) return Boolean is begin if Is_Reserved (Interrupt) then Raise_Exception (Program_Error'Identity, "Interrupt" & Interrupt_ID'Image (Interrupt) & " is reserved"); end if; return Ignored (Interrupt); end Is_Ignored; --------------------- -- Current_Handler -- --------------------- function Current_Handler (Interrupt : Interrupt_ID) return Parameterless_Handler is begin if Is_Reserved (Interrupt) then Raise_Exception (Program_Error'Identity, "Interrupt" & Interrupt_ID'Image (Interrupt) & " is reserved"); end if; -- ??? Since Parameterless_Handler is not Atomic, the -- current implementation is wrong. We need a new service in -- Interrupt_Manager to ensure atomicity. return User_Handler (Interrupt).H; end Current_Handler; -------------------- -- Attach_Handler -- -------------------- -- Calling this procedure with New_Handler = null and Static = True -- means we want to detach the current handler regardless of the -- previous handler's binding status (ie. do not care if it is a -- dynamic or static handler). -- This option is needed so that during the finalization of a PO, we -- can detach handlers attached through pragma Attach_Handler. procedure Attach_Handler (New_Handler : in Parameterless_Handler; Interrupt : in Interrupt_ID; Static : in Boolean := False) is begin if Is_Reserved (Interrupt) then Raise_Exception (Program_Error'Identity, "Interrupt" & Interrupt_ID'Image (Interrupt) & " is reserved"); end if; Interrupt_Manager.Attach_Handler (New_Handler, Interrupt, Static); end Attach_Handler; ---------------------- -- Exchange_Handler -- ---------------------- -- Calling this procedure with New_Handler = null and Static = True -- means we want to detach the current handler regardless of the -- previous handler's binding status (ie. do not care if it is a -- dynamic or static handler). -- This option is needed so that during the finalization of a PO, we -- can detach handlers attached through pragma Attach_Handler. procedure Exchange_Handler (Old_Handler : out Parameterless_Handler; New_Handler : in Parameterless_Handler; Interrupt : in Interrupt_ID; Static : in Boolean := False) is begin if Is_Reserved (Interrupt) then Raise_Exception (Program_Error'Identity, "Interrupt" & Interrupt_ID'Image (Interrupt) & " is reserved"); end if; Interrupt_Manager.Exchange_Handler (Old_Handler, New_Handler, Interrupt, Static); end Exchange_Handler; -------------------- -- Detach_Handler -- -------------------- -- Calling this procedure with Static = True means we want to Detach the -- current handler regardless of the previous handler's binding status -- (i.e. do not care if it is a dynamic or static handler). -- This option is needed so that during the finalization of a PO, we can -- detach handlers attached through pragma Attach_Handler. procedure Detach_Handler (Interrupt : in Interrupt_ID; Static : in Boolean := False) is begin if Is_Reserved (Interrupt) then Raise_Exception (Program_Error'Identity, "Interrupt" & Interrupt_ID'Image (Interrupt) & " is reserved"); end if; Interrupt_Manager.Detach_Handler (Interrupt, Static); end Detach_Handler; --------------- -- Reference -- --------------- function Reference (Interrupt : Interrupt_ID) return System.Address is begin if Is_Reserved (Interrupt) then Raise_Exception (Program_Error'Identity, "Interrupt" & Interrupt_ID'Image (Interrupt) & " is reserved"); end if; return Storage_Elements.To_Address (Storage_Elements.Integer_Address (Interrupt)); end Reference; ----------------------------- -- Bind_Interrupt_To_Entry -- ----------------------------- -- This procedure raises a Program_Error if it tries to -- bind an interrupt to which an Entry or a Procedure is -- already bound. procedure Bind_Interrupt_To_Entry (T : Task_ID; E : Task_Entry_Index; Int_Ref : System.Address) is Interrupt : constant Interrupt_ID := Interrupt_ID (Storage_Elements.To_Integer (Int_Ref)); begin if Is_Reserved (Interrupt) then Raise_Exception (Program_Error'Identity, "Interrupt" & Interrupt_ID'Image (Interrupt) & " is reserved"); end if; Interrupt_Manager.Bind_Interrupt_To_Entry (T, E, Interrupt); end Bind_Interrupt_To_Entry; ------------------------------ -- Detach_Interrupt_Entries -- ------------------------------ procedure Detach_Interrupt_Entries (T : Task_ID) is begin Interrupt_Manager.Detach_Interrupt_Entries (T); end Detach_Interrupt_Entries; --------------------- -- Block_Interrupt -- --------------------- procedure Block_Interrupt (Interrupt : Interrupt_ID) is begin if Is_Reserved (Interrupt) then Raise_Exception (Program_Error'Identity, "Interrupt" & Interrupt_ID'Image (Interrupt) & " is reserved"); end if; Interrupt_Manager.Block_Interrupt (Interrupt); end Block_Interrupt; ----------------------- -- Unblock_Interrupt -- ----------------------- procedure Unblock_Interrupt (Interrupt : Interrupt_ID) is begin if Is_Reserved (Interrupt) then Raise_Exception (Program_Error'Identity, "Interrupt" & Interrupt_ID'Image (Interrupt) & " is reserved"); end if; Interrupt_Manager.Unblock_Interrupt (Interrupt); end Unblock_Interrupt; ------------------ -- Unblocked_By -- ------------------ function Unblocked_By (Interrupt : Interrupt_ID) return System.Tasking.Task_ID is begin if Is_Reserved (Interrupt) then Raise_Exception (Program_Error'Identity, "Interrupt" & Interrupt_ID'Image (Interrupt) & " is reserved"); end if; return Last_Unblocker (Interrupt); end Unblocked_By; ---------------------- -- Ignore_Interrupt -- ---------------------- procedure Ignore_Interrupt (Interrupt : Interrupt_ID) is begin if Is_Reserved (Interrupt) then Raise_Exception (Program_Error'Identity, "Interrupt" & Interrupt_ID'Image (Interrupt) & " is reserved"); end if; Interrupt_Manager.Ignore_Interrupt (Interrupt); end Ignore_Interrupt; ------------------------ -- Unignore_Interrupt -- ------------------------ procedure Unignore_Interrupt (Interrupt : Interrupt_ID) is begin if Is_Reserved (Interrupt) then Raise_Exception (Program_Error'Identity, "Interrupt" & Interrupt_ID'Image (Interrupt) & " is reserved"); end if; Interrupt_Manager.Unignore_Interrupt (Interrupt); end Unignore_Interrupt; ----------------------- -- Interrupt_Manager -- ----------------------- task body Interrupt_Manager is ---------------------- -- Local Variables -- ---------------------- Intwait_Mask : aliased IMNG.Interrupt_Mask; Ret_Interrupt : Interrupt_ID; Old_Mask : aliased IMNG.Interrupt_Mask; Self_ID : Task_ID := POP.Self; --------------------- -- Local Routines -- --------------------- procedure Unprotected_Exchange_Handler (Old_Handler : out Parameterless_Handler; New_Handler : in Parameterless_Handler; Interrupt : in Interrupt_ID; Static : in Boolean; Restoration : in Boolean := False); procedure Unprotected_Detach_Handler (Interrupt : in Interrupt_ID; Static : in Boolean); ---------------------------------- -- Unprotected_Exchange_Handler -- ---------------------------------- procedure Unprotected_Exchange_Handler (Old_Handler : out Parameterless_Handler; New_Handler : in Parameterless_Handler; Interrupt : in Interrupt_ID; Static : in Boolean; Restoration : in Boolean := False) is begin if User_Entry (Interrupt).T /= Null_Task then -- In case we have an Interrupt Entry already installed. -- raise a program error. (propagate it to the caller). Unlock_Interrupt (Self_ID, Interrupt); Raise_Exception (Program_Error'Identity, "An interrupt is already installed"); end if; -- Note : A null handler with Static = True will -- pass the following check. That is the case when we want to -- Detach a handler regardless of the Static status -- of the current_Handler. -- We don't check anything if Restoration is True, since we -- may be detaching a static handler to restore a dynamic one. if not Restoration and then not Static -- Tries to overwrite a static Interrupt Handler with a -- dynamic Handler and then (User_Handler (Interrupt).Static -- The new handler is not specified as an -- Interrupt Handler by a pragma. or else not Is_Registered (New_Handler)) then Unlock_Interrupt (Self_ID, Interrupt); Raise_Exception (Program_Error'Identity, "Trying to overwrite a static Interrupt Handler with a " & "dynamic Handler"); end if; -- The interrupt should no longer be ingnored if -- it was ever ignored. Ignored (Interrupt) := False; -- Save the old handler Old_Handler := User_Handler (Interrupt).H; -- The new handler User_Handler (Interrupt).H := New_Handler; if New_Handler = null then -- The null handler means we are detaching the handler. User_Handler (Interrupt).Static := False; else User_Handler (Interrupt).Static := Static; end if; -- Invoke a corresponding Server_Task if not yet created. -- Place Task_ID info in Server_ID array. if Server_ID (Interrupt) = Null_Task then Access_Hold := new Server_Task (Interrupt); Server_ID (Interrupt) := To_System (Access_Hold.all'Identity); else POP.Wakeup (Server_ID (Interrupt), Interrupt_Server_Idle_Sleep); end if; end Unprotected_Exchange_Handler; -------------------------------- -- Unprotected_Detach_Handler -- -------------------------------- procedure Unprotected_Detach_Handler (Interrupt : in Interrupt_ID; Static : in Boolean) is Old_Handler : Parameterless_Handler; begin if User_Entry (Interrupt).T /= Null_Task then -- In case we have an Interrupt Entry installed. -- raise a program error. (propagate it to the caller). Unlock_Interrupt (Self_ID, Interrupt); Raise_Exception (Program_Error'Identity, "An interrupt entry is already installed"); end if; -- Note : Static = True will pass the following check. That is the -- case when we want to detach a handler regardless of the static -- status of the current_Handler. if not Static and then User_Handler (Interrupt).Static then -- Tries to detach a static Interrupt Handler. -- raise a program error. Unlock_Interrupt (Self_ID, Interrupt); Raise_Exception (Program_Error'Identity, "Trying to detach a static Interrupt Handler"); end if; -- The interrupt should no longer be ignored if -- it was ever ignored. Ignored (Interrupt) := False; Old_Handler := User_Handler (Interrupt).H; -- The new handler User_Handler (Interrupt).H := null; User_Handler (Interrupt).Static := False; IMOP.Interrupt_Self_Process (IMNG.Interrupt_ID (Interrupt)); end Unprotected_Detach_Handler; -- Start of processing for Interrupt_Manager begin -- By making this task independent of master, when the process -- goes away, the Interrupt_Manager will terminate gracefully. System.Tasking.Utilities.Make_Independent; -- Environmen task gets its own interrupt mask, saves it, -- and then masks all interrupts except the Keep_Unmasked set. -- During rendezvous, the Interrupt_Manager receives the old -- interrupt mask of the environment task, and sets its own -- interrupt mask to that value. -- The environment task will call the entry of Interrupt_Manager some -- during elaboration of the body of this package. accept Initialize (Mask : IMNG.Interrupt_Mask) do null; end Initialize; -- Note: All tasks in RTS will have all the Reserve Interrupts -- being masked (except the Interrupt_Manager) and Keep_Unmasked -- unmasked when created. -- Abort_Task_Interrupt is one of the Interrupt unmasked -- in all tasks. We mask the Interrupt in this particular task -- so that "sigwait" is possible to catch an explicitly sent -- Abort_Task_Interrupt from the Server_Tasks. -- This sigwaiting is needed so that we make sure a Server_Task is -- out of its own sigwait state. This extra synchronization is -- necessary to prevent following senarios. -- 1) Interrupt_Manager sends an Abort_Task_Interrupt to the -- Server_Task then changes its own interrupt mask (OS level). -- If an interrupt (corresponding to the Server_Task) arrives -- in the nean time we have the Interrupt_Manager umnasked and -- the Server_Task waiting on sigwait. -- 2) For unbinding handler, we install a default action in the -- Interrupt_Manager. POSIX.1c states that the result of using -- "sigwait" and "sigaction" simaltaneously on the same interrupt -- is undefined. Therefore, we need to be informed from the -- Server_Task of the fact that the Server_Task is out of its -- sigwait stage. loop -- A block is needed to absorb Program_Error exception declare Old_Handler : Parameterless_Handler; begin select accept Attach_Handler (New_Handler : in Parameterless_Handler; Interrupt : in Interrupt_ID; Static : in Boolean; Restoration : in Boolean := False) do Lock_Interrupt (Self_ID, Interrupt); Unprotected_Exchange_Handler (Old_Handler, New_Handler, Interrupt, Static, Restoration); Unlock_Interrupt (Self_ID, Interrupt); end Attach_Handler; or accept Exchange_Handler (Old_Handler : out Parameterless_Handler; New_Handler : in Parameterless_Handler; Interrupt : in Interrupt_ID; Static : in Boolean) do Lock_Interrupt (Self_ID, Interrupt); Unprotected_Exchange_Handler (Old_Handler, New_Handler, Interrupt, Static); Unlock_Interrupt (Self_ID, Interrupt); end Exchange_Handler; or accept Detach_Handler (Interrupt : in Interrupt_ID; Static : in Boolean) do Lock_Interrupt (Self_ID, Interrupt); Unprotected_Detach_Handler (Interrupt, Static); Unlock_Interrupt (Self_ID, Interrupt); end Detach_Handler; or accept Bind_Interrupt_To_Entry (T : Task_ID; E : Task_Entry_Index; Interrupt : Interrupt_ID) do Lock_Interrupt (Self_ID, Interrupt); -- if there is a binding already (either a procedure or an -- entry), raise Program_Error (propagate it to the caller). if User_Handler (Interrupt).H /= null or else User_Entry (Interrupt).T /= Null_Task then Unlock_Interrupt (Self_ID, Interrupt); Raise_Exception (Program_Error'Identity, "A binding for this interrupt is already present"); end if; -- The interrupt should no longer be ingnored if -- it was ever ignored. Ignored (Interrupt) := False; User_Entry (Interrupt) := Entry_Assoc' (T => T, E => E); -- Indicate the attachment of Interrupt Entry in ATCB. -- This is need so that when an Interrupt Entry task -- terminates the binding can be cleaned. -- The call to unbinding must be -- make by the task before it terminates. T.Interrupt_Entry := True; -- Invoke a corresponding Server_Task if not yet created. -- Place Task_ID info in Server_ID array. if Server_ID (Interrupt) = Null_Task then Access_Hold := new Server_Task (Interrupt); Server_ID (Interrupt) := To_System (Access_Hold.all'Identity); else POP.Wakeup (Server_ID (Interrupt), Interrupt_Server_Idle_Sleep); end if; Unlock_Interrupt (Self_ID, Interrupt); end Bind_Interrupt_To_Entry; or accept Detach_Interrupt_Entries (T : Task_ID) do for I in Interrupt_ID'Range loop if not Is_Reserved (I) then Lock_Interrupt (Self_ID, I); if User_Entry (I).T = T then -- The interrupt should no longer be ignored if -- it was ever ignored. Ignored (I) := False; User_Entry (I) := Entry_Assoc' (T => Null_Task, E => Null_Task_Entry); IMOP.Interrupt_Self_Process (IMNG.Interrupt_ID (I)); end if; Unlock_Interrupt (Self_ID, I); end if; end loop; -- Indicate in ATCB that no Interrupt Entries are attached. T.Interrupt_Entry := False; end Detach_Interrupt_Entries; or accept Block_Interrupt (Interrupt : Interrupt_ID) do raise Program_Error; end Block_Interrupt; or accept Unblock_Interrupt (Interrupt : Interrupt_ID) do raise Program_Error; end Unblock_Interrupt; or accept Ignore_Interrupt (Interrupt : Interrupt_ID) do raise Program_Error; end Ignore_Interrupt; or accept Unignore_Interrupt (Interrupt : Interrupt_ID) do raise Program_Error; end Unignore_Interrupt; end select; exception -- If there is a program error we just want to propagate it -- to the caller and do not want to stop this task. when Program_Error => null; when others => pragma Assert (Shutdown ("Interrupt_Manager---exception not expected")); null; end; end loop; pragma Assert (Shutdown ("Interrupt_Manager---should not get here")); end Interrupt_Manager; ----------------- -- Server_Task -- ----------------- task body Server_Task is Self_ID : Task_ID := Self; Tmp_Handler : Parameterless_Handler; Tmp_ID : Task_ID; Tmp_Entry_Index : Task_Entry_Index; Intwait_Mask : aliased IMNG.Interrupt_Mask; Ret_Interrupt : IMNG.Interrupt_ID; begin -- By making this task independent of master, when the process -- goes away, the Server_Task will terminate gracefully. System.Tasking.Utilities.Make_Independent; -- Install default action in system level. IMOP.Install_Default_Action (IMNG.Interrupt_ID (Interrupt)); -- Set up the mask (also clears the event flag) IMOP.Empty_Interrupt_Mask (Intwait_Mask'Access); IMOP.Add_To_Interrupt_Mask (Intwait_Mask'Access, IMNG.Interrupt_ID (Interrupt)); -- Remember the Interrupt_ID for Abort_Task. PIO.Set_Interrupt_ID (IMNG.Interrupt_ID (Interrupt), Self_ID); -- Note: All tasks in RTS will have all the Reserve Interrupts -- being masked (except the Interrupt_Manager) and Keep_Unmasked -- unmasked when created. loop System.Tasking.Initialization.Defer_Abort (Self_ID); -- A Handler or an Entry is installed. At this point all tasks -- mask for the Interrupt is masked. Catch the Interrupt using -- sigwait. -- This task may wake up from sigwait by receiving an interrupt -- (Abort_Task_Interrupt) from the Interrupt_Manager for unbinding -- a Procedure Handler or an Entry. Or it could be a wake up -- from status change (Unblocked -> Blocked). If that is not -- the case, we should exceute the attached Procedure or Entry. POP.Write_Lock (Self_ID); if User_Handler (Interrupt).H = null and then User_Entry (Interrupt).T = Null_Task then -- No Interrupt binding. If there is an interrupt, -- Interrupt_Manager will take default action. Self_ID.Common.State := Interrupt_Server_Idle_Sleep; POP.Sleep (Self_ID, Interrupt_Server_Idle_Sleep); Self_ID.Common.State := Runnable; else Self_ID.Common.State := Interrupt_Server_Blocked_On_Event_Flag; Ret_Interrupt := IMOP.Interrupt_Wait (Intwait_Mask'Access); Self_ID.Common.State := Runnable; if not (Self_ID.Deferral_Level = 0 and then Self_ID.Pending_ATC_Level < Self_ID.ATC_Nesting_Level) then if User_Handler (Interrupt).H /= null then Tmp_Handler := User_Handler (Interrupt).H; -- RTS calls should not be made with self being locked. POP.Unlock (Self_ID); Tmp_Handler.all; POP.Write_Lock (Self_ID); elsif User_Entry (Interrupt).T /= Null_Task then Tmp_ID := User_Entry (Interrupt).T; Tmp_Entry_Index := User_Entry (Interrupt).E; -- RTS calls should not be made with self being locked. POP.Unlock (Self_ID); System.Tasking.Rendezvous.Call_Simple (Tmp_ID, Tmp_Entry_Index, System.Null_Address); POP.Write_Lock (Self_ID); end if; end if; end if; POP.Unlock (Self_ID); System.Tasking.Initialization.Undefer_Abort (Self_ID); -- Undefer abort here to allow a window for this task -- to be aborted at the time of system shutdown. end loop; pragma Assert (Shutdown ("Server_Task---should not get here")); end Server_Task; ------------------------------------- -- Has_Interrupt_Or_Attach_Handler -- ------------------------------------- function Has_Interrupt_Or_Attach_Handler (Object : access Dynamic_Interrupt_Protection) return Boolean is begin return True; end Has_Interrupt_Or_Attach_Handler; ---------------- -- Finalize -- ---------------- procedure Finalize (Object : in out Static_Interrupt_Protection) is begin -- ??? loop to be executed only when we're not doing library level -- finalization, since in this case all interrupt tasks are gone. if not Interrupt_Manager'Terminated then for N in reverse Object.Previous_Handlers'Range loop Interrupt_Manager.Attach_Handler (New_Handler => Object.Previous_Handlers (N).Handler, Interrupt => Object.Previous_Handlers (N).Interrupt, Static => Object.Previous_Handlers (N).Static, Restoration => True); end loop; end if; Tasking.Protected_Objects.Entries.Finalize (Tasking.Protected_Objects.Entries.Protection_Entries (Object)); end Finalize; ------------------------------------- -- Has_Interrupt_Or_Attach_Handler -- ------------------------------------- function Has_Interrupt_Or_Attach_Handler (Object : access Static_Interrupt_Protection) return Boolean is begin return True; end Has_Interrupt_Or_Attach_Handler; ---------------------- -- Install_Handlers -- ---------------------- procedure Install_Handlers (Object : access Static_Interrupt_Protection; New_Handlers : in New_Handler_Array) is begin for N in New_Handlers'Range loop -- We need a lock around this ??? Object.Previous_Handlers (N).Interrupt := New_Handlers (N).Interrupt; Object.Previous_Handlers (N).Static := User_Handler (New_Handlers (N).Interrupt).Static; -- We call Exchange_Handler and not directly Interrupt_Manager. -- Exchange_Handler so we get the Is_Reserved check. Exchange_Handler (Old_Handler => Object.Previous_Handlers (N).Handler, New_Handler => New_Handlers (N).Handler, Interrupt => New_Handlers (N).Interrupt, Static => True); end loop; end Install_Handlers; -- Elaboration code for package System.Interrupts begin -- Get Interrupt_Manager's ID so that Abort_Interrupt can be sent. Interrupt_Manager_ID := To_System (Interrupt_Manager'Identity); -- Initialize the lock L. Initialization.Defer_Abort (Self); POP.Initialize_Lock (L'Access, POP.ATCB_Level); Initialization.Undefer_Abort (Self); -- During the elaboration of this package body we want RTS to -- inherit the interrupt mask from the Environment Task. -- The Environment Task should have gotten its mask from -- the enclosing process during the RTS start up. (See -- in s-inmaop.adb). Pass the Interrupt_Mask of the Environment -- task to the Interrupt_Manager. -- Note : At this point we know that all tasks (including -- RTS internal servers) are masked for non-reserved signals -- (see s-taprop.adb). Only the Interrupt_Manager will have -- masks set up differently inheriting the original Environment -- Task's mask. Interrupt_Manager.Initialize (IMOP.Environment_Mask); end System.Interrupts;
-- -- Copyright (C) 2021, AdaCore -- pragma Style_Checks (Off); -- This spec has been automatically generated from STM32H743x.svd with System; package Interfaces.STM32.SYSCFG is pragma Preelaborate; pragma No_Elaboration_Code_All; --------------- -- Registers -- --------------- subtype PMCR_I2C1FMP_Field is Interfaces.STM32.Bit; subtype PMCR_I2C2FMP_Field is Interfaces.STM32.Bit; subtype PMCR_I2C3FMP_Field is Interfaces.STM32.Bit; subtype PMCR_I2C4FMP_Field is Interfaces.STM32.Bit; subtype PMCR_PB6FMP_Field is Interfaces.STM32.Bit; subtype PMCR_PB7FMP_Field is Interfaces.STM32.Bit; subtype PMCR_PB8FMP_Field is Interfaces.STM32.Bit; subtype PMCR_PB9FMP_Field is Interfaces.STM32.Bit; subtype PMCR_BOOSTE_Field is Interfaces.STM32.Bit; subtype PMCR_BOOSTVDDSEL_Field is Interfaces.STM32.Bit; subtype PMCR_EPIS_Field is Interfaces.STM32.UInt3; subtype PMCR_PA0SO_Field is Interfaces.STM32.Bit; subtype PMCR_PA1SO_Field is Interfaces.STM32.Bit; subtype PMCR_PC2SO_Field is Interfaces.STM32.Bit; subtype PMCR_PC3SO_Field is Interfaces.STM32.Bit; -- peripheral mode configuration register type PMCR_Register is record -- I2C1 Fm+ I2C1FMP : PMCR_I2C1FMP_Field := 16#0#; -- I2C2 Fm+ I2C2FMP : PMCR_I2C2FMP_Field := 16#0#; -- I2C3 Fm+ I2C3FMP : PMCR_I2C3FMP_Field := 16#0#; -- I2C4 Fm+ I2C4FMP : PMCR_I2C4FMP_Field := 16#0#; -- PB(6) Fm+ PB6FMP : PMCR_PB6FMP_Field := 16#0#; -- PB(7) Fast Mode Plus PB7FMP : PMCR_PB7FMP_Field := 16#0#; -- PB(8) Fast Mode Plus PB8FMP : PMCR_PB8FMP_Field := 16#0#; -- PB(9) Fm+ PB9FMP : PMCR_PB9FMP_Field := 16#0#; -- Booster Enable BOOSTE : PMCR_BOOSTE_Field := 16#0#; -- Analog switch supply voltage selection BOOSTVDDSEL : PMCR_BOOSTVDDSEL_Field := 16#0#; -- unspecified Reserved_10_20 : Interfaces.STM32.UInt11 := 16#0#; -- Ethernet PHY Interface Selection EPIS : PMCR_EPIS_Field := 16#0#; -- PA0 Switch Open PA0SO : PMCR_PA0SO_Field := 16#0#; -- PA1 Switch Open PA1SO : PMCR_PA1SO_Field := 16#0#; -- PC2 Switch Open PC2SO : PMCR_PC2SO_Field := 16#0#; -- PC3 Switch Open PC3SO : PMCR_PC3SO_Field := 16#0#; -- unspecified Reserved_28_31 : Interfaces.STM32.UInt4 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for PMCR_Register use record I2C1FMP at 0 range 0 .. 0; I2C2FMP at 0 range 1 .. 1; I2C3FMP at 0 range 2 .. 2; I2C4FMP at 0 range 3 .. 3; PB6FMP at 0 range 4 .. 4; PB7FMP at 0 range 5 .. 5; PB8FMP at 0 range 6 .. 6; PB9FMP at 0 range 7 .. 7; BOOSTE at 0 range 8 .. 8; BOOSTVDDSEL at 0 range 9 .. 9; Reserved_10_20 at 0 range 10 .. 20; EPIS at 0 range 21 .. 23; PA0SO at 0 range 24 .. 24; PA1SO at 0 range 25 .. 25; PC2SO at 0 range 26 .. 26; PC3SO at 0 range 27 .. 27; Reserved_28_31 at 0 range 28 .. 31; end record; -- EXTICR1_EXTI array element subtype EXTICR1_EXTI_Element is Interfaces.STM32.UInt4; -- EXTICR1_EXTI array type EXTICR1_EXTI_Field_Array is array (0 .. 3) of EXTICR1_EXTI_Element with Component_Size => 4, Size => 16; -- Type definition for EXTICR1_EXTI type EXTICR1_EXTI_Field (As_Array : Boolean := False) is record case As_Array is when False => -- EXTI as a value Val : Interfaces.STM32.UInt16; when True => -- EXTI as an array Arr : EXTICR1_EXTI_Field_Array; end case; end record with Unchecked_Union, Size => 16; for EXTICR1_EXTI_Field use record Val at 0 range 0 .. 15; Arr at 0 range 0 .. 15; end record; -- external interrupt configuration register 1 type EXTICR1_Register is record -- EXTI x configuration (x = 0 to 3) EXTI : EXTICR1_EXTI_Field := (As_Array => False, Val => 16#0#); -- unspecified Reserved_16_31 : Interfaces.STM32.UInt16 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for EXTICR1_Register use record EXTI at 0 range 0 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; -- EXTICR2_EXTI array element subtype EXTICR2_EXTI_Element is Interfaces.STM32.UInt4; -- EXTICR2_EXTI array type EXTICR2_EXTI_Field_Array is array (4 .. 7) of EXTICR2_EXTI_Element with Component_Size => 4, Size => 16; -- Type definition for EXTICR2_EXTI type EXTICR2_EXTI_Field (As_Array : Boolean := False) is record case As_Array is when False => -- EXTI as a value Val : Interfaces.STM32.UInt16; when True => -- EXTI as an array Arr : EXTICR2_EXTI_Field_Array; end case; end record with Unchecked_Union, Size => 16; for EXTICR2_EXTI_Field use record Val at 0 range 0 .. 15; Arr at 0 range 0 .. 15; end record; -- external interrupt configuration register 2 type EXTICR2_Register is record -- EXTI x configuration (x = 4 to 7) EXTI : EXTICR2_EXTI_Field := (As_Array => False, Val => 16#0#); -- unspecified Reserved_16_31 : Interfaces.STM32.UInt16 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for EXTICR2_Register use record EXTI at 0 range 0 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; -- EXTICR3_EXTI array element subtype EXTICR3_EXTI_Element is Interfaces.STM32.UInt4; -- EXTICR3_EXTI array type EXTICR3_EXTI_Field_Array is array (8 .. 11) of EXTICR3_EXTI_Element with Component_Size => 4, Size => 16; -- Type definition for EXTICR3_EXTI type EXTICR3_EXTI_Field (As_Array : Boolean := False) is record case As_Array is when False => -- EXTI as a value Val : Interfaces.STM32.UInt16; when True => -- EXTI as an array Arr : EXTICR3_EXTI_Field_Array; end case; end record with Unchecked_Union, Size => 16; for EXTICR3_EXTI_Field use record Val at 0 range 0 .. 15; Arr at 0 range 0 .. 15; end record; -- external interrupt configuration register 3 type EXTICR3_Register is record -- EXTI x configuration (x = 8 to 11) EXTI : EXTICR3_EXTI_Field := (As_Array => False, Val => 16#0#); -- unspecified Reserved_16_31 : Interfaces.STM32.UInt16 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for EXTICR3_Register use record EXTI at 0 range 0 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; -- EXTICR4_EXTI array element subtype EXTICR4_EXTI_Element is Interfaces.STM32.UInt4; -- EXTICR4_EXTI array type EXTICR4_EXTI_Field_Array is array (12 .. 15) of EXTICR4_EXTI_Element with Component_Size => 4, Size => 16; -- Type definition for EXTICR4_EXTI type EXTICR4_EXTI_Field (As_Array : Boolean := False) is record case As_Array is when False => -- EXTI as a value Val : Interfaces.STM32.UInt16; when True => -- EXTI as an array Arr : EXTICR4_EXTI_Field_Array; end case; end record with Unchecked_Union, Size => 16; for EXTICR4_EXTI_Field use record Val at 0 range 0 .. 15; Arr at 0 range 0 .. 15; end record; -- external interrupt configuration register 4 type EXTICR4_Register is record -- EXTI x configuration (x = 12 to 15) EXTI : EXTICR4_EXTI_Field := (As_Array => False, Val => 16#0#); -- unspecified Reserved_16_31 : Interfaces.STM32.UInt16 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for EXTICR4_Register use record EXTI at 0 range 0 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype CCCSR_EN_Field is Interfaces.STM32.Bit; subtype CCCSR_CS_Field is Interfaces.STM32.Bit; subtype CCCSR_READY_Field is Interfaces.STM32.Bit; subtype CCCSR_HSLV_Field is Interfaces.STM32.Bit; -- compensation cell control/status register type CCCSR_Register is record -- enable EN : CCCSR_EN_Field := 16#0#; -- Code selection CS : CCCSR_CS_Field := 16#0#; -- unspecified Reserved_2_7 : Interfaces.STM32.UInt6 := 16#0#; -- Compensation cell ready flag READY : CCCSR_READY_Field := 16#0#; -- unspecified Reserved_9_15 : Interfaces.STM32.UInt7 := 16#0#; -- High-speed at low-voltage HSLV : CCCSR_HSLV_Field := 16#0#; -- unspecified Reserved_17_31 : Interfaces.STM32.UInt15 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for CCCSR_Register use record EN at 0 range 0 .. 0; CS at 0 range 1 .. 1; Reserved_2_7 at 0 range 2 .. 7; READY at 0 range 8 .. 8; Reserved_9_15 at 0 range 9 .. 15; HSLV at 0 range 16 .. 16; Reserved_17_31 at 0 range 17 .. 31; end record; subtype CCVR_NCV_Field is Interfaces.STM32.UInt4; subtype CCVR_PCV_Field is Interfaces.STM32.UInt4; -- SYSCFG compensation cell value register type CCVR_Register is record -- Read-only. NMOS compensation value NCV : CCVR_NCV_Field; -- Read-only. PMOS compensation value PCV : CCVR_PCV_Field; -- unspecified Reserved_8_31 : Interfaces.STM32.UInt24; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for CCVR_Register use record NCV at 0 range 0 .. 3; PCV at 0 range 4 .. 7; Reserved_8_31 at 0 range 8 .. 31; end record; subtype CCCR_NCC_Field is Interfaces.STM32.UInt4; subtype CCCR_PCC_Field is Interfaces.STM32.UInt4; -- SYSCFG compensation cell code register type CCCR_Register is record -- NMOS compensation code NCC : CCCR_NCC_Field := 16#0#; -- PMOS compensation code PCC : CCCR_PCC_Field := 16#0#; -- unspecified Reserved_8_31 : Interfaces.STM32.UInt24 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for CCCR_Register use record NCC at 0 range 0 .. 3; PCC at 0 range 4 .. 7; Reserved_8_31 at 0 range 8 .. 31; end record; subtype PWRCR_ODEN_Field is Interfaces.STM32.Bit; -- SYSCFG power control register type PWRCR_Register is record -- Overdrive enable ODEN : PWRCR_ODEN_Field := 16#0#; -- unspecified Reserved_1_31 : Interfaces.STM32.UInt31 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for PWRCR_Register use record ODEN at 0 range 0 .. 0; Reserved_1_31 at 0 range 1 .. 31; end record; subtype PKGR_PKG_Field is Interfaces.STM32.UInt4; -- SYSCFG package register type PKGR_Register is record -- Read-only. Package PKG : PKGR_PKG_Field; -- unspecified Reserved_4_31 : Interfaces.STM32.UInt28; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for PKGR_Register use record PKG at 0 range 0 .. 3; Reserved_4_31 at 0 range 4 .. 31; end record; subtype UR0_BKS_Field is Interfaces.STM32.Bit; subtype UR0_RDP_Field is Interfaces.STM32.Byte; -- SYSCFG user register 0 type UR0_Register is record -- Read-only. Bank Swap BKS : UR0_BKS_Field; -- unspecified Reserved_1_15 : Interfaces.STM32.UInt15; -- Read-only. Readout protection RDP : UR0_RDP_Field; -- unspecified Reserved_24_31 : Interfaces.STM32.Byte; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for UR0_Register use record BKS at 0 range 0 .. 0; Reserved_1_15 at 0 range 1 .. 15; RDP at 0 range 16 .. 23; Reserved_24_31 at 0 range 24 .. 31; end record; subtype UR2_BORH_Field is Interfaces.STM32.UInt2; subtype UR2_BOOT_ADD0_Field is Interfaces.STM32.UInt16; -- SYSCFG user register 2 type UR2_Register is record -- BOR_LVL Brownout Reset Threshold Level BORH : UR2_BORH_Field := 16#0#; -- unspecified Reserved_2_15 : Interfaces.STM32.UInt14 := 16#0#; -- Boot Address 0 BOOT_ADD0 : UR2_BOOT_ADD0_Field := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for UR2_Register use record BORH at 0 range 0 .. 1; Reserved_2_15 at 0 range 2 .. 15; BOOT_ADD0 at 0 range 16 .. 31; end record; subtype UR3_BOOT_ADD1_Field is Interfaces.STM32.UInt16; -- SYSCFG user register 3 type UR3_Register is record -- unspecified Reserved_0_15 : Interfaces.STM32.UInt16 := 16#0#; -- Boot Address 1 BOOT_ADD1 : UR3_BOOT_ADD1_Field := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for UR3_Register use record Reserved_0_15 at 0 range 0 .. 15; BOOT_ADD1 at 0 range 16 .. 31; end record; subtype UR4_MEPAD_1_Field is Interfaces.STM32.Bit; -- SYSCFG user register 4 type UR4_Register is record -- unspecified Reserved_0_15 : Interfaces.STM32.UInt16; -- Read-only. Mass Erase Protected Area Disabled for bank 1 MEPAD_1 : UR4_MEPAD_1_Field; -- unspecified Reserved_17_31 : Interfaces.STM32.UInt15; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for UR4_Register use record Reserved_0_15 at 0 range 0 .. 15; MEPAD_1 at 0 range 16 .. 16; Reserved_17_31 at 0 range 17 .. 31; end record; subtype UR5_MESAD_1_Field is Interfaces.STM32.Bit; subtype UR5_WRPN_1_Field is Interfaces.STM32.Byte; -- SYSCFG user register 5 type UR5_Register is record -- Read-only. Mass erase secured area disabled for bank 1 MESAD_1 : UR5_MESAD_1_Field; -- unspecified Reserved_1_15 : Interfaces.STM32.UInt15; -- Read-only. Write protection for flash bank 1 WRPN_1 : UR5_WRPN_1_Field; -- unspecified Reserved_24_31 : Interfaces.STM32.Byte; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for UR5_Register use record MESAD_1 at 0 range 0 .. 0; Reserved_1_15 at 0 range 1 .. 15; WRPN_1 at 0 range 16 .. 23; Reserved_24_31 at 0 range 24 .. 31; end record; subtype UR6_PA_BEG_1_Field is Interfaces.STM32.UInt12; subtype UR6_PA_END_1_Field is Interfaces.STM32.UInt12; -- SYSCFG user register 6 type UR6_Register is record -- Read-only. Protected area start address for bank 1 PA_BEG_1 : UR6_PA_BEG_1_Field; -- unspecified Reserved_12_15 : Interfaces.STM32.UInt4; -- Read-only. Protected area end address for bank 1 PA_END_1 : UR6_PA_END_1_Field; -- unspecified Reserved_28_31 : Interfaces.STM32.UInt4; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for UR6_Register use record PA_BEG_1 at 0 range 0 .. 11; Reserved_12_15 at 0 range 12 .. 15; PA_END_1 at 0 range 16 .. 27; Reserved_28_31 at 0 range 28 .. 31; end record; subtype UR7_SA_BEG_1_Field is Interfaces.STM32.UInt12; subtype UR7_SA_END_1_Field is Interfaces.STM32.UInt12; -- SYSCFG user register 7 type UR7_Register is record -- Read-only. Secured area start address for bank 1 SA_BEG_1 : UR7_SA_BEG_1_Field; -- unspecified Reserved_12_15 : Interfaces.STM32.UInt4; -- Read-only. Secured area end address for bank 1 SA_END_1 : UR7_SA_END_1_Field; -- unspecified Reserved_28_31 : Interfaces.STM32.UInt4; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for UR7_Register use record SA_BEG_1 at 0 range 0 .. 11; Reserved_12_15 at 0 range 12 .. 15; SA_END_1 at 0 range 16 .. 27; Reserved_28_31 at 0 range 28 .. 31; end record; subtype UR8_MEPAD_2_Field is Interfaces.STM32.Bit; subtype UR8_MESAD_2_Field is Interfaces.STM32.Bit; -- SYSCFG user register 8 type UR8_Register is record -- Read-only. Mass erase protected area disabled for bank 2 MEPAD_2 : UR8_MEPAD_2_Field; -- unspecified Reserved_1_15 : Interfaces.STM32.UInt15; -- Read-only. Mass erase secured area disabled for bank 2 MESAD_2 : UR8_MESAD_2_Field; -- unspecified Reserved_17_31 : Interfaces.STM32.UInt15; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for UR8_Register use record MEPAD_2 at 0 range 0 .. 0; Reserved_1_15 at 0 range 1 .. 15; MESAD_2 at 0 range 16 .. 16; Reserved_17_31 at 0 range 17 .. 31; end record; subtype UR9_WRPN_2_Field is Interfaces.STM32.Byte; subtype UR9_PA_BEG_2_Field is Interfaces.STM32.UInt12; -- SYSCFG user register 9 type UR9_Register is record -- Read-only. Write protection for flash bank 2 WRPN_2 : UR9_WRPN_2_Field; -- unspecified Reserved_8_15 : Interfaces.STM32.Byte; -- Read-only. Protected area start address for bank 2 PA_BEG_2 : UR9_PA_BEG_2_Field; -- unspecified Reserved_28_31 : Interfaces.STM32.UInt4; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for UR9_Register use record WRPN_2 at 0 range 0 .. 7; Reserved_8_15 at 0 range 8 .. 15; PA_BEG_2 at 0 range 16 .. 27; Reserved_28_31 at 0 range 28 .. 31; end record; subtype UR10_PA_END_2_Field is Interfaces.STM32.UInt12; subtype UR10_SA_BEG_2_Field is Interfaces.STM32.UInt12; -- SYSCFG user register 10 type UR10_Register is record -- Read-only. Protected area end address for bank 2 PA_END_2 : UR10_PA_END_2_Field; -- unspecified Reserved_12_15 : Interfaces.STM32.UInt4; -- Read-only. Secured area start address for bank 2 SA_BEG_2 : UR10_SA_BEG_2_Field; -- unspecified Reserved_28_31 : Interfaces.STM32.UInt4; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for UR10_Register use record PA_END_2 at 0 range 0 .. 11; Reserved_12_15 at 0 range 12 .. 15; SA_BEG_2 at 0 range 16 .. 27; Reserved_28_31 at 0 range 28 .. 31; end record; subtype UR11_SA_END_2_Field is Interfaces.STM32.UInt12; subtype UR11_IWDG1M_Field is Interfaces.STM32.Bit; -- SYSCFG user register 11 type UR11_Register is record -- Read-only. Secured area end address for bank 2 SA_END_2 : UR11_SA_END_2_Field; -- unspecified Reserved_12_15 : Interfaces.STM32.UInt4; -- Read-only. Independent Watchdog 1 mode IWDG1M : UR11_IWDG1M_Field; -- unspecified Reserved_17_31 : Interfaces.STM32.UInt15; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for UR11_Register use record SA_END_2 at 0 range 0 .. 11; Reserved_12_15 at 0 range 12 .. 15; IWDG1M at 0 range 16 .. 16; Reserved_17_31 at 0 range 17 .. 31; end record; subtype UR12_SECURE_Field is Interfaces.STM32.Bit; -- SYSCFG user register 12 type UR12_Register is record -- unspecified Reserved_0_15 : Interfaces.STM32.UInt16; -- Read-only. Secure mode SECURE : UR12_SECURE_Field; -- unspecified Reserved_17_31 : Interfaces.STM32.UInt15; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for UR12_Register use record Reserved_0_15 at 0 range 0 .. 15; SECURE at 0 range 16 .. 16; Reserved_17_31 at 0 range 17 .. 31; end record; subtype UR13_SDRS_Field is Interfaces.STM32.UInt2; subtype UR13_D1SBRST_Field is Interfaces.STM32.Bit; -- SYSCFG user register 13 type UR13_Register is record -- Read-only. Secured DTCM RAM Size SDRS : UR13_SDRS_Field; -- unspecified Reserved_2_15 : Interfaces.STM32.UInt14; -- Read-only. D1 Standby reset D1SBRST : UR13_D1SBRST_Field; -- unspecified Reserved_17_31 : Interfaces.STM32.UInt15; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for UR13_Register use record SDRS at 0 range 0 .. 1; Reserved_2_15 at 0 range 2 .. 15; D1SBRST at 0 range 16 .. 16; Reserved_17_31 at 0 range 17 .. 31; end record; subtype UR14_D1STPRST_Field is Interfaces.STM32.Bit; -- SYSCFG user register 14 type UR14_Register is record -- D1 Stop Reset D1STPRST : UR14_D1STPRST_Field := 16#0#; -- unspecified Reserved_1_31 : Interfaces.STM32.UInt31 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for UR14_Register use record D1STPRST at 0 range 0 .. 0; Reserved_1_31 at 0 range 1 .. 31; end record; subtype UR15_FZIWDGSTB_Field is Interfaces.STM32.Bit; -- SYSCFG user register 15 type UR15_Register is record -- unspecified Reserved_0_15 : Interfaces.STM32.UInt16; -- Read-only. Freeze independent watchdog in Standby mode FZIWDGSTB : UR15_FZIWDGSTB_Field; -- unspecified Reserved_17_31 : Interfaces.STM32.UInt15; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for UR15_Register use record Reserved_0_15 at 0 range 0 .. 15; FZIWDGSTB at 0 range 16 .. 16; Reserved_17_31 at 0 range 17 .. 31; end record; subtype UR16_FZIWDGSTP_Field is Interfaces.STM32.Bit; subtype UR16_PKP_Field is Interfaces.STM32.Bit; -- SYSCFG user register 16 type UR16_Register is record -- Read-only. Freeze independent watchdog in Stop mode FZIWDGSTP : UR16_FZIWDGSTP_Field; -- unspecified Reserved_1_15 : Interfaces.STM32.UInt15; -- Read-only. Private key programmed PKP : UR16_PKP_Field; -- unspecified Reserved_17_31 : Interfaces.STM32.UInt15; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for UR16_Register use record FZIWDGSTP at 0 range 0 .. 0; Reserved_1_15 at 0 range 1 .. 15; PKP at 0 range 16 .. 16; Reserved_17_31 at 0 range 17 .. 31; end record; subtype UR17_IO_HSLV_Field is Interfaces.STM32.Bit; -- SYSCFG user register 17 type UR17_Register is record -- Read-only. I/O high speed / low voltage IO_HSLV : UR17_IO_HSLV_Field; -- unspecified Reserved_1_31 : Interfaces.STM32.UInt31; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for UR17_Register use record IO_HSLV at 0 range 0 .. 0; Reserved_1_31 at 0 range 1 .. 31; end record; ----------------- -- Peripherals -- ----------------- -- System configuration controller type SYSCFG_Peripheral is record -- peripheral mode configuration register PMCR : aliased PMCR_Register; -- external interrupt configuration register 1 EXTICR1 : aliased EXTICR1_Register; -- external interrupt configuration register 2 EXTICR2 : aliased EXTICR2_Register; -- external interrupt configuration register 3 EXTICR3 : aliased EXTICR3_Register; -- external interrupt configuration register 4 EXTICR4 : aliased EXTICR4_Register; -- compensation cell control/status register CCCSR : aliased CCCSR_Register; -- SYSCFG compensation cell value register CCVR : aliased CCVR_Register; -- SYSCFG compensation cell code register CCCR : aliased CCCR_Register; -- SYSCFG power control register PWRCR : aliased PWRCR_Register; -- SYSCFG package register PKGR : aliased PKGR_Register; -- SYSCFG user register 0 UR0 : aliased UR0_Register; -- SYSCFG user register 2 UR2 : aliased UR2_Register; -- SYSCFG user register 3 UR3 : aliased UR3_Register; -- SYSCFG user register 4 UR4 : aliased UR4_Register; -- SYSCFG user register 5 UR5 : aliased UR5_Register; -- SYSCFG user register 6 UR6 : aliased UR6_Register; -- SYSCFG user register 7 UR7 : aliased UR7_Register; -- SYSCFG user register 8 UR8 : aliased UR8_Register; -- SYSCFG user register 9 UR9 : aliased UR9_Register; -- SYSCFG user register 10 UR10 : aliased UR10_Register; -- SYSCFG user register 11 UR11 : aliased UR11_Register; -- SYSCFG user register 12 UR12 : aliased UR12_Register; -- SYSCFG user register 13 UR13 : aliased UR13_Register; -- SYSCFG user register 14 UR14 : aliased UR14_Register; -- SYSCFG user register 15 UR15 : aliased UR15_Register; -- SYSCFG user register 16 UR16 : aliased UR16_Register; -- SYSCFG user register 17 UR17 : aliased UR17_Register; end record with Volatile; for SYSCFG_Peripheral use record PMCR at 16#4# range 0 .. 31; EXTICR1 at 16#8# range 0 .. 31; EXTICR2 at 16#C# range 0 .. 31; EXTICR3 at 16#10# range 0 .. 31; EXTICR4 at 16#14# range 0 .. 31; CCCSR at 16#20# range 0 .. 31; CCVR at 16#24# range 0 .. 31; CCCR at 16#28# range 0 .. 31; PWRCR at 16#2C# range 0 .. 31; PKGR at 16#124# range 0 .. 31; UR0 at 16#300# range 0 .. 31; UR2 at 16#308# range 0 .. 31; UR3 at 16#30C# range 0 .. 31; UR4 at 16#310# range 0 .. 31; UR5 at 16#314# range 0 .. 31; UR6 at 16#318# range 0 .. 31; UR7 at 16#31C# range 0 .. 31; UR8 at 16#320# range 0 .. 31; UR9 at 16#324# range 0 .. 31; UR10 at 16#328# range 0 .. 31; UR11 at 16#32C# range 0 .. 31; UR12 at 16#330# range 0 .. 31; UR13 at 16#334# range 0 .. 31; UR14 at 16#338# range 0 .. 31; UR15 at 16#33C# range 0 .. 31; UR16 at 16#340# range 0 .. 31; UR17 at 16#344# range 0 .. 31; end record; -- System configuration controller SYSCFG_Periph : aliased SYSCFG_Peripheral with Import, Address => SYSCFG_Base; end Interfaces.STM32.SYSCFG;
pragma Eliminate (p, d); package elim1 is type t is tagged null record; procedure d (a : t); end;
-- Copyright 2016-2019 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; package Pck is procedure Do_Nothing (A : System.Address); end Pck;
------------------------------------------------------------------------------ -- Copyright (c) 2014, Natacha Porté -- -- -- -- Permission to use, copy, modify, and 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. -- ------------------------------------------------------------------------------ package body Natools.S_Expressions.Atom_Buffers is procedure Preallocate (Buffer : in out Atom_Buffer; Length : in Count) is Old_Size, New_Size : Count := 0; begin if Buffer.Used + Length <= Buffer.Available then return; end if; Old_Size := Buffer.Available; New_Size := Buffer.Used + Length; if Buffer.Ref.Is_Empty then declare function Create return Atom; function Create return Atom is begin return Atom'(1 .. New_Size => <>); end Create; begin Buffer.Ref.Replace (Create'Access); end; else declare function Create return Atom; Old_Accessor : constant Atom_Refs.Accessor := Buffer.Ref.Query; function Create return Atom is begin return Result : Atom (1 .. New_Size) do Result (1 .. Old_Size) := Old_Accessor.Data.all; end return; end Create; begin Buffer.Ref.Replace (Create'Access); end; end if; Buffer.Available := New_Size; end Preallocate; procedure Append (Buffer : in out Atom_Buffer; Data : in Atom) is begin if Data'Length > 0 then Preallocate (Buffer, Data'Length); Buffer.Ref.Update.Data.all (Buffer.Used + 1 .. Buffer.Used + Data'Length) := Data; Buffer.Used := Buffer.Used + Data'Length; end if; end Append; procedure Append (Buffer : in out Atom_Buffer; Data : in Octet) is begin Preallocate (Buffer, 1); Buffer.Ref.Update.Data.all (Buffer.Used + 1) := Data; Buffer.Used := Buffer.Used + 1; end Append; procedure Append_Reverse (Buffer : in out Atom_Buffer; Data : in Atom) is procedure Process (Target : in out Atom); procedure Process (Target : in out Atom) is begin for I in reverse Data'Range loop Buffer.Used := Buffer.Used + 1; Target (Buffer.Used) := Data (I); end loop; end Process; begin Preallocate (Buffer, Data'Length); Buffer.Ref.Update (Process'Access); end Append_Reverse; procedure Invert (Buffer : in out Atom_Buffer) is procedure Process (Data : in out Atom); procedure Process (Data : in out Atom) is Low : Count := Data'First; High : Count := Buffer.Used; Tmp : Octet; begin while Low < High loop Tmp := Data (Low); Data (Low) := Data (High); Data (High) := Tmp; Low := Low + 1; High := High - 1; end loop; end Process; begin if not Buffer.Ref.Is_Empty then Buffer.Ref.Update (Process'Access); end if; end Invert; function Length (Buffer : Atom_Buffer) return Count is begin return Buffer.Used; end Length; function Capacity (Buffer : Atom_Buffer) return Count is begin return Buffer.Available; end Capacity; function Data (Buffer : Atom_Buffer) return Atom is begin if Buffer.Ref.Is_Empty then pragma Assert (Buffer.Available = 0 and Buffer.Used = 0); return Null_Atom; else return Buffer.Ref.Query.Data.all (1 .. Buffer.Used); end if; end Data; function Raw_Query (Buffer : Atom_Buffer) return Atom_Refs.Accessor is function Create return Atom; function Create return Atom is begin return Null_Atom; end Create; begin if Buffer.Ref.Is_Empty then declare Tmp_Ref : constant Atom_Refs.Reference := Atom_Refs.Create (Create'Access); begin return Tmp_Ref.Query; end; else return Buffer.Ref.Query; end if; end Raw_Query; procedure Query (Buffer : in Atom_Buffer; Process : not null access procedure (Data : in Atom)) is begin if Buffer.Ref.Is_Empty then Process.all (Null_Atom); else Process.all (Buffer.Ref.Query.Data.all (1 .. Buffer.Used)); end if; end Query; procedure Peek (Buffer : in Atom_Buffer; Data : out Atom; Length : out Count) is Transmit : constant Count := Count'Min (Data'Length, Buffer.Used); begin Length := Buffer.Used; if Buffer.Ref.Is_Empty then pragma Assert (Length = 0); null; else Data (Data'First .. Data'First + Transmit - 1) := Buffer.Ref.Query.Data.all (1 .. Transmit); end if; end Peek; function Element (Buffer : Atom_Buffer; Position : Count) return Octet is begin return Buffer.Ref.Query.Data.all (Position); end Element; procedure Pop (Buffer : in out Atom_Buffer; Data : out Octet) is begin Data := Buffer.Ref.Query.Data.all (Buffer.Used); Buffer.Used := Buffer.Used - 1; end Pop; procedure Hard_Reset (Buffer : in out Atom_Buffer) is begin Buffer.Ref.Reset; Buffer.Available := 0; Buffer.Used := 0; end Hard_Reset; procedure Soft_Reset (Buffer : in out Atom_Buffer) is begin Buffer.Used := 0; end Soft_Reset; overriding procedure Write (Buffer : in out Atom_Buffer; Item : in Ada.Streams.Stream_Element_Array) renames Append; overriding procedure Read (Buffer : in out Atom_Buffer; Item : out Ada.Streams.Stream_Element_Array; Last : out Ada.Streams.Stream_Element_Offset) is begin if Item'Length < Buffer.Used then declare Mutator : constant Atom_Refs.Mutator := Buffer.Ref.Update; begin Last := Item'Last; Item := Mutator.Data.all (1 .. Item'Length); Buffer.Used := Buffer.Used - Item'Length; Mutator.Data.all (1 .. Buffer.Used) := Mutator.Data.all (Item'Length + 1 .. Item'Length + Buffer.Used); end; else Last := Item'First + Buffer.Used - 1; Item (Item'First .. Last) := Buffer.Ref.Query.Data.all (1 .. Buffer.Used); Buffer.Used := 0; end if; end Read; end Natools.S_Expressions.Atom_Buffers;
package Aliasing2 is type Arr is Array (1..4) of Integer; type Ptr is access all Integer; A : Arr; function F (P : Ptr) return Integer; end Aliasing2;
############################################################################# ## #W id1152.ads GAP library of id's Hans Ulrich Besche ## ID_GROUP_TREE.next[1152].next[1].next[123]:= rec( fp:= [ 123, 623, 1123, 1623, 2123 ], next:= [ rec( fp:= [ 28506, 52739, 64310, 91759 ], next:= [ rec( fp:= [ 21504, 27270, 47528, 57777, 73307, 91783 ], level:= 4, next:= [ 6582, 6579, rec( fp:= [ 34587, 69509 ], next:= [ 6586, 6585 ] ), 6584, 6587, 6588 ] ), rec( fp:= [ 74254, 91491 ], level:= 4, next:= [ 6578, 6581 ] ), rec( fp:= [ 19977, 41170 ], level:= 4, next:= [ 6580, 6583 ] ), rec( fp:= [ 13347, 15391, 87142 ], level:= 4, next:= [ 6591, 6590, 6589 ] ) ] ), rec( fp:= [ 26654, 68575, 72486, 73239 ], next:= [ rec( fp:= [ 275, 1977, 13968, 17057, 17698, 32778, 42470, 44475, 46240, 64558, 88626 ], level:= 4, next:= [ rec( fp:= [ 16292, 19224, 54498, 86130 ], next:= [ 22017, 22015, 22018, 22014 ] ), rec( fp:= [ 10988, 59771, 88830 ], next:= [ 21998, 22007, 22001 ] ), 22010, 22004, rec( fp:= [ 63965, 98438 ], next:= [ 22024, 22022 ] ), 22026, rec( fp:= [ 3240, 55127, 92251 ], next:= [ 22020, 22023, 22021 ] ), 22013, 22025, 22012, rec( fp:= [ 53466, 59866 ], next:= [ 22019, 22016 ] ) ] ), rec( fp:= [ 48949, 73912, 77682 ], level:= 4, next:= [ 22011, rec( fp:= [ 55100, 89401, 99574 ], next:= [ 22002, 22008, 21999 ] ), 22005 ] ), rec( fp:= [ 21772, 50277, 54105 ], level:= 4, next:= [ rec( fp:= [ 8065, 70246, 78511 ], next:= [ 22000, 21997, 22006 ] ), 22003, 22009 ] ), rec( fp:= [ 1977, 76675, 84215, 91755 ], level:= 4, next:= [ 22028, 22029, 22027, 22030 ] ) ] ), rec( fp:= [ 15817, 37847, 43047, 44227 ], next:= [ rec( fp:= [ 11801, 31418 ], level:= 4, next:= [ 42336, rec( desc:= [ 109007 ], fp:= [ 5650, 6442, 7234, 8818 ], next:= [ rec( desc:= [ 302005, 208002 ], fp:= [ 422, 818 ], next:= [ 42348, 42339 ] ), 42342, 42345, 42351 ] ) ] ), rec( fp:= [ 5448, 57946 ], level:= 4, next:= [ rec( desc:= [ 106003 ], fp:= [ 818, 1214 ], next:= [ 42376, 42375 ] ), 42377 ] ), rec( fp:= [ 5448, 21169, 80020, 83916, 99637 ], level:= 4, next:= [ 42335, rec( desc:= [ 302007 ], fp:= [ 784, 89161, 99541 ], next:= [ 42357, rec( desc:= [ 208003 ], fp:= [ 6, 214, 412 ], next:= [ 42353, 42355, 42359 ] ), 42374 ] ), rec( desc:= [ 113011 ], fp:= [ 28, 1018, 1216, 1612 ], next:= [ 42373, rec( desc:= [ 302007, 209003 ], fp:= [ 6, 412 ], next:= [ 42352, 42354 ] ), 42358, 42356 ] ), rec( desc:= [ 302005 ], fp:= [ 2544, 67759, 79099 ], next:= [ 42341, rec( desc:= [ 206003 ], fp:= [ 12, 418, 814 ], next:= [ 42338, 42347, 42350 ] ), 42344 ] ), rec( desc:= [ 111011 ], fp:= [ 32, 834, 1626, 2418 ], next:= [ rec( desc:= [ 106003 ], fp:= [ 818, 1214 ], next:= [ 42363, 42362 ] ), 42372, rec( desc:= [ 107003 ], fp:= [ 8, 18, 414 ], next:= [ 42361, 42368, rec( desc:= [ 111011 ], fp:= [ 32, 42, 2418 ], next:= [ rec( desc:= [ 302006 ], fp:= [ 1584, 69500 ], next:= [ 42365, 42369 ] ), 42371, 42360 ] ) ] ), rec( desc:= [ 106003 ], fp:= [ 422, 818, 1214 ], next:= [ 42367, rec( desc:= [ 105003 ], fp:= [ 4, 14 ], next:= [ 42366, 42364 ] ), 42370 ] ) ] ) ] ), rec( fp:= [ 3298, 49064 ], level:= 4, next:= [ 42334, rec( desc:= [ 302005 ], fp:= [ 2544, 67759, 79099 ], next:= [ 42340, rec( desc:= [ 206003 ], fp:= [ 12, 418, 814 ], next:= [ 42337, 42346, 42349 ] ), 42343 ] ) ] ) ] ), rec( fp:= [ 8629, 65843, 72365, 84721 ], next:= [ rec( fp:= [ 43175, 74254, 91491 ], level:= 4, next:= [ 91750, rec( desc:= [ 105003 ], fp:= [ 8, 18 ], next:= [ 91753, 91756 ] ), 91759 ] ), rec( fp:= [ 15391, 17988, 27270, 47353 ], level:= 4, next:= [ 91775, 91776, 91773, 91774 ] ), rec( fp:= [ 19977, 41170, 84174 ], level:= 4, next:= [ rec( desc:= [ 106003 ], fp:= [ 8, 18 ], next:= [ 91755, 91758 ] ), 91761, 91752 ] ), rec( fp:= [ 17988, 21504, 24190, 27270, 37843, 67194, 73307, 88387, 91783, 93859, 95118 ], level:= 4, next:= [ 91762, 91760, 91763, rec( desc:= [ 105003 ], fp:= [ 8, 18 ], next:= [ 91754, 91757 ] ), 91768, 91769, rec( desc:= [ 106003 ], fp:= [ 8, 18 ], next:= [ 91771, 91770 ] ), rec( desc:= [ 107003 ], fp:= [ 4, 14 ], next:= [ 91765, 91767 ] ), 91772, 91751, rec( desc:= [ 107003 ], fp:= [ 4, 14 ], next:= [ 91764, 91766 ] ) ] ) ] ), rec( fp:= [ 41564, 44549, 45277, 70047 ], next:= [ rec( fp:= [ 16285, 20055, 23825, 59289, 91792 ], level:= 4, next:= [ 132260, 132254, 132263, 132257, 132266 ] ), rec( fp:= [ 8690, 42860, 51341, 76023, 79846 ], level:= 4, next:= [ 132261, 132264, 132258, 132255, 132252 ] ), rec( fp:= [ 3075, 6077, 7654, 18964, 28038, 30274, 37280, 40325, 43118, 46079, 49849, 52360, 55962, 57389, 58198, 61159, 67272, 67440, 71042, 78582, 82352, 86122, 90296 ], level:= 4, next:= [ rec( fp:= [ 32864, 86564 ], next:= [ 132276, 132271 ] ), 132256, 132275, 132270, 132268, 132277, 132259, 132265, 132273, 132267, 132272, 132253, 132286, 132269, 132281, 132274, 132283, 132262, 132279, rec( fp:= [ 5720, 77897 ], next:= [ 132285, 132284 ] ), 132278, 132280, 132282 ] ), rec( fp:= [ 6282, 6986 ], level:= 5, next:= [ 132288, 132287 ] ) ] ) ] );
package Solar_System.Graphics is procedure Draw_All (Bodies : Bodies_Array_T; Canvas : Canvas_ID); procedure Draw_Body (Object : Body_T; Canvas : Canvas_ID); end Solar_System.Graphics;
-- Copyright 2017-2020 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 B; use B; with C; procedure FOO is begin Doit; B.Read_Small; C.C_Doit; end FOO;
with Other_Basic_Subprogram_Calls; package Tagged_Subprogram_Calls is package Inner is type E is (A, B, C); procedure P(A : E); end Inner; procedure Test(Param : Inner.E); type T is tagged null record; procedure T_P(S : T); procedure T_Q(J : Integer; S : T); procedure T_R(S : T; J : Integer); function T_F(S : T) return T'Class; function T_G(S : T) return T; function "+"(S : T) return Boolean; type T1 is new T with record I : Integer; end record; overriding procedure T_P(S : T1); overriding procedure T_Q(J : Integer; S : T1); procedure T_R(S : T1; J : Integer); overriding function T_F(S : T1) return T'Class; function T_G(S : T1) return T1; function "+"(S : T1) return Boolean; type T2 is new T1 with null record; procedure T_P(S : T2); procedure Test2; type S is abstract tagged null record; procedure S_P(A : S) is abstract; type I is interface; procedure S_I(A : I) is abstract; type I1 is new I with null record; procedure S_I(A : I1); type S1 is new S and I with null record; procedure S_P(A : S1); procedure S_I(A : S1); type S2 is new S1 with null record; procedure S_P(A : S2); procedure S_I(A : S2); procedure Test3; generic type TP is abstract tagged private; with procedure PP(I : TP) is abstract; procedure GP1(I : TP'Class); generic type TP is abstract tagged private; with procedure PP(I : TP) is abstract; procedure GP2(I : TP'Class); type J is limited interface; task TI is new J with entry E; end TI; type K is limited interface; task type TIT is new K with entry E; end TIT; type L is limited interface; protected PI is new L with entry E; end PI; type M is limited interface; protected type PIT is new M with entry E; end PIT; private function T_F(S : T) return T'Class is (S); function T_G(S : T) return T is (S); function "+"(S : T) return Boolean is (True); function T_F(S : T1) return T'Class is (S); function T_G(S : T1) return T1 is (S); function "+"(S : T1) return Boolean is (False); end Tagged_Subprogram_Calls;
-- part of AdaYaml, (c) 2017 Felix Krause -- released under the terms of the MIT license, see the file "copying.txt" with Ada.Strings.Hash; with Ada.Unchecked_Deallocation; package body Yaml.Text_Set is use type Ada.Containers.Hash_Type; function Non_Zero_Hash (S : Standard.String) return Ada.Containers.Hash_Type is Hash : constant Ada.Containers.Hash_Type := Ada.Strings.Hash (S); begin if Hash = 0 then return 1; else return Hash; end if; end Non_Zero_Hash; function Raw_Set (Object : in out Reference; Hash : Ada.Containers.Hash_Type; S : Standard.String) return not null access Holder is Pos : Natural := Natural (Hash mod Ada.Containers.Hash_Type (Object.Elements'Length)); Cur : not null access Holder := Object.Elements (Pos)'Access; begin while Cur.Hash /= 0 and then (Cur.Hash /= Hash or else Cur.Key.Value /= S) loop Pos := Pos + 1; if Pos = Object.Elements'Length then Pos := 0; end if; Cur := Object.Elements (Pos)'Access; end loop; return Cur; end Raw_Set; procedure Free is new Ada.Unchecked_Deallocation (Holder_Array, Holder_Array_Access); function Grow_If_Needed (Object : in out Reference) return Boolean is Old_Elements : Holder_Array_Access := Object.Elements; begin if Object.Count = Object.Elements'Length / 2 then Object.Elements := new Holder_Array (0 .. Object.Count * 4 - 1); Object.Elements.all := (others => (Hash => 0, others => <>)); for E of Old_Elements.all loop if E.Hash /= 0 then Raw_Set (Object, E.Hash, E.Key.Value).all := E; end if; end loop; Free (Old_Elements); return True; else return False; end if; end Grow_If_Needed; function Get (Object : in out Reference; S : Standard.String; Create : Boolean) return not null access Holder is Hash : constant Ada.Containers.Hash_Type := Non_Zero_Hash (S); begin <<Start>> declare Cur : constant not null Holder_Access := Raw_Set (Object, Hash, S); begin if Cur.Hash = 0 then if Grow_If_Needed (Object) then goto Start; end if; if Create then Object.Count := Object.Count + 1; Cur.Hash := Hash; Cur.Key := Object.Pool.From_String (S); end if; end if; return Cur; end; end Get; function Set (Object : in out Reference; S : Standard.String; Value : Value_Type) return Boolean is Hash : constant Ada.Containers.Hash_Type := Non_Zero_Hash (S); begin if Grow_If_Needed (Object) then null; end if; declare Cur : constant not null access Holder := Raw_Set (Object, Hash, S); begin if Cur.Hash = 0 then Object.Count := Object.Count + 1; Cur.Hash := Hash; Cur.Key := Object.Pool.From_String (S); Cur.Value := Value; return True; else return False; end if; end; end Set; procedure Clear (Object : in out Reference) is begin Object.Elements.all := (others => (Hash => 0, others => <>)); Object.Count := 0; end Clear; procedure Init (Object : in out Reference; Pool : Text.Pool.Reference; Initial_Size : Positive) is begin Object.Pool := Pool; Object.Elements := new Holder_Array (0 .. Initial_Size - 1); Clear (Object); end Init; procedure Finalize (Object : in out Reference) is begin if Object.Elements /= null then Free (Object.Elements); end if; end Finalize; end Yaml.Text_Set;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . E X P _ L L U -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2005 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, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, 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 procedure performs exponentiation of unsigned types (with binary -- modulus values exceeding that of Unsigned_Types.Unsigned). The result -- is always full width, the caller must do a masking operation if the -- modulus is less than 2 ** (Long_Long_Unsigned'Size). with System.Unsigned_Types; package System.Exp_LLU is pragma Pure; function Exp_Long_Long_Unsigned (Left : System.Unsigned_Types.Long_Long_Unsigned; Right : Natural) return System.Unsigned_Types.Long_Long_Unsigned; end System.Exp_LLU;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S T R I N G T -- -- -- -- 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. -- -- -- ------------------------------------------------------------------------------ with System; use System; with Types; use Types; package Stringt is -- This package contains routines for handling the strings table which is -- used to store string constants encountered in the source, and also those -- additional string constants generated by compile time concatenation and -- other similar processing. -- A string constant in this table consists of a series of Char_Code values, -- so that 16-bit character codes can be properly handled if this feature -- is implemented in the scanner. -- There is no guarantee that hashing is used in the implementation, although -- it maybe. This means that the caller cannot count on having the same Id -- value for two identical strings stored separately and also cannot count on -- the two Id values being different. -------------------------------------- -- String Table Access Subprograms -- -------------------------------------- procedure Initialize; -- Initializes the strings table for a new compilation. Note that -- Initialize must not be called if Tree_Read is used. procedure Lock; -- Lock internal tables before calling back end procedure Unlock; -- Unlock internal tables, in case back end needs to modify them procedure Start_String; -- Sets up for storing a new string in the table. To store a string, a -- call is first made to Start_String, then successive calls are -- made to Store_String_Character to store the characters of the string. -- Finally, a call to End_String terminates the entry and returns it Id. procedure Start_String (S : String_Id); -- Like Start_String with no parameter, except that the contents of the -- new string is initialized to be a copy of the given string. A test is -- made to see if S is the last created string, and if so it is shared, -- rather than copied, this can be particularly helpful for the case of -- a continued concatenation of string constants. procedure Store_String_Char (C : Char_Code); procedure Store_String_Char (C : Character); -- Store next character of string, see description above for Start_String procedure Store_String_Chars (S : String); procedure Store_String_Chars (S : String_Id); -- Store character codes of given string in sequence procedure Store_String_Int (N : Int); -- Stored decimal representation of integer with possible leading minus procedure Unstore_String_Char; -- Undoes effect of previous Store_String_Char call, used in some error -- situations of unterminated string constants. function End_String return String_Id; -- Terminates current string and returns its Id function String_Length (Id : String_Id) return Nat; -- Returns length of previously stored string function Get_String_Char (Id : String_Id; Index : Int) return Char_Code; pragma Inline (Get_String_Char); -- Obtains the specified character from a stored string. The lower bound -- of stored strings is always 1, so the range is 1 .. String_Length (Id). function String_Equal (L, R : String_Id) return Boolean; -- Determines if two string literals represent the same string procedure String_To_Name_Buffer (S : String_Id); -- Place characters of given string in Name_Buffer, setting Name_Len. -- Error if any characters are out of Character range. Does not attempt -- to do any encoding of any characters. procedure Add_String_To_Name_Buffer (S : String_Id); -- Append characters of given string to Name_Buffer, updating Name_Len. -- Error if any characters are out of Character range. Does not attempt -- to do any encoding of any characters. function String_Chars_Address return System.Address; -- Return address of String_Chars table (used by Back_End call to Gigi) function String_From_Name_Buffer return String_Id; -- Given a name stored in Namet.Name_Buffer (length in Namet.Name_Len), -- returns a string of the corresponding value. The value in Name_Buffer -- is unchanged, and the cases of letters are unchanged. function Strings_Address return System.Address; -- Return address of Strings table (used by Back_End call to Gigi) procedure Tree_Read; -- Initializes internal tables from current tree file using the relevant -- Table.Tree_Read routines. Note that Initialize should not be called if -- Tree_Read is used. Tree_Read includes all necessary initialization. procedure Tree_Write; -- Writes out internal tables to current tree file using the relevant -- Table.Tree_Write routines. procedure Write_Char_Code (Code : Char_Code); -- Procedure to write a character code value, used for debugging purposes -- for writing character codes. If the character code is in the range -- 16#20# .. 16#7E#, then the single graphic character corresponding to -- the code is output. For any other codes in the range 16#00# .. 16#FF#, -- the code is output as ["hh"] where hh is the two digit hex value for -- the code. Codes greater than 16#FF# are output as ["hhhh"] where hhhh -- is the four digit hex representation of the code value (high order -- byte first). Hex letters are always in lower case. procedure Write_String_Table_Entry (Id : String_Id); -- Writes a string value with enclosing quotes to the current file using -- routines in package Output. Does not write an end of line character. -- This procedure is used for debug output purposes, and also for output -- of strings specified by pragma Linker Option to the ali file. 7-bit -- ASCII graphics (except for double quote) are output literally. -- The double quote appears as two successive double quotes. -- All other codes, are output as described for Write_Char_Code. For -- example, the string created by folding "A" & ASCII.HT & "Hello" will -- print as "A["09"]Hello". A No_String value prints simply as "no string" -- without surrounding quote marks. private pragma Inline (End_String); pragma Inline (String_Length); end Stringt;
-- Standard Ada library specification -- Copyright (c) 2003-2018 Maxim Reznik <reznikmm@gmail.com> -- 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.Containers; function Ada.Strings.Wide_Unbounded.Wide_Hash (Key : in Unbounded_Wide_String) return Ada.Containers.Hash_Type; pragma Preelaborate (Wide_Hash);
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- R E S T R I C T -- -- -- -- 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. -- -- -- ------------------------------------------------------------------------------ -- This package deals with the implementation of the Restrictions pragma with Aspects; use Aspects; with Namet; use Namet; with Rident; use Rident; with Snames; use Snames; with Table; with Types; use Types; with Uintp; use Uintp; package Restrict is Restrictions : Restrictions_Info := No_Restrictions; -- This variable records restrictions found in any units in the main -- extended unit, and in the case of restrictions checked for partition -- consistency, restrictions found in any with'ed units, parent specs -- etc., since we may as well check as much as we can at compile time. -- These variables should not be referenced directly by clients. Instead -- use Check_Restriction to record a violation of a restriction, and -- Restriction_Active to test if a given restriction is active. Restrictions_Loc : array (All_Restrictions) of Source_Ptr := (others => No_Location); -- Locations of Restrictions pragmas for error message purposes. -- Valid only if corresponding entry in Restrictions is set. A value -- of No_Location is used for implicit restrictions set by another -- pragma, and a value of System_Location is used for restrictions -- set from package Standard by the processing in Targparm. Restriction_Profile_Name : array (All_Restrictions) of Profile_Name; -- Entries in this array are valid only if the corresponding restriction in -- Restrictions is set. The value is the corresponding profile name if the -- restriction was set by a Profile or Profile_Warnings pragma. The value -- is No_Profile in all other cases. Main_Restrictions : Restrictions_Info := No_Restrictions; -- This variable records only restrictions found in any units of the -- main extended unit. These are the variables used for ali file output, -- since we want the binder to be able to accurately diagnose inter-unit -- restriction violations. Restriction_Warnings : Rident.Restriction_Flags := (others => False); -- If one of these flags is set, then it means that violation of the -- corresponding restriction results only in a warning message, not -- in an error message, and the restriction is not otherwise enforced. -- Note that the flags in Restrictions are set to indicate that the -- restriction is set in this case, but Main_Restrictions is never -- set if Restriction_Warnings is set, so this does not look like a -- restriction to the binder. -- The following declarations establish a mapping between restriction -- identifiers, and the names of corresponding restricted library units. type Unit_Entry is record Res_Id : Restriction_Id; Filenm : String (1 .. 8); end record; Unit_Array : constant array (Positive range <>) of Unit_Entry := ( (No_Asynchronous_Control, "a-astaco"), (No_Calendar, "a-calend"), (No_Calendar, "calendar"), (No_Delay, "a-calend"), (No_Delay, "calendar"), (No_Dynamic_Priorities, "a-dynpri"), (No_Finalization, "a-finali"), (No_IO, "a-direct"), (No_IO, "a-direio"), (No_IO, "directio"), (No_IO, "a-sequio"), (No_IO, "sequenio"), (No_IO, "a-ststio"), (No_IO, "a-textio"), (No_IO, "text_io "), (No_IO, "a-witeio"), (No_Task_Attributes_Package, "a-tasatt"), (No_Unchecked_Conversion, "a-unccon"), (No_Unchecked_Conversion, "unchconv"), (No_Unchecked_Deallocation, "a-uncdea"), (No_Unchecked_Deallocation, "unchdeal")); -- The following map has True for all GNAT-defined Restrictions. It is used -- to implement pragma Restrictions (No_Implementation_Restrictions) (which -- is why this restriction itself is excluded from the list). Implementation_Restriction : constant array (All_Restrictions) of Boolean := (Simple_Barriers => True, No_Calendar => True, No_Default_Initialization => True, No_Direct_Boolean_Operators => True, No_Dispatching_Calls => True, No_Dynamic_Attachment => True, No_Elaboration_Code => True, No_Enumeration_Maps => True, No_Entry_Calls_In_Elaboration_Code => True, No_Entry_Queue => True, No_Exception_Handlers => True, No_Exception_Propagation => True, No_Exception_Registration => True, No_Finalization => True, No_Fixed_IO => True, No_Implementation_Attributes => True, No_Implementation_Pragmas => True, No_Implicit_Conditionals => True, No_Implicit_Aliasing => True, No_Implicit_Dynamic_Code => True, No_Implicit_Loops => True, No_Initialize_Scalars => True, No_Local_Protected_Objects => True, No_Long_Long_Integers => True, No_Multiple_Elaboration => True, No_Protected_Type_Allocators => True, No_Relative_Delay => True, No_Requeue_Statements => True, No_Secondary_Stack => True, No_Select_Statements => True, No_Standard_Storage_Pools => True, No_Stream_Optimizations => True, No_Streams => True, No_Task_Attributes_Package => True, No_Task_Termination => True, No_Tasking => True, No_Wide_Characters => True, Static_Priorities => True, Static_Storage_Size => True, Pure_Barriers => True, SPARK_05 => True, others => False); -------------------------- -- No_Dependences Table -- -------------------------- -- The following table records entries made by Restrictions pragmas -- that specify a parameter for No_Dependence. Each such pragma makes -- an entry in this table. -- Note: we have chosen to implement this restriction in the "syntactic" -- form, where we do not check that the named package is a language defined -- package, but instead we allow arbitrary package names. The discussion of -- this issue is not complete in the ARG, but the sense seems to be leaning -- in this direction, which makes more sense to us, since it is much more -- useful, and much easier to implement. type ND_Entry is record Unit : Node_Id; -- The unit parameter from the No_Dependence pragma Warn : Boolean; -- True if from Restriction_Warnings, False if from Restrictions Profile : Profile_Name; -- Set to name of profile from which No_Dependence entry came, or to -- No_Profile if a pragma Restriction set the No_Dependence entry. end record; package No_Dependences is new Table.Table ( Table_Component_Type => ND_Entry, Table_Index_Type => Int, Table_Low_Bound => 0, Table_Initial => 200, Table_Increment => 200, Table_Name => "Name_No_Dependences"); ---------------------------- -- No_Use_Of_Entity Table -- ---------------------------- -- The following table records entries made by Restrictions pragmas -- that specify a parameter for No_Use_Of_Entity. Each such pragma makes -- an entry in this table. -- Note: we have chosen to implement this restriction in the "syntactic" -- form, where we allow arbitrary fully qualified names to be specified. type NE_Entry is record Entity : Node_Id; -- The entity parameter from the No_Use_Of_Entity pragma. This is in -- the form of a selected component, since that is the way the parser -- processes it, and we don't further analyze it. Warn : Boolean; -- True if from Restriction_Warnings, False if from Restrictions Profile : Profile_Name; -- Set to name of profile from which No_Use_Of_Entity entry came, or to -- No_Profile if a pragma Restriction set the No_Use_Of_Entity entry. end record; package No_Use_Of_Entity is new Table.Table ( Table_Component_Type => NE_Entry, Table_Index_Type => Int, Table_Low_Bound => 0, Table_Initial => 200, Table_Increment => 200, Table_Name => "Name_No_Use_Of_Entity"); -- Note that in addition to making an entry in this table, we also set the -- Boolean2 flag of the Name_Table entry for the simple name of the entity. -- This is used to avoid most useless searches of this table. ----------------- -- Subprograms -- ----------------- -- Note: several of these subprograms can generate error messages (e.g. -- Check_Restriction). These routines should be called in the analyzer -- rather than the expander, so that the associated error messages are -- correctly generated in semantics only (-gnatc) mode. function Abort_Allowed return Boolean; pragma Inline (Abort_Allowed); -- Tests to see if abort is allowed by the current restrictions settings. -- For abort to be allowed, either No_Abort_Statements must be False, -- or Max_Asynchronous_Select_Nesting must be non-zero. procedure Check_Compiler_Unit (Feature : String; N : Node_Id); -- If unit N is in a unit that has a pragma Compiler_Unit_Warning, then -- a message is posted on node N noting use of the given feature is not -- permitted in the compiler (bootstrap considerations). procedure Check_Compiler_Unit (Feature : String; Loc : Source_Ptr); -- If unit N is in a unit that has a pragma Compiler_Unit_Warning, then a -- message is posted at location Loc noting use of the given feature is not -- permitted in the compiler (bootstrap considerations). procedure Check_Restricted_Unit (U : Unit_Name_Type; N : Node_Id); -- Checks if loading of unit U is prohibited by the setting of some -- restriction (e.g. No_IO restricts the loading of unit Ada.Text_IO). -- If a restriction exists post error message at the given node. procedure Check_Restriction (Msg_Issued : out Boolean; R : Restriction_Id; N : Node_Id; V : Uint := Uint_Minus_1); -- Checks that the given restriction is not set, and if it is set, an -- appropriate message is posted on the given node, in which case -- Msg_Issued is set to True (and False otherwise). Also records the -- violation in the appropriate internal arrays. Note that it is mandatory -- to always use this routine to check if a restriction is violated. Such -- checks must never be done directly by the caller, since otherwise -- violations in the absence of restrictions are not properly recorded. The -- value of V is relevant only for parameter restrictions, and in this case -- indicates the exact count for the violation. If the exact count is not -- known, V is left at its default of -1 which indicates an unknown count. procedure Check_Restriction (R : Restriction_Id; N : Node_Id; V : Uint := Uint_Minus_1); -- Wrapper on Check_Restriction with Msg_Issued, with the out-parameter -- being ignored here. procedure Check_Restriction_No_Dependence (U : Node_Id; Err : Node_Id); -- Called when a dependence on a unit is created (either implicitly, or by -- an explicit WITH clause). U is a node for the unit involved, and Err is -- the node to which an error will be attached if necessary. procedure Check_Restriction_No_Specification_Of_Aspect (N : Node_Id); -- N is the node id for an N_Aspect_Specification, an N_Pragma, or an -- N_Attribute_Definition_Clause. An error message (warning) will be issued -- if a restriction (warning) was previously set for this aspect using -- Set_No_Specification_Of_Aspect. procedure Check_Restriction_No_Use_Of_Attribute (N : Node_Id); -- N denotes an attribute definition clause or an attribute reference. An -- error message (warning) will be issued if a restriction (warning) was -- previously set for this attribute using Set_No_Use_Of_Attribute. procedure Check_Restriction_No_Use_Of_Entity (N : Node_Id); -- N is the node id for an entity reference. An error message (warning) -- will be issued if a restriction (warning) was previously set for this -- entity name using Set_No_Use_Of_Entity. procedure Check_Restriction_No_Use_Of_Pragma (N : Node_Id); -- N is the node of a pragma. An error message (warning) will be issued -- if a restriction (warning) was previously set for this pragma using -- Set_No_Use_Of_Pragma. procedure Check_Elaboration_Code_Allowed (N : Node_Id); -- Tests to see if elaboration code is allowed by the current restrictions -- settings. This function is called by Gigi when it needs to define an -- elaboration routine. If elaboration code is not allowed, an error -- message is posted on the node given as argument. -- WARNING: There is a matching C declaration of this subprogram in fe.h procedure Check_No_Implicit_Aliasing (Obj : Node_Id); -- Obj is a node for which Is_Aliased_View is True, which is being used in -- a context (e.g. 'Access) where no implicit aliasing is allowed if the -- restriction No_Implicit_Aliasing is set. This procedure checks for the -- case where the restriction is active and Obj does not meet the required -- rules for avoiding implicit aliases, and issues a restriction message. procedure Check_Implicit_Dynamic_Code_Allowed (N : Node_Id); -- Tests to see if dynamic code generation (dynamically generated -- trampolines, in particular) is allowed by the current restrictions -- settings. This function is called by Gigi when it needs to generate code -- that generates a trampoline. If not allowed, an error message is posted -- on the node given as argument. -- WARNING: There is a matching C declaration of this subprogram in fe.h procedure Check_No_Implicit_Heap_Alloc (N : Node_Id); -- Equivalent to Check_Restriction (No_Implicit_Heap_Allocations, N). -- Provided for easy use by back end, which has to check this restriction. -- WARNING: There is a matching C declaration of this subprogram in fe.h procedure Check_No_Implicit_Protected_Alloc (N : Node_Id); -- Equivalent to: -- Check_Restriction (No_Implicit_Protected_Object_Allocations, N) -- Provided for easy use by back end, which has to check this restriction. -- WARNING: There is a matching C declaration of this subprogram in fe.h procedure Check_No_Implicit_Task_Alloc (N : Node_Id); -- Equivalent to Check_Restriction (No_Implicit_Task_Allocations, N). -- Provided for easy use by back end, which has to check this restriction. -- WARNING: There is a matching C declaration of this subprogram in fe.h procedure Check_Obsolescent_2005_Entity (E : Entity_Id; N : Node_Id); -- This routine checks if the entity E is one of the obsolescent entries -- in Ada.Characters.Handling in Ada 2005 and No_Obsolescent_Features -- restriction is active. If so an appropriate message is given. N is -- the node on which the message is to be placed. It's a bit kludgy to -- have this highly specialized routine rather than some wonderful general -- mechanism (e.g. a special pragma) to handle this case, but there are -- only six cases, and it is not worth the effort to do something general. procedure Check_Wide_Character_Restriction (E : Entity_Id; N : Node_Id); -- This procedure checks if the No_Wide_Character restriction is active, -- and if so, if N Comes_From_Source, and the root type of E is one of -- [Wide_]Wide_Character or [Wide_]Wide_String, then the restriction -- violation is recorded, and an appropriate message given. function Get_Restriction_Id (N : Name_Id) return Restriction_Id; -- Given an identifier name, determines if it is a valid restriction -- identifier, and if so returns the corresponding Restriction_Id value, -- otherwise returns Not_A_Restriction_Id. function OK_No_Dependence_Unit_Name (N : Node_Id) return Boolean; -- Used in checking No_Dependence argument of pragma Restrictions or -- pragma Restrictions_Warning, or attribute Restriction_Set. Returns -- True if N has the proper form for a unit name, False otherwise. function OK_No_Use_Of_Entity_Name (N : Node_Id) return Boolean; -- Used in checking No_Use_Of_Entity argument of pragma Restrictions or -- pragma Restrictions_Warning, or attribute Restriction_Set. Returns -- True if N has the proper form for an entity name, False otherwise. function No_Exception_Handlers_Set return Boolean; -- Test to see if current restrictions settings specify that no exception -- handlers are present. This function is called by Gigi when it needs to -- expand an AT END clean up identifier with no exception handler. True -- will be returned if the configurable run-time is activated, and either -- of the restrictions No_Exception_Handlers or No_Exception_Propagation is -- set. In the latter case, the source may contain handlers but they either -- get converted using the local goto transformation or deleted. -- WARNING: There is a matching C declaration of this subprogram in fe.h function No_Exception_Propagation_Active return Boolean; -- Test to see if current restrictions settings specify that no -- exception propagation is activated. function Process_Restriction_Synonyms (N : Node_Id) return Name_Id; -- Id is a node whose Chars field contains the name of a restriction. -- If it is one of synonyms that we allow for historical purposes (for -- list see System.Rident), then the proper official name is returned. function Restriction_Active (R : All_Restrictions) return Boolean; pragma Inline (Restriction_Active); -- Determines if a given restriction is active. This call should only be -- used where the compiled code depends on whether the restriction is -- active. Always use Check_Restriction to record a violation. Note that -- this returns False if we only have a Restriction_Warnings set, since -- restriction warnings should never affect generated code. If you want -- to know if a call to Check_Restriction is needed then use the function -- Restriction_Check_Required instead. function Restriction_Check_Required (R : All_Restrictions) return Boolean; pragma Inline (Restriction_Check_Required); -- Determines if either a Restriction_Warnings or Restrictions pragma has -- been given for the specified restriction. If true, then a subsequent -- call to Check_Restriction is required if the restriction is violated. -- This must not be used to guard code generation that depends on whether -- a restriction is active (see Restriction_Active above). Typically it -- is used to avoid complex code to determine if a restriction is violated, -- executing this code only if needed. function Restricted_Profile return Boolean; -- Tests if set of restrictions corresponding to Restricted_Tasking profile -- is currently in effect (set by pragma Profile, or by an appropriate set -- of individual Restrictions pragmas). Returns True only if all the -- required restrictions are set. procedure Set_Global_No_Tasking; -- Used in call from Sem_Prag when restriction No_Tasking is set in the -- run-time package System or in a configuration pragmas file. procedure Set_Profile_Restrictions (P : Profile_Name; N : Node_Id; Warn : Boolean); -- Sets the set of restrictions associated with the given profile name. N -- is the node of the construct to which error messages are to be attached -- as required. Warn is set True for the case of Profile_Warnings where the -- restrictions are set as warnings rather than legality requirements, and -- is also True for Profile if the Treat_Restrictions_As_Warnings flag is -- set. It is false for Profile if this flag is not set. procedure Set_Restriction (R : All_Boolean_Restrictions; N : Node_Id); -- N is a node (typically a pragma node) that has the effect of setting -- Boolean restriction R. The restriction is set in Restrictions, and -- also in Main_Restrictions if this is the main unit. procedure Set_Restriction (R : All_Parameter_Restrictions; N : Node_Id; V : Integer); -- Similar to the above, except that this is used for the case of a -- parameter restriction, and the corresponding value V is given. procedure Set_Restriction (R : All_Restrictions; N : Node_Id; Warn : Boolean; V : Integer := Integer'First); -- Same as above two, except also takes care of setting the -- Restriction_Warnings flag. V is ignored for Boolean -- restrictions. -- -- If this is the first time we've seen this restriction, the warning flag -- is set to Warn. If this is a second or subsequent time, Warn = False -- wins; that is, errors always trump warnings. In that case, the warning -- flag can be set to False, but never to True. procedure Set_Restriction_No_Dependence (Unit : Node_Id; Warn : Boolean; Profile : Profile_Name := No_Profile); -- Sets given No_Dependence restriction in table if not there already. Warn -- is True if from Restriction_Warnings, or for Restrictions if the flag -- Treat_Restrictions_As_Warnings is set. False if from Restrictions and -- this flag is not set. Profile is set to a non-default value if the -- No_Dependence restriction comes from a Profile pragma. procedure Set_Restriction_No_Specification_Of_Aspect (N : Node_Id; Warn : Boolean); -- N is the node id for an identifier from a pragma Restrictions for the -- No_Specification_Of_Aspect pragma. An error message will be issued if -- the identifier is not a valid aspect name. Warning is set True for the -- case of a Restriction_Warnings pragma specifying this restriction and -- False for a Restrictions pragma specifying this restriction. procedure Set_Restriction_No_Specification_Of_Aspect (A_Id : Aspect_Id); -- Version used by Get_Target_Parameters (via Tbuild) procedure Set_Restriction_No_Use_Of_Attribute (N : Node_Id; Warn : Boolean); -- N is the node id for the identifier in a pragma Restrictions for -- No_Use_Of_Attribute. Caller has verified that this is a valid attribute -- designator. procedure Set_Restriction_No_Use_Of_Attribute (A_Id : Attribute_Id); -- Version used by Get_Target_Parameters (via Tbuild) procedure Set_Restriction_No_Use_Of_Entity (Entity : Node_Id; Warn : Boolean; Profile : Profile_Name := No_Profile); -- Sets given No_Use_Of_Entity restriction in table if not there already. -- Warn is True if from Restriction_Warnings, or for Restrictions if the -- flag Treat_Restrictions_As_Warnings is set. False if from Restrictions -- and this flag is not set. Profile is set to a non-default value if the -- No_Dependence restriction comes from a Profile pragma. This procedure -- also takes care of setting the Boolean2 flag of the simple name for -- the entity (to optimize table searches). procedure Set_Restriction_No_Use_Of_Pragma (N : Node_Id; Warn : Boolean); -- N is the node id for the identifier in a pragma Restrictions for -- No_Use_Of_Pragma. Caller has verified that this is a valid pragma id. procedure Set_Restriction_No_Use_Of_Pragma (A_Id : Pragma_Id); -- Version used in call from Get_Target_Parameters (via Tbuild). function Tasking_Allowed return Boolean; pragma Inline (Tasking_Allowed); -- Tests if tasking operations are allowed by the current restrictions -- settings. For tasking to be allowed Max_Tasks must be non-zero. function Global_No_Tasking return Boolean; -- Returns True if the restriction No_Tasking is set in the run-time -- package System or in a configuration pragmas file. ---------------------------------------------- -- Handling of Boolean Compilation Switches -- ---------------------------------------------- -- The following declarations are used for proper saving and restoring of -- restrictions for separate compilation units. There are two cases: -- For partition-wide restrictions, we just let the restrictions pragmas -- pile up, and we never reset them. We might as well detect what we can -- at compile time. If e.g. a with'ed unit has a restriction for one of -- the partition-wide restrictions, then the binder will enforce it on -- all units in the partition, including the unit with the WITH. Although -- it would not be wrong to leave this till bind time, we might as well -- flag it earlier at compile time. -- For non-partition-wide restrictions, we have quite a different state -- of affairs. Here it would be quite wrong to carry a restriction from -- a with'ed unit to another with'ed unit, or from a package spec to the -- package body. This means that we have to reset these non-partition -- wide restrictions at the start of each separate compilation unit. For -- units in the extended main program, we need to reset them all to the -- values set by the configuration pragma file(s). For units not in the -- extended main program, e.g. with'ed units, we might as well reset all -- of these restrictions to off (False). The actual initial values will -- be taken from the config files active when those units are compiled -- as main units. type Save_Cunit_Boolean_Restrictions is private; -- Type used for saving and restoring compilation unit restrictions. function Cunit_Boolean_Restrictions_Save return Save_Cunit_Boolean_Restrictions; -- This function saves the compilation unit restriction settings, leaving -- them unchanged. This is used e.g. at the start of processing a context -- clause, so that the main unit restrictions can be restored after all -- the with'ed units have been processed. procedure Cunit_Boolean_Restrictions_Restore (R : Save_Cunit_Boolean_Restrictions); -- This is the corresponding restore procedure to restore restrictions -- previously saved by Cunit_Boolean_Restrictions_Save. However it does -- not reset No_Elaboration_Code, this stays set if it was set before -- the call, and also if it is set before the call, then the Config -- setting is also updated to include this restriction. This is what -- implements the special handling of No_Elaboration_Code. procedure Save_Config_Cunit_Boolean_Restrictions; -- This saves the current compilation unit restrictions in an internal -- variable, and leaves them unchanged. This is called immediately after -- processing the configuration file pragmas, to record the restrictions -- set by these configuration file pragmas. procedure Restore_Config_Cunit_Boolean_Restrictions; -- This restores the value saved by the previous call to save config values -- saved by Save_Config_Cunit_Boolean_Restrictions. It is called at the -- start of processing a new unit that is part of the main sources (e.g. -- a package spec when the main unit is a package body). procedure Reset_Cunit_Boolean_Restrictions; -- Turns off all non-partition-wide boolean restrictions procedure Add_To_Config_Boolean_Restrictions (R : Restriction_Id); -- Add specified restriction to stored configuration boolean restrictions. -- This is used for handling the special case of No_Elaboration_Code. private type Save_Cunit_Boolean_Restrictions is array (Cunit_Boolean_Restrictions) of Boolean; -- Type used for saving and restoring compilation unit restrictions. -- See Compilation_Unit_Restrictions_[Save|Restore] subprograms. end Restrict;
-- Abstract : -- -- Support Emacs Ada mode and gpr-query minor mode queries about -- GNAT projects and cross reference data -- -- requires gnatcoll 1.7w 20140330, gnat 7.2.1 -- -- Copyright (C) 2014-2018 Free Software Foundation All Rights Reserved. -- -- This program is free software; you can redistribute it and/or -- modify it under terms of the GNU General Public License as -- published by the Free Software Foundation; either version 3, 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 -- distributed with this program; see file COPYING. If not, write to -- the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, -- MA 02110-1335, USA. pragma License (GPL); with Ada.Characters.Handling; with Ada.Command_Line; with Ada.Directories; with Ada.Environment_Variables; with Ada.Exceptions.Traceback; with Ada.IO_Exceptions; with Ada.Strings.Fixed; with Ada.Strings.Unbounded; with Ada.Text_IO; with GNAT.Command_Line; with GNAT.Directory_Operations; with GNAT.OS_Lib; with GNAT.Strings; with GNAT.Traceback.Symbolic; with GNATCOLL.Arg_Lists; with GNATCOLL.Paragraph_Filling; with GNATCOLL.Projects; with GNATCOLL.SQL.Sqlite; with GNATCOLL.Traces; with GNATCOLL.Utils; with GNATCOLL.VFS; with GNATCOLL.VFS_Utils; with GNATCOLL.Xref; procedure Gpr_Query is use GNATCOLL; Me : constant GNATCOLL.Traces.Trace_Handle := GNATCOLL.Traces.Create ("gpr_query"); Db_Error : exception; Invalid_Command : exception; function "+" (Item : in Ada.Strings.Unbounded.Unbounded_String) return String renames Ada.Strings.Unbounded.To_String; function "+" (Item : in GNATCOLL.VFS.Filesystem_String) return String is begin return String (Item); end "+"; procedure Process_Line (Line : String); -- Process a full line of commands. -- Raise Invalid_Command when the command is invalid. function Get_Entity (Arg : String) return GNATCOLL.Xref.Entity_Information; -- Return the entity matching the "name:file:line:column" argument type My_Xref_Database is new GNATCOLL.Xref.Xref_Database with null record; -- Derived so we can override Image to output full paths overriding function Image (Self : My_Xref_Database; File : GNATCOLL.VFS.Virtual_File) return String; function Image (Self : GNATCOLL.Xref.Entity_Information) return String; -- Return a display version of the argument Xref : aliased My_Xref_Database; Env : GNATCOLL.Projects.Project_Environment_Access; Tree : aliased GNATCOLL.Projects.Project_Tree; Previous_Progress : Natural := 0; Progress_Reporter : access procedure (Current, Total : Integer) := null; -- Subprogram specs for subprograms used before bodies procedure Check_Arg_Count (Args : in GNATCOLL.Arg_Lists.Arg_List; Expected : in Integer); procedure Dump (Curs : in out GNATCOLL.Xref.Entities_Cursor'Class); procedure Dump (Refs : in out GNATCOLL.Xref.References_Cursor'Class); -- Display the results of a query procedure Put (Item : GNATCOLL.VFS.File_Array); generic with function Compute (Self : in GNATCOLL.Xref.Xref_Database'Class; Entity : in GNATCOLL.Xref.Entity_Information) return GNATCOLL.Xref.Entity_Information; procedure Process_Command_Single (Args : GNATCOLL.Arg_Lists.Arg_List); -- Get the entity identified by Args, which must contain a single -- argument. Then call Compute, and output the result. -- -- Appropriate for queries that return a single entity result. procedure Process_Command_Single (Args : GNATCOLL.Arg_Lists.Arg_List) is use GNATCOLL.Arg_Lists; use GNATCOLL.Xref; Entity : Entity_Information; Comp : Entity_Information; begin Check_Arg_Count (Args, 1); Entity := Get_Entity (Nth_Arg (Args, 1)); Comp := Compute (Xref, Entity); if Comp /= No_Entity then Ada.Text_IO.Put_Line (Image (Comp)); end if; end Process_Command_Single; generic with procedure Compute (Self : in GNATCOLL.Xref.Xref_Database'Class; Entity : in GNATCOLL.Xref.Entity_Information; Cursor : out GNATCOLL.Xref.Entities_Cursor'Class); procedure Process_Command_Multiple (Args : GNATCOLL.Arg_Lists.Arg_List); procedure Process_Command_Multiple (Args : GNATCOLL.Arg_Lists.Arg_List) is use GNATCOLL.Arg_Lists; use GNATCOLL.Xref; Entity : Entity_Information; Descendants : Recursive_Entities_Cursor; -- Apparently a generic formal parameter cannot match a subprogram access type, so we need this: procedure Do_Compute (Self : in GNATCOLL.Xref.Xref_Database'Class; Entity : in GNATCOLL.Xref.Entity_Information; Cursor : out GNATCOLL.Xref.Entities_Cursor'Class) is begin Compute (Self, Entity, Cursor); end Do_Compute; begin Check_Arg_Count (Args, 1); Entity := Get_Entity (Nth_Arg (Args, 1)); Recursive (Self => Xref'Unchecked_Access, Entity => Entity, Compute => Do_Compute'Unrestricted_Access, Cursor => Descendants); Dump (Descendants); end Process_Command_Multiple; -- Command procedures; Args is the command line. -- -- Infrastructure commands procedure Process_Help (Args : GNATCOLL.Arg_Lists.Arg_List); procedure Process_Refresh (Args : GNATCOLL.Arg_Lists.Arg_List); procedure Process_DB_Name (Args : GNATCOLL.Arg_Lists.Arg_List); -- Queries; alphabetical procedure Process_Overridden is new Process_Command_Single (GNATCOLL.Xref.Overrides); procedure Process_Overriding is new Process_Command_Multiple (GNATCOLL.Xref.Overridden_By); procedure Process_Parent_Types is new Process_Command_Multiple (GNATCOLL.Xref.Parent_Types); procedure Process_Project_Path (Args : GNATCOLL.Arg_Lists.Arg_List); procedure Process_Refs (Args : GNATCOLL.Arg_Lists.Arg_List); procedure Process_Source_Dirs (Args : GNATCOLL.Arg_Lists.Arg_List); type Command_Descr is record Name : GNAT.Strings.String_Access; Args : GNAT.Strings.String_Access; Help : GNAT.Strings.String_Access; Handler : not null access procedure (Args : GNATCOLL.Arg_Lists.Arg_List); end record; Commands : constant array (Natural range <>) of Command_Descr := ((new String'("help"), new String'("[command or variable name]"), new String'("Display the list of commands and their syntax."), Process_Help'Access), (new String'("refresh"), null, new String'("Refresh the contents of the xref database."), Process_Refresh'Access), (new String'("db_name"), null, new String'("Report the root name of the database files."), Process_DB_Name'Access), -- queries (new String'("overridden"), new String'("name:file:line:column"), new String'("The entity that is overridden by the parameter"), Process_Overridden'Access), (new String'("overriding"), new String'("name:file:line:column"), new String'("The entities that override the parameter"), Process_Overriding'Access), (new String'("parent_types"), new String'("name:file:line:column"), new String'("The parent types of the entity."), Process_Parent_Types'Access), (new String'("project_path"), null, new String'("The project search path."), Process_Project_Path'Access), (new String'("refs"), new String'("name:file:line:column"), new String'("All known references to the entity."), Process_Refs'Access), (new String'("source_dirs"), null, new String'("The project source directories, recursively."), Process_Source_Dirs'Access)); -- Parsed command line info Cmdline : GNAT.Command_Line.Command_Line_Configuration; Commands_From_Switch : aliased GNAT.Strings.String_Access; DB_Name : aliased GNAT.Strings.String_Access := new String'("gpr_query.db"); Force_Refresh : aliased Boolean; Nightly_DB_Name : aliased GNAT.Strings.String_Access; Show_Progress : aliased Boolean; Project_Name : aliased GNAT.Strings.String_Access; Traces_Config_File : aliased GNAT.Strings.String_Access; Gpr_Config_File : aliased GNAT.Strings.String_Access; ALI_Encoding : aliased GNAT.Strings.String_Access := new String'(""); ---------- -- Procedure bodies, alphabetical procedure Check_Arg_Count (Args : in GNATCOLL.Arg_Lists.Arg_List; Expected : in Integer) is Count : constant Integer := GNATCOLL.Arg_Lists.Args_Length (Args); begin if Count /= Expected then raise Invalid_Command with "Invalid number of arguments" & Integer'Image (Count) & "; expecting" & Integer'Image (Expected); end if; end Check_Arg_Count; procedure Display_Progress (Current, Total : Integer) is Now : constant Integer := Integer (Float'Floor (Float (Current) / Float (Total) * 100.0)); begin if Now /= Previous_Progress then Ada.Text_IO.Put_Line ("completed" & Current'Img & " out of" & Total'Img & " (" & GNATCOLL.Utils.Image (Now, Min_Width => 0) & "%)..."); Previous_Progress := Now; end if; end Display_Progress; procedure Dump (Curs : in out GNATCOLL.Xref.Entities_Cursor'Class) is use GNATCOLL.Xref; begin while Curs.Has_Element loop Ada.Text_IO.Put_Line (Image (Curs.Element)); Curs.Next; end loop; end Dump; procedure Dump (Refs : in out GNATCOLL.Xref.References_Cursor'Class) is use GNATCOLL.Xref; begin while Has_Element (Refs) loop declare Ref : constant Entity_Reference := Refs.Element; begin Ada.Text_IO.Put_Line (Xref.Image (Ref) & " (" & (+Ref.Kind) & ")"); end; Next (Refs); end loop; end Dump; function Get_Entity (Arg : String) return GNATCOLL.Xref.Entity_Information is use GNAT.Directory_Operations; use GNATCOLL.Xref; Words : GNAT.Strings.String_List_Access := GNATCOLL.Utils.Split (Arg, On => ':'); Ref : GNATCOLL.Xref.Entity_Reference; begin case Words'Length is when 4 => Ref := Xref.Get_Entity (Name => Words (Words'First).all, File => Format_Pathname (Style => UNIX, Path => Words (Words'First + 1).all), Project => GNATCOLL.Projects.No_Project, Line => Integer'Value (Words (Words'First + 2).all), Column => Visible_Column (Integer'Value (Words (Words'First + 3).all))); when 3 => Ref := Xref.Get_Entity (Name => Words (Words'First).all, File => Format_Pathname (Style => UNIX, Path => Words (Words'First + 1).all), Project => GNATCOLL.Projects.No_Project, Line => Integer'Value (Words (Words'First + 2).all)); when 2 => Ref := Xref.Get_Entity (Name => Words (Words'First).all, File => Format_Pathname (Style => UNIX, Path => Words (Words'First + 1).all), Project => GNATCOLL.Projects.No_Project); -- Xref.Get_Entity treats 'File => ""' as searching for pre-defined entities such as "Integer". when others => raise Invalid_Command with "Invalid parameter '" & Arg & "', expecting name:file:line:column"; end case; GNAT.Strings.Free (Words); if Ref.Entity = GNATCOLL.Xref.No_Entity then Ada.Text_IO.Put_Line ("Error: entity not found '" & Arg & "'"); elsif GNATCOLL.Xref.Is_Fuzzy_Match (Ref.Entity) then Ada.Text_IO.Put_Line ("warning: fuzzy match for the entity"); end if; return Ref.Entity; end Get_Entity; overriding function Image (Self : My_Xref_Database; File : GNATCOLL.VFS.Virtual_File) return String is pragma Unreferenced (Self); begin return File.Display_Full_Name; end Image; function Image (Self : GNATCOLL.Xref.Entity_Information) return String is use GNATCOLL.Xref; begin if Self = No_Entity then return "Unknown entity"; else declare Decl : constant Entity_Declaration := Xref.Declaration (Self); begin if Is_Predefined_Entity (Decl) then return "predefined entity: " & (+Decl.Name); else return Xref.Image (Decl.Location); end if; end; end if; end Image; procedure Process_DB_Name (Args : GNATCOLL.Arg_Lists.Arg_List) is pragma Unreferenced (Args); begin Ada.Text_IO.Put_Line (DB_Name.all); end Process_DB_Name; procedure Process_Help (Args : GNATCOLL.Arg_Lists.Arg_List) is use Ada.Text_IO; use GNATCOLL.Arg_Lists; use type GNAT.Strings.String_Access; begin for C in Commands'Range loop if Args_Length (Args) <= 0 -- Empty_Command_Line returns -1 or else Nth_Arg (Args, 1) = Commands (C).Name.all then Put (" " & Commands (C).Name.all); if Commands (C).Args = null then New_Line; else Put_Line (" " & Commands (C).Args.all); end if; Put (Ada.Strings.Unbounded.To_String (GNATCOLL.Paragraph_Filling.Knuth_Fill (Commands (C).Help.all, Max_Line_Length => 70, Line_Prefix => " "))); end if; end loop; New_Line; Put_Line ("'exit' to quit"); end Process_Help; procedure Process_Line (Line : String) is Expr : GNAT.Strings.String_List_Access; begin if Ada.Strings.Fixed.Trim (Line, Ada.Strings.Both) = "" then return; end if; Expr := GNATCOLL.Utils.Split (Line, On => ';'); for C in Expr'Range loop if Ada.Strings.Fixed.Trim (Expr (C).all, Ada.Strings.Both) = "" then null; else declare use GNATCOLL.Arg_Lists; List : constant Arg_List := Parse_String (Expr (C).all, Mode => Separate_Args); Cmd : constant String := Ada.Characters.Handling.To_Lower (Get_Command (List)); Found : Boolean := False; begin for Co in Commands'Range loop if Commands (Co).Name.all = Cmd then Commands (Co).Handler (List); Found := True; exit; end if; end loop; if not Found then raise Invalid_Command with "Invalid command: '" & Cmd & "'"; end if; end; end if; end loop; GNAT.Strings.Free (Expr); end Process_Line; procedure Process_Project_Path (Args : GNATCOLL.Arg_Lists.Arg_List) is pragma Unreferenced (Args); Dirs : constant GNATCOLL.VFS.File_Array := GNATCOLL.Projects.Predefined_Project_Path (Env.all); begin Put (Dirs); end Process_Project_Path; procedure Process_Refresh (Args : GNATCOLL.Arg_Lists.Arg_List) is separate; -- Requires different code for GNAT GPL 2016 vs 2017 procedure Process_Refs (Args : GNATCOLL.Arg_Lists.Arg_List) is use GNATCOLL.Arg_Lists; begin Check_Arg_Count (Args, 1); declare use GNATCOLL.Xref; Entity : constant Entity_Information := Get_Entity (Nth_Arg (Args, 1)); Refs : References_Cursor; begin Xref.References (Entity, Cursor => Refs); Dump (Refs); end; end Process_Refs; procedure Process_Source_Dirs (Args : GNATCOLL.Arg_Lists.Arg_List) is pragma Unreferenced (Args); use GNATCOLL.VFS; use GNATCOLL.Projects; Dirs : constant File_Array := Source_Dirs (Project => Tree.Root_Project, Recursive => True) & Predefined_Source_Path (Env.all); begin Put (Dirs); end Process_Source_Dirs; procedure Put (Item : GNATCOLL.VFS.File_Array) is use GNATCOLL.VFS; begin for I in Item'Range loop Ada.Text_IO.Put_Line (+Full_Name (Item (I))); end loop; end Put; begin declare use GNAT.Command_Line; begin Set_Usage (Cmdline, Help => "Query project info and cross-references on source code. See ada-mode docs for more help."); -- Switch variable alphabetic order Define_Switch (Cmdline, Output => ALI_Encoding'Access, Long_Switch => "--encoding=", Switch => "-e=", Help => "The character encoding used for source and ALI files"); Define_Switch (Cmdline, Output => Commands_From_Switch'Access, Switch => "-c:", Long_Switch => "--command=", Help => "Execute the commands from ARG, and exit"); Define_Switch (Cmdline, Output => DB_Name'Access, Long_Switch => "--db=", Help => "Specifies the name of the database (or ':memory:')"); Define_Switch (Cmdline, Output => Force_Refresh'Access, Long_Switch => "--force_refresh", Help => "Force rebuilding the database."); Define_Switch (Cmdline, Output => Gpr_Config_File'Access, Long_Switch => "--autoconf=", Help => "Specify the gpr configuration file (.cgpr)"); Define_Switch (Cmdline, Output => Nightly_DB_Name'Access, Long_Switch => "--nightlydb=", Help => "Specifies the name of a prebuilt database"); Define_Switch (Cmdline, Output => Project_Name'Access, Switch => "-P:", Long_Switch => "--project=", Help => "Load the given project (mandatory)"); Define_Switch (Cmdline, Output => Show_Progress'Access, Long_Switch => "--display_progress", Switch => "-d", Help => "Show progress as LI files are parsed"); Define_Switch (Cmdline, Output => Traces_Config_File'Access, Long_Switch => "--tracefile=", Help => "Specify a traces configuration file, set projects lib verbose"); Getopt (Cmdline, Callback => null); end; if Project_Name.all = "" then Ada.Text_IO.Put_Line ("No project file specified"); GNAT.Command_Line.Display_Help (Cmdline); return; end if; -- Only trace if user specifies --tracefile if Traces_Config_File.all /= "" and then GNAT.OS_Lib.Is_Regular_File (Traces_Config_File.all) then GNATCOLL.Traces.Parse_Config_File (Filename => Traces_Config_File.all, Force_Activation => False); GNATCOLL.Traces.Trace (Me, "trace enabled"); end if; GNATCOLL.Projects.Initialize (Env); -- for register_default_language if Gpr_Config_File.all /= "" and then GNAT.OS_Lib.Is_Regular_File (Gpr_Config_File.all) then Env.Set_Config_File (GNATCOLL.VFS.Create_From_UTF8 (GNAT.OS_Lib.Normalize_Pathname (Name => Gpr_Config_File.all, Directory => GNAT.Directory_Operations.Get_Current_Dir))); else -- Apparently Ada language extensions are already registered (sigh) Env.Register_Default_Language_Extension (Language_Name => "C", Default_Spec_Suffix => ".h", Default_Body_Suffix => ".c"); Env.Register_Default_Language_Extension (Language_Name => "C++", Default_Spec_Suffix => ".hh", Default_Body_Suffix => ".cpp"); end if; declare use Ada.Environment_Variables; use Ada.Text_IO; use GNATCOLL.VFS; use GNATCOLL.VFS_Utils; Gpr_Project_Path : constant String := (if Exists ("GPR_PROJECT_PATH") then Ada.Directories.Current_Directory & GNAT.OS_Lib.Path_Separator & Value ("GPR_PROJECT_PATH") else Ada.Directories.Current_Directory); Path : constant Virtual_File := -- must be an absolute file name (if Is_Absolute_Path (+Project_Name.all) then Create_From_UTF8 (Project_Name.all, Normalize => True) else Locate_Regular_File (+Project_Name.all, From_Path (+Gpr_Project_Path))); begin if not Path.Is_Regular_File then Put (Project_Name.all & ": not found on path " & Gpr_Project_Path); Ada.Command_Line.Set_Exit_Status (Ada.Command_Line.Failure); return; end if; GNATCOLL.Traces.Trace (Me, "using project file " & (+Path.Full_Name)); if Show_Progress then Progress_Reporter := Display_Progress'Unrestricted_Access; end if; begin -- Recompute_View => True registers all the source files -- (among other things), so we will know that a .[ag]li -- belongs to this project Tree.Load (Path, Env, Errors => Ada.Text_IO.Put_Line'Access, Recompute_View => True); exception when GNATCOLL.Projects.Invalid_Project => Ada.Text_IO.Put_Line ("project search path:"); Put (GNATCOLL.Projects.Predefined_Project_Path (Env.all)); raise GNATCOLL.Projects.Invalid_Project with +Path.Full_Name & ": invalid project"; end; end; if DB_Name.all /= ":memory:" then declare use GNATCOLL.VFS; N : constant String := DB_Name.all; Temp : Virtual_File := Tree.Root_Project.Object_Dir; Dir2 : Virtual_File; begin GNAT.Strings.Free (DB_Name); -- If the project does not have an object directory, create -- the database in the directory containing the project file. if Temp = No_File then Temp := Tree.Root_Project.Project_Path.Dir; end if; Temp := Create_From_Base (Base_Dir => Temp.Full_Name.all, Base_Name => +N); Dir2 := Create (Temp.Dir_Name); if not Dir2.Is_Directory then Dir2.Make_Dir (Recursive => True); end if; DB_Name := new String'(Temp.Display_Full_Name); end; end if; declare use type GNAT.Strings.String_Access; Error : GNAT.Strings.String_Access; begin GNATCOLL.Traces.Trace (Me, "using database " & DB_Name.all); Setup_DB (Self => Xref, Tree => Tree'Unchecked_Access, DB => GNATCOLL.SQL.Sqlite.Setup (Database => DB_Name.all), Error => Error); if Error /= null then -- old db schema raise Db_Error with Error.all; end if; end; Process_Refresh (GNATCOLL.Arg_Lists.Empty_Command_Line); if Commands_From_Switch.all /= "" then Process_Line (Commands_From_Switch.all); return; end if; loop Ada.Text_IO.Put (">>> "); declare Input : constant String := Ada.Text_IO.Get_Line; begin exit when Input = "exit"; Process_Line (Input); exception when E : Invalid_Command => Ada.Text_IO.Put_Line (Ada.Exceptions.Exception_Message (E)); Process_Help (GNATCOLL.Arg_Lists.Empty_Command_Line); end; end loop; exception when Ada.IO_Exceptions.End_Error => null; when E : GNATCOLL.Projects.Invalid_Project => Ada.Text_IO.Put_Line (Ada.Exceptions.Exception_Message (E)); Ada.Command_Line.Set_Exit_Status (Ada.Command_Line.Failure); when E : Db_Error => Ada.Text_IO.Put_Line (Ada.Exceptions.Exception_Message (E)); Ada.Command_Line.Set_Exit_Status (Ada.Command_Line.Failure); when E : Invalid_Command => Ada.Text_IO.Put_Line (Ada.Exceptions.Exception_Message (E)); Process_Help (GNATCOLL.Arg_Lists.Empty_Command_Line); Ada.Command_Line.Set_Exit_Status (Ada.Command_Line.Failure); when GNAT.Command_Line.Invalid_Switch => GNAT.Command_Line.Display_Help (Cmdline); Ada.Command_Line.Set_Exit_Status (Ada.Command_Line.Failure); when E : others => Ada.Text_IO.Put_Line ("Unexpected exception"); Ada.Text_IO.Put_Line (Ada.Exceptions.Exception_Information (E)); Ada.Text_IO.Put_Line (GNAT.Traceback.Symbolic.Symbolic_Traceback (Ada.Exceptions.Traceback.Tracebacks (E))); Ada.Command_Line.Set_Exit_Status (Ada.Command_Line.Failure); end Gpr_Query;
<?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>checkAxis_0</name> <ret_bitwidth>64</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>6</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>edge_p1_x</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/> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>0</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>edge_p1_y</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> <direction>0</direction> <if_type>0</if_type> <array_size>0</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>edge_p1_z</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> <direction>0</direction> <if_type>0</if_type> <array_size>0</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>edge_p2_x</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> <direction>0</direction> <if_type>0</if_type> <array_size>0</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>edge_p2_y</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> <direction>0</direction> <if_type>0</if_type> <array_size>0</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>edge_p2_z</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> <direction>0</direction> <if_type>0</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>88</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_7"> <Value> <Obj> <type>0</type> <id>7</id> <name>edge_p2_z_read</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>/mnt/hgfs/Thesis/HoneyBee</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>src/honeybee.c</first> <second>checkAxis</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>105</item> <item>106</item> </oprand_edges> <opcode>read</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="_8"> <Value> <Obj> <type>0</type> <id>8</id> <name>edge_p2_y_read</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>107</item> <item>108</item> </oprand_edges> <opcode>read</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="_9"> <Value> <Obj> <type>0</type> <id>9</id> <name>edge_p2_x_read</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>109</item> <item>110</item> </oprand_edges> <opcode>read</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="_10"> <Value> <Obj> <type>0</type> <id>10</id> <name>edge_p1_z_read</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>111</item> <item>112</item> </oprand_edges> <opcode>read</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="_11"> <Value> <Obj> <type>0</type> <id>11</id> <name>edge_p1_y_read</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>113</item> <item>114</item> </oprand_edges> <opcode>read</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="_12"> <Value> <Obj> <type>0</type> <id>12</id> <name>edge_p1_x_read</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>115</item> <item>116</item> </oprand_edges> <opcode>read</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="_13"> <Value> <Obj> <type>0</type> <id>13</id> <name>call_ret</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>grp_lineIntersectsPlane_fu_120</rtlName> <coreName/> </Obj> <bitwidth>96</bitwidth> </Value> <oprand_edges> <count>8</count> <item_version>0</item_version> <item>118</item> <item>119</item> <item>120</item> <item>121</item> <item>122</item> <item>123</item> <item>124</item> <item>126</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>8.75</m_delay> <m_topoIndex>7</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>14</id> <name>p_0</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>127</item> </oprand_edges> <opcode>extractvalue</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="_15"> <Value> <Obj> <type>0</type> <id>15</id> <name>p_1</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>128</item> </oprand_edges> <opcode>extractvalue</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="_16"> <Value> <Obj> <type>0</type> <id>16</id> <name>p_2</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>129</item> </oprand_edges> <opcode>extractvalue</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="_17"> <Value> <Obj> <type>0</type> <id>17</id> <name>tmp_s</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>114</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>114</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>grp_pointOnSegment_fu_141</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>10</count> <item_version>0</item_version> <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> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>5.28</m_delay> <m_topoIndex>11</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>18</id> <name>_ln114</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>114</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>114</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>141</item> <item>142</item> <item>143</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.46</m_delay> <m_topoIndex>12</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>20</id> <name>i_assign</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>115</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>115</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName>grp_p_hls_fptosi_float_i_fu_154</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>175</item> <item>176</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>8.58</m_delay> <m_topoIndex>13</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>21</id> <name>k_assign</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>115</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>115</second> </item> </second> </item> </inlineStackInfo> <originalName>k</originalName> <rtlName>grp_p_hls_fptosi_float_i_fu_159</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>177</item> <item>178</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>8.58</m_delay> <m_topoIndex>14</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>22</id> <name>shl_ln80</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>80</lineNumber> <contextFuncName>shiftAmount</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>115</second> </item> <item> <first> <first>src/honeybee.c</first> <second>shiftAmount</second> </first> <second>80</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>shl_ln80_fu_201_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>179</item> <item>181</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>15</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>23</id> <name>add_ln80</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>80</lineNumber> <contextFuncName>shiftAmount</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>115</second> </item> <item> <first> <first>src/honeybee.c</first> <second>shiftAmount</second> </first> <second>80</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>add_ln80_fu_207_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>182</item> <item>183</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.89</m_delay> <m_topoIndex>16</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>24</id> <name>zext_ln115</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>115</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>115</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln115_fu_213_p1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>184</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>17</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>25</id> <name>shl_ln115</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>115</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>115</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>shl_ln115_fu_217_p2</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>186</item> <item>187</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>18</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>26</id> <name>add_ln80_18</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>80</lineNumber> <contextFuncName>shiftAmount</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>116</second> </item> <item> <first> <first>src/honeybee.c</first> <second>shiftAmount</second> </first> <second>80</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>add_ln80_18_fu_223_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>189</item> <item>190</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.00</m_delay> <m_topoIndex>19</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>27</id> <name>add_ln80_19</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>80</lineNumber> <contextFuncName>shiftAmount</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>116</second> </item> <item> <first> <first>src/honeybee.c</first> <second>shiftAmount</second> </first> <second>80</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>add_ln80_19_fu_229_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>191</item> <item>192</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>3.58</m_delay> <m_topoIndex>20</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>28</id> <name>zext_ln116</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>116</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>116</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln116_fu_235_p1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>193</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>21</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>29</id> <name>shl_ln116</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>116</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>116</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>shl_ln116_fu_239_p2</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>194</item> <item>195</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>22</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>30</id> <name>or_ln116</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>116</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>116</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>or_ln116_fu_245_p2</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>196</item> <item>197</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>2.93</m_delay> <m_topoIndex>23</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>31</id> <name>_ln117</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>117</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>117</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>198</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.46</m_delay> <m_topoIndex>24</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>33</id> <name>collisions_5_0</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>116</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>116</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>144</item> <item>145</item> <item>147</item> <item>148</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>30</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>34</id> <name>call_ret_1</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>grp_lineIntersectsPlane_fu_120</rtlName> <coreName/> </Obj> <bitwidth>96</bitwidth> </Value> <oprand_edges> <count>8</count> <item_version>0</item_version> <item>149</item> <item>150</item> <item>151</item> <item>152</item> <item>153</item> <item>154</item> <item>155</item> <item>157</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>8.75</m_delay> <m_topoIndex>25</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>35</id> <name>p_0_0_1</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>158</item> </oprand_edges> <opcode>extractvalue</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="_34"> <Value> <Obj> <type>0</type> <id>36</id> <name>p_1_0_1</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>159</item> </oprand_edges> <opcode>extractvalue</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>27</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>37</id> <name>p_2_0_1</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>160</item> </oprand_edges> <opcode>extractvalue</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="_36"> <Value> <Obj> <type>0</type> <id>38</id> <name>tmp_42_1</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>114</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>114</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>grp_pointOnSegment_fu_141</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>10</count> <item_version>0</item_version> <item>161</item> <item>162</item> <item>163</item> <item>164</item> <item>165</item> <item>166</item> <item>167</item> <item>168</item> <item>169</item> <item>170</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>5.28</m_delay> <m_topoIndex>29</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>39</id> <name>_ln114</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>114</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>114</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>171</item> <item>172</item> <item>173</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.46</m_delay> <m_topoIndex>31</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>41</id> <name>i_assign_4</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>115</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>115</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName>grp_p_hls_fptosi_float_i_fu_154</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>228</item> <item>229</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>8.58</m_delay> <m_topoIndex>32</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>42</id> <name>k_assign_4</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>115</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>115</second> </item> </second> </item> </inlineStackInfo> <originalName>k</originalName> <rtlName>grp_p_hls_fptosi_float_i_fu_159</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>230</item> <item>231</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>8.58</m_delay> <m_topoIndex>33</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>43</id> <name>shl_ln80_11</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>80</lineNumber> <contextFuncName>shiftAmount</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>115</second> </item> <item> <first> <first>src/honeybee.c</first> <second>shiftAmount</second> </first> <second>80</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>shl_ln80_11_fu_251_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>232</item> <item>233</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>34</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>44</id> <name>or_ln80</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>80</lineNumber> <contextFuncName>shiftAmount</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>115</second> </item> <item> <first> <first>src/honeybee.c</first> <second>shiftAmount</second> </first> <second>80</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>or_ln80_fu_257_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>234</item> <item>235</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>35</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>45</id> <name>add_ln80_20</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>80</lineNumber> <contextFuncName>shiftAmount</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>115</second> </item> <item> <first> <first>src/honeybee.c</first> <second>shiftAmount</second> </first> <second>80</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>add_ln80_20_fu_263_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>236</item> <item>237</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.89</m_delay> <m_topoIndex>36</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>46</id> <name>zext_ln115_1</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>115</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>115</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln115_1_fu_269_p1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>238</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>37</m_topoIndex> <m_clusterGroupNumber>3</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>47</id> <name>shl_ln115_1</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>115</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>115</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>shl_ln115_1_fu_273_p2</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>239</item> <item>240</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>38</m_topoIndex> <m_clusterGroupNumber>3</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>48</id> <name>add_ln80_21</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>80</lineNumber> <contextFuncName>shiftAmount</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>116</second> </item> <item> <first> <first>src/honeybee.c</first> <second>shiftAmount</second> </first> <second>80</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>add_ln80_21_fu_279_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>241</item> <item>242</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.89</m_delay> <m_topoIndex>39</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>49</id> <name>zext_ln116_1</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>116</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>116</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln116_1_fu_285_p1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>243</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>40</m_topoIndex> <m_clusterGroupNumber>3</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>50</id> <name>shl_ln116_1</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>116</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>116</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>shl_ln116_1_fu_289_p2</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>244</item> <item>245</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>41</m_topoIndex> <m_clusterGroupNumber>3</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>51</id> <name>or_ln116_4</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>116</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>116</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>or_ln116_4_fu_295_p2</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>246</item> <item>247</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>42</m_topoIndex> <m_clusterGroupNumber>3</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>52</id> <name>or_ln116_1</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>116</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>116</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>or_ln116_1_fu_301_p2</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>248</item> <item>249</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>2.93</m_delay> <m_topoIndex>43</m_topoIndex> <m_clusterGroupNumber>3</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>53</id> <name>_ln117</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>117</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>117</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>250</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.46</m_delay> <m_topoIndex>44</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>55</id> <name>collisions_5_1</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>116</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>116</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>199</item> <item>200</item> <item>201</item> <item>202</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>46</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>56</id> <name>call_ret_2</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>grp_lineIntersectsPlane_fu_120</rtlName> <coreName/> </Obj> <bitwidth>96</bitwidth> </Value> <oprand_edges> <count>8</count> <item_version>0</item_version> <item>203</item> <item>204</item> <item>205</item> <item>206</item> <item>207</item> <item>208</item> <item>209</item> <item>211</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>8.75</m_delay> <m_topoIndex>45</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_53"> <Value> <Obj> <type>0</type> <id>57</id> <name>p_0_0_2</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>212</item> </oprand_edges> <opcode>extractvalue</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="_54"> <Value> <Obj> <type>0</type> <id>58</id> <name>p_1_0_2</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>213</item> </oprand_edges> <opcode>extractvalue</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="_55"> <Value> <Obj> <type>0</type> <id>59</id> <name>p_2_0_2</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>214</item> </oprand_edges> <opcode>extractvalue</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>49</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_56"> <Value> <Obj> <type>0</type> <id>60</id> <name>tmp_42_2</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>114</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>114</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>grp_pointOnSegment_fu_141</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>10</count> <item_version>0</item_version> <item>215</item> <item>216</item> <item>217</item> <item>218</item> <item>219</item> <item>220</item> <item>221</item> <item>222</item> <item>223</item> <item>224</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>5.28</m_delay> <m_topoIndex>50</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_57"> <Value> <Obj> <type>0</type> <id>61</id> <name>_ln114</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>114</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>114</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>225</item> <item>226</item> <item>227</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.46</m_delay> <m_topoIndex>51</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_58"> <Value> <Obj> <type>0</type> <id>63</id> <name>i_assign_5</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>115</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>115</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName>grp_p_hls_fptosi_float_i_fu_154</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>280</item> <item>281</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>8.58</m_delay> <m_topoIndex>52</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_59"> <Value> <Obj> <type>0</type> <id>64</id> <name>k_assign_5</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>115</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>115</second> </item> </second> </item> </inlineStackInfo> <originalName>k</originalName> <rtlName>grp_p_hls_fptosi_float_i_fu_159</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>282</item> <item>283</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>8.58</m_delay> <m_topoIndex>53</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_60"> <Value> <Obj> <type>0</type> <id>65</id> <name>shl_ln80_12</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>80</lineNumber> <contextFuncName>shiftAmount</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>115</second> </item> <item> <first> <first>src/honeybee.c</first> <second>shiftAmount</second> </first> <second>80</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>shl_ln80_12_fu_307_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>284</item> <item>285</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>54</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_61"> <Value> <Obj> <type>0</type> <id>66</id> <name>or_ln80_5</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>80</lineNumber> <contextFuncName>shiftAmount</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>115</second> </item> <item> <first> <first>src/honeybee.c</first> <second>shiftAmount</second> </first> <second>80</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>or_ln80_5_fu_313_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>286</item> <item>288</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>4</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_62"> <Value> <Obj> <type>0</type> <id>67</id> <name>add_ln80_22</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>80</lineNumber> <contextFuncName>shiftAmount</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>115</second> </item> <item> <first> <first>src/honeybee.c</first> <second>shiftAmount</second> </first> <second>80</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>add_ln80_22_fu_319_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>289</item> <item>290</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.89</m_delay> <m_topoIndex>56</m_topoIndex> <m_clusterGroupNumber>4</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_63"> <Value> <Obj> <type>0</type> <id>68</id> <name>zext_ln115_2</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>115</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>115</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln115_2_fu_325_p1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>291</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>57</m_topoIndex> <m_clusterGroupNumber>5</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_64"> <Value> <Obj> <type>0</type> <id>69</id> <name>shl_ln115_2</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>115</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>115</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>shl_ln115_2_fu_329_p2</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>292</item> <item>293</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>58</m_topoIndex> <m_clusterGroupNumber>5</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_65"> <Value> <Obj> <type>0</type> <id>70</id> <name>or_ln80_6</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>80</lineNumber> <contextFuncName>shiftAmount</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>116</second> </item> <item> <first> <first>src/honeybee.c</first> <second>shiftAmount</second> </first> <second>80</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>or_ln80_6_fu_335_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>294</item> <item>295</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>59</m_topoIndex> <m_clusterGroupNumber>6</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_66"> <Value> <Obj> <type>0</type> <id>71</id> <name>add_ln80_23</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>80</lineNumber> <contextFuncName>shiftAmount</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>116</second> </item> <item> <first> <first>src/honeybee.c</first> <second>shiftAmount</second> </first> <second>80</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>add_ln80_23_fu_341_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>296</item> <item>297</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.89</m_delay> <m_topoIndex>60</m_topoIndex> <m_clusterGroupNumber>6</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_67"> <Value> <Obj> <type>0</type> <id>72</id> <name>zext_ln116_2</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>116</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>116</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln116_2_fu_347_p1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>298</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>5</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_68"> <Value> <Obj> <type>0</type> <id>73</id> <name>shl_ln116_2</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>116</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>116</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>shl_ln116_2_fu_351_p2</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>299</item> <item>300</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>62</m_topoIndex> <m_clusterGroupNumber>5</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_69"> <Value> <Obj> <type>0</type> <id>74</id> <name>or_ln116_5</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>116</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>116</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>or_ln116_5_fu_357_p2</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>301</item> <item>302</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>63</m_topoIndex> <m_clusterGroupNumber>5</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_70"> <Value> <Obj> <type>0</type> <id>75</id> <name>or_ln116_2</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>116</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>116</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>or_ln116_2_fu_363_p2</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>303</item> <item>304</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>2.93</m_delay> <m_topoIndex>64</m_topoIndex> <m_clusterGroupNumber>5</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_71"> <Value> <Obj> <type>0</type> <id>76</id> <name>_ln117</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>117</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>117</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>305</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.46</m_delay> <m_topoIndex>65</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_72"> <Value> <Obj> <type>0</type> <id>78</id> <name>collisions_5_2</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>116</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>116</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>251</item> <item>252</item> <item>253</item> <item>254</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>67</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_73"> <Value> <Obj> <type>0</type> <id>79</id> <name>call_ret_3</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>grp_lineIntersectsPlane_fu_120</rtlName> <coreName/> </Obj> <bitwidth>96</bitwidth> </Value> <oprand_edges> <count>8</count> <item_version>0</item_version> <item>255</item> <item>256</item> <item>257</item> <item>258</item> <item>259</item> <item>260</item> <item>261</item> <item>263</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>8.75</m_delay> <m_topoIndex>66</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_74"> <Value> <Obj> <type>0</type> <id>80</id> <name>p_0_0_3</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>264</item> </oprand_edges> <opcode>extractvalue</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="_75"> <Value> <Obj> <type>0</type> <id>81</id> <name>p_1_0_3</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>265</item> </oprand_edges> <opcode>extractvalue</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>69</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_76"> <Value> <Obj> <type>0</type> <id>82</id> <name>p_2_0_3</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>266</item> </oprand_edges> <opcode>extractvalue</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="_77"> <Value> <Obj> <type>0</type> <id>83</id> <name>tmp_42_3</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>114</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>114</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>grp_pointOnSegment_fu_141</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>10</count> <item_version>0</item_version> <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> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>5.28</m_delay> <m_topoIndex>71</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_78"> <Value> <Obj> <type>0</type> <id>84</id> <name>_ln114</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>114</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>114</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>277</item> <item>278</item> <item>279</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.46</m_delay> <m_topoIndex>72</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_79"> <Value> <Obj> <type>0</type> <id>86</id> <name>i_assign_6</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>115</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>115</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName>grp_p_hls_fptosi_float_i_fu_154</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>311</item> <item>312</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>8.58</m_delay> <m_topoIndex>73</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_80"> <Value> <Obj> <type>0</type> <id>87</id> <name>k_assign_6</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>115</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>115</second> </item> </second> </item> </inlineStackInfo> <originalName>k</originalName> <rtlName>grp_p_hls_fptosi_float_i_fu_159</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>313</item> <item>314</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>8.58</m_delay> <m_topoIndex>74</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_81"> <Value> <Obj> <type>0</type> <id>88</id> <name>shl_ln80_13</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>80</lineNumber> <contextFuncName>shiftAmount</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>115</second> </item> <item> <first> <first>src/honeybee.c</first> <second>shiftAmount</second> </first> <second>80</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>shl_ln80_13_fu_369_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>315</item> <item>316</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>75</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_82"> <Value> <Obj> <type>0</type> <id>89</id> <name>or_ln80_7</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>80</lineNumber> <contextFuncName>shiftAmount</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>115</second> </item> <item> <first> <first>src/honeybee.c</first> <second>shiftAmount</second> </first> <second>80</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>or_ln80_7_fu_375_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>317</item> <item>319</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>76</m_topoIndex> <m_clusterGroupNumber>7</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_83"> <Value> <Obj> <type>0</type> <id>90</id> <name>add_ln80_24</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>80</lineNumber> <contextFuncName>shiftAmount</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>115</second> </item> <item> <first> <first>src/honeybee.c</first> <second>shiftAmount</second> </first> <second>80</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>add_ln80_24_fu_381_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>320</item> <item>321</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.89</m_delay> <m_topoIndex>77</m_topoIndex> <m_clusterGroupNumber>7</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_84"> <Value> <Obj> <type>0</type> <id>91</id> <name>zext_ln115_3</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>115</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>115</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln115_3_fu_387_p1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>322</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>78</m_topoIndex> <m_clusterGroupNumber>8</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_85"> <Value> <Obj> <type>0</type> <id>92</id> <name>shl_ln115_3</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>115</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>115</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>shl_ln115_3_fu_391_p2</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>323</item> <item>324</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>79</m_topoIndex> <m_clusterGroupNumber>8</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_86"> <Value> <Obj> <type>0</type> <id>93</id> <name>or_ln80_8</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>80</lineNumber> <contextFuncName>shiftAmount</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>116</second> </item> <item> <first> <first>src/honeybee.c</first> <second>shiftAmount</second> </first> <second>80</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>or_ln80_8_fu_397_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>325</item> <item>326</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>80</m_topoIndex> <m_clusterGroupNumber>9</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_87"> <Value> <Obj> <type>0</type> <id>94</id> <name>add_ln80_25</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>80</lineNumber> <contextFuncName>shiftAmount</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>116</second> </item> <item> <first> <first>src/honeybee.c</first> <second>shiftAmount</second> </first> <second>80</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>add_ln80_25_fu_403_p2</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>327</item> <item>328</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.89</m_delay> <m_topoIndex>81</m_topoIndex> <m_clusterGroupNumber>9</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_88"> <Value> <Obj> <type>0</type> <id>95</id> <name>zext_ln116_3</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>116</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>116</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln116_3_fu_409_p1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>329</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>82</m_topoIndex> <m_clusterGroupNumber>8</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_89"> <Value> <Obj> <type>0</type> <id>96</id> <name>shl_ln116_3</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>116</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>116</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>shl_ln116_3_fu_413_p2</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>330</item> <item>331</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>83</m_topoIndex> <m_clusterGroupNumber>8</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_90"> <Value> <Obj> <type>0</type> <id>97</id> <name>or_ln116_6</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>116</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>116</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>or_ln116_6_fu_419_p2</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>332</item> <item>333</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>84</m_topoIndex> <m_clusterGroupNumber>8</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_91"> <Value> <Obj> <type>0</type> <id>98</id> <name>or_ln116_3</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>116</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>116</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>or_ln116_3_fu_425_p2</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>334</item> <item>335</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>2.93</m_delay> <m_topoIndex>85</m_topoIndex> <m_clusterGroupNumber>8</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_92"> <Value> <Obj> <type>0</type> <id>99</id> <name>_ln117</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>117</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>117</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>336</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.46</m_delay> <m_topoIndex>86</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_93"> <Value> <Obj> <type>0</type> <id>101</id> <name>collisions_5_3</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>116</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>116</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>306</item> <item>307</item> <item>308</item> <item>309</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="_94"> <Value> <Obj> <type>0</type> <id>102</id> <name>_ln130</name> <fileName>src/honeybee.c</fileName> <fileDirectory>..</fileDirectory> <lineNumber>130</lineNumber> <contextFuncName>checkAxis</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>checkAxis</second> </first> <second>130</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>310</item> </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>88</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </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="_95"> <Value> <Obj> <type>2</type> <id>117</id> <name>lineIntersectsPlane</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>96</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:lineIntersectsPlane&gt;</content> </item> <item class_id_reference="16" object_id="_96"> <Value> <Obj> <type>2</type> <id>125</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>1</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_97"> <Value> <Obj> <type>2</type> <id>130</id> <name>pointOnSegment</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:pointOnSegment&gt;</content> </item> <item class_id_reference="16" object_id="_98"> <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>64</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_99"> <Value> <Obj> <type>2</type> <id>156</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>1</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_100"> <Value> <Obj> <type>2</type> <id>174</id> <name>p_hls_fptosi_float_i</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>6</const_type> <content>&lt;constant:__hls_fptosi_float_i&gt;</content> </item> <item class_id_reference="16" object_id="_101"> <Value> <Obj> <type>2</type> <id>180</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>4</content> </item> <item class_id_reference="16" object_id="_102"> <Value> <Obj> <type>2</type> <id>185</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>1</content> </item> <item class_id_reference="16" object_id="_103"> <Value> <Obj> <type>2</type> <id>188</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>4294967292</content> </item> <item class_id_reference="16" object_id="_104"> <Value> <Obj> <type>2</type> <id>210</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>1</const_type> <content>2</content> </item> <item class_id_reference="16" object_id="_105"> <Value> <Obj> <type>2</type> <id>262</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>1</const_type> <content>3</content> </item> <item class_id_reference="16" object_id="_106"> <Value> <Obj> <type>2</type> <id>287</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>8</content> </item> <item class_id_reference="16" object_id="_107"> <Value> <Obj> <type>2</type> <id>318</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>12</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>9</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_108"> <Obj> <type>3</type> <id>19</id> <name>._crit_edge</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>12</count> <item_version>0</item_version> <item>7</item> <item>8</item> <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> </node_objs> </item> <item class_id_reference="18" object_id="_109"> <Obj> <type>3</type> <id>32</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>12</count> <item_version>0</item_version> <item>20</item> <item>21</item> <item>22</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> </node_objs> </item> <item class_id_reference="18" object_id="_110"> <Obj> <type>3</type> <id>40</id> <name>._crit_edge20.0</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>7</count> <item_version>0</item_version> <item>33</item> <item>34</item> <item>35</item> <item>36</item> <item>37</item> <item>38</item> <item>39</item> </node_objs> </item> <item class_id_reference="18" object_id="_111"> <Obj> <type>3</type> <id>54</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>13</count> <item_version>0</item_version> <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> </node_objs> </item> <item class_id_reference="18" object_id="_112"> <Obj> <type>3</type> <id>62</id> <name>._crit_edge20.1</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>7</count> <item_version>0</item_version> <item>55</item> <item>56</item> <item>57</item> <item>58</item> <item>59</item> <item>60</item> <item>61</item> </node_objs> </item> <item class_id_reference="18" object_id="_113"> <Obj> <type>3</type> <id>77</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>14</count> <item_version>0</item_version> <item>63</item> <item>64</item> <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> </node_objs> </item> <item class_id_reference="18" object_id="_114"> <Obj> <type>3</type> <id>85</id> <name>._crit_edge20.2</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>7</count> <item_version>0</item_version> <item>78</item> <item>79</item> <item>80</item> <item>81</item> <item>82</item> <item>83</item> <item>84</item> </node_objs> </item> <item class_id_reference="18" object_id="_115"> <Obj> <type>3</type> <id>100</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>14</count> <item_version>0</item_version> <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> </node_objs> </item> <item class_id_reference="18" object_id="_116"> <Obj> <type>3</type> <id>103</id> <name>._crit_edge20.3</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>101</item> <item>102</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>225</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_117"> <id>106</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>7</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_118"> <id>108</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>8</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_119"> <id>110</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>9</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_120"> <id>112</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>10</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_121"> <id>114</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>11</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_122"> <id>116</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>12</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_123"> <id>118</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>13</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_124"> <id>119</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>13</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_125"> <id>120</id> <edge_type>1</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="_126"> <id>121</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>13</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_127"> <id>122</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="_128"> <id>123</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>13</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_129"> <id>124</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>13</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_130"> <id>126</id> <edge_type>1</edge_type> <source_obj>125</source_obj> <sink_obj>13</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_131"> <id>127</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>14</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_132"> <id>128</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>15</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_133"> <id>129</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>16</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_134"> <id>131</id> <edge_type>1</edge_type> <source_obj>130</source_obj> <sink_obj>17</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_135"> <id>132</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>17</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_136"> <id>133</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>17</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_137"> <id>134</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="_138"> <id>135</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>17</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_139"> <id>136</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>17</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_140"> <id>137</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>17</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_141"> <id>138</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="_142"> <id>139</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>17</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_143"> <id>140</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>17</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_144"> <id>141</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>18</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_145"> <id>142</id> <edge_type>2</edge_type> <source_obj>40</source_obj> <sink_obj>18</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_146"> <id>143</id> <edge_type>2</edge_type> <source_obj>32</source_obj> <sink_obj>18</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_147"> <id>144</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_148"> <id>145</id> <edge_type>2</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="_149"> <id>147</id> <edge_type>1</edge_type> <source_obj>146</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_150"> <id>148</id> <edge_type>2</edge_type> <source_obj>19</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_151"> <id>149</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_152"> <id>150</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_153"> <id>151</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_154"> <id>152</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_155"> <id>153</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_156"> <id>154</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_157"> <id>155</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_158"> <id>157</id> <edge_type>1</edge_type> <source_obj>156</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_159"> <id>158</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="_160"> <id>159</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_161"> <id>160</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_162"> <id>161</id> <edge_type>1</edge_type> <source_obj>130</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_163"> <id>162</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_164"> <id>163</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="_165"> <id>164</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_166"> <id>165</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_167"> <id>166</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_168"> <id>167</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_169"> <id>168</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_170"> <id>169</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_171"> <id>170</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_172"> <id>171</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_173"> <id>172</id> <edge_type>2</edge_type> <source_obj>62</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_174"> <id>173</id> <edge_type>2</edge_type> <source_obj>54</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_175"> <id>175</id> <edge_type>1</edge_type> <source_obj>174</source_obj> <sink_obj>20</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_176"> <id>176</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>20</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_177"> <id>177</id> <edge_type>1</edge_type> <source_obj>174</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_178"> <id>178</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_179"> <id>179</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_180"> <id>181</id> <edge_type>1</edge_type> <source_obj>180</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_181"> <id>182</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_182"> <id>183</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="_183"> <id>184</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_184"> <id>186</id> <edge_type>1</edge_type> <source_obj>185</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_185"> <id>187</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="_186"> <id>189</id> <edge_type>1</edge_type> <source_obj>188</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_187"> <id>190</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_188"> <id>191</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_189"> <id>192</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_190"> <id>193</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_191"> <id>194</id> <edge_type>1</edge_type> <source_obj>185</source_obj> <sink_obj>29</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_192"> <id>195</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>29</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_193"> <id>196</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_194"> <id>197</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_195"> <id>198</id> <edge_type>2</edge_type> <source_obj>40</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_196"> <id>199</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_197"> <id>200</id> <edge_type>2</edge_type> <source_obj>54</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_198"> <id>201</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_199"> <id>202</id> <edge_type>2</edge_type> <source_obj>40</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_200"> <id>203</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_201"> <id>204</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_202"> <id>205</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_203"> <id>206</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_204"> <id>207</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_205"> <id>208</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_206"> <id>209</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_207"> <id>211</id> <edge_type>1</edge_type> <source_obj>210</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_208"> <id>212</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_209"> <id>213</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_210"> <id>214</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_211"> <id>215</id> <edge_type>1</edge_type> <source_obj>130</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_212"> <id>216</id> <edge_type>1</edge_type> <source_obj>57</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_213"> <id>217</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="_214"> <id>218</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_215"> <id>219</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_216"> <id>220</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_217"> <id>221</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_218"> <id>222</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_219"> <id>223</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_220"> <id>224</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_221"> <id>225</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="_222"> <id>226</id> <edge_type>2</edge_type> <source_obj>85</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_223"> <id>227</id> <edge_type>2</edge_type> <source_obj>77</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_224"> <id>228</id> <edge_type>1</edge_type> <source_obj>174</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_225"> <id>229</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_226"> <id>230</id> <edge_type>1</edge_type> <source_obj>174</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_227"> <id>231</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_228"> <id>232</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_229"> <id>233</id> <edge_type>1</edge_type> <source_obj>180</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_230"> <id>234</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="_231"> <id>235</id> <edge_type>1</edge_type> <source_obj>180</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_232"> <id>236</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>45</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_233"> <id>237</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>45</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_234"> <id>238</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>46</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_235"> <id>239</id> <edge_type>1</edge_type> <source_obj>185</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_236"> <id>240</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_237"> <id>241</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_238"> <id>242</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_239"> <id>243</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="_240"> <id>244</id> <edge_type>1</edge_type> <source_obj>185</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_241"> <id>245</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="_242"> <id>246</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_243"> <id>247</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_244"> <id>248</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="_245"> <id>249</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_246"> <id>250</id> <edge_type>2</edge_type> <source_obj>62</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_247"> <id>251</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>78</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_248"> <id>252</id> <edge_type>2</edge_type> <source_obj>77</source_obj> <sink_obj>78</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_249"> <id>253</id> <edge_type>1</edge_type> <source_obj>55</source_obj> <sink_obj>78</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_250"> <id>254</id> <edge_type>2</edge_type> <source_obj>62</source_obj> <sink_obj>78</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_251"> <id>255</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_252"> <id>256</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_253"> <id>257</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_254"> <id>258</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_255"> <id>259</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_256"> <id>260</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_257"> <id>261</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_258"> <id>263</id> <edge_type>1</edge_type> <source_obj>262</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_259"> <id>264</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="_260"> <id>265</id> <edge_type>1</edge_type> <source_obj>79</source_obj> <sink_obj>81</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_261"> <id>266</id> <edge_type>1</edge_type> <source_obj>79</source_obj> <sink_obj>82</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_262"> <id>267</id> <edge_type>1</edge_type> <source_obj>130</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_263"> <id>268</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_264"> <id>269</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="_265"> <id>270</id> <edge_type>1</edge_type> <source_obj>81</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_266"> <id>271</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_267"> <id>272</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_268"> <id>273</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_269"> <id>274</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_270"> <id>275</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_271"> <id>276</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_272"> <id>277</id> <edge_type>1</edge_type> <source_obj>83</source_obj> <sink_obj>84</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_273"> <id>278</id> <edge_type>2</edge_type> <source_obj>103</source_obj> <sink_obj>84</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_274"> <id>279</id> <edge_type>2</edge_type> <source_obj>100</source_obj> <sink_obj>84</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_275"> <id>280</id> <edge_type>1</edge_type> <source_obj>174</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_276"> <id>281</id> <edge_type>1</edge_type> <source_obj>57</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_277"> <id>282</id> <edge_type>1</edge_type> <source_obj>174</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_278"> <id>283</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_279"> <id>284</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>65</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_280"> <id>285</id> <edge_type>1</edge_type> <source_obj>180</source_obj> <sink_obj>65</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_281"> <id>286</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="_282"> <id>288</id> <edge_type>1</edge_type> <source_obj>287</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_283"> <id>289</id> <edge_type>1</edge_type> <source_obj>66</source_obj> <sink_obj>67</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_284"> <id>290</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>67</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_285"> <id>291</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="_286"> <id>292</id> <edge_type>1</edge_type> <source_obj>185</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_287"> <id>293</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="_288"> <id>294</id> <edge_type>1</edge_type> <source_obj>65</source_obj> <sink_obj>70</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_289"> <id>295</id> <edge_type>1</edge_type> <source_obj>180</source_obj> <sink_obj>70</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_290"> <id>296</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="_291"> <id>297</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>71</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_292"> <id>298</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="_293"> <id>299</id> <edge_type>1</edge_type> <source_obj>185</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_294"> <id>300</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_295"> <id>301</id> <edge_type>1</edge_type> <source_obj>55</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_296"> <id>302</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="_297"> <id>303</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="_298"> <id>304</id> <edge_type>1</edge_type> <source_obj>69</source_obj> <sink_obj>75</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_299"> <id>305</id> <edge_type>2</edge_type> <source_obj>85</source_obj> <sink_obj>76</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_300"> <id>306</id> <edge_type>1</edge_type> <source_obj>98</source_obj> <sink_obj>101</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_301"> <id>307</id> <edge_type>2</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="_302"> <id>308</id> <edge_type>1</edge_type> <source_obj>78</source_obj> <sink_obj>101</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_303"> <id>309</id> <edge_type>2</edge_type> <source_obj>85</source_obj> <sink_obj>101</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_304"> <id>310</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="_305"> <id>311</id> <edge_type>1</edge_type> <source_obj>174</source_obj> <sink_obj>86</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_306"> <id>312</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="_307"> <id>313</id> <edge_type>1</edge_type> <source_obj>174</source_obj> <sink_obj>87</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_308"> <id>314</id> <edge_type>1</edge_type> <source_obj>81</source_obj> <sink_obj>87</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_309"> <id>315</id> <edge_type>1</edge_type> <source_obj>87</source_obj> <sink_obj>88</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_310"> <id>316</id> <edge_type>1</edge_type> <source_obj>180</source_obj> <sink_obj>88</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_311"> <id>317</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="_312"> <id>319</id> <edge_type>1</edge_type> <source_obj>318</source_obj> <sink_obj>89</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_313"> <id>320</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="_314"> <id>321</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_315"> <id>322</id> <edge_type>1</edge_type> <source_obj>90</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_316"> <id>323</id> <edge_type>1</edge_type> <source_obj>185</source_obj> <sink_obj>92</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_317"> <id>324</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="_318"> <id>325</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>93</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_319"> <id>326</id> <edge_type>1</edge_type> <source_obj>287</source_obj> <sink_obj>93</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_320"> <id>327</id> <edge_type>1</edge_type> <source_obj>93</source_obj> <sink_obj>94</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_321"> <id>328</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="_322"> <id>329</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="_323"> <id>330</id> <edge_type>1</edge_type> <source_obj>185</source_obj> <sink_obj>96</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_324"> <id>331</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="_325"> <id>332</id> <edge_type>1</edge_type> <source_obj>78</source_obj> <sink_obj>97</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_326"> <id>333</id> <edge_type>1</edge_type> <source_obj>96</source_obj> <sink_obj>97</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_327"> <id>334</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="_328"> <id>335</id> <edge_type>1</edge_type> <source_obj>92</source_obj> <sink_obj>98</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_329"> <id>336</id> <edge_type>2</edge_type> <source_obj>103</source_obj> <sink_obj>99</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_330"> <id>337</id> <edge_type>2</edge_type> <source_obj>19</source_obj> <sink_obj>32</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_331"> <id>338</id> <edge_type>2</edge_type> <source_obj>19</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_332"> <id>339</id> <edge_type>2</edge_type> <source_obj>32</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_333"> <id>340</id> <edge_type>2</edge_type> <source_obj>40</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_334"> <id>341</id> <edge_type>2</edge_type> <source_obj>40</source_obj> <sink_obj>62</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_335"> <id>342</id> <edge_type>2</edge_type> <source_obj>54</source_obj> <sink_obj>62</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_336"> <id>343</id> <edge_type>2</edge_type> <source_obj>62</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_337"> <id>344</id> <edge_type>2</edge_type> <source_obj>62</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_338"> <id>345</id> <edge_type>2</edge_type> <source_obj>77</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_339"> <id>346</id> <edge_type>2</edge_type> <source_obj>85</source_obj> <sink_obj>100</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_340"> <id>347</id> <edge_type>2</edge_type> <source_obj>85</source_obj> <sink_obj>103</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_341"> <id>348</id> <edge_type>2</edge_type> <source_obj>100</source_obj> <sink_obj>103</sink_obj> <is_back_edge>0</is_back_edge> </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="_342"> <mId>1</mId> <mTag>checkAxis.0</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>9</count> <item_version>0</item_version> <item>19</item> <item>32</item> <item>40</item> <item>54</item> <item>62</item> <item>77</item> <item>85</item> <item>100</item> <item>103</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>204</mMinLatency> <mMaxLatency>204</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> </cdfg_regions> <fsm class_id="24" tracking_level="1" version="0" object_id="_343"> <states class_id="25" tracking_level="0" version="0"> <count>17</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_344"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>7</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_345"> <id>7</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_346"> <id>8</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_347"> <id>9</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_348"> <id>10</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_349"> <id>11</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_350"> <id>12</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_351"> <id>13</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_352"> <id>2</id> <operations> <count>4</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_353"> <id>13</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_354"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_355"> <id>15</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_356"> <id>16</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_357"> <id>3</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_358"> <id>17</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_359"> <id>4</id> <operations> <count>4</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_360"> <id>17</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_361"> <id>18</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_362"> <id>20</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_363"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_364"> <id>5</id> <operations> <count>11</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_365"> <id>22</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_366"> <id>23</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_367"> <id>24</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_368"> <id>25</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_369"> <id>26</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_370"> <id>27</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_371"> <id>28</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_372"> <id>29</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_373"> <id>30</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_374"> <id>31</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_375"> <id>34</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_376"> <id>6</id> <operations> <count>4</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_377"> <id>34</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_378"> <id>35</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_379"> <id>36</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_380"> <id>37</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_381"> <id>7</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_382"> <id>38</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_383"> <id>8</id> <operations> <count>5</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_384"> <id>33</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_385"> <id>38</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_386"> <id>39</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_387"> <id>41</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_388"> <id>42</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_389"> <id>9</id> <operations> <count>12</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_390"> <id>43</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_391"> <id>44</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_392"> <id>45</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_393"> <id>46</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_394"> <id>47</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_395"> <id>48</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_396"> <id>49</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_397"> <id>50</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_398"> <id>51</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_399"> <id>52</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_400"> <id>53</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_401"> <id>56</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_402"> <id>10</id> <operations> <count>5</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_403"> <id>55</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_404"> <id>56</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_405"> <id>57</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_406"> <id>58</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_407"> <id>59</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_408"> <id>11</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_409"> <id>60</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_410"> <id>12</id> <operations> <count>4</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_411"> <id>60</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_412"> <id>61</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_413"> <id>63</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_414"> <id>64</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_415"> <id>13</id> <operations> <count>13</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_416"> <id>65</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_417"> <id>66</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_418"> <id>67</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_419"> <id>68</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_420"> <id>69</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_421"> <id>70</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_422"> <id>71</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_423"> <id>72</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_424"> <id>73</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_425"> <id>74</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_426"> <id>75</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_427"> <id>76</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_428"> <id>79</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_429"> <id>14</id> <operations> <count>5</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_430"> <id>78</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_431"> <id>79</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_432"> <id>80</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_433"> <id>81</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_434"> <id>82</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_435"> <id>15</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_436"> <id>83</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_437"> <id>16</id> <operations> <count>4</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_438"> <id>83</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_439"> <id>84</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_440"> <id>86</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_441"> <id>87</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_442"> <id>17</id> <operations> <count>14</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_443"> <id>88</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_444"> <id>89</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_445"> <id>90</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_446"> <id>91</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_447"> <id>92</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_448"> <id>93</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_449"> <id>94</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_450"> <id>95</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_451"> <id>96</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_452"> <id>97</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_453"> <id>98</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_454"> <id>99</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_455"> <id>101</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_456"> <id>102</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>16</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_457"> <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="_458"> <inState>2</inState> <outState>3</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="_459"> <inState>3</inState> <outState>4</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="_460"> <inState>4</inState> <outState>5</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="_461"> <inState>5</inState> <outState>6</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="_462"> <inState>6</inState> <outState>7</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="_463"> <inState>7</inState> <outState>8</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="_464"> <inState>8</inState> <outState>9</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="_465"> <inState>9</inState> <outState>10</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="_466"> <inState>10</inState> <outState>11</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="_467"> <inState>11</inState> <outState>12</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="_468"> <inState>12</inState> <outState>13</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="_469"> <inState>13</inState> <outState>14</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="_470"> <inState>14</inState> <outState>15</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="_471"> <inState>15</inState> <outState>16</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="_472"> <inState>16</inState> <outState>17</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> </transitions> </fsm> <res class_id="34" tracking_level="1" version="0" object_id="_473"> <dp_component_resource class_id="35" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="36" tracking_level="0" version="0"> <first>grp_lineIntersectsPlane_fu_120 (lineIntersectsPlane)</first> <second class_id="37" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="38" tracking_level="0" version="0"> <first>DSP48E</first> <second>17</second> </item> <item> <first>FF</first> <second>2348</second> </item> <item> <first>LUT</first> <second>3666</second> </item> </second> </item> <item> <first>grp_p_hls_fptosi_float_i_fu_154 (p_hls_fptosi_float_i)</first> <second> <count>2</count> <item_version>0</item_version> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>431</second> </item> </second> </item> <item> <first>grp_p_hls_fptosi_float_i_fu_159 (p_hls_fptosi_float_i)</first> <second> <count>2</count> <item_version>0</item_version> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>431</second> </item> </second> </item> <item> <first>grp_pointOnSegment_fu_141 (pointOnSegment)</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>DSP48E</first> <second>0</second> </item> <item> <first>FF</first> <second>608</second> </item> <item> <first>LUT</first> <second>1930</second> </item> </second> </item> </dp_component_resource> <dp_expression_resource> <count>29</count> <item_version>0</item_version> <item> <first>add_ln80_18_fu_223_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>4</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>32</second> </item> </second> </item> <item> <first>add_ln80_19_fu_229_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>32</second> </item> </second> </item> <item> <first>add_ln80_20_fu_263_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>32</second> </item> </second> </item> <item> <first>add_ln80_21_fu_279_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>32</second> </item> </second> </item> <item> <first>add_ln80_22_fu_319_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>32</second> </item> </second> </item> <item> <first>add_ln80_23_fu_341_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>32</second> </item> </second> </item> <item> <first>add_ln80_24_fu_381_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>32</second> </item> </second> </item> <item> <first>add_ln80_25_fu_403_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>32</second> </item> </second> </item> <item> <first>add_ln80_fu_207_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>32</second> </item> </second> </item> <item> <first>or_ln116_1_fu_301_p2 ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>64</second> </item> <item> <first>(1P1)</first> <second>64</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>64</second> </item> </second> </item> <item> <first>or_ln116_2_fu_363_p2 ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>64</second> </item> <item> <first>(1P1)</first> <second>64</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>64</second> </item> </second> </item> <item> <first>or_ln116_3_fu_425_p2 ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>64</second> </item> <item> <first>(1P1)</first> <second>64</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>64</second> </item> </second> </item> <item> <first>or_ln116_4_fu_295_p2 ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>64</second> </item> <item> <first>(1P1)</first> <second>64</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>64</second> </item> </second> </item> <item> <first>or_ln116_5_fu_357_p2 ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>64</second> </item> <item> <first>(1P1)</first> <second>64</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>64</second> </item> </second> </item> <item> <first>or_ln116_6_fu_419_p2 ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>64</second> </item> <item> <first>(1P1)</first> <second>64</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>64</second> </item> </second> </item> <item> <first>or_ln116_fu_245_p2 ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>64</second> </item> <item> <first>(1P1)</first> <second>64</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>64</second> </item> </second> </item> <item> <first>or_ln80_5_fu_313_p2 ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>4</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>32</second> </item> </second> </item> <item> <first>or_ln80_6_fu_335_p2 ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>3</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>32</second> </item> </second> </item> <item> <first>or_ln80_7_fu_375_p2 ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>4</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>32</second> </item> </second> </item> <item> <first>or_ln80_8_fu_397_p2 ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>4</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>32</second> </item> </second> </item> <item> <first>or_ln80_fu_257_p2 ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>3</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>32</second> </item> </second> </item> <item> <first>shl_ln115_1_fu_273_p2 ( shl ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>64</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>182</second> </item> </second> </item> <item> <first>shl_ln115_2_fu_329_p2 ( shl ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>64</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>182</second> </item> </second> </item> <item> <first>shl_ln115_3_fu_391_p2 ( shl ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>64</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>182</second> </item> </second> </item> <item> <first>shl_ln115_fu_217_p2 ( shl ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>64</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>182</second> </item> </second> </item> <item> <first>shl_ln116_1_fu_289_p2 ( shl ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>64</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>182</second> </item> </second> </item> <item> <first>shl_ln116_2_fu_351_p2 ( shl ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>64</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>182</second> </item> </second> </item> <item> <first>shl_ln116_3_fu_413_p2 ( shl ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>64</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>182</second> </item> </second> </item> <item> <first>shl_ln116_fu_239_p2 ( shl ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>64</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>182</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>8</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>18</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>18</second> </item> <item> <first>LUT</first> <second>8</second> </item> </second> </item> <item> <first>ap_phi_mux_collisions_5_3_phi_fu_113_p4</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>64</second> </item> <item> <first>(2Count)</first> <second>128</second> </item> <item> <first>LUT</first> <second>3</second> </item> </second> </item> <item> <first>ap_return</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>64</second> </item> <item> <first>(2Count)</first> <second>128</second> </item> <item> <first>LUT</first> <second>3</second> </item> </second> </item> <item> <first>collisions_5_0_reg_76</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>64</second> </item> <item> <first>(2Count)</first> <second>128</second> </item> <item> <first>LUT</first> <second>3</second> </item> </second> </item> <item> <first>collisions_5_1_reg_88</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>64</second> </item> <item> <first>(2Count)</first> <second>128</second> </item> <item> <first>LUT</first> <second>3</second> </item> </second> </item> <item> <first>collisions_5_2_reg_99</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>64</second> </item> <item> <first>(2Count)</first> <second>128</second> </item> <item> <first>LUT</first> <second>3</second> </item> </second> </item> <item> <first>collisions_5_3_reg_110</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>64</second> </item> <item> <first>(2Count)</first> <second>128</second> </item> <item> <first>LUT</first> <second>3</second> </item> </second> </item> <item> <first>grp_lineIntersectsPlane_fu_120_plane</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>5</second> </item> <item> <first>(1Bits)</first> <second>32</second> </item> <item> <first>(2Count)</first> <second>160</second> </item> <item> <first>LUT</first> <second>4</second> </item> </second> </item> </dp_multiplexer_resource> <dp_register_resource> <count>17</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>17</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>17</second> </item> </second> </item> <item> <first>ap_return_preg</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>64</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>64</second> </item> </second> </item> <item> <first>collisions_5_0_reg_76</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>64</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>64</second> </item> </second> </item> <item> <first>collisions_5_1_reg_88</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>64</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>64</second> </item> </second> </item> <item> <first>collisions_5_2_reg_99</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>64</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>64</second> </item> </second> </item> <item> <first>collisions_5_3_reg_110</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>64</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>64</second> </item> </second> </item> <item> <first>grp_lineIntersectsPlane_fu_120_ap_start_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>grp_pointOnSegment_fu_141_ap_start_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>reg_176</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>reg_182</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>reg_188</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>reg_193</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>reg_197</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>tmp_42_1_reg_477</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_42_2_reg_486</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_42_3_reg_495</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_s_reg_468</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> </dp_register_resource> <dp_dsp_resource> <count>4</count> <item_version>0</item_version> <item> <first>grp_lineIntersectsPlane_fu_120</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>grp_p_hls_fptosi_float_i_fu_154</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>grp_p_hls_fptosi_float_i_fu_159</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>grp_pointOnSegment_fu_141</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> </dp_dsp_resource> <dp_component_map 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>grp_lineIntersectsPlane_fu_120 (lineIntersectsPlane)</first> <second> <count>4</count> <item_version>0</item_version> <item>13</item> <item>34</item> <item>56</item> <item>79</item> </second> </item> <item> <first>grp_p_hls_fptosi_float_i_fu_154 (p_hls_fptosi_float_i)</first> <second> <count>4</count> <item_version>0</item_version> <item>20</item> <item>41</item> <item>63</item> <item>86</item> </second> </item> <item> <first>grp_p_hls_fptosi_float_i_fu_159 (p_hls_fptosi_float_i)</first> <second> <count>4</count> <item_version>0</item_version> <item>21</item> <item>42</item> <item>64</item> <item>87</item> </second> </item> <item> <first>grp_pointOnSegment_fu_141 (pointOnSegment)</first> <second> <count>4</count> <item_version>0</item_version> <item>17</item> <item>38</item> <item>60</item> <item>83</item> </second> </item> </dp_component_map> <dp_expression_map> <count>29</count> <item_version>0</item_version> <item> <first>add_ln80_18_fu_223_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>add_ln80_19_fu_229_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>add_ln80_20_fu_263_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>add_ln80_21_fu_279_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>add_ln80_22_fu_319_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>add_ln80_23_fu_341_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>add_ln80_24_fu_381_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>90</item> </second> </item> <item> <first>add_ln80_25_fu_403_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>94</item> </second> </item> <item> <first>add_ln80_fu_207_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>or_ln116_1_fu_301_p2 ( or ) </first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>or_ln116_2_fu_363_p2 ( or ) </first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>or_ln116_3_fu_425_p2 ( or ) </first> <second> <count>1</count> <item_version>0</item_version> <item>98</item> </second> </item> <item> <first>or_ln116_4_fu_295_p2 ( or ) </first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>or_ln116_5_fu_357_p2 ( or ) </first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>or_ln116_6_fu_419_p2 ( or ) </first> <second> <count>1</count> <item_version>0</item_version> <item>97</item> </second> </item> <item> <first>or_ln116_fu_245_p2 ( or ) </first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>or_ln80_5_fu_313_p2 ( or ) </first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>or_ln80_6_fu_335_p2 ( or ) </first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>or_ln80_7_fu_375_p2 ( or ) </first> <second> <count>1</count> <item_version>0</item_version> <item>89</item> </second> </item> <item> <first>or_ln80_8_fu_397_p2 ( or ) </first> <second> <count>1</count> <item_version>0</item_version> <item>93</item> </second> </item> <item> <first>or_ln80_fu_257_p2 ( or ) </first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>shl_ln115_1_fu_273_p2 ( shl ) </first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>shl_ln115_2_fu_329_p2 ( shl ) </first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>shl_ln115_3_fu_391_p2 ( shl ) </first> <second> <count>1</count> <item_version>0</item_version> <item>92</item> </second> </item> <item> <first>shl_ln115_fu_217_p2 ( shl ) </first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>shl_ln116_1_fu_289_p2 ( shl ) </first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>shl_ln116_2_fu_351_p2 ( shl ) </first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>shl_ln116_3_fu_413_p2 ( shl ) </first> <second> <count>1</count> <item_version>0</item_version> <item>96</item> </second> </item> <item> <first>shl_ln116_fu_239_p2 ( shl ) </first> <second> <count>1</count> <item_version>0</item_version> <item>29</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="41" tracking_level="0" version="0"> <count>88</count> <item_version>0</item_version> <item class_id="42" tracking_level="0" version="0"> <first>7</first> <second class_id="43" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>8</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>9</first> <second> <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>1</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>2</first> <second>1</second> </second> </item> <item> <first>18</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>20</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>21</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>22</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>23</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>24</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>25</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>26</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>27</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>28</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>29</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>30</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>31</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>33</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>34</first> <second> <first>4</first> <second>1</second> </second> </item> <item> <first>35</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>36</first> <second> <first>5</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>6</first> <second>1</second> </second> </item> <item> <first>39</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>41</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>42</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>43</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>44</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>45</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>46</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>47</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>48</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>49</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>50</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>51</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>52</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>53</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>55</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>56</first> <second> <first>8</first> <second>1</second> </second> </item> <item> <first>57</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>58</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>59</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>60</first> <second> <first>10</first> <second>1</second> </second> </item> <item> <first>61</first> <second> <first>11</first> <second>0</second> </second> </item> <item> <first>63</first> <second> <first>11</first> <second>0</second> </second> </item> <item> <first>64</first> <second> <first>11</first> <second>0</second> </second> </item> <item> <first>65</first> <second> <first>12</first> <second>0</second> </second> </item> <item> <first>66</first> <second> <first>12</first> <second>0</second> </second> </item> <item> <first>67</first> <second> <first>12</first> <second>0</second> </second> </item> <item> <first>68</first> <second> <first>12</first> <second>0</second> </second> </item> <item> <first>69</first> <second> <first>12</first> <second>0</second> </second> </item> <item> <first>70</first> <second> <first>12</first> <second>0</second> </second> </item> <item> <first>71</first> <second> <first>12</first> <second>0</second> </second> </item> <item> <first>72</first> <second> <first>12</first> <second>0</second> </second> </item> <item> <first>73</first> <second> <first>12</first> <second>0</second> </second> </item> <item> <first>74</first> <second> <first>12</first> <second>0</second> </second> </item> <item> <first>75</first> <second> <first>12</first> <second>0</second> </second> </item> <item> <first>76</first> <second> <first>12</first> <second>0</second> </second> </item> <item> <first>78</first> <second> <first>13</first> <second>0</second> </second> </item> <item> <first>79</first> <second> <first>12</first> <second>1</second> </second> </item> <item> <first>80</first> <second> <first>13</first> <second>0</second> </second> </item> <item> <first>81</first> <second> <first>13</first> <second>0</second> </second> </item> <item> <first>82</first> <second> <first>13</first> <second>0</second> </second> </item> <item> <first>83</first> <second> <first>14</first> <second>1</second> </second> </item> <item> <first>84</first> <second> <first>15</first> <second>0</second> </second> </item> <item> <first>86</first> <second> <first>15</first> <second>0</second> </second> </item> <item> <first>87</first> <second> <first>15</first> <second>0</second> </second> </item> <item> <first>88</first> <second> <first>16</first> <second>0</second> </second> </item> <item> <first>89</first> <second> <first>16</first> <second>0</second> </second> </item> <item> <first>90</first> <second> <first>16</first> <second>0</second> </second> </item> <item> <first>91</first> <second> <first>16</first> <second>0</second> </second> </item> <item> <first>92</first> <second> <first>16</first> <second>0</second> </second> </item> <item> <first>93</first> <second> <first>16</first> <second>0</second> </second> </item> <item> <first>94</first> <second> <first>16</first> <second>0</second> </second> </item> <item> <first>95</first> <second> <first>16</first> <second>0</second> </second> </item> <item> <first>96</first> <second> <first>16</first> <second>0</second> </second> </item> <item> <first>97</first> <second> <first>16</first> <second>0</second> </second> </item> <item> <first>98</first> <second> <first>16</first> <second>0</second> </second> </item> <item> <first>99</first> <second> <first>16</first> <second>0</second> </second> </item> <item> <first>101</first> <second> <first>16</first> <second>0</second> </second> </item> <item> <first>102</first> <second> <first>16</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="44" tracking_level="0" version="0"> <count>9</count> <item_version>0</item_version> <item class_id="45" tracking_level="0" version="0"> <first>19</first> <second class_id="46" tracking_level="0" version="0"> <first>0</first> <second>3</second> </second> </item> <item> <first>32</first> <second> <first>3</first> <second>4</second> </second> </item> <item> <first>40</first> <second> <first>4</first> <second>7</second> </second> </item> <item> <first>54</first> <second> <first>7</first> <second>8</second> </second> </item> <item> <first>62</first> <second> <first>8</first> <second>11</second> </second> </item> <item> <first>77</first> <second> <first>11</first> <second>12</second> </second> </item> <item> <first>85</first> <second> <first>12</first> <second>15</second> </second> </item> <item> <first>100</first> <second> <first>15</first> <second>16</second> </second> </item> <item> <first>103</first> <second> <first>16</first> <second>16</second> </second> </item> </bblk_ent_exit> <regions class_id="47" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </regions> <dp_fu_nodes class_id="48" tracking_level="0" version="0"> <count>58</count> <item_version>0</item_version> <item class_id="49" tracking_level="0" version="0"> <first>40</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> <item> <first>46</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>52</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>58</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>64</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>70</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>80</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>91</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>102</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>113</first> <second> <count>1</count> <item_version>0</item_version> <item>101</item> </second> </item> <item> <first>120</first> <second> <count>8</count> <item_version>0</item_version> <item>13</item> <item>13</item> <item>34</item> <item>34</item> <item>56</item> <item>56</item> <item>79</item> <item>79</item> </second> </item> <item> <first>141</first> <second> <count>8</count> <item_version>0</item_version> <item>17</item> <item>17</item> <item>38</item> <item>38</item> <item>60</item> <item>60</item> <item>83</item> <item>83</item> </second> </item> <item> <first>154</first> <second> <count>4</count> <item_version>0</item_version> <item>20</item> <item>41</item> <item>63</item> <item>86</item> </second> </item> <item> <first>159</first> <second> <count>4</count> <item_version>0</item_version> <item>21</item> <item>42</item> <item>64</item> <item>87</item> </second> </item> <item> <first>164</first> <second> <count>4</count> <item_version>0</item_version> <item>14</item> <item>35</item> <item>57</item> <item>80</item> </second> </item> <item> <first>168</first> <second> <count>4</count> <item_version>0</item_version> <item>15</item> <item>36</item> <item>58</item> <item>81</item> </second> </item> <item> <first>172</first> <second> <count>4</count> <item_version>0</item_version> <item>16</item> <item>37</item> <item>59</item> <item>82</item> </second> </item> <item> <first>201</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>207</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>213</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>217</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>223</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>229</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>235</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>239</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>245</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>251</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>257</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>263</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>269</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>273</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>279</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>285</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>289</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>295</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>301</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>307</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>313</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>319</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>325</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>329</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>335</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>341</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>347</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>351</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>357</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>363</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>369</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>375</first> <second> <count>1</count> <item_version>0</item_version> <item>89</item> </second> </item> <item> <first>381</first> <second> <count>1</count> <item_version>0</item_version> <item>90</item> </second> </item> <item> <first>387</first> <second> <count>1</count> <item_version>0</item_version> <item>91</item> </second> </item> <item> <first>391</first> <second> <count>1</count> <item_version>0</item_version> <item>92</item> </second> </item> <item> <first>397</first> <second> <count>1</count> <item_version>0</item_version> <item>93</item> </second> </item> <item> <first>403</first> <second> <count>1</count> <item_version>0</item_version> <item>94</item> </second> </item> <item> <first>409</first> <second> <count>1</count> <item_version>0</item_version> <item>95</item> </second> </item> <item> <first>413</first> <second> <count>1</count> <item_version>0</item_version> <item>96</item> </second> </item> <item> <first>419</first> <second> <count>1</count> <item_version>0</item_version> <item>97</item> </second> </item> <item> <first>425</first> <second> <count>1</count> <item_version>0</item_version> <item>98</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="51" tracking_level="0" version="0"> <count>48</count> <item_version>0</item_version> <item class_id="52" tracking_level="0" version="0"> <first>add_ln80_18_fu_223</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>add_ln80_19_fu_229</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>add_ln80_20_fu_263</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>add_ln80_21_fu_279</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>add_ln80_22_fu_319</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>add_ln80_23_fu_341</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>add_ln80_24_fu_381</first> <second> <count>1</count> <item_version>0</item_version> <item>90</item> </second> </item> <item> <first>add_ln80_25_fu_403</first> <second> <count>1</count> <item_version>0</item_version> <item>94</item> </second> </item> <item> <first>add_ln80_fu_207</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>collisions_5_0_phi_fu_80</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>collisions_5_1_phi_fu_91</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>collisions_5_2_phi_fu_102</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>collisions_5_3_phi_fu_113</first> <second> <count>1</count> <item_version>0</item_version> <item>101</item> </second> </item> <item> <first>grp_fu_164</first> <second> <count>4</count> <item_version>0</item_version> <item>14</item> <item>35</item> <item>57</item> <item>80</item> </second> </item> <item> <first>grp_fu_168</first> <second> <count>4</count> <item_version>0</item_version> <item>15</item> <item>36</item> <item>58</item> <item>81</item> </second> </item> <item> <first>grp_fu_172</first> <second> <count>4</count> <item_version>0</item_version> <item>16</item> <item>37</item> <item>59</item> <item>82</item> </second> </item> <item> <first>or_ln116_1_fu_301</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>or_ln116_2_fu_363</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>or_ln116_3_fu_425</first> <second> <count>1</count> <item_version>0</item_version> <item>98</item> </second> </item> <item> <first>or_ln116_4_fu_295</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>or_ln116_5_fu_357</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>or_ln116_6_fu_419</first> <second> <count>1</count> <item_version>0</item_version> <item>97</item> </second> </item> <item> <first>or_ln116_fu_245</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>or_ln80_5_fu_313</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>or_ln80_6_fu_335</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>or_ln80_7_fu_375</first> <second> <count>1</count> <item_version>0</item_version> <item>89</item> </second> </item> <item> <first>or_ln80_8_fu_397</first> <second> <count>1</count> <item_version>0</item_version> <item>93</item> </second> </item> <item> <first>or_ln80_fu_257</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>shl_ln115_1_fu_273</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>shl_ln115_2_fu_329</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>shl_ln115_3_fu_391</first> <second> <count>1</count> <item_version>0</item_version> <item>92</item> </second> </item> <item> <first>shl_ln115_fu_217</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>shl_ln116_1_fu_289</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>shl_ln116_2_fu_351</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>shl_ln116_3_fu_413</first> <second> <count>1</count> <item_version>0</item_version> <item>96</item> </second> </item> <item> <first>shl_ln116_fu_239</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>shl_ln80_11_fu_251</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>shl_ln80_12_fu_307</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>shl_ln80_13_fu_369</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>shl_ln80_fu_201</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>zext_ln115_1_fu_269</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>zext_ln115_2_fu_325</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>zext_ln115_3_fu_387</first> <second> <count>1</count> <item_version>0</item_version> <item>91</item> </second> </item> <item> <first>zext_ln115_fu_213</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>zext_ln116_1_fu_285</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>zext_ln116_2_fu_347</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>zext_ln116_3_fu_409</first> <second> <count>1</count> <item_version>0</item_version> <item>95</item> </second> </item> <item> <first>zext_ln116_fu_235</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>4</count> <item_version>0</item_version> <item> <first>grp_lineIntersectsPlane_fu_120</first> <second> <count>8</count> <item_version>0</item_version> <item>13</item> <item>13</item> <item>34</item> <item>34</item> <item>56</item> <item>56</item> <item>79</item> <item>79</item> </second> </item> <item> <first>grp_p_hls_fptosi_float_i_fu_154</first> <second> <count>4</count> <item_version>0</item_version> <item>20</item> <item>41</item> <item>63</item> <item>86</item> </second> </item> <item> <first>grp_p_hls_fptosi_float_i_fu_159</first> <second> <count>4</count> <item_version>0</item_version> <item>21</item> <item>42</item> <item>64</item> <item>87</item> </second> </item> <item> <first>grp_pointOnSegment_fu_141</first> <second> <count>8</count> <item_version>0</item_version> <item>17</item> <item>17</item> <item>38</item> <item>38</item> <item>60</item> <item>60</item> <item>83</item> <item>83</item> </second> </item> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>6</count> <item_version>0</item_version> <item> <first>edge_p1_x_read_read_fu_70</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>edge_p1_y_read_read_fu_64</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>edge_p1_z_read_read_fu_58</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>edge_p2_x_read_read_fu_52</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>edge_p2_y_read_read_fu_46</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>edge_p2_z_read_read_fu_40</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> </dp_fu_nodes_io> <return_ports> <count>1</count> <item_version>0</item_version> <item> <first>ap_return</first> <second> <count>1</count> <item_version>0</item_version> <item>102</item> </second> </item> </return_ports> <dp_mem_port_nodes class_id="53" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>22</count> <item_version>0</item_version> <item> <first>76</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>88</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>99</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>110</first> <second> <count>1</count> <item_version>0</item_version> <item>101</item> </second> </item> <item> <first>176</first> <second> <count>4</count> <item_version>0</item_version> <item>14</item> <item>35</item> <item>57</item> <item>80</item> </second> </item> <item> <first>182</first> <second> <count>4</count> <item_version>0</item_version> <item>15</item> <item>36</item> <item>58</item> <item>81</item> </second> </item> <item> <first>188</first> <second> <count>4</count> <item_version>0</item_version> <item>16</item> <item>37</item> <item>59</item> <item>82</item> </second> </item> <item> <first>193</first> <second> <count>4</count> <item_version>0</item_version> <item>20</item> <item>41</item> <item>63</item> <item>86</item> </second> </item> <item> <first>197</first> <second> <count>4</count> <item_version>0</item_version> <item>21</item> <item>42</item> <item>64</item> <item>87</item> </second> </item> <item> <first>432</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> <item> <first>438</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>444</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>450</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>456</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>462</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>468</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>472</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>477</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>481</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>486</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>490</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>495</first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>22</count> <item_version>0</item_version> <item> <first>collisions_5_0_reg_76</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>collisions_5_1_reg_88</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>collisions_5_2_reg_99</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>collisions_5_3_reg_110</first> <second> <count>1</count> <item_version>0</item_version> <item>101</item> </second> </item> <item> <first>edge_p1_x_read_reg_462</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>edge_p1_y_read_reg_456</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>edge_p1_z_read_reg_450</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>edge_p2_x_read_reg_444</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> <item> <first>edge_p2_y_read_reg_438</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>edge_p2_z_read_reg_432</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> <item> <first>or_ln116_1_reg_481</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>or_ln116_2_reg_490</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>or_ln116_reg_472</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>reg_176</first> <second> <count>4</count> <item_version>0</item_version> <item>14</item> <item>35</item> <item>57</item> <item>80</item> </second> </item> <item> <first>reg_182</first> <second> <count>4</count> <item_version>0</item_version> <item>15</item> <item>36</item> <item>58</item> <item>81</item> </second> </item> <item> <first>reg_188</first> <second> <count>4</count> <item_version>0</item_version> <item>16</item> <item>37</item> <item>59</item> <item>82</item> </second> </item> <item> <first>reg_193</first> <second> <count>4</count> <item_version>0</item_version> <item>20</item> <item>41</item> <item>63</item> <item>86</item> </second> </item> <item> <first>reg_197</first> <second> <count>4</count> <item_version>0</item_version> <item>21</item> <item>42</item> <item>64</item> <item>87</item> </second> </item> <item> <first>tmp_42_1_reg_477</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>tmp_42_2_reg_486</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>tmp_42_3_reg_495</first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> <item> <first>tmp_s_reg_468</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>4</count> <item_version>0</item_version> <item> <first>76</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>88</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>99</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>110</first> <second> <count>1</count> <item_version>0</item_version> <item>101</item> </second> </item> </dp_reg_phi> <dp_regname_phi> <count>4</count> <item_version>0</item_version> <item> <first>collisions_5_0_reg_76</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>collisions_5_1_reg_88</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>collisions_5_2_reg_99</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>collisions_5_3_reg_110</first> <second> <count>1</count> <item_version>0</item_version> <item>101</item> </second> </item> </dp_regname_phi> <dp_port_io_nodes class_id="54" tracking_level="0" version="0"> <count>6</count> <item_version>0</item_version> <item class_id="55" tracking_level="0" version="0"> <first>edge_p1_x</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> </second> </item> <item> <first>edge_p1_y</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> </second> </item> <item> <first>edge_p1_z</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> </second> </item> <item> <first>edge_p2_x</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>9</item> </second> </item> </second> </item> <item> <first>edge_p2_y</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> </second> </item> <item> <first>edge_p2_z</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="56" 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>
with Ada.Text_IO; use Ada.Text_IO; with GNAT.OS_Lib; with Sf.Window.Event; use Sf.Window.Event; with Sf.Graphics.RenderWindow; use Sf.Graphics.RenderWindow; with Sf.Window.Keyboard; use Sf.Window.Keyboard; package body PyGamer.Controls is type Buttons_State is array (Buttons) of Boolean; Current_Pressed : Buttons_State := (others => False); Previous_Pressed : Buttons_State := (others => False); ---------- -- Scan -- ---------- procedure Scan is begin Previous_Pressed := Current_Pressed; Current_Pressed (A) := SFML_Pressed (A); Current_Pressed (B) := SFML_Pressed (B); Current_Pressed (Up) := SFML_Pressed (Up); Current_Pressed (Down) := SFML_Pressed (Down); Current_Pressed (Left) := SFML_Pressed (Left); Current_Pressed (Right) := SFML_Pressed (Right); Current_Pressed (Sel) := SFML_Pressed (Sel); Current_Pressed (Start) := SFML_Pressed (Start); end Scan; ------------- -- Pressed -- ------------- function Pressed (Button : Buttons) return Boolean is (Current_Pressed (Button)); ------------ -- Rising -- ------------ function Rising (Button : Buttons) return Boolean is (Previous_Pressed (Button) and then not Current_Pressed (Button)); ------------- -- Falling -- ------------- function Falling (Button : Buttons) return Boolean is (not Previous_Pressed (Button) and then Current_Pressed (Button)); ---------------- -- Joystick_X -- ---------------- function Joystick_X return Joystick_Range is (if Pressed (Left) then Joystick_Range'First elsif Pressed (Right) then Joystick_Range'Last else 0); ---------------- -- Joystick_Y -- ---------------- function Joystick_Y return Joystick_Range is (if Pressed (Up) then Joystick_Range'First elsif Pressed (Down) then Joystick_Range'Last else 0); end PyGamer.Controls;
with STM32_SVD; use STM32_SVD; with STM32_SVD.RCC; use STM32_SVD.RCC; with STM32GD.Startup; with STM32GD.Vectors; package body STM32GD.Board is procedure Init is begin Clocks.Init; RCC_Periph.AHBENR.IOPAEN := 1; RCC_Periph.AHBENR.IOPBEN := 1; RCC_Periph.AHBENR.IOPCEN := 1; RCC_Periph.APB2ENR.SPI1EN := 1; RCC_Periph.APB1ENR.USART2EN := 1; RCC_Periph.APB2ENR.SYSCFGEN := 1; LED.Init; TX.Init; RX.Init; P1_IN.Init; P2_IN.Init; SCLK.Init; MOSI.Init; MISO.Init; CSN.Init; CSN.Set; SPI.Init; USART.Init; RTC.Init; STM32GD.Clear_Event; end Init; end STM32GD.Board;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Localization, Internationalization, Globalization for Ada -- -- -- -- Tools Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2015, Vadim Godunko <vgodunko@gmail.com> -- -- 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$ ------------------------------------------------------------------------------ limited with UAFLEX.Scanners; with Parser_Tokens; with UAFLEX.Lexer_Types; package UAFLEX.Handlers is type Handler is abstract tagged limited null record; procedure Skip_Line (Self : not null access Handler; Scanner : not null access UAFLEX.Scanners.Scanner'Class; Rule : UAFLEX.Lexer_Types.Rule_Index; Token : out Parser_Tokens.Token_Kind; Skip : in out Boolean) is abstract; procedure On_Start (Self : not null access Handler; Scanner : not null access UAFLEX.Scanners.Scanner'Class; Rule : UAFLEX.Lexer_Types.Rule_Index; Token : out Parser_Tokens.Token_Kind; Skip : in out Boolean) is abstract; procedure On_Exclusive (Self : not null access Handler; Scanner : not null access UAFLEX.Scanners.Scanner'Class; Rule : UAFLEX.Lexer_Types.Rule_Index; Token : out Parser_Tokens.Token_Kind; Skip : in out Boolean) is abstract; procedure On_Name (Self : not null access Handler; Scanner : not null access UAFLEX.Scanners.Scanner'Class; Rule : UAFLEX.Lexer_Types.Rule_Index; Token : out Parser_Tokens.Token_Kind; Skip : in out Boolean) is abstract; procedure On_Section_End (Self : not null access Handler; Scanner : not null access UAFLEX.Scanners.Scanner'Class; Rule : UAFLEX.Lexer_Types.Rule_Index; Token : out Parser_Tokens.Token_Kind; Skip : in out Boolean) is abstract; procedure Skip (Self : not null access Handler; Scanner : not null access UAFLEX.Scanners.Scanner'Class; Rule : UAFLEX.Lexer_Types.Rule_Index; Token : out Parser_Tokens.Token_Kind; Skip : in out Boolean) is abstract; procedure On_Regexp (Self : not null access Handler; Scanner : not null access UAFLEX.Scanners.Scanner'Class; Rule : UAFLEX.Lexer_Types.Rule_Index; Token : out Parser_Tokens.Token_Kind; Skip : in out Boolean) is abstract; procedure End_Of_Macro (Self : not null access Handler; Scanner : not null access UAFLEX.Scanners.Scanner'Class; Rule : UAFLEX.Lexer_Types.Rule_Index; Token : out Parser_Tokens.Token_Kind; Skip : in out Boolean) is abstract; procedure End_Of_Name_List (Self : not null access Handler; Scanner : not null access UAFLEX.Scanners.Scanner'Class; Rule : UAFLEX.Lexer_Types.Rule_Index; Token : out Parser_Tokens.Token_Kind; Skip : in out Boolean) is abstract; procedure On_Name_2 (Self : not null access Handler; Scanner : not null access UAFLEX.Scanners.Scanner'Class; Rule : UAFLEX.Lexer_Types.Rule_Index; Token : out Parser_Tokens.Token_Kind; Skip : in out Boolean) is abstract; procedure On_Regexp_2 (Self : not null access Handler; Scanner : not null access UAFLEX.Scanners.Scanner'Class; Rule : UAFLEX.Lexer_Types.Rule_Index; Token : out Parser_Tokens.Token_Kind; Skip : in out Boolean) is abstract; procedure On_Section_End_2 (Self : not null access Handler; Scanner : not null access UAFLEX.Scanners.Scanner'Class; Rule : UAFLEX.Lexer_Types.Rule_Index; Token : out Parser_Tokens.Token_Kind; Skip : in out Boolean) is abstract; procedure On_Action (Self : not null access Handler; Scanner : not null access UAFLEX.Scanners.Scanner'Class; Rule : UAFLEX.Lexer_Types.Rule_Index; Token : out Parser_Tokens.Token_Kind; Skip : in out Boolean) is abstract; procedure On_End_Of_Rule (Self : not null access Handler; Scanner : not null access UAFLEX.Scanners.Scanner'Class; Rule : UAFLEX.Lexer_Types.Rule_Index; Token : out Parser_Tokens.Token_Kind; Skip : in out Boolean) is abstract; type Handler_Access is access all Handler'Class; end UAFLEX.Handlers;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Web Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2018-2020, Vadim Godunko <vgodunko@gmail.com> -- -- 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: 5871 $ $Date: 2018-09-22 11:55:27 +0200 (Sat, 22 Sep 2018) $ ------------------------------------------------------------------------------ -- This is internal package and it must not be used by applications directly. ------------------------------------------------------------------------------ with Web.UI.Widgets; package Web.UI.Applications.Internals is procedure Focus_In (Widget : Web.UI.Widgets.Widget_Access); -- Do notification about enter of focus to the widget. procedure Focus_Out (Widget : Web.UI.Widgets.Widget_Access); -- Do notification about leave of focus from the widget. end Web.UI.Applications.Internals;
procedure One (X : in out Integer) is begin X := X + 1; end One;
-- //////////////////////////////////////////////////////////// -- // -- // SFML - Simple and Fast Multimedia Library -- // Copyright (C) 2007-2009 Laurent Gomila (laurent.gom@gmail.com) -- // -- // 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. -- // -- //////////////////////////////////////////////////////////// package Sf.Window.WindowHandle is -- //////////////////////////////////////////////////////////// -- /// Define a low-level window handle type, specific to -- /// each platform -- //////////////////////////////////////////////////////////// type sfWindowHandle is null record; type sfWindowHandle_Ptr is access all sfWindowHandle; private pragma Convention (C, sfWindowHandle); pragma Convention (C, sfWindowHandle_Ptr); end Sf.Window.WindowHandle;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- A D A . I N T E R R U P T S . N A M E S -- -- -- -- S p e c -- -- -- -- Copyright (C) 1991-2017, 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/>. -- -- -- -- GNARL was developed by the GNARL team at Florida State University. -- -- Extensive contributions were provided by Ada Core Technologies, Inc. -- -- -- ------------------------------------------------------------------------------ -- This is the version for ERC32 targets of this package with System; package Ada.Interrupts.Names is -- All identifiers in this unit are implementation defined pragma Implementation_Defined; ------------------------- -- External Interrupts -- ------------------------- External_Interrupt_4 : constant Interrupt_ID := 14; External_Interrupt_4_Priority : constant System.Interrupt_Priority := System.Interrupt_Priority'First + 13; External_Interrupt_3 : constant Interrupt_ID := 11; External_Interrupt_3_Priority : constant System.Interrupt_Priority := System.Interrupt_Priority'First + 10; External_Interrupt_2 : constant Interrupt_ID := 10; External_Interrupt_2_Priority : constant System.Interrupt_Priority := System.Interrupt_Priority'First + 9; External_Interrupt_1 : constant Interrupt_ID := 3; External_Interrupt_1_Priority : constant System.Interrupt_Priority := System.Interrupt_Priority'First + 2; External_Interrupt_0 : constant Interrupt_ID := 2; External_Interrupt_0_Priority : constant System.Interrupt_Priority := System.Interrupt_Priority'First + 1; ---------------------- -- Timer Interrupts -- ---------------------- Watch_Dog_Time_Out : constant Interrupt_ID := 15; Watch_Dog_Time_Out_Priority : constant System.Interrupt_Priority := System.Interrupt_Priority'First + 14; Real_Time_Clock : constant Interrupt_ID := 13; Real_Time_Clock_Priority : constant System.Interrupt_Priority := System.Interrupt_Priority'First + 12; General_Purpose_Timer : constant Interrupt_ID := 12; General_Purpose_Timer_Priority : constant System.Interrupt_Priority := System.Interrupt_Priority'First + 11; -------------------- -- DMA Interrupts -- -------------------- DMA_Time_Out : constant Interrupt_ID := 9; DMA_Time_Out_Priority : constant System.Interrupt_Priority := System.Interrupt_Priority'First + 8; DMA_Access_Error : constant Interrupt_ID := 8; DMA_Access_Error_Priority : constant System.Interrupt_Priority := System.Interrupt_Priority'First + 7; --------------------- -- UART Interrupts -- --------------------- UART_Error : constant Interrupt_ID := 7; UART_Error_Priority : constant System.Interrupt_Priority := System.Interrupt_Priority'First + 6; UART_B_Ready : constant Interrupt_ID := 5; UART_B_Ready_Priority : constant System.Interrupt_Priority := System.Interrupt_Priority'First + 4; UART_A_Ready : constant Interrupt_ID := 4; UART_A_Ready_Priority : constant System.Interrupt_Priority := System.Interrupt_Priority'First + 3; ----------------------------- -- Miscelaneous Interrupts -- ----------------------------- Correctable_Error_In_Memory : constant Interrupt_ID := 6; Correctable_Error_In_Memory_Priority : constant System.Interrupt_Priority := System.Interrupt_Priority'First + 5; Masked_Hardware_Errors : constant Interrupt_ID := 1; Masked_Hardware_Errors_Priority : constant System.Interrupt_Priority := System.Interrupt_Priority'First; end Ada.Interrupts.Names;
-- Copyright 2008-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 Pck is procedure Increment; function Is_First return Boolean; end Pck;
with Ada.Exceptions; with ACO.Log; package body ACO.Drivers.Socket is use ACO.Log; overriding procedure Receive_Message_Blocking (This : in out CAN_Driver; Msg : out ACO.Messages.Message) is Frame : SocketCAN.Can_Frame; begin SocketCAN.Receive_Socket_Blocking (This.Socket, Frame); Msg := (CAN_Id => (True, ACO.Messages.Id_Type (Frame.Can_Id)), RTR => Frame.Rtr, Length => Frame.Dlc, Data => ACO.Messages.Data_Array (Frame.Data)); exception when E: others => Put_Line (Warning, Ada.Exceptions.Exception_Information (E)); end Receive_Message_Blocking; overriding procedure Send_Message (This : in out CAN_Driver; Msg : in ACO.Messages.Message) is Frame : SocketCAN.Can_Frame; begin Frame := (Can_Id => SocketCAN.Frame_Id_Type (ACO.Messages.CAN_Id (Msg)), Rtr => Msg.RTR, Dlc => Msg.Length, Data => SocketCAN.Frame_Data (Msg.Data)); SocketCAN.Send_Socket (This.Socket, Frame); exception when E: others => Put_Line (Warning, Ada.Exceptions.Exception_Information (E)); end Send_Message; overriding procedure Initialize (This : in out CAN_Driver) is begin This.Socket := SocketCAN.Create_Socket (SocketCAN.RAW); SocketCAN.Bind_Socket (This.Socket, CAN_If_Name); exception when E: others => Put_Line (Error, Ada.Exceptions.Exception_Information (E)); end Initialize; overriding procedure Finalize (This : in out CAN_Driver) is begin SocketCAN.Close_Socket (This.Socket); exception when E: others => Put_Line (Warning, Ada.Exceptions.Exception_Information (E)); end Finalize; overriding function Is_Message_Pending (This : CAN_Driver) return Boolean is begin return SocketCAN.Is_Frame_Pending (This.Socket); end Is_Message_Pending; overriding function Current_Time (This : CAN_Driver) return Ada.Real_Time.Time is pragma Unreferenced (This); begin return Ada.Real_Time.Clock; end Current_Time; end ACO.Drivers.Socket;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . T A S K I N G . Q U E U I N G -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2020, Free Software Foundation, Inc. -- -- -- -- 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. 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/>. -- -- -- -- GNARL was developed by the GNARL team at Florida State University. -- -- Extensive contributions were provided by Ada Core Technologies, Inc. -- -- -- ------------------------------------------------------------------------------ -- This version of the body implements queueing policy according to the policy -- specified by the pragma Queuing_Policy. When no such pragma is specified -- FIFO policy is used as default. with System.Task_Primitives.Operations; with System.Tasking.Initialization; package body System.Tasking.Queuing is use Task_Primitives.Operations; use Protected_Objects; use Protected_Objects.Entries; -- Entry Queues implemented as doubly linked list Queuing_Policy : Character; pragma Import (C, Queuing_Policy, "__gl_queuing_policy"); Priority_Queuing : constant Boolean := Queuing_Policy = 'P'; procedure Send_Program_Error (Self_ID : Task_Id; Entry_Call : Entry_Call_Link); -- Raise Program_Error in the caller of the specified entry call function Check_Queue (E : Entry_Queue) return Boolean; -- Check the validity of E. -- Return True if E is valid, raise Assert_Failure if assertions are -- enabled and False otherwise. ----------------------------- -- Broadcast_Program_Error -- ----------------------------- procedure Broadcast_Program_Error (Self_ID : Task_Id; Object : Protection_Entries_Access; Pending_Call : Entry_Call_Link) is Entry_Call : Entry_Call_Link; begin if Pending_Call /= null then Send_Program_Error (Self_ID, Pending_Call); end if; for E in Object.Entry_Queues'Range loop Dequeue_Head (Object.Entry_Queues (E), Entry_Call); while Entry_Call /= null loop pragma Assert (Entry_Call.Mode /= Conditional_Call); Send_Program_Error (Self_ID, Entry_Call); Dequeue_Head (Object.Entry_Queues (E), Entry_Call); end loop; end loop; end Broadcast_Program_Error; ----------------- -- Check_Queue -- ----------------- function Check_Queue (E : Entry_Queue) return Boolean is Valid : Boolean := True; C, Prev : Entry_Call_Link; begin if E.Head = null then if E.Tail /= null then Valid := False; pragma Assert (Valid); end if; else if E.Tail = null or else E.Tail.Next /= E.Head then Valid := False; pragma Assert (Valid); else C := E.Head; loop Prev := C; C := C.Next; if C = null then Valid := False; pragma Assert (Valid); exit; end if; if Prev /= C.Prev then Valid := False; pragma Assert (Valid); exit; end if; exit when C = E.Head; end loop; if Prev /= E.Tail then Valid := False; pragma Assert (Valid); end if; end if; end if; return Valid; end Check_Queue; ------------------- -- Count_Waiting -- ------------------- -- Return number of calls on the waiting queue of E function Count_Waiting (E : Entry_Queue) return Natural is Count : Natural; Temp : Entry_Call_Link; begin pragma Assert (Check_Queue (E)); Count := 0; if E.Head /= null then Temp := E.Head; loop Count := Count + 1; exit when E.Tail = Temp; Temp := Temp.Next; end loop; end if; return Count; end Count_Waiting; ------------- -- Dequeue -- ------------- -- Dequeue call from entry_queue E procedure Dequeue (E : in out Entry_Queue; Call : Entry_Call_Link) is begin pragma Assert (Check_Queue (E)); pragma Assert (Call /= null); -- If empty queue, simply return if E.Head = null then return; end if; pragma Assert (Call.Prev /= null); pragma Assert (Call.Next /= null); Call.Prev.Next := Call.Next; Call.Next.Prev := Call.Prev; if E.Head = Call then -- Case of one element if E.Tail = Call then E.Head := null; E.Tail := null; -- More than one element else E.Head := Call.Next; end if; elsif E.Tail = Call then E.Tail := Call.Prev; end if; -- Successfully dequeued Call.Prev := null; Call.Next := null; pragma Assert (Check_Queue (E)); end Dequeue; ------------------ -- Dequeue_Call -- ------------------ procedure Dequeue_Call (Entry_Call : Entry_Call_Link) is Called_PO : Protection_Entries_Access; begin pragma Assert (Entry_Call /= null); if Entry_Call.Called_Task /= null then Dequeue (Entry_Call.Called_Task.Entry_Queues (Task_Entry_Index (Entry_Call.E)), Entry_Call); else Called_PO := To_Protection (Entry_Call.Called_PO); Dequeue (Called_PO.Entry_Queues (Protected_Entry_Index (Entry_Call.E)), Entry_Call); end if; end Dequeue_Call; ------------------ -- Dequeue_Head -- ------------------ -- Remove and return the head of entry_queue E procedure Dequeue_Head (E : in out Entry_Queue; Call : out Entry_Call_Link) is Temp : Entry_Call_Link; begin pragma Assert (Check_Queue (E)); -- If empty queue, return null pointer if E.Head = null then Call := null; return; end if; Temp := E.Head; -- Case of one element if E.Head = E.Tail then E.Head := null; E.Tail := null; -- More than one element else pragma Assert (Temp /= null); pragma Assert (Temp.Next /= null); pragma Assert (Temp.Prev /= null); E.Head := Temp.Next; Temp.Prev.Next := Temp.Next; Temp.Next.Prev := Temp.Prev; end if; -- Successfully dequeued Temp.Prev := null; Temp.Next := null; Call := Temp; pragma Assert (Check_Queue (E)); end Dequeue_Head; ------------- -- Enqueue -- ------------- -- Enqueue call at the end of entry_queue E, for FIFO queuing policy. -- Enqueue call priority ordered, FIFO at same priority level, for -- Priority queuing policy. procedure Enqueue (E : in out Entry_Queue; Call : Entry_Call_Link) is Temp : Entry_Call_Link := E.Head; begin pragma Assert (Check_Queue (E)); pragma Assert (Call /= null); -- Priority Queuing if Priority_Queuing then if Temp = null then Call.Prev := Call; Call.Next := Call; E.Head := Call; E.Tail := Call; else loop -- Find the entry that the new guy should precede exit when Call.Prio > Temp.Prio; Temp := Temp.Next; if Temp = E.Head then Temp := null; exit; end if; end loop; if Temp = null then -- Insert at tail Call.Prev := E.Tail; Call.Next := E.Head; E.Tail := Call; else Call.Prev := Temp.Prev; Call.Next := Temp; -- Insert at head if Temp = E.Head then E.Head := Call; end if; end if; pragma Assert (Call.Prev /= null); pragma Assert (Call.Next /= null); Call.Prev.Next := Call; Call.Next.Prev := Call; end if; pragma Assert (Check_Queue (E)); return; end if; -- FIFO Queuing if E.Head = null then E.Head := Call; else E.Tail.Next := Call; Call.Prev := E.Tail; end if; E.Head.Prev := Call; E.Tail := Call; Call.Next := E.Head; pragma Assert (Check_Queue (E)); end Enqueue; ------------------ -- Enqueue_Call -- ------------------ procedure Enqueue_Call (Entry_Call : Entry_Call_Link) is Called_PO : Protection_Entries_Access; begin pragma Assert (Entry_Call /= null); if Entry_Call.Called_Task /= null then Enqueue (Entry_Call.Called_Task.Entry_Queues (Task_Entry_Index (Entry_Call.E)), Entry_Call); else Called_PO := To_Protection (Entry_Call.Called_PO); Enqueue (Called_PO.Entry_Queues (Protected_Entry_Index (Entry_Call.E)), Entry_Call); end if; end Enqueue_Call; ---------- -- Head -- ---------- -- Return the head of entry_queue E function Head (E : Entry_Queue) return Entry_Call_Link is begin pragma Assert (Check_Queue (E)); return E.Head; end Head; ------------- -- Onqueue -- ------------- -- Return True if Call is on any entry_queue at all function Onqueue (Call : Entry_Call_Link) return Boolean is begin pragma Assert (Call /= null); -- Utilize the fact that every queue is circular, so if Call -- is on any queue at all, Call.Next must NOT be null. return Call.Next /= null; end Onqueue; -------------------------------- -- Requeue_Call_With_New_Prio -- -------------------------------- procedure Requeue_Call_With_New_Prio (Entry_Call : Entry_Call_Link; Prio : System.Any_Priority) is begin pragma Assert (Entry_Call /= null); -- Perform a queue reordering only when the policy being used is the -- Priority Queuing. if Priority_Queuing then if Onqueue (Entry_Call) then Dequeue_Call (Entry_Call); Entry_Call.Prio := Prio; Enqueue_Call (Entry_Call); end if; end if; end Requeue_Call_With_New_Prio; --------------------------------- -- Select_Protected_Entry_Call -- --------------------------------- -- Select an entry of a protected object. Selection depends on the -- queuing policy being used. procedure Select_Protected_Entry_Call (Self_ID : Task_Id; Object : Protection_Entries_Access; Call : out Entry_Call_Link) is Entry_Call : Entry_Call_Link; Temp_Call : Entry_Call_Link; Entry_Index : Protected_Entry_Index := Null_Entry; -- stop warning begin Entry_Call := null; begin -- Priority queuing case if Priority_Queuing then for J in Object.Entry_Queues'Range loop Temp_Call := Head (Object.Entry_Queues (J)); if Temp_Call /= null and then Object.Entry_Bodies (Object.Find_Body_Index (Object.Compiler_Info, J)). Barrier (Object.Compiler_Info, J) then if Entry_Call = null or else Entry_Call.Prio < Temp_Call.Prio then Entry_Call := Temp_Call; Entry_Index := J; end if; end if; end loop; -- FIFO queueing case else for J in Object.Entry_Queues'Range loop Temp_Call := Head (Object.Entry_Queues (J)); if Temp_Call /= null and then Object.Entry_Bodies (Object.Find_Body_Index (Object.Compiler_Info, J)). Barrier (Object.Compiler_Info, J) then Entry_Call := Temp_Call; Entry_Index := J; exit; end if; end loop; end if; exception when others => Broadcast_Program_Error (Self_ID, Object, null); end; -- If a call was selected, dequeue it and return it for service if Entry_Call /= null then Temp_Call := Entry_Call; Dequeue_Head (Object.Entry_Queues (Entry_Index), Entry_Call); pragma Assert (Temp_Call = Entry_Call); end if; Call := Entry_Call; end Select_Protected_Entry_Call; ---------------------------- -- Select_Task_Entry_Call -- ---------------------------- -- Select an entry for rendezvous. Selection depends on the queuing policy -- being used. procedure Select_Task_Entry_Call (Acceptor : Task_Id; Open_Accepts : Accept_List_Access; Call : out Entry_Call_Link; Selection : out Select_Index; Open_Alternative : out Boolean) is Entry_Call : Entry_Call_Link; Temp_Call : Entry_Call_Link; Entry_Index : Task_Entry_Index := Task_Entry_Index'First; Temp_Entry : Task_Entry_Index; begin Open_Alternative := False; Entry_Call := null; Selection := No_Rendezvous; if Priority_Queuing then -- Priority queueing case for J in Open_Accepts'Range loop Temp_Entry := Open_Accepts (J).S; if Temp_Entry /= Null_Task_Entry then Open_Alternative := True; Temp_Call := Head (Acceptor.Entry_Queues (Temp_Entry)); if Temp_Call /= null and then (Entry_Call = null or else Entry_Call.Prio < Temp_Call.Prio) then Entry_Call := Head (Acceptor.Entry_Queues (Temp_Entry)); Entry_Index := Temp_Entry; Selection := J; end if; end if; end loop; else -- FIFO Queuing case for J in Open_Accepts'Range loop Temp_Entry := Open_Accepts (J).S; if Temp_Entry /= Null_Task_Entry then Open_Alternative := True; Temp_Call := Head (Acceptor.Entry_Queues (Temp_Entry)); if Temp_Call /= null then Entry_Call := Head (Acceptor.Entry_Queues (Temp_Entry)); Entry_Index := Temp_Entry; Selection := J; exit; end if; end if; end loop; end if; if Entry_Call /= null then Dequeue_Head (Acceptor.Entry_Queues (Entry_Index), Entry_Call); -- Guard is open end if; Call := Entry_Call; end Select_Task_Entry_Call; ------------------------ -- Send_Program_Error -- ------------------------ procedure Send_Program_Error (Self_ID : Task_Id; Entry_Call : Entry_Call_Link) is Caller : Task_Id; begin Caller := Entry_Call.Self; Entry_Call.Exception_To_Raise := Program_Error'Identity; Write_Lock (Caller); Initialization.Wakeup_Entry_Caller (Self_ID, Entry_Call, Done); Unlock (Caller); end Send_Program_Error; end System.Tasking.Queuing;
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2017, 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 Ada.Unchecked_Conversion; package body STMPE1600 is subtype BA_2 is UInt8_Array (1 .. 2); function To_Pins is new Ada.Unchecked_Conversion (BA_2, STMPE1600_Pins); function From_Pins is new Ada.Unchecked_Conversion (STMPE1600_Pins, BA_2); ---------- -- Read -- ---------- procedure Read (This : STMPE1600_Expander; Reg : UInt8; Data : out UInt8_Array; Status : out Boolean) is S : HAL.I2C.I2C_Status; use type HAL.I2C.I2C_Status; begin This.Port.Mem_Read (This.Addr, UInt16 (Reg), HAL.I2C.Memory_Size_8b, Data, S); Status := S = HAL.I2C.Ok; end Read; ----------- -- Write -- ----------- procedure Write (This : STMPE1600_Expander; Reg : UInt8; Data : UInt8_Array; Status : out Boolean) is S : HAL.I2C.I2C_Status; use type HAL.I2C.I2C_Status; begin This.Port.Mem_Write (This.Addr, UInt16 (Reg), HAL.I2C.Memory_Size_8b, Data, S); Status := S = HAL.I2C.Ok; end Write; -------------- -- Check_Id -- -------------- procedure Check_Id (This : in out STMPE1600_Expander; Status : out Boolean) is Identifier : UInt8_Array (1 .. 2); begin Read (This, STMPE1600_REG_ChipID, Identifier, Status); if Identifier (1) /= 0 or else Identifier (2) /= 16#16# then Status := False; end if; end Check_Id; -------------------------- -- Set_Interrupt_Enable -- -------------------------- procedure Set_Interrupt_Enable (This : in out STMPE1600_Expander; Enable : Boolean; Polarity : STMPE1600_Pin_Polarity; Status : out Boolean) is Sys_Ctrl : aliased STMPE1600_SYS_CTRL; BA : aliased UInt8_Array (1 .. 1) with Address => Sys_Ctrl'Address; begin Read (This, STMPE1600_REG_System_Ctrl, BA, Status); if Status then Sys_Ctrl.INT_Enable := Enable; Sys_Ctrl.INT_Polarity := Polarity; Write (This, STMPE1600_REG_System_Ctrl, BA, Status); end if; end Set_Interrupt_Enable; ------------------------ -- Set_Interrupt_Mask -- ------------------------ procedure Set_Interrupt_Mask (This : STMPE1600_Expander; Mask : STMPE1600_Pins; Status : out Boolean) is BA : aliased UInt8_Array (1 .. 2) with Address => Mask'Address; begin Write (This, STMPE1600_REG_IEGPIOR_0, BA, Status); end Set_Interrupt_Mask; -------------------- -- Interrupt_Mask -- -------------------- function Interrupt_Mask (This : STMPE1600_Expander) return STMPE1600_Pins is BA : aliased UInt8_Array (1 .. 2); Status : Boolean; begin Read (This, STMPE1600_REG_IEGPIOR_0, BA, Status); return To_Pins (BA); end Interrupt_Mask; --------------------- -- Interrupt_State -- --------------------- function Interrupt_State (This : STMPE1600_Expander) return STMPE1600_Pins is BA : aliased UInt8_Array (1 .. 2); Status : Boolean; begin Read (This, STMPE1600_REG_ISGPIOR_0, BA, Status); return To_Pins (BA); end Interrupt_State; ---------------- -- Pins_State -- ---------------- function Pins_State (This : in out STMPE1600_Expander) return STMPE1600_Pins is BA : aliased UInt8_Array (1 .. 2); Status : Boolean; begin Read (This, STMPE1600_REG_GPMR_0, BA, Status); return To_Pins (BA); end Pins_State; --------------- -- Pin_State -- --------------- function Pin_State (This : in out STMPE1600_Expander; Pin : STMPE1600_Pin_Number) return Boolean is Pins : constant STMPE1600_Pins := Pins_State (This); begin return Pins (Pin); end Pin_State; -------------------- -- Set_Pins_State -- -------------------- procedure Set_Pins_State (This : in out STMPE1600_Expander; Pins : STMPE1600_Pins) is BA : constant UInt8_Array (1 .. 2) := From_Pins (Pins); Status : Boolean with Unreferenced; begin Write (This, STMPE1600_REG_GPSR_0, BA, Status); end Set_Pins_State; ------------------- -- Set_Pin_State -- ------------------- procedure Set_Pin_State (This : in out STMPE1600_Expander; Pin : STMPE1600_Pin_Number; State : Boolean) is Pins : STMPE1600_Pins := Pins_State (This); begin Pins (Pin) := State; Set_Pins_State (This, Pins); end Set_Pin_State; ------------------------ -- Set_Pins_Direction -- ------------------------ procedure Set_Pins_Direction (This : STMPE1600_Expander; Pins : STMPE1600_Pins_Direction) is BA : aliased UInt8_Array (1 .. 2) with Address => Pins'Address; Status : Boolean with Unreferenced; begin Write (This, STMPE1600_REG_GPDR_0, BA, Status); end Set_Pins_Direction; ----------------------- -- Set_Pin_Direction -- ----------------------- procedure Set_Pin_Direction (This : STMPE1600_Expander; Pin : STMPE1600_Pin_Number; Direction : STMPE1600_Pin_Direction) is Pins : aliased STMPE1600_Pins; BA : aliased UInt8_Array (1 .. 2) with Address => Pins'Address; Status : Boolean with Unreferenced; New_State : constant Boolean := Direction = Output; begin Read (This, STMPE1600_REG_GPDR_0, BA, Status); if Pins (Pin) = New_State then -- Nothing to do return; end if; Pins (Pin) := New_State; Write (This, STMPE1600_REG_GPDR_0, BA, Status); end Set_Pin_Direction; ------------------- -- Pin_Direction -- ------------------- function Pin_Direction (This : STMPE1600_Expander; Pin : STMPE1600_Pin_Number) return STMPE1600_Pin_Direction is Pins : aliased STMPE1600_Pins; BA : aliased UInt8_Array (1 .. 2) with Address => Pins'Address; Status : Boolean with Unreferenced; begin Read (This, STMPE1600_REG_GPDR_0, BA, Status); return (if Pins (Pin) then Output else Input); end Pin_Direction; -------------------------------- -- Set_Pin_Polarity_Inversion -- -------------------------------- procedure Set_Pin_Polarity_Inversion (This : STMPE1600_Expander; Pin : STMPE1600_Pin_Number; Inversion_State : Boolean) is Pins : aliased STMPE1600_Pins; BA : aliased UInt8_Array (1 .. 2) with Address => Pins'Address; Status : Boolean with Unreferenced; begin Read (This, STMPE1600_REG_GPPIR_0, BA, Status); if Pins (Pin) = Inversion_State then -- Nothing to do return; end if; Pins (Pin) := Inversion_State; Write (This, STMPE1600_REG_GPPIR_0, BA, Status); end Set_Pin_Polarity_Inversion; ------------------- -- As_GPIO_Point -- ------------------- function As_GPIO_Point (This : in out STMPE1600_Expander; Pin : STMPE1600_Pin_Number) return HAL.GPIO.Any_GPIO_Point is begin This.Points (Pin) := (This'Unrestricted_Access, Pin); return This.Points (Pin)'Unchecked_Access; end As_GPIO_Point; ---------- -- Mode -- ---------- overriding function Mode (This : STMPE1600_Pin) return HAL.GPIO.GPIO_Mode is begin return (case Pin_Direction (This.Port.all, This.Pin) is when Input => HAL.GPIO.Input, when Output => HAL.GPIO.Output); end Mode; -------------- -- Set_Mode -- -------------- overriding function Set_Mode (This : in out STMPE1600_Pin; Mode : HAL.GPIO.GPIO_Config_Mode) return Boolean is begin Set_Pin_Direction (This.Port.all, This.Pin, (case Mode is when HAL.GPIO.Input => Input, when HAL.GPIO.Output => Output)); return True; end Set_Mode; --------- -- Set -- --------- overriding function Set (This : STMPE1600_Pin) return Boolean is begin return Pin_State (This.Port.all, This.Pin); end Set; --------- -- Set -- --------- overriding procedure Set (This : in out STMPE1600_Pin) is begin Set_Pin_State (This.Port.all, This.Pin, True); end Set; ----------- -- Clear -- ----------- overriding procedure Clear (This : in out STMPE1600_Pin) is begin Set_Pin_State (This.Port.all, This.Pin, False); end Clear; ------------ -- Toggle -- ------------ overriding procedure Toggle (This : in out STMPE1600_Pin) is begin if This.Set then This.Clear; else This.Set; end if; end Toggle; end STMPE1600;
----------------------------------------------------------------------- -- util-dates-formats -- Date Format ala strftime -- Copyright (C) 2011 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- 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 Util.Properties; -- The <b>Util.Dates.Formats</b> provides a date formatting operation similar to the -- Unix <b>strftime</b> or the <b>GNAT.Calendar.Time_IO</b>. The localization of month -- and day labels is however handled through <b>Util.Properties.Bundle</b> (similar to -- the Java world). Unlike <b>strftime</b>, this allows to have a multi-threaded application -- that reports dates in several languages. The <b>GNAT.Calendar.Time_IO</b> only supports -- English and this is the reason why it is not used here. -- -- The date pattern recognizes the following formats: -- -- %a The abbreviated weekday name according to the current locale. -- %A The full weekday name according to the current locale. -- %b The abbreviated month name according to the current locale. -- %h Equivalent to %b. (SU) -- %B The full month name according to the current locale. -- %c The preferred date and time representation for the current locale. -- %C The century number (year/100) as a 2-digit integer. (SU) -- %d The day of the month as a decimal number (range 01 to 31). -- %D Equivalent to %m/%d/%y -- %e Like %d, the day of the month as a decimal number, -- but a leading zero is replaced by a space. (SU) -- %F Equivalent to %Y-%m-%d (the ISO 8601 date format). (C99) -- %G The ISO 8601 week-based year -- %g Like %G, but without century, that is, with a 2-digit year (00-99). (TZ) -- %H The hour as a decimal number using a 24-hour clock (range 00 to 23). -- %I The hour as a decimal number using a 12-hour clock (range 01 to 12). -- %j The day of the year as a decimal number (range 001 to 366). -- %k The hour (24-hour clock) as a decimal number (range 0 to 23); -- %l The hour (12-hour clock) as a decimal number (range 1 to 12); -- %m The month as a decimal number (range 01 to 12). -- %M The minute as a decimal number (range 00 to 59). -- %n A newline character. (SU) -- %p Either "AM" or "PM" -- %P Like %p but in lowercase: "am" or "pm" -- %r The time in a.m. or p.m. notation. -- In the POSIX locale this is equivalent to %I:%M:%S %p. (SU) -- %R The time in 24-hour notation (%H:%M). -- %s The number of seconds since the Epoch, that is, -- since 1970-01-01 00:00:00 UTC. (TZ) -- %S The second as a decimal number (range 00 to 60). -- %t A tab character. (SU) -- %T The time in 24-hour notation (%H:%M:%S). (SU) -- %u The day of the week as a decimal, range 1 to 7, Monday being 1. See also %w. (SU) -- %U The week number of the current year as a decimal number, range 00 to 53 -- %V The ISO 8601 week number -- %w The day of the week as a decimal, range 0 to 6, Sunday being 0. See also %u. -- %W The week number of the current year as a decimal number, range 00 to 53 -- %x The preferred date representation for the current locale without the time. -- %X The preferred time representation for the current locale without the date. -- %y The year as a decimal number without a century (range 00 to 99). -- %Y The year as a decimal number including the century. -- %z The time-zone as hour offset from GMT. -- %Z The timezone or name or abbreviation. -- -- The following strftime flags are ignored: -- -- %E Modifier: use alternative format, see below. (SU) -- %O Modifier: use alternative format, see below. (SU) -- -- SU: Single Unix Specification -- C99: C99 standard, POSIX.1-2001 -- -- See strftime (3) manual page package Util.Dates.Formats is -- Month labels. MONTH_NAME_PREFIX : constant String := "util.month"; -- Day labels. DAY_NAME_PREFIX : constant String := "util.day"; -- Short month/day suffix. SHORT_SUFFIX : constant String := ".short"; -- Long month/day suffix. LONG_SUFFIX : constant String := ".long"; -- The date time pattern name to be used for the %x representation. -- This property name is searched in the bundle to find the localized date time pattern. DATE_TIME_LOCALE_NAME : constant String := "util.datetime.pattern"; -- The default date pattern for %c (English). DATE_TIME_DEFAULT_PATTERN : constant String := "%a %b %_d %T %Y"; -- The date pattern to be used for the %x representation. -- This property name is searched in the bundle to find the localized date pattern. DATE_LOCALE_NAME : constant String := "util.date.pattern"; -- The default date pattern for %x (English). DATE_DEFAULT_PATTERN : constant String := "%m/%d/%y"; -- The time pattern to be used for the %X representation. -- This property name is searched in the bundle to find the localized time pattern. TIME_LOCALE_NAME : constant String := "util.time.pattern"; -- The default time pattern for %X (English). TIME_DEFAULT_PATTERN : constant String := "%T %Y"; AM_NAME : constant String := "util.date.am"; PM_NAME : constant String := "util.date.pm"; AM_DEFAULT : constant String := "AM"; PM_DEFAULT : constant String := "PM"; -- Format the date passed in <b>Date</b> using the date pattern specified in <b>Pattern</b>. -- The date pattern is similar to the Unix <b>strftime</b> operation. -- -- For month and day of week strings, use the resource bundle passed in <b>Bundle</b>. -- Append the formatted date in the <b>Into</b> string. procedure Format (Into : in out Ada.Strings.Unbounded.Unbounded_String; Pattern : in String; Date : in Date_Record; Bundle : in Util.Properties.Manager'Class); -- Format the date passed in <b>Date</b> using the date pattern specified in <b>Pattern</b>. -- For month and day of week strings, use the resource bundle passed in <b>Bundle</b>. -- Append the formatted date in the <b>Into</b> string. procedure Format (Into : in out Ada.Strings.Unbounded.Unbounded_String; Pattern : in String; Date : in Ada.Calendar.Time; Bundle : in Util.Properties.Manager'Class); function Format (Pattern : in String; Date : in Ada.Calendar.Time; Bundle : in Util.Properties.Manager'Class) return String; -- Append the localized month string in the <b>Into</b> string. -- The month string is found in the resource bundle under the name: -- util.month<month number>.short -- util.month<month number>.long -- If the month string is not found, the month is displayed as a number. procedure Append_Month (Into : in out Ada.Strings.Unbounded.Unbounded_String; Month : in Ada.Calendar.Month_Number; Bundle : in Util.Properties.Manager'Class; Short : in Boolean := True); -- Append the localized month string in the <b>Into</b> string. -- The month string is found in the resource bundle under the name: -- util.month<month number>.short -- util.month<month number>.long -- If the month string is not found, the month is displayed as a number. procedure Append_Day (Into : in out Ada.Strings.Unbounded.Unbounded_String; Day : in Ada.Calendar.Formatting.Day_Name; Bundle : in Util.Properties.Manager'Class; Short : in Boolean := True); -- Append a number with padding if necessary procedure Append_Number (Into : in out Ada.Strings.Unbounded.Unbounded_String; Value : in Natural; Padding : in Character; Length : in Natural := 2); -- Append the timezone offset procedure Append_Time_Offset (Into : in out Ada.Strings.Unbounded.Unbounded_String; Offset : in Ada.Calendar.Time_Zones.Time_Offset); end Util.Dates.Formats;
generic type T is private; Init_Value : T; package Opt25_Pkg1 is Var : T := Init_Value; procedure Swap (A, B : in out T); end Opt25_Pkg1;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . E X P _ L L I -- -- -- -- 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. -- -- -- -- -- -- -- -- -- -- -- -- 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. -- -- -- ------------------------------------------------------------------------------ -- Long_Long_Integer exponentiation package System.Exp_LLI is pragma Pure; function Exp_Long_Long_Integer (Left : Long_Long_Integer; Right : Natural) return Long_Long_Integer; end System.Exp_LLI;
-- { dg-do compile } procedure Prot1 is protected type Prot is procedure Change (x : integer); private Flag : Boolean; end Prot; type Handle is access protected procedure (X : Integer); procedure Manage (Ptr : Handle) is begin null; end; protected body prot is procedure Change (x : integer) is begin null; end; end; Sema : Prot; begin Manage (Sema.Change'Unrestricted_Access); end;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Localization, Internationalization, Globalization for Ada -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2010, Vadim Godunko <vgodunko@gmail.com> -- -- 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$ ------------------------------------------------------------------------------ -- Semantic analyzer of the regular expression in the compiled form. It is -- responsible to assign unique index for every capturing subexpression for -- now. ------------------------------------------------------------------------------ private package Matreshka.Internals.Regexps.Compiler.Semantic is pragma Preelaborate; procedure Analyze (Pattern : not null Shared_Pattern_Access); end Matreshka.Internals.Regexps.Compiler.Semantic;
-- { dg-do run } with System; use System; procedure Boolean_Conv is subtype B1 is Boolean; subtype B2 is Boolean; A0, A1, A2 : Address; B : aliased B1; procedure P2 (X2 : access B2) is begin A2 := X2.all'Address; end P2; procedure P1 (X1 : access B1) is begin A1 := X1.all'Address; P2 (B2 (X1.all)'Unrestricted_Access); end P1; begin A0 := B'Address; P1 (B'Access); if A1 /= A0 then raise Program_Error; end if; if A2 /= A0 then raise Program_Error; end if; end;
pragma License (Unrestricted); -- extended unit with Ada.Directories.Volumes; function Ada.Directories.Less_File_Names ( FS : Volumes.File_System; Left, Right : String) return Boolean; -- This function is "<" version of Ada.Directories.Equal_File_Names. pragma Inline (Ada.Directories.Less_File_Names);
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- E X P _ C H 1 0 -- -- -- -- S p e c -- -- -- -- $Revision$ -- -- -- Copyright (C) 1992,1993,1994 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. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Expand routines for chapter 10 constructs package Exp_Ch10 is end Exp_Ch10;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . W I D E _ C H A R A C T E R S . U N I C O D E -- -- -- -- S p e c -- -- -- -- Copyright (C) 2005-2019, 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. -- -- -- ------------------------------------------------------------------------------ -- Unicode categorization routines for Wide_Character. Note that this -- package is strictly speaking Ada 2005 (since it is a child of an -- Ada 2005 unit), but we make it available in Ada 95 mode, since it -- only deals with wide characters. with System.UTF_32; package Ada.Wide_Characters.Unicode is pragma Pure; -- The following type defines the categories from the unicode definitions. -- The one addition we make is Fe, which represents the characters FFFE -- and FFFF in any of the planes. type Category is new System.UTF_32.Category; -- Cc Other, Control -- Cf Other, Format -- Cn Other, Not Assigned -- Co Other, Private Use -- Cs Other, Surrogate -- Ll Letter, Lowercase -- Lm Letter, Modifier -- Lo Letter, Other -- Lt Letter, Titlecase -- Lu Letter, Uppercase -- Mc Mark, Spacing Combining -- Me Mark, Enclosing -- Mn Mark, Nonspacing -- Nd Number, Decimal Digit -- Nl Number, Letter -- No Number, Other -- Pc Punctuation, Connector -- Pd Punctuation, Dash -- Pe Punctuation, Close -- Pf Punctuation, Final quote -- Pi Punctuation, Initial quote -- Po Punctuation, Other -- Ps Punctuation, Open -- Sc Symbol, Currency -- Sk Symbol, Modifier -- Sm Symbol, Math -- So Symbol, Other -- Zl Separator, Line -- Zp Separator, Paragraph -- Zs Separator, Space -- Fe relative position FFFE/FFFF in plane function Get_Category (U : Wide_Character) return Category; pragma Inline (Get_Category); -- Given a Wide_Character, returns corresponding Category, or Cn if the -- code does not have an assigned unicode category. -- The following functions perform category tests corresponding to lexical -- classes defined in the Ada standard. There are two interfaces for each -- function. The second takes a Category (e.g. returned by Get_Category). -- The first takes a Wide_Character. The form taking the Wide_Character is -- typically more efficient than calling Get_Category, but if several -- different tests are to be performed on the same code, it is more -- efficient to use Get_Category to get the category, then test the -- resulting category. function Is_Letter (U : Wide_Character) return Boolean; function Is_Letter (C : Category) return Boolean; pragma Inline (Is_Letter); -- Returns true iff U is a letter that can be used to start an identifier, -- or if C is one of the corresponding categories, which are the following: -- Letter, Uppercase (Lu) -- Letter, Lowercase (Ll) -- Letter, Titlecase (Lt) -- Letter, Modifier (Lm) -- Letter, Other (Lo) -- Number, Letter (Nl) function Is_Digit (U : Wide_Character) return Boolean; function Is_Digit (C : Category) return Boolean; pragma Inline (Is_Digit); -- Returns true iff U is a digit that can be used to extend an identifer, -- or if C is one of the corresponding categories, which are the following: -- Number, Decimal_Digit (Nd) function Is_Line_Terminator (U : Wide_Character) return Boolean; pragma Inline (Is_Line_Terminator); -- Returns true iff U is an allowed line terminator for source programs, -- if U is in the category Zp (Separator, Paragaph), or Zs (Separator, -- Line), or if U is a conventional line terminator (CR, LF, VT, FF). -- There is no category version for this function, since the set of -- characters does not correspond to a set of Unicode categories. function Is_Mark (U : Wide_Character) return Boolean; function Is_Mark (C : Category) return Boolean; pragma Inline (Is_Mark); -- Returns true iff U is a mark character which can be used to extend an -- identifier, or if C is one of the corresponding categories, which are -- the following: -- Mark, Non-Spacing (Mn) -- Mark, Spacing Combining (Mc) function Is_Other (U : Wide_Character) return Boolean; function Is_Other (C : Category) return Boolean; pragma Inline (Is_Other); -- Returns true iff U is an other format character, which means that it -- can be used to extend an identifier, but is ignored for the purposes of -- matching of identiers, or if C is one of the corresponding categories, -- which are the following: -- Other, Format (Cf) function Is_Punctuation (U : Wide_Character) return Boolean; function Is_Punctuation (C : Category) return Boolean; pragma Inline (Is_Punctuation); -- Returns true iff U is a punctuation character that can be used to -- separate pices of an identifier, or if C is one of the corresponding -- categories, which are the following: -- Punctuation, Connector (Pc) function Is_Space (U : Wide_Character) return Boolean; function Is_Space (C : Category) return Boolean; pragma Inline (Is_Space); -- Returns true iff U is considered a space to be ignored, or if C is one -- of the corresponding categories, which are the following: -- Separator, Space (Zs) function Is_Non_Graphic (U : Wide_Character) return Boolean; function Is_Non_Graphic (C : Category) return Boolean; pragma Inline (Is_Non_Graphic); -- Returns true iff U is considered to be a non-graphic character, or if C -- is one of the corresponding categories, which are the following: -- Other, Control (Cc) -- Other, Private Use (Co) -- Other, Surrogate (Cs) -- Separator, Line (Zl) -- Separator, Paragraph (Zp) -- FFFE or FFFF positions in any plane (Fe) -- -- Note that the Ada category format effector is subsumed by the above -- list of Unicode categories. -- -- Note that Other, Unassiged (Cn) is quite deliberately not included -- in the list of categories above. This means that should any of these -- code positions be defined in future with graphic characters they will -- be allowed without a need to change implementations or the standard. -- -- Note that Other, Format (Cf) is also quite deliberately not included -- in the list of categories above. This means that these characters can -- be included in character and string literals. -- The following function is used to fold to upper case, as required by -- the Ada 2005 standard rules for identifier case folding. Two -- identifiers are equivalent if they are identical after folding all -- letters to upper case using this routine. A corresponding function to -- fold to lower case is also provided. function To_Lower_Case (U : Wide_Character) return Wide_Character; pragma Inline (To_Lower_Case); -- If U represents an upper case letter, returns the corresponding lower -- case letter, otherwise U is returned unchanged. The folding is locale -- independent as defined by documents referenced in the note in section -- 1 of ISO/IEC 10646:2003 function To_Upper_Case (U : Wide_Character) return Wide_Character; pragma Inline (To_Upper_Case); -- If U represents a lower case letter, returns the corresponding upper -- case letter, otherwise U is returned unchanged. The folding is locale -- independent as defined by documents referenced in the note in section -- 1 of ISO/IEC 10646:2003 end Ada.Wide_Characters.Unicode;
with Constants; use constants; with Interfaces; use Interfaces; with Ada.Real_Time; use Ada.Real_Time; procedure main with SPARK_Mode is begin Do_Something; end main;
with Ada.Real_Time; with ACO.Utils.Generic_Event; with ACO.Messages; with ACO.States; with ACO.SDO_Sessions; with ACO.OD_Types; with ACO.Configuration; package ACO.Events is use ACO.Configuration; type Handler_Event_Type is (Tick, Received_Message); type Handler_Event_Data (Event : Handler_Event_Type := Tick) is record case Event is when Tick => Current_Time : Ada.Real_Time.Time; when Received_Message => Msg : ACO.Messages.Message; end case; end record; package HEP is new ACO.Utils.Generic_Event (Item_Type => Handler_Event_Data, Max_Nof_Subscribers => Max_Nof_Handler_Event_Subscribers, Max_Nof_Queued_Events => Max_Nof_Event_Queue_Data_Items); type Handler_Event_Listener (Event : Handler_Event_Type) is abstract new HEP.Subscriber with null record; overriding procedure Update (This : access Handler_Event_Listener; Data : in Handler_Event_Data); procedure On_Event (This : in out Handler_Event_Listener; Data : in Handler_Event_Data) is abstract; type Handler_Event_Manager is tagged limited record Handler_Events : HEP.Event_Publisher; end record; type Event_Type is (State_Transition, Slave_State_Transition, OD_Entry_Update, Heartbeat_Received, Heartbeat_Timed_Out, SDO_Status_Update); type Heartbeat_Data is record Id : ACO.Messages.Node_Nr; State : ACO.States.State; end record; type SDO_Status_Data is record Endpoint_Id : ACO.SDO_Sessions.Endpoint_Nr; Result : ACO.SDO_Sessions.SDO_Result; end record; type Slave_State_Data is record State : ACO.States.State_Transition; Node_Id : ACO.Messages.Node_Nr; end record; type Event_Data (Event : Event_Type := State_Transition) is record case Event is when State_Transition => State : ACO.States.State_Transition; when Slave_State_Transition => Slave : Slave_State_Data; when OD_Entry_Update => Index : ACO.OD_Types.Entry_Index; when Heartbeat_Received => Received_Heartbeat : Heartbeat_Data; when Heartbeat_Timed_Out => Node_Id : ACO.Messages.Node_Nr; when SDO_Status_Update => SDO_Status : SDO_Status_Data; end case; end record; package EP is new ACO.Utils.Generic_Event (Item_Type => Event_Data, Max_Nof_Subscribers => Max_Nof_Node_Event_Subscribers, Max_Nof_Queued_Events => Max_Nof_Event_Queue_Data_Items); type Event_Listener (Event : Event_Type) is abstract new EP.Subscriber with null record; overriding procedure Update (This : access Event_Listener; Data : in Event_Data); procedure On_Event (This : in out Event_Listener; Data : in Event_Data) is abstract; type Node_Event_Manager is tagged limited record Node_Events : EP.Queued_Event_Publisher (Priority_Ceiling => Event_Queue_Ceiling); end record; procedure Process (This : in out Node_Event_Manager); end ACO.Events;
with openGL.Buffer.general; package openGL.Buffer.normals is new openGL.Buffer.general (base_Object => Buffer.array_Object, Index => Index_t, Element => Normal, Element_Array => Normals);
-- Copyright 2012-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/>. with Pck; use Pck; procedure Foo is type Color is (Black, Red, Green, Blue, White); type Full_Table is array (Color) of Integer; Full : Full_Table := (144, 233, 377, 610, 987); begin Do_Nothing (Full'Address); -- STOP end Foo;
------------------------------------------------------------------------------ -- -- -- Ada binding for OpenGL/WebGL -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2016-2018, Vadim Godunko <vgodunko@gmail.com> -- -- 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. -- -- -- ------------------------------------------------------------------------------ package body OpenGL is --------- -- "+" -- --------- function "+" (Right : Clear_Buffer_Mask_Bits) return Clear_Buffer_Mask is begin return Clear_Buffer_Mask (Right); end "+"; --------- -- "+" -- --------- function "+" (Left : Clear_Buffer_Mask_Bits; Right : Clear_Buffer_Mask_Bits) return Clear_Buffer_Mask is begin return Clear_Buffer_Mask (Left) or Clear_Buffer_Mask (Right); end "+"; --------- -- "+" -- --------- function "+" (Left : Clear_Buffer_Mask; Right : Clear_Buffer_Mask_Bits) return Clear_Buffer_Mask is begin return Left or Clear_Buffer_Mask (Right); end "+"; ------------ -- Is_Set -- ------------ function Is_Set (Mask : Clear_Buffer_Mask; Bit : Clear_Buffer_Mask_Bits) return Boolean is begin return (Mask and Clear_Buffer_Mask (Bit)) /= 0; end Is_Set; end OpenGL;
--=========================================================================== -- -- This is the main slave program for the Pico for the -- use cases: -- 1: Master Pico -> Slave Pico -- 3: Master ItsyBitsy -> Slave Pico -- --=========================================================================== -- -- Copyright 2022 (C) Holger Rodriguez -- -- SPDX-License-Identifier: BSD-3-Clause -- with HAL; with HAL.SPI; with RP.Clock; with RP.GPIO; with RP.SPI; with RP.Device; with Pico; with SPI_Slave_Pico; procedure Main_Slave_Pico is Data_In : HAL.SPI.SPI_Data_16b (1 .. 1) := (others => 0); Status_In : HAL.SPI.SPI_Status; THE_VALUE : constant HAL.UInt16 := HAL.UInt16 (16#A5A5#); Data_Out : HAL.SPI.SPI_Data_16b (1 .. 1) := (others => THE_VALUE); Status_Out : HAL.SPI.SPI_Status; use HAL; begin RP.Clock.Initialize (Pico.XOSC_Frequency); RP.Device.Timer.Enable; Pico.LED.Configure (RP.GPIO.Output); SPI_Slave_Pico.Initialize; loop -- do this to get the slave ready SPI_Slave_Pico.SPI.Transmit (Data_Out, Status_Out); for I in 1 .. 1 loop SPI_Slave_Pico.SPI.Receive (Data_In, Status_In); Data_Out (1) := not Data_In (1); SPI_Slave_Pico.SPI.Transmit (Data_Out, Status_Out); end loop; RP.Device.Timer.Delay_Milliseconds (10); Pico.LED.Toggle; end loop; end Main_Slave_Pico;
with Symbols; with States; -- with Rules; package body Action_Lists is procedure Append (Action_List : in out List; Kind : in Actions.Action_Kind; Symbol : in Symbols.Symbol_Access; State : in States.State_Access; Rule : in Rule_Access) is use Actions; -- New_Action : Action_Access; Union : X_Union; begin if Kind = Shift then Union.State := State; else Union.Rule := Rule; end if; Action_List.Append (Action_Record'(Kind => Kind, Symbol => Symbol, Symbol_Link => null, X => Union, Collide => null)); -- New_Action := new Action_Record; -- Action_New (); -- New_Action.Next := Action; -- Action := New_Action; -- New_Action.Kind := Kind; -- New_Action.Symbol := Symbol; -- New_Action.spOpt := null; -- if Kind = Shift then -- New_Action.X.stp := State; -- else -- New_Action.X.Rule := Rule; -- end if; end Append; package Action_Sorting is new Action_DLLs.Generic_Sorting ("<" => Actions.Action_Cmp); procedure Sort (Action_List : in out List) -- procedure Action_Sort (Action_List : in out List) -- function Action_Sort (Action : in Action_Access) return Action_Access is begin Action_Sorting.Sort (Action_List); -- static struct action *Action_sort( -- struct action *ap -- ){ -- ap = (struct action *)msort((char *)ap,(char **)&ap->next, -- (int(*)(const char*,const char*))actioncmp); -- return ap; -- } -- end Action_Sort; end Sort; end Action_Lists;
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- A D A . C O N T A I N E R S . B O U N D E D _ O R D E R E D _ M A P 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.Red_Black_Trees; private with Ada.Streams; private with Ada.Finalization; generic type Key_Type is private; type Element_Type is private; with function "<" (Left, Right : Key_Type) return Boolean is <>; with function "=" (Left, Right : Element_Type) return Boolean is <>; package Ada.Containers.Bounded_Ordered_Maps is pragma Annotate (CodePeer, Skip_Analysis); pragma Pure; pragma Remote_Types; function Equivalent_Keys (Left, Right : Key_Type) return Boolean; type Map (Capacity : Count_Type) is tagged private with Constant_Indexing => Constant_Reference, Variable_Indexing => Reference, Default_Iterator => Iterate, Iterator_Element => Element_Type; pragma Preelaborable_Initialization (Map); type Cursor is private; pragma Preelaborable_Initialization (Cursor); Empty_Map : constant Map; No_Element : constant Cursor; function Has_Element (Position : Cursor) return Boolean; package Map_Iterator_Interfaces is new Ada.Iterator_Interfaces (Cursor, Has_Element); function "=" (Left, Right : Map) return Boolean; function Length (Container : Map) return Count_Type; function Is_Empty (Container : Map) return Boolean; procedure Clear (Container : in out Map); function Key (Position : Cursor) return Key_Type; function Element (Position : Cursor) return Element_Type; procedure Replace_Element (Container : in out Map; Position : Cursor; New_Item : Element_Type); procedure Query_Element (Position : Cursor; Process : not null access procedure (Key : Key_Type; Element : Element_Type)); procedure Update_Element (Container : in out Map; Position : Cursor; Process : not null access procedure (Key : Key_Type; Element : in out Element_Type)); type Constant_Reference_Type (Element : not null access constant Element_Type) is private with Implicit_Dereference => Element; type Reference_Type (Element : not null access Element_Type) is private with Implicit_Dereference => Element; function Constant_Reference (Container : aliased Map; Position : Cursor) return Constant_Reference_Type; function Reference (Container : aliased in out Map; Position : Cursor) return Reference_Type; function Constant_Reference (Container : aliased Map; Key : Key_Type) return Constant_Reference_Type; function Reference (Container : aliased in out Map; Key : Key_Type) return Reference_Type; procedure Assign (Target : in out Map; Source : Map); function Copy (Source : Map; Capacity : Count_Type := 0) return Map; procedure Move (Target : in out Map; Source : in out Map); procedure Insert (Container : in out Map; Key : Key_Type; New_Item : Element_Type; Position : out Cursor; Inserted : out Boolean); procedure Insert (Container : in out Map; Key : Key_Type; Position : out Cursor; Inserted : out Boolean); procedure Insert (Container : in out Map; Key : Key_Type; New_Item : Element_Type); procedure Include (Container : in out Map; Key : Key_Type; New_Item : Element_Type); procedure Replace (Container : in out Map; Key : Key_Type; New_Item : Element_Type); procedure Exclude (Container : in out Map; Key : Key_Type); procedure Delete (Container : in out Map; Key : Key_Type); procedure Delete (Container : in out Map; Position : in out Cursor); procedure Delete_First (Container : in out Map); procedure Delete_Last (Container : in out Map); function First (Container : Map) return Cursor; function First_Element (Container : Map) return Element_Type; function First_Key (Container : Map) return Key_Type; function Last (Container : Map) return Cursor; function Last_Element (Container : Map) return Element_Type; function Last_Key (Container : Map) return Key_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 : Map; Key : Key_Type) return Cursor; function Element (Container : Map; Key : Key_Type) return Element_Type; function Floor (Container : Map; Key : Key_Type) return Cursor; function Ceiling (Container : Map; Key : Key_Type) return Cursor; function Contains (Container : Map; Key : Key_Type) return Boolean; function "<" (Left, Right : Cursor) return Boolean; function ">" (Left, Right : Cursor) return Boolean; function "<" (Left : Cursor; Right : Key_Type) return Boolean; function ">" (Left : Cursor; Right : Key_Type) return Boolean; function "<" (Left : Key_Type; Right : Cursor) return Boolean; function ">" (Left : Key_Type; Right : Cursor) return Boolean; procedure Iterate (Container : Map; Process : not null access procedure (Position : Cursor)); procedure Reverse_Iterate (Container : Map; Process : not null access procedure (Position : Cursor)); function Iterate (Container : Map) return Map_Iterator_Interfaces.Reversible_Iterator'Class; function Iterate (Container : Map; Start : Cursor) return Map_Iterator_Interfaces.Reversible_Iterator'Class; private use Ada.Finalization; pragma Inline (Next); pragma Inline (Previous); type Node_Type is record Parent : Count_Type; Left : Count_Type; Right : Count_Type; Color : Red_Black_Trees.Color_Type := Red_Black_Trees.Red; Key : Key_Type; Element : aliased Element_Type; end record; package Tree_Types is new Red_Black_Trees.Generic_Bounded_Tree_Types (Node_Type); type Map (Capacity : Count_Type) is new Tree_Types.Tree_Type (Capacity) with null record; use Red_Black_Trees; use Tree_Types, Tree_Types.Implementation; use Ada.Streams; procedure Write (Stream : not null access Root_Stream_Type'Class; Container : Map); for Map'Write use Write; procedure Read (Stream : not null access Root_Stream_Type'Class; Container : out Map); for Map'Read use Read; type Map_Access is access all Map; for Map_Access'Storage_Size use 0; type Cursor is record Container : Map_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; type Reference_Type (Element : not null access 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 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; -- 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 Map'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_Map : constant Map := Map'(Tree_Type with Capacity => 0); No_Element : constant Cursor := Cursor'(null, 0); type Iterator is new Limited_Controlled and Map_Iterator_Interfaces.Reversible_Iterator with record Container : Map_Access; Node : Count_Type; end record with Disable_Controlled => not T_Check; overriding procedure Finalize (Object : in out Iterator); overriding function First (Object : Iterator) return Cursor; overriding function Last (Object : Iterator) return Cursor; overriding function Next (Object : Iterator; Position : Cursor) return Cursor; overriding function Previous (Object : Iterator; Position : Cursor) return Cursor; end Ada.Containers.Bounded_Ordered_Maps;
-- C83028A.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 A DECLARATION IN A BLOCK STATEMENT HIDES AN OUTER -- DECLARATION OF A HOMOGRAPH. ALSO CHECK THAT THE OUTER DECLARATION -- IS DIRECTLY VISIBLE IN BOTH DECLARATIVE REGIONS BEFORE THE -- DECLARATION OF THE INNER HOMOGRAPH AND THE OUTER DECLARATION IS -- VISIBLE BY SELECTION AFTER THE INNER HOMOGRAPH DECLARATION. -- HISTORY: -- BCB 09/06/88 CREATED ORIGINAL TEST. WITH REPORT; USE REPORT; PROCEDURE C83028A IS GENERIC TYPE T IS PRIVATE; X : T; FUNCTION GEN_FUN RETURN T; FUNCTION GEN_FUN RETURN T IS BEGIN RETURN X; END GEN_FUN; BEGIN TEST ("C83028A", "CHECK THAT A DECLARATION IN A BLOCK " & "STATEMENT HIDES AN OUTER " & "DECLARATION OF A HOMOGRAPH"); ONE: DECLARE A : INTEGER := IDENT_INT(2); B : INTEGER := A; BEGIN -- ONE DECLARE C : INTEGER := A; A : INTEGER := IDENT_INT(3); BEGIN IF A /= IDENT_INT(3) THEN FAILED ("INCORRECT VALUE FOR INNER HOMOGRAPH - 1"); END IF; IF ONE.A /= IDENT_INT(2) THEN FAILED ("INCORRECT VALUE FOR OUTER HOMOGRAPH - 2"); END IF; IF ONE.B /= IDENT_INT(2) THEN FAILED ("INCORRECT VALUE FOR OUTER VARIABLE - 3"); END IF; IF C /= IDENT_INT(2) THEN FAILED ("INCORRECT VALUE FOR INNER VARIABLE - 4"); END IF; IF EQUAL(1,1) THEN ONE.A := A; END IF; END; IF A /= IDENT_INT(3) THEN FAILED ("INCORRECT VALUE PASSED OUT - 6"); END IF; END ONE; TWO: DECLARE A : INTEGER := IDENT_INT(2); B : INTEGER := A; OBJ : INTEGER := IDENT_INT(3); BEGIN -- TWO DECLARE X : INTEGER := A; A : INTEGER := OBJ; C : INTEGER := A; BEGIN IF A /= IDENT_INT(3) THEN FAILED ("INCORRECT VALUE FOR INNER HOMOGRAPH -10"); END IF; IF TWO.A /= IDENT_INT(2) THEN FAILED ("INCORRECT VALUE FOR OUTER HOMOGRAPH - 11"); END IF; IF TWO.B /= IDENT_INT(2) THEN FAILED ("INCORRECT VALUE FOR OUTER VARIABLE - 12"); END IF; IF C /= IDENT_INT(3) THEN FAILED ("INCORRECT VALUE FOR INNER VARIABLE - 13"); END IF; IF X /= IDENT_INT(2) THEN FAILED ("INCORRECT VALUE PASSED IN - 14"); END IF; IF EQUAL(1,1) THEN TWO.OBJ := IDENT_INT(4); ELSE TWO.OBJ := 1; END IF; END; IF OBJ /= IDENT_INT(4) THEN FAILED ("INCORRECT VALUE PASSED OUT - 15"); END IF; END TWO; THREE: DECLARE -- OVERLOADING OF FUNCTIONS. OBJ : INTEGER := 1; FLO : FLOAT := 5.0; FUNCTION F IS NEW GEN_FUN (INTEGER, OBJ); FUNCTION F IS NEW GEN_FUN (FLOAT, FLO); BEGIN DECLARE F : FLOAT := 6.25; BEGIN THREE.OBJ := INTEGER(F); END; IF OBJ /= IDENT_INT(6) THEN FAILED ("INCORRECT VALUE RETURNED FROM FUNCTION - 20"); END IF; END THREE; RESULT; END C83028A;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- E X P _ D B U G -- -- -- -- B o d y -- -- -- -- $Revision$ -- -- -- Copyright (C) 1996-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. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Alloc; use Alloc; with Atree; use Atree; with Debug; use Debug; with Einfo; use Einfo; with Exp_Util; use Exp_Util; with Freeze; use Freeze; with Lib; use Lib; with Hostparm; use Hostparm; with Namet; use Namet; with Nlists; use Nlists; with Nmake; use Nmake; with Opt; use Opt; with Output; use Output; with Sem_Eval; use Sem_Eval; with Sem_Util; use Sem_Util; with Sinput; use Sinput; with Snames; use Snames; with Stand; use Stand; with Stringt; use Stringt; with Table; with Urealp; use Urealp; with GNAT.HTable; package body Exp_Dbug is -- The following table is used to queue up the entities passed as -- arguments to Qualify_Entity_Names for later processing when -- Qualify_All_Entity_Names is called. package Name_Qualify_Units is new Table.Table ( Table_Component_Type => Node_Id, Table_Index_Type => Nat, Table_Low_Bound => 1, Table_Initial => Alloc.Name_Qualify_Units_Initial, Table_Increment => Alloc.Name_Qualify_Units_Increment, Table_Name => "Name_Qualify_Units"); -- Define hash table for compressed debug names -- This hash table keeps track of qualification prefix strings -- that have been compressed. The element is the corresponding -- hash value used in the compressed symbol. type Hindex is range 0 .. 4096; -- Type to define range of headers function SHash (S : String_Ptr) return Hindex; -- Hash function for this table function SEq (F1, F2 : String_Ptr) return Boolean; -- Equality function for this table type Elmt is record W : Word; S : String_Ptr; end record; No_Elmt : Elmt := (0, null); package CDN is new GNAT.HTable.Simple_HTable ( Header_Num => Hindex, Element => Elmt, No_Element => No_Elmt, Key => String_Ptr, Hash => SHash, Equal => SEq); -------------------------------- -- Use of Qualification Flags -- -------------------------------- -- There are two flags used to keep track of qualification of entities -- Has_Fully_Qualified_Name -- Has_Qualified_Name -- The difference between these is as follows. Has_Qualified_Name is -- set to indicate that the name has been qualified as required by the -- spec of this package. As described there, this may involve the full -- qualification for the name, but for some entities, notably procedure -- local variables, this full qualification is not required. -- The flag Has_Fully_Qualified_Name is set if indeed the name has been -- fully qualified in the Ada sense. If Has_Fully_Qualified_Name is set, -- then Has_Qualified_Name is also set, but the other way round is not -- the case. -- Consider the following example: -- with ... -- procedure X is -- B : Ddd.Ttt; -- procedure Y is .. -- Here B is a procedure local variable, so it does not need fully -- qualification. The flag Has_Qualified_Name will be set on the -- first attempt to qualify B, to indicate that the job is done -- and need not be redone. -- But Y is qualified as x__y, since procedures are always fully -- qualified, so the first time that an attempt is made to qualify -- the name y, it will be replaced by x__y, and both flags are set. -- Why the two flags? Well there are cases where we derive type names -- from object names. As noted in the spec, type names are always -- fully qualified. Suppose for example that the backend has to build -- a padded type for variable B. then it will construct the PAD name -- from B, but it requires full qualification, so the fully qualified -- type name will be x__b___PAD. The two flags allow the circuit for -- building this name to realize efficiently that b needs further -- qualification. ---------------------- -- Local Procedures -- ---------------------- procedure Add_Uint_To_Buffer (U : Uint); -- Add image of universal integer to Name_Buffer, updating Name_Len procedure Add_Real_To_Buffer (U : Ureal); -- Add nnn_ddd to Name_Buffer, where nnn and ddd are integer values of -- the normalized numerator and denominator of the given real value. function Bounds_Match_Size (E : Entity_Id) return Boolean; -- Determine whether the bounds of E match the size of the type. This is -- used to determine whether encoding is required for a discrete type. function CDN_Hash (S : String) return Word; -- This is the hash function used to compress debug symbols. The string -- S is the prefix which is a list of qualified names separated by double -- underscore (no trailing double underscore). The returned value is the -- hash value used in the compressed names. It is also used for the hash -- table used to keep track of what prefixes have been compressed so far. procedure Compress_Debug_Name (E : Entity_Id); -- If the name of the entity E is too long, or compression is to be -- attempted on all names (Compress_Debug_Names set), then an attempt -- is made to compress the name of the entity. function Double_Underscore (S : String; J : Natural) return Boolean; -- Returns True if J is the start of a double underscore -- sequence in the string S (defined as two underscores -- which are preceded and followed by a non-underscore) procedure Prepend_String_To_Buffer (S : String); -- Prepend given string to the contents of the string buffer, updating -- the value in Name_Len (i.e. string is added at start of buffer). procedure Prepend_Uint_To_Buffer (U : Uint); -- Prepend image of universal integer to Name_Buffer, updating Name_Len procedure Put_Hex (W : Word; N : Natural); -- Output W as 8 hex digits (0-9, a-f) in Name_Buffer (N .. N + 7) procedure Qualify_Entity_Name (Ent : Entity_Id); -- If not already done, replaces the Chars field of the given entity -- with the appropriate fully qualified name. procedure Strip_BNPE_Suffix (Suffix_Found : in out Boolean); -- Given an qualified entity name in Name_Buffer, remove any plain X or -- X{nb} qualification suffix. The contents of Name_Buffer is not changed -- but Name_Len may be adjusted on return to remove the suffix. If a -- suffix is found and stripped, then Suffix_Found is set to True. If -- no suffix is found, then Suffix_Found is not modified. ------------------------ -- Add_Real_To_Buffer -- ------------------------ procedure Add_Real_To_Buffer (U : Ureal) is begin Add_Uint_To_Buffer (Norm_Num (U)); Add_Str_To_Name_Buffer ("_"); Add_Uint_To_Buffer (Norm_Den (U)); end Add_Real_To_Buffer; ------------------------ -- Add_Uint_To_Buffer -- ------------------------ procedure Add_Uint_To_Buffer (U : Uint) is begin if U < 0 then Add_Uint_To_Buffer (-U); Add_Char_To_Name_Buffer ('m'); else UI_Image (U, Decimal); Add_Str_To_Name_Buffer (UI_Image_Buffer (1 .. UI_Image_Length)); end if; end Add_Uint_To_Buffer; ----------------------- -- Bounds_Match_Size -- ----------------------- function Bounds_Match_Size (E : Entity_Id) return Boolean is Siz : Uint; begin if not Is_OK_Static_Subtype (E) then return False; elsif Is_Integer_Type (E) and then Subtypes_Statically_Match (E, Base_Type (E)) then return True; -- Here we check if the static bounds match the natural size, which -- is the size passed through with the debugging information. This -- is the Esize rounded up to 8, 16, 32 or 64 as appropriate. else declare Umark : constant Uintp.Save_Mark := Uintp.Mark; Result : Boolean; begin if Esize (E) <= 8 then Siz := Uint_8; elsif Esize (E) <= 16 then Siz := Uint_16; elsif Esize (E) <= 32 then Siz := Uint_32; else Siz := Uint_64; end if; if Is_Modular_Integer_Type (E) or else Is_Enumeration_Type (E) then Result := Expr_Rep_Value (Type_Low_Bound (E)) = 0 and then 2 ** Siz - Expr_Rep_Value (Type_High_Bound (E)) = 1; else Result := Expr_Rep_Value (Type_Low_Bound (E)) + 2 ** (Siz - 1) = 0 and then 2 ** (Siz - 1) - Expr_Rep_Value (Type_High_Bound (E)) = 1; end if; Release (Umark); return Result; end; end if; end Bounds_Match_Size; -------------- -- CDN_Hash -- -------------- function CDN_Hash (S : String) return Word is H : Word; function Rotate_Left (Value : Word; Amount : Natural) return Word; pragma Import (Intrinsic, Rotate_Left); begin H := 0; for J in S'Range loop H := Rotate_Left (H, 3) + Character'Pos (S (J)); end loop; return H; end CDN_Hash; ------------------------- -- Compress_Debug_Name -- ------------------------- procedure Compress_Debug_Name (E : Entity_Id) is Ptr : Natural; Sptr : String_Ptr; Cod : Word; begin if not Compress_Debug_Names and then Length_Of_Name (Chars (E)) <= Max_Debug_Name_Length then return; end if; Get_Name_String (Chars (E)); -- Find rightmost double underscore Ptr := Name_Len - 2; loop exit when Double_Underscore (Name_Buffer, Ptr); -- Cannot compress if no double underscore anywhere if Ptr < 2 then return; end if; Ptr := Ptr - 1; end loop; -- At this stage we have -- Name_Buffer (1 .. Ptr - 1) string to compress -- Name_Buffer (Ptr) underscore -- Name_Buffer (Ptr + 1) underscore -- Name_Buffer (Ptr + 2 .. Name_Len) simple name to retain -- See if we already have an entry for the compression string -- No point in compressing if it does not make things shorter if Name_Len <= (2 + 8 + 1) + (Name_Len - (Ptr + 1)) then return; end if; -- Do not compress any reference to entity in internal file if Name_Buffer (1 .. 5) = "ada__" or else Name_Buffer (1 .. 8) = "system__" or else Name_Buffer (1 .. 6) = "gnat__" or else Name_Buffer (1 .. 12) = "interfaces__" or else (OpenVMS and then Name_Buffer (1 .. 5) = "dec__") then return; end if; Sptr := Name_Buffer (1 .. Ptr - 1)'Unrestricted_Access; Cod := CDN.Get (Sptr).W; if Cod = 0 then Cod := CDN_Hash (Sptr.all); Sptr := new String'(Sptr.all); CDN.Set (Sptr, (Cod, Sptr)); end if; Name_Buffer (1) := 'X'; Name_Buffer (2) := 'C'; Put_Hex (Cod, 3); Name_Buffer (11) := '_'; Name_Buffer (12 .. Name_Len - Ptr + 10) := Name_Buffer (Ptr + 2 .. Name_Len); Name_Len := Name_Len - Ptr + 10; Set_Chars (E, Name_Enter); end Compress_Debug_Name; -------------------------------- -- Debug_Renaming_Declaration -- -------------------------------- function Debug_Renaming_Declaration (N : Node_Id) return Node_Id is Loc : constant Source_Ptr := Sloc (N); Ent : constant Node_Id := Defining_Entity (N); Nam : constant Node_Id := Name (N); Rnm : Name_Id; Ren : Node_Id; Lit : Entity_Id; Typ : Entity_Id; Res : Node_Id; Def : Entity_Id; function Output_Subscript (N : Node_Id; S : String) return Boolean; -- Outputs a single subscript value as ?nnn (subscript is compile -- time known value with value nnn) or as ?e (subscript is local -- constant with name e), where S supplies the proper string to -- use for ?. Returns False if the subscript is not of an appropriate -- type to output in one of these two forms. The result is prepended -- to the name stored in Name_Buffer. ---------------------- -- Output_Subscript -- ---------------------- function Output_Subscript (N : Node_Id; S : String) return Boolean is begin if Compile_Time_Known_Value (N) then Prepend_Uint_To_Buffer (Expr_Value (N)); elsif Nkind (N) = N_Identifier and then Scope (Entity (N)) = Scope (Ent) and then Ekind (Entity (N)) = E_Constant then Prepend_String_To_Buffer (Get_Name_String (Chars (Entity (N)))); else return False; end if; Prepend_String_To_Buffer (S); return True; end Output_Subscript; -- Start of processing for Debug_Renaming_Declaration begin if not Comes_From_Source (N) then return Empty; end if; -- Prepare entity name for type declaration Get_Name_String (Chars (Ent)); case Nkind (N) is when N_Object_Renaming_Declaration => Add_Str_To_Name_Buffer ("___XR"); when N_Exception_Renaming_Declaration => Add_Str_To_Name_Buffer ("___XRE"); when N_Package_Renaming_Declaration => Add_Str_To_Name_Buffer ("___XRP"); when others => return Empty; end case; Rnm := Name_Find; -- Get renamed entity and compute suffix Name_Len := 0; Ren := Nam; loop case Nkind (Ren) is when N_Identifier => exit; when N_Expanded_Name => -- The entity field for an N_Expanded_Name is on the -- expanded name node itself, so we are done here too. exit; when N_Selected_Component => Prepend_String_To_Buffer (Get_Name_String (Chars (Selector_Name (Ren)))); Prepend_String_To_Buffer ("XR"); Ren := Prefix (Ren); when N_Indexed_Component => declare X : Node_Id := Last (Expressions (Ren)); begin while Present (X) loop if not Output_Subscript (X, "XS") then Set_Materialize_Entity (Ent); return Empty; end if; Prev (X); end loop; end; Ren := Prefix (Ren); when N_Slice => Typ := Etype (First_Index (Etype (Nam))); if not Output_Subscript (Type_High_Bound (Typ), "XS") then Set_Materialize_Entity (Ent); return Empty; end if; if not Output_Subscript (Type_Low_Bound (Typ), "XL") then Set_Materialize_Entity (Ent); return Empty; end if; Ren := Prefix (Ren); when N_Explicit_Dereference => Prepend_String_To_Buffer ("XA"); Ren := Prefix (Ren); -- For now, anything else simply results in no translation when others => Set_Materialize_Entity (Ent); return Empty; end case; end loop; Prepend_String_To_Buffer ("___XE"); -- For now, the literal name contains only the suffix. The Entity_Id -- value for the name is used to create a link from this literal name -- to the renamed entity using the Debug_Renaming_Link field. Then the -- Qualify_Entity_Name procedure uses this link to create the proper -- fully qualified name. -- The reason we do things this way is that we really need to copy the -- qualification of the renamed entity, and it is really much easier to -- do this after the renamed entity has itself been fully qualified. Lit := Make_Defining_Identifier (Loc, Chars => Name_Enter); Set_Debug_Renaming_Link (Lit, Entity (Ren)); -- Return the appropriate enumeration type Def := Make_Defining_Identifier (Loc, Chars => Rnm); Res := Make_Full_Type_Declaration (Loc, Defining_Identifier => Def, Type_Definition => Make_Enumeration_Type_Definition (Loc, Literals => New_List (Lit))); Set_Needs_Debug_Info (Def); Set_Needs_Debug_Info (Lit); Set_Discard_Names (Defining_Identifier (Res)); return Res; -- If we get an exception, just figure it is a case that we cannot -- successfully handle using our current approach, since this is -- only for debugging, no need to take the compilation with us! exception when others => return Make_Null_Statement (Loc); end Debug_Renaming_Declaration; ----------------------- -- Double_Underscore -- ----------------------- function Double_Underscore (S : String; J : Natural) return Boolean is begin if J = S'First or else J > S'Last - 2 then return False; else return S (J) = '_' and then S (J + 1) = '_' and then S (J - 1) /= '_' and then S (J + 2) /= '_'; end if; end Double_Underscore; ------------------------------ -- Generate_Auxiliary_Types -- ------------------------------ -- Note: right now there is only one auxiliary type to be generated, -- namely the enumeration type for the compression sequences if used. procedure Generate_Auxiliary_Types is Loc : constant Source_Ptr := Sloc (Cunit (Current_Sem_Unit)); E : Elmt; Code : Entity_Id; Lit : Entity_Id; Start : Natural; Ptr : Natural; Discard : List_Id; Literal_List : List_Id := New_List; -- Gathers the list of literals for the declaration procedure Output_Literal; -- Adds suffix of form Xnnn to name in Name_Buffer, where nnn is -- a serial number that is one greater on each call, and then -- builds an enumeration literal and adds it to the literal list. Serial : Nat := 0; -- Current serial number procedure Output_Literal is begin Serial := Serial + 1; Add_Char_To_Name_Buffer ('X'); Add_Nat_To_Name_Buffer (Serial); Lit := Make_Defining_Identifier (Loc, Chars => Name_Find); Set_Has_Qualified_Name (Lit, True); Append (Lit, Literal_List); end Output_Literal; -- Start of processing for Auxiliary_Types begin E := CDN.Get_First; if E.S /= null then while E.S /= null loop -- We have E.S a String_Ptr that contains a string of the form: -- b__c__d -- In E.W is a 32-bit word representing the hash value -- Our mission is to construct a type -- type XChhhhhhhh is (b,c,d); -- where hhhhhhhh is the 8 hex digits of the E.W value. -- and append this type declaration to the result list Name_Buffer (1) := 'X'; Name_Buffer (2) := 'C'; Put_Hex (E.W, 3); Name_Len := 10; Output_Literal; Start := E.S'First; Ptr := E.S'First; while Ptr <= E.S'Last loop if Ptr = E.S'Last or else Double_Underscore (E.S.all, Ptr + 1) then Name_Len := Ptr - Start + 1; Name_Buffer (1 .. Name_Len) := E.S (Start .. Ptr); Output_Literal; Start := Ptr + 3; Ptr := Start; else Ptr := Ptr + 1; end if; end loop; E := CDN.Get_Next; end loop; Name_Buffer (1) := 'X'; Name_Buffer (2) := 'C'; Name_Len := 2; Code := Make_Defining_Identifier (Loc, Chars => Name_Find); Set_Has_Qualified_Name (Code, True); Insert_Library_Level_Action ( Make_Full_Type_Declaration (Loc, Defining_Identifier => Code, Type_Definition => Make_Enumeration_Type_Definition (Loc, Literals => Literal_List))); -- We have to manually freeze this entity, since it is inserted -- very late on into the tree, and otherwise will not be frozen. -- No freeze actions are generated, so we can discard the result. Discard := Freeze_Entity (Code, Loc); end if; end Generate_Auxiliary_Types; ---------------------- -- Get_Encoded_Name -- ---------------------- -- Note: see spec for details on encodings procedure Get_Encoded_Name (E : Entity_Id) is Has_Suffix : Boolean; begin Get_Name_String (Chars (E)); -- Nothing to do if we do not have a type if not Is_Type (E) -- Or if this is an enumeration base type or else (Is_Enumeration_Type (E) and then E = Base_Type (E)) -- Or if this is a dummy type for a renaming or else (Name_Len >= 3 and then Name_Buffer (Name_Len - 2 .. Name_Len) = "_XR") or else (Name_Len >= 4 and then (Name_Buffer (Name_Len - 3 .. Name_Len) = "_XRE" or else Name_Buffer (Name_Len - 3 .. Name_Len) = "_XRP")) -- For all these cases, just return the name unchanged then Name_Buffer (Name_Len + 1) := ASCII.Nul; return; end if; Has_Suffix := True; -- Fixed-point case if Is_Fixed_Point_Type (E) then Get_External_Name_With_Suffix (E, "XF_"); Add_Real_To_Buffer (Delta_Value (E)); if Small_Value (E) /= Delta_Value (E) then Add_Str_To_Name_Buffer ("_"); Add_Real_To_Buffer (Small_Value (E)); end if; -- Vax floating-point case elsif Vax_Float (E) then if Digits_Value (Base_Type (E)) = 6 then Get_External_Name_With_Suffix (E, "XFF"); elsif Digits_Value (Base_Type (E)) = 9 then Get_External_Name_With_Suffix (E, "XFF"); else pragma Assert (Digits_Value (Base_Type (E)) = 15); Get_External_Name_With_Suffix (E, "XFG"); end if; -- Discrete case where bounds do not match size elsif Is_Discrete_Type (E) and then not Bounds_Match_Size (E) then if Has_Biased_Representation (E) then Get_External_Name_With_Suffix (E, "XB"); else Get_External_Name_With_Suffix (E, "XD"); end if; declare Lo : constant Node_Id := Type_Low_Bound (E); Hi : constant Node_Id := Type_High_Bound (E); Lo_Stat : constant Boolean := Is_OK_Static_Expression (Lo); Hi_Stat : constant Boolean := Is_OK_Static_Expression (Hi); Lo_Discr : constant Boolean := Nkind (Lo) = N_Identifier and then Ekind (Entity (Lo)) = E_Discriminant; Hi_Discr : constant Boolean := Nkind (Hi) = N_Identifier and then Ekind (Entity (Hi)) = E_Discriminant; Lo_Encode : constant Boolean := Lo_Stat or Lo_Discr; Hi_Encode : constant Boolean := Hi_Stat or Hi_Discr; begin if Lo_Encode or Hi_Encode then if Lo_Encode then if Hi_Encode then Add_Str_To_Name_Buffer ("LU_"); else Add_Str_To_Name_Buffer ("L_"); end if; else Add_Str_To_Name_Buffer ("U_"); end if; if Lo_Stat then Add_Uint_To_Buffer (Expr_Rep_Value (Lo)); elsif Lo_Discr then Get_Name_String_And_Append (Chars (Entity (Lo))); end if; if Lo_Encode and Hi_Encode then Add_Str_To_Name_Buffer ("__"); end if; if Hi_Stat then Add_Uint_To_Buffer (Expr_Rep_Value (Hi)); elsif Hi_Discr then Get_Name_String_And_Append (Chars (Entity (Hi))); end if; end if; end; -- For all other cases, the encoded name is the normal type name else Has_Suffix := False; Get_External_Name (E, Has_Suffix); end if; if Debug_Flag_B and then Has_Suffix then Write_Str ("**** type "); Write_Name (Chars (E)); Write_Str (" is encoded as "); Write_Str (Name_Buffer (1 .. Name_Len)); Write_Eol; end if; Name_Buffer (Name_Len + 1) := ASCII.NUL; end Get_Encoded_Name; ------------------- -- Get_Entity_Id -- ------------------- function Get_Entity_Id (External_Name : String) return Entity_Id is begin return Empty; end Get_Entity_Id; ----------------------- -- Get_External_Name -- ----------------------- procedure Get_External_Name (Entity : Entity_Id; Has_Suffix : Boolean) is E : Entity_Id := Entity; Kind : Entity_Kind; procedure Get_Qualified_Name_And_Append (Entity : Entity_Id); -- Appends fully qualified name of given entity to Name_Buffer ----------------------------------- -- Get_Qualified_Name_And_Append -- ----------------------------------- procedure Get_Qualified_Name_And_Append (Entity : Entity_Id) is begin -- If the entity is a compilation unit, its scope is Standard, -- there is no outer scope, and the no further qualification -- is required. -- If the front end has already computed a fully qualified name, -- then it is also the case that no further qualification is -- required if Present (Scope (Scope (Entity))) and then not Has_Fully_Qualified_Name (Entity) then Get_Qualified_Name_And_Append (Scope (Entity)); Add_Str_To_Name_Buffer ("__"); end if; Get_Name_String_And_Append (Chars (Entity)); end Get_Qualified_Name_And_Append; -- Start of processing for Get_External_Name begin Name_Len := 0; -- If this is a child unit, we want the child if Nkind (E) = N_Defining_Program_Unit_Name then E := Defining_Identifier (Entity); end if; Kind := Ekind (E); -- Case of interface name being used if (Kind = E_Procedure or else Kind = E_Function or else Kind = E_Constant or else Kind = E_Variable or else Kind = E_Exception) and then Present (Interface_Name (E)) and then No (Address_Clause (E)) and then not Has_Suffix then -- The following code needs explanation ??? if Convention (E) = Convention_Stdcall and then Ekind (E) = E_Variable then Add_Str_To_Name_Buffer ("_imp__"); end if; Add_String_To_Name_Buffer (Strval (Interface_Name (E))); -- All other cases besides the interface name case else -- If this is a library level subprogram (i.e. a subprogram that is a -- compilation unit other than a subunit), then we prepend _ada_ to -- ensure distinctions required as described in the spec. -- Check explicitly for child units, because those are not flagged -- as Compilation_Units by lib. Should they be ??? if Is_Subprogram (E) and then (Is_Compilation_Unit (E) or Is_Child_Unit (E)) and then not Has_Suffix then Add_Str_To_Name_Buffer ("_ada_"); end if; -- If the entity is a subprogram instance that is not a compilation -- unit, generate the name of the original Ada entity, which is the -- one gdb needs. if Is_Generic_Instance (E) and then Is_Subprogram (E) and then not Is_Compilation_Unit (Scope (E)) then E := Related_Instance (Scope (E)); end if; Get_Qualified_Name_And_Append (E); if Has_Homonym (E) then declare H : Entity_Id := Homonym (E); Nr : Nat := 1; begin while Present (H) loop if (Scope (H) = Scope (E)) then Nr := Nr + 1; end if; H := Homonym (H); end loop; if Nr > 1 then if No_Dollar_In_Label then Add_Str_To_Name_Buffer ("__"); else Add_Char_To_Name_Buffer ('$'); end if; Add_Nat_To_Name_Buffer (Nr); end if; end; end if; end if; Name_Buffer (Name_Len + 1) := ASCII.Nul; end Get_External_Name; ----------------------------------- -- Get_External_Name_With_Suffix -- ----------------------------------- procedure Get_External_Name_With_Suffix (Entity : Entity_Id; Suffix : String) is Has_Suffix : constant Boolean := (Suffix /= ""); begin Get_External_Name (Entity, Has_Suffix); if Has_Suffix then Add_Str_To_Name_Buffer ("___"); Add_Str_To_Name_Buffer (Suffix); Name_Buffer (Name_Len + 1) := ASCII.Nul; end if; end Get_External_Name_With_Suffix; -------------------------- -- Get_Variant_Encoding -- -------------------------- procedure Get_Variant_Encoding (V : Node_Id) is Choice : Node_Id; procedure Choice_Val (Typ : Character; Choice : Node_Id); -- Output encoded value for a single choice value. Typ is the key -- character ('S', 'F', or 'T') that precedes the choice value. ---------------- -- Choice_Val -- ---------------- procedure Choice_Val (Typ : Character; Choice : Node_Id) is begin Add_Char_To_Name_Buffer (Typ); if Nkind (Choice) = N_Integer_Literal then Add_Uint_To_Buffer (Intval (Choice)); -- Character literal with no entity present (this is the case -- Standard.Character or Standard.Wide_Character as root type) elsif Nkind (Choice) = N_Character_Literal and then No (Entity (Choice)) then Add_Uint_To_Buffer (UI_From_Int (Int (Char_Literal_Value (Choice)))); else declare Ent : constant Entity_Id := Entity (Choice); begin if Ekind (Ent) = E_Enumeration_Literal then Add_Uint_To_Buffer (Enumeration_Rep (Ent)); else pragma Assert (Ekind (Ent) = E_Constant); Choice_Val (Typ, Constant_Value (Ent)); end if; end; end if; end Choice_Val; -- Start of processing for Get_Variant_Encoding begin Name_Len := 0; Choice := First (Discrete_Choices (V)); while Present (Choice) loop if Nkind (Choice) = N_Others_Choice then Add_Char_To_Name_Buffer ('O'); elsif Nkind (Choice) = N_Range then Choice_Val ('R', Low_Bound (Choice)); Choice_Val ('T', High_Bound (Choice)); elsif Is_Entity_Name (Choice) and then Is_Type (Entity (Choice)) then Choice_Val ('R', Type_Low_Bound (Entity (Choice))); Choice_Val ('T', Type_High_Bound (Entity (Choice))); elsif Nkind (Choice) = N_Subtype_Indication then declare Rang : constant Node_Id := Range_Expression (Constraint (Choice)); begin Choice_Val ('R', Low_Bound (Rang)); Choice_Val ('T', High_Bound (Rang)); end; else Choice_Val ('S', Choice); end if; Next (Choice); end loop; Name_Buffer (Name_Len + 1) := ASCII.NUL; if Debug_Flag_B then declare VP : constant Node_Id := Parent (V); -- Variant_Part CL : constant Node_Id := Parent (VP); -- Component_List RD : constant Node_Id := Parent (CL); -- Record_Definition FT : constant Node_Id := Parent (RD); -- Full_Type_Declaration begin Write_Str ("**** variant for type "); Write_Name (Chars (Defining_Identifier (FT))); Write_Str (" is encoded as "); Write_Str (Name_Buffer (1 .. Name_Len)); Write_Eol; end; end if; end Get_Variant_Encoding; --------------------------------- -- Make_Packed_Array_Type_Name -- --------------------------------- function Make_Packed_Array_Type_Name (Typ : Entity_Id; Csize : Uint) return Name_Id is begin Get_Name_String (Chars (Typ)); Add_Str_To_Name_Buffer ("___XP"); Add_Uint_To_Buffer (Csize); return Name_Find; end Make_Packed_Array_Type_Name; ------------------------------ -- Prepend_String_To_Buffer -- ------------------------------ procedure Prepend_String_To_Buffer (S : String) is N : constant Integer := S'Length; begin Name_Buffer (1 + N .. Name_Len + N) := Name_Buffer (1 .. Name_Len); Name_Buffer (1 .. N) := S; Name_Len := Name_Len + N; end Prepend_String_To_Buffer; ---------------------------- -- Prepend_Uint_To_Buffer -- ---------------------------- procedure Prepend_Uint_To_Buffer (U : Uint) is begin if U < 0 then Prepend_String_To_Buffer ("m"); Prepend_Uint_To_Buffer (-U); else UI_Image (U, Decimal); Prepend_String_To_Buffer (UI_Image_Buffer (1 .. UI_Image_Length)); end if; end Prepend_Uint_To_Buffer; ------------- -- Put_Hex -- ------------- procedure Put_Hex (W : Word; N : Natural) is Hex : constant array (Word range 0 .. 15) of Character := "0123456789abcdef"; Cod : Word; begin Cod := W; for J in reverse N .. N + 7 loop Name_Buffer (J) := Hex (Cod and 16#F#); Cod := Cod / 16; end loop; end Put_Hex; ------------------------------ -- Qualify_All_Entity_Names -- ------------------------------ procedure Qualify_All_Entity_Names is E : Entity_Id; Ent : Entity_Id; begin for J in Name_Qualify_Units.First .. Name_Qualify_Units.Last loop E := Defining_Entity (Name_Qualify_Units.Table (J)); Qualify_Entity_Name (E); Ent := First_Entity (E); while Present (Ent) loop Qualify_Entity_Name (Ent); Next_Entity (Ent); -- There are odd cases where Last_Entity (E) = E. This happens -- in the case of renaming of packages. This test avoids getting -- stuck in such cases. exit when Ent = E; end loop; end loop; -- Second loop compresses any names that need compressing for J in Name_Qualify_Units.First .. Name_Qualify_Units.Last loop E := Defining_Entity (Name_Qualify_Units.Table (J)); Compress_Debug_Name (E); Ent := First_Entity (E); while Present (Ent) loop Compress_Debug_Name (Ent); Next_Entity (Ent); exit when Ent = E; end loop; end loop; end Qualify_All_Entity_Names; ------------------------- -- Qualify_Entity_Name -- ------------------------- procedure Qualify_Entity_Name (Ent : Entity_Id) is Full_Qualify_Name : String (1 .. Name_Buffer'Length); Full_Qualify_Len : Natural := 0; -- Used to accumulate fully qualified name of subprogram procedure Fully_Qualify_Name (E : Entity_Id); -- Used to qualify a subprogram or type name, where full -- qualification up to Standard is always used. Name is set -- in Full_Qualify_Name with the length in Full_Qualify_Len. -- Note that this routine does not prepend the _ada_ string -- required for library subprograms (this is done in the back end). function Is_BNPE (S : Entity_Id) return Boolean; -- Determines if S is a BNPE, i.e. Body-Nested Package Entity, which -- is defined to be a package which is immediately nested within a -- package body. function Qualify_Needed (S : Entity_Id) return Boolean; -- Given a scope, determines if the scope is to be included in the -- fully qualified name, True if so, False if not. procedure Set_BNPE_Suffix (E : Entity_Id); -- Recursive routine to append the BNPE qualification suffix. Works -- from right to left with E being the current entity in the list. -- The result does NOT have the trailing n's and trailing b stripped. -- The caller must do this required stripping. procedure Set_Entity_Name (E : Entity_Id); -- Internal recursive routine that does most of the work. This routine -- leaves the result sitting in Name_Buffer and Name_Len. BNPE_Suffix_Needed : Boolean := False; -- Set true if a body-nested package entity suffix is required Save_Chars : constant Name_Id := Chars (Ent); -- Save original name ------------------------ -- Fully_Qualify_Name -- ------------------------ procedure Fully_Qualify_Name (E : Entity_Id) is Discard : Boolean := False; begin -- If this we are qualifying entities local to a generic -- instance, use the name of the original instantiation, -- not that of the anonymous subprogram in the wrapper -- package, so that gdb doesn't have to know about these. if Is_Generic_Instance (E) and then Is_Subprogram (E) and then not Comes_From_Source (E) and then not Is_Compilation_Unit (Scope (E)) then Fully_Qualify_Name (Related_Instance (Scope (E))); return; end if; -- If we reached fully qualified name, then just copy it if Has_Fully_Qualified_Name (E) then Get_Name_String (Chars (E)); Strip_BNPE_Suffix (Discard); Full_Qualify_Name (1 .. Name_Len) := Name_Buffer (1 .. Name_Len); Full_Qualify_Len := Name_Len; Set_Has_Fully_Qualified_Name (Ent); -- Case of non-fully qualified name else if Scope (E) = Standard_Standard then Set_Has_Fully_Qualified_Name (Ent); else Fully_Qualify_Name (Scope (E)); Full_Qualify_Name (Full_Qualify_Len + 1) := '_'; Full_Qualify_Name (Full_Qualify_Len + 2) := '_'; Full_Qualify_Len := Full_Qualify_Len + 2; end if; if Has_Qualified_Name (E) then Get_Unqualified_Name_String (Chars (E)); else Get_Name_String (Chars (E)); end if; Full_Qualify_Name (Full_Qualify_Len + 1 .. Full_Qualify_Len + Name_Len) := Name_Buffer (1 .. Name_Len); Full_Qualify_Len := Full_Qualify_Len + Name_Len; end if; if Is_BNPE (E) then BNPE_Suffix_Needed := True; end if; end Fully_Qualify_Name; ------------- -- Is_BNPE -- ------------- function Is_BNPE (S : Entity_Id) return Boolean is begin return Ekind (S) = E_Package and then Is_Package_Body_Entity (S); end Is_BNPE; -------------------- -- Qualify_Needed -- -------------------- function Qualify_Needed (S : Entity_Id) return Boolean is begin -- If we got all the way to Standard, then we have certainly -- fully qualified the name, so set the flag appropriately, -- and then return False, since we are most certainly done! if S = Standard_Standard then Set_Has_Fully_Qualified_Name (Ent, True); return False; -- Otherwise figure out if further qualification is required else return Is_Subprogram (Ent) or else Ekind (Ent) = E_Subprogram_Body or else (Ekind (S) /= E_Block and then not Is_Dynamic_Scope (S)); end if; end Qualify_Needed; --------------------- -- Set_BNPE_Suffix -- --------------------- procedure Set_BNPE_Suffix (E : Entity_Id) is S : constant Entity_Id := Scope (E); begin if Qualify_Needed (S) then Set_BNPE_Suffix (S); if Is_BNPE (E) then Add_Char_To_Name_Buffer ('b'); else Add_Char_To_Name_Buffer ('n'); end if; else Add_Char_To_Name_Buffer ('X'); end if; end Set_BNPE_Suffix; --------------------- -- Set_Entity_Name -- --------------------- procedure Set_Entity_Name (E : Entity_Id) is S : constant Entity_Id := Scope (E); begin -- If we reach an already qualified name, just take the encoding -- except that we strip the package body suffixes, since these -- will be separately put on later. if Has_Qualified_Name (E) then Get_Name_String_And_Append (Chars (E)); Strip_BNPE_Suffix (BNPE_Suffix_Needed); -- If the top level name we are adding is itself fully -- qualified, then that means that the name that we are -- preparing for the Fully_Qualify_Name call will also -- generate a fully qualified name. if Has_Fully_Qualified_Name (E) then Set_Has_Fully_Qualified_Name (Ent); end if; -- Case where upper level name is not encoded yet else -- Recurse if further qualification required if Qualify_Needed (S) then Set_Entity_Name (S); Add_Str_To_Name_Buffer ("__"); end if; -- Otherwise get name and note if it is a NPBE Get_Name_String_And_Append (Chars (E)); if Is_BNPE (E) then BNPE_Suffix_Needed := True; end if; end if; end Set_Entity_Name; -- Start of processing for Qualify_Entity_Name begin if Has_Qualified_Name (Ent) then return; -- Here is where we create the proper link for renaming elsif Ekind (Ent) = E_Enumeration_Literal and then Present (Debug_Renaming_Link (Ent)) then Set_Entity_Name (Debug_Renaming_Link (Ent)); Get_Name_String (Chars (Ent)); Prepend_String_To_Buffer (Get_Name_String (Chars (Debug_Renaming_Link (Ent)))); Set_Chars (Ent, Name_Enter); Set_Has_Qualified_Name (Ent); return; elsif Is_Subprogram (Ent) or else Ekind (Ent) = E_Subprogram_Body or else Is_Type (Ent) then Fully_Qualify_Name (Ent); Name_Len := Full_Qualify_Len; Name_Buffer (1 .. Name_Len) := Full_Qualify_Name (1 .. Name_Len); elsif Qualify_Needed (Scope (Ent)) then Name_Len := 0; Set_Entity_Name (Ent); else Set_Has_Qualified_Name (Ent); return; end if; -- Fall through with a fully qualified name in Name_Buffer/Name_Len -- Add body-nested package suffix if required if BNPE_Suffix_Needed and then Ekind (Ent) /= E_Enumeration_Literal then Set_BNPE_Suffix (Ent); -- Strip trailing n's and last trailing b as required. note that -- we know there is at least one b, or no suffix would be generated. while Name_Buffer (Name_Len) = 'n' loop Name_Len := Name_Len - 1; end loop; Name_Len := Name_Len - 1; end if; Set_Chars (Ent, Name_Enter); Set_Has_Qualified_Name (Ent); if Debug_Flag_BB then Write_Str ("*** "); Write_Name (Save_Chars); Write_Str (" qualified as "); Write_Name (Chars (Ent)); Write_Eol; end if; end Qualify_Entity_Name; -------------------------- -- Qualify_Entity_Names -- -------------------------- procedure Qualify_Entity_Names (N : Node_Id) is begin Name_Qualify_Units.Append (N); end Qualify_Entity_Names; -------------------------------- -- Save_Unitname_And_Use_List -- -------------------------------- procedure Save_Unitname_And_Use_List (Main_Unit_Node : Node_Id; Main_Kind : Node_Kind) is INITIAL_NAME_LENGTH : constant := 1024; Item : Node_Id; Pack_Name : Node_Id; Unit_Spec : Node_Id := 0; Unit_Body : Node_Id := 0; Main_Name : String_Id; -- Fully qualified name of Main Unit Unit_Name : String_Id; -- Name of unit specified in a Use clause Spec_Unit_Index : Source_File_Index; Spec_File_Name : File_Name_Type := No_File; Body_Unit_Index : Source_File_Index; Body_File_Name : File_Name_Type := No_File; type String_Ptr is access all String; Spec_File_Name_Str : String_Ptr; Body_File_Name_Str : String_Ptr; type Label is record Label_Name : String_Ptr; Name_Length : Integer; Pos : Integer; end record; Spec_Label : Label; Body_Label : Label; procedure Initialize (L : out Label); -- Initialize label procedure Append (L : in out Label; Ch : Character); -- Append character to label procedure Append (L : in out Label; Str : String); -- Append string to label procedure Append_Name (L : in out Label; Unit_Name : String_Id); -- Append name to label function Sufficient_Space (L : Label; Unit_Name : String_Id) return Boolean; -- Does sufficient space exist to append another name? procedure Append (L : in out Label; Str : String) is begin L.Label_Name (L.Pos + 1 .. L.Pos + Str'Length) := Str; L.Pos := L.Pos + Str'Length; end Append; procedure Append (L : in out Label; Ch : Character) is begin L.Pos := L.Pos + 1; L.Label_Name (L.Pos) := Ch; end Append; procedure Append_Name (L : in out Label; Unit_Name : String_Id) is Char : Char_Code; Upper_Offset : constant := Character'Pos ('a') - Character'Pos ('A'); begin for J in 1 .. String_Length (Unit_Name) loop Char := Get_String_Char (Unit_Name, J); if Character'Val (Char) = '.' then Append (L, "__"); elsif Character'Val (Char) in 'A' .. 'Z' then Append (L, Character'Val (Char + Upper_Offset)); elsif Char /= 0 then Append (L, Character'Val (Char)); end if; end loop; end Append_Name; procedure Initialize (L : out Label) is begin L.Name_Length := INITIAL_NAME_LENGTH; L.Pos := 0; L.Label_Name := new String (1 .. L.Name_Length); end Initialize; function Sufficient_Space (L : Label; Unit_Name : String_Id) return Boolean is Len : Integer := Integer (String_Length (Unit_Name)) + 1; begin for J in 1 .. String_Length (Unit_Name) loop if Character'Val (Get_String_Char (Unit_Name, J)) = '.' then Len := Len + 1; end if; end loop; return L.Pos + Len < L.Name_Length; end Sufficient_Space; -- Start of processing for Save_Unitname_And_Use_List begin Initialize (Spec_Label); Initialize (Body_Label); case Main_Kind is when N_Package_Declaration => Main_Name := Full_Qualified_Name (Defining_Unit_Name (Specification (Unit (Main_Unit_Node)))); Unit_Spec := Main_Unit_Node; Append (Spec_Label, "_LPS__"); Append (Body_Label, "_LPB__"); when N_Package_Body => Unit_Spec := Corresponding_Spec (Unit (Main_Unit_Node)); Unit_Body := Main_Unit_Node; Main_Name := Full_Qualified_Name (Unit_Spec); Append (Spec_Label, "_LPS__"); Append (Body_Label, "_LPB__"); when N_Subprogram_Body => Unit_Body := Main_Unit_Node; if Present (Corresponding_Spec (Unit (Main_Unit_Node))) then Unit_Spec := Corresponding_Spec (Unit (Main_Unit_Node)); Main_Name := Full_Qualified_Name (Corresponding_Spec (Unit (Main_Unit_Node))); else Main_Name := Full_Qualified_Name (Defining_Unit_Name (Specification (Unit (Main_Unit_Node)))); end if; Append (Spec_Label, "_LSS__"); Append (Body_Label, "_LSB__"); when others => return; end case; Append_Name (Spec_Label, Main_Name); Append_Name (Body_Label, Main_Name); -- If we have a body, process it first if Present (Unit_Body) then Item := First (Context_Items (Unit_Body)); while Present (Item) loop if Nkind (Item) = N_Use_Package_Clause then Pack_Name := First (Names (Item)); while Present (Pack_Name) loop Unit_Name := Full_Qualified_Name (Entity (Pack_Name)); if Sufficient_Space (Body_Label, Unit_Name) then Append (Body_Label, '$'); Append_Name (Body_Label, Unit_Name); end if; Pack_Name := Next (Pack_Name); end loop; end if; Item := Next (Item); end loop; end if; while Present (Unit_Spec) and then Nkind (Unit_Spec) /= N_Compilation_Unit loop Unit_Spec := Parent (Unit_Spec); end loop; if Present (Unit_Spec) then Item := First (Context_Items (Unit_Spec)); while Present (Item) loop if Nkind (Item) = N_Use_Package_Clause then Pack_Name := First (Names (Item)); while Present (Pack_Name) loop Unit_Name := Full_Qualified_Name (Entity (Pack_Name)); if Sufficient_Space (Spec_Label, Unit_Name) then Append (Spec_Label, '$'); Append_Name (Spec_Label, Unit_Name); end if; if Sufficient_Space (Body_Label, Unit_Name) then Append (Body_Label, '$'); Append_Name (Body_Label, Unit_Name); end if; Pack_Name := Next (Pack_Name); end loop; end if; Item := Next (Item); end loop; end if; if Present (Unit_Spec) then Append (Spec_Label, Character'Val (0)); Spec_Unit_Index := Source_Index (Get_Cunit_Unit_Number (Unit_Spec)); Spec_File_Name := Full_File_Name (Spec_Unit_Index); Get_Name_String (Spec_File_Name); Spec_File_Name_Str := new String (1 .. Name_Len + 1); Spec_File_Name_Str (1 .. Name_Len) := Name_Buffer (1 .. Name_Len); Spec_File_Name_Str (Name_Len + 1) := Character'Val (0); Spec_Filename := Spec_File_Name_Str (1)'Unrestricted_Access; Spec_Context_List := Spec_Label.Label_Name.all (1)'Unrestricted_Access; end if; if Present (Unit_Body) then Append (Body_Label, Character'Val (0)); Body_Unit_Index := Source_Index (Get_Cunit_Unit_Number (Unit_Body)); Body_File_Name := Full_File_Name (Body_Unit_Index); Get_Name_String (Body_File_Name); Body_File_Name_Str := new String (1 .. Name_Len + 1); Body_File_Name_Str (1 .. Name_Len) := Name_Buffer (1 .. Name_Len); Body_File_Name_Str (Name_Len + 1) := Character'Val (0); Body_Filename := Body_File_Name_Str (1)'Unrestricted_Access; Body_Context_List := Body_Label.Label_Name.all (1)'Unrestricted_Access; end if; end Save_Unitname_And_Use_List; --------- -- SEq -- --------- function SEq (F1, F2 : String_Ptr) return Boolean is begin return F1.all = F2.all; end SEq; ----------- -- SHash -- ----------- function SHash (S : String_Ptr) return Hindex is begin return Hindex (Hindex'First + Hindex (CDN_Hash (S.all) mod Hindex'Range_Length)); end SHash; ----------------------- -- Strip_BNPE_Suffix -- ----------------------- procedure Strip_BNPE_Suffix (Suffix_Found : in out Boolean) is begin for J in reverse 2 .. Name_Len loop if Name_Buffer (J) = 'X' then Name_Len := J - 1; Suffix_Found := True; exit; end if; exit when Name_Buffer (J) /= 'b' and then Name_Buffer (J) /= 'n'; end loop; end Strip_BNPE_Suffix; end Exp_Dbug;
----------------------------------------------------------------------- -- tool-data -- Perf data representation -- Copyright (C) 2018 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- 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.Text_IO; with Ada.Strings.Fixed; with Util.Strings; with Util.Log.Loggers; with Util.Serialize.IO.XML; with Util.Strings.Tokenizers; with Excel_Out; package body Tool.Data is use type Ada.Containers.Count_Type; use type Ada.Text_IO.Positive_Count; Log : constant Util.Log.Loggers.Logger := Util.Log.Loggers.Create ("Tool.Data"); function Parse_Time (Value : in String) return Duration; function Get_Title (Value : in String) return String; function Get_Value (Value : in String) return Row_Count_Type; procedure Collect_Result (Into : in out Perf_Result; Driver : in Driver_Type; Result : in Result_Type); procedure Add_Driver (Benchmark : in out Benchmark_Info); function Format (Value : in Duration) return String; function Format_Us (Value : in Duration) return String; Empty_Perf : Perf_Map; Empty_Perf_Result : Perf_Result; function Parse_Time (Value : in String) return Duration is Pos : constant Natural := Util.Strings.Index (Value, ' '); Result : Duration; begin Result := Duration'Value (Value (Value'First .. Pos - 1)); if Value (Pos + 1 .. Value'Last) = "ns" then Result := Result / 1_000_000_000; elsif Value (Pos + 1 .. Value'Last) = "us" then Result := Result / 1_000_000; elsif Value (Pos + 1 .. Value'Last) = "ms" then Result := Result / 1_000; end if; return Result; end Parse_Time; function Get_Title (Value : in String) return String is Pos : constant Natural := Util.Strings.Rindex (Value, ' '); begin if Pos = 0 or Value'Length < String '("SELECT * FROM")'Length then return Value; end if; for C of Value (Pos + 1 .. Value'Last) loop if not (C in '0' .. '9') then return Value; end if; end loop; return Value (Value'First .. Pos - 1); end Get_Title; function Get_Value (Value : in String) return Row_Count_Type is Pos : constant Natural := Util.Strings.Rindex (Value, ' '); begin if Value'Length < String '("SELECT * FROM")'Length then return 0; else return Row_Count_Type'Value (Value (Pos + 1 .. Value'Last)); end if; exception when Constraint_Error => return 0; end Get_Value; function Format (Value : in Duration) return String is begin if Value < 0.000_001 then return Duration'Image (Value * 1_000_000_000) (1 .. 6) & " ns"; elsif Value < 0.001 then return Duration'Image (Value * 1_000_000) (1 .. 6) & " us"; elsif Value < 1.0 then return Duration'Image (Value * 1_000) (1 .. 6) & " ms"; else return Duration'Image (Value) (1 .. 6) & " s"; end if; end Format; function Format_Us (Value : in Duration) return String is Result : constant String := Duration'Image (Value * 1_000_000); Pos : Positive := Result'Last; begin -- Drop leading zeros. while Pos > Result'First and then Result (Pos) = '0' and then Result (Pos - 1) /= '.' loop Pos := Pos - 1; end loop; return Result (Result'First .. Pos); end Format_Us; procedure Collect_Result (Into : in out Perf_Result; Driver : in Driver_Type; Result : in Result_Type) is procedure Update (Item : in out Result_Type); procedure Update (Item : in out Result_Type) is begin Item.Count := Item.Count + Result.Count; Item.Time := Item.Time + Result.Time; end Update; begin while Into.Results.Length < Ada.Containers.Count_Type (Driver) loop Into.Results.Append (Result_Type '(Count => 0, Time => 0.0)); end loop; Into.Results.Update_Element (Driver, Update'Access); end Collect_Result; procedure Add_Driver (Benchmark : in out Benchmark_Info) is procedure Update_Driver (Key : in String; Driver : in out Driver_Result); Database : constant String := UBO.To_String (Benchmark.Driver); Language : constant String := UBO.To_String (Benchmark.Language); Pos : Driver_Cursor := Benchmark.Drivers.Find (Language & " " & Database); New_Driver : Driver_Result; procedure Update_Driver (Key : in String; Driver : in out Driver_Result) is pragma Unreferenced (Key); begin Driver.Count := Driver.Count + 1; Driver.Rss_Size := Driver.Rss_Size + Benchmark.Rss_Size; Driver.Peek_Rss := Driver.Peek_Rss + Benchmark.Peek_Rss_Size; Driver.Thread_Count := Driver.Thread_Count + Benchmark.Thread_Count; Driver.User_Time := Driver.User_Time + Benchmark.User_Time; Driver.Sys_Time := Driver.Sys_Time + Benchmark.Sys_Time; Driver.Language := Benchmark.Language_Index; Driver.Database := Benchmark.Database_Index; Driver.Index := Benchmark.Driver_Index; end Update_Driver; begin Log.Debug ("Adding driver {0} {1}", Language, Database); if UBO.Is_Null (Benchmark.Driver) or else UBO.Is_Null (Benchmark.Language) then return; end if; if not Driver_Maps.Has_Element (Pos) then New_Driver.Index := Driver_Type (Benchmark.Drivers.Length + 1); Benchmark.Drivers.Insert (Language & " " & Database, New_Driver); Pos := Benchmark.Drivers.Find (Language & " " & Database); end if; Benchmark.Database_Index := Benchmark.Databases.Find_Index (Database); Benchmark.Language_Index := Benchmark.Languages.Find_Index (Language); Benchmark.Driver_Index := Driver_Maps.Element (Pos).Index; Benchmark.Drivers.Update_Element (Pos, Update_Driver'Access); end Add_Driver; procedure Set_Member (Benchmark : in out Benchmark_Info; Field : in Benchmark_Fields; Value : in UBO.Object) is begin case Field is when FIELD_DRIVER => if not Benchmark.Databases.Contains (UBO.To_String (Value)) then Benchmark.Databases.Append (UBO.To_String (Value)); end if; Benchmark.Driver := Value; when FIELD_LANGUAGE => if not Benchmark.Languages.Contains (UBO.To_String (Value)) then Benchmark.Languages.Append (UBO.To_String (Value)); end if; Benchmark.Language := Value; when FIELD_THREADS => Benchmark.Thread_Count := UBO.To_Integer (Value); when FIELD_RSS_SIZE => Benchmark.Rss_Size := UBO.To_Integer (Value); when FIELD_PEEK_RSS_SIZE => Benchmark.Peek_Rss_Size := UBO.To_Integer (Value); when FIELD_USER_TIME => Benchmark.User_Time := UBO.To_Integer (Value); when FIELD_SYS_TIME => Benchmark.Sys_Time := UBO.To_Integer (Value); when FIELD_MEASURES => Add_Driver (Benchmark); when FIELD_COUNT => Benchmark.Count := Count_Type (UBO.To_Integer (Value)); when FIELD_TITLE => Benchmark.Title := Value; when FIELD_TOTAL => Benchmark.Time := Parse_Time (UBO.To_String (Value)); when FIELD_TIME => declare procedure Update (Key : in String; Item : in out Perf_Map); procedure Update_Perf_Result (Key : in Row_Count_Type; Item : in out Perf_Result); Main_Title : constant String := UBO.To_String (Benchmark.Title); Title : constant String := Get_Title (Main_Title); Value : constant Row_Count_Type := Get_Value (Main_Title); Pos : Benchmark_Cursor := Benchmark.Benchmarks.Find (Title); Result : Result_Type; procedure Update_Perf_Result (Key : in Row_Count_Type; Item : in out Perf_Result) is pragma Unreferenced (Key); begin Collect_Result (Item, Benchmark.Driver_Index, Result); end Update_Perf_Result; procedure Update (Key : in String; Item : in out Perf_Map) is pragma Unreferenced (Key); Pos : Perf_Cursor := Item.Find (Value); begin if not Perf_Result_Maps.Has_Element (Pos) then Item.Insert (Value, Empty_Perf_Result); Pos := Item.Find (Value); end if; Item.Update_Element (Pos, Update_Perf_Result'Access); end Update; begin Result.Count := Benchmark.Count; Result.Time := Benchmark.Time; if not Benchmark_Maps.Has_Element (Pos) then Benchmark.Benchmarks.Insert (Title, Empty_Perf); Pos := Benchmark.Benchmarks.Find (Title); end if; Benchmark.Benchmarks.Update_Element (Pos, Update'Access); end; end case; end Set_Member; Mapping : aliased Benchmark_Mapper.Mapper; Benchmark : aliased Benchmark_Info; procedure Read (Path : in String) is Mapper : Util.Serialize.Mappers.Processing; Reader : Util.Serialize.IO.XML.Parser; begin Benchmark.User_Time := 0; Benchmark.Sys_Time := 0; Benchmark.Thread_Count := 0; Benchmark.Rss_Size := 0; Benchmark.Peek_Rss_Size := 0; Benchmark.Language := UBO.Null_Object; Benchmark.Driver := UBO.Null_Object; Mapper.Add_Mapping ("benchmark", Mapping'Access); Benchmark_Mapper.Set_Context (Mapper, Benchmark'Access); Reader.Parse (Path, Mapper); end Read; procedure Save_Memory (Path : in String; Languages : in String) is procedure Process_Language (Token : in String; Done : out Boolean); File : Ada.Text_IO.File_Type; procedure Process_Language (Token : in String; Done : out Boolean) is L : constant Language_Type := Benchmark.Languages.Find_Index (Token); begin Done := False; for D in Benchmark.Drivers.Iterate loop declare Driver : constant Driver_Result := Driver_Maps.Element (D); begin if Driver.Language = L then Ada.Text_IO.Put (File, Benchmark.Databases.Element (Driver.Database)); Ada.Text_IO.Set_Col (File, 20); Ada.Text_IO.Put (File, Benchmark.Languages.Element (L)); Ada.Text_IO.Set_Col (File, 30); Ada.Text_IO.Put (File, Natural'Image (Driver.User_Time)); Ada.Text_IO.Set_Col (File, 40); Ada.Text_IO.Put (File, Natural'Image (Driver.Sys_Time)); Ada.Text_IO.Set_Col (File, 60); Ada.Text_IO.Put (File, Natural'Image (Driver.Peek_Rss)); Ada.Text_IO.Set_Col (File, 70); Ada.Text_IO.Put (File, Natural'Image (Driver.Thread_Count)); Ada.Text_IO.New_Line (File); end if; end; end loop; Ada.Text_IO.New_Line (File); Ada.Text_IO.New_Line (File); end Process_Language; begin Ada.Text_IO.Create (File => File, Mode => Ada.Text_IO.Out_File, Name => Path); Util.Strings.Tokenizers.Iterate_Tokens (Content => Languages, Pattern => ",", Process => Process_Language'Access); Ada.Text_IO.Close (File); end Save_Memory; procedure Save (Path : in String; Databases : in String; Languages : in String) is procedure Process_Database (Token : in String; Done : out Boolean); procedure Process_Language (Token : in String; Done : out Boolean); DB_Count : constant Natural := Ada.Strings.Fixed.Count (Databases, ",") + 1; DB_List : Database_Array_Index (1 .. DB_Count); Lang_Count : constant Natural := Ada.Strings.Fixed.Count (Languages, ",") + 1; Lang_List : Language_Array_Index (1 .. Lang_Count); Pos : Positive := 1; Col : Ada.Text_IO.Positive_Count; File : Ada.Text_IO.File_Type; procedure Process_Database (Token : in String; Done : out Boolean) is begin DB_List (Pos) := Benchmark.Databases.Find_Index (Token); Pos := Pos + 1; Done := False; end Process_Database; procedure Process_Language (Token : in String; Done : out Boolean) is begin Lang_List (Pos) := Benchmark.Languages.Find_Index (Token); Pos := Pos + 1; Done := False; end Process_Language; begin Util.Strings.Tokenizers.Iterate_Tokens (Content => Databases, Pattern => ",", Process => Process_Database'Access); Pos := 1; Util.Strings.Tokenizers.Iterate_Tokens (Content => Languages, Pattern => ",", Process => Process_Language'Access); Ada.Text_IO.Create (File => File, Mode => Ada.Text_IO.Out_File, Name => Path); -- Print performance results. Ada.Text_IO.Put (File, "# order is "); Ada.Text_IO.Put (File, Databases); Ada.Text_IO.Put (File, " and "); Ada.Text_IO.Put (File, Languages); Ada.Text_IO.New_Line (File); for C in Benchmark.Benchmarks.Iterate loop for P in Benchmark_Maps.Element (C).Iterate loop if Perf_Result_Maps.Key (P) > 0 then Ada.Text_IO.Put (File, Row_Count_Type'Image (Perf_Result_Maps.Key (P))); for DB_Index of DB_List loop for Lang_Index of Lang_List loop declare Database : constant String := Benchmark.Databases.Element (DB_Index); Language : constant String := Benchmark.Languages.Element (Lang_Index); Key : constant String := Language & " " & Database; Driver : constant Driver_Cursor := Benchmark.Drivers.Find (Key); R : Result_Type; Index : Driver_Type; begin if Driver_Maps.Has_Element (Driver) then Index := Driver_Maps.Element (Driver).Index; if Perf_Result_Maps.Element (P).Results.Last_Index >= Index then R := Perf_Result_Maps.Element (P).Results.Element (Index); if R.Count > 0 then Ada.Text_IO.Put (File, Format_Us (R.Time / Positive (R.Count))); else Ada.Text_IO.Put (File, " 0"); end if; else Ada.Text_IO.Put (File, " 0"); end if; else Ada.Text_IO.Put (File, " 0"); end if; end; end loop; end loop; Ada.Text_IO.New_Line (File); end if; end loop; end loop; -- Print results grouped by benchmark. for C in Benchmark.Benchmarks.Iterate loop for P in Benchmark_Maps.Element (C).Iterate loop declare Row_Count : constant Row_Count_Type := Perf_Result_Maps.Key (P); begin Ada.Text_IO.New_Line; Ada.Text_IO.Put ("## "); if Row_Count > 0 then Ada.Text_IO.Put (Benchmark_Maps.Key (C) & Row_Count_Type'Image (Row_Count)); else Ada.Text_IO.Put (Benchmark_Maps.Key (C)); end if; Ada.Text_IO.New_Line; Ada.Text_IO.New_Line; Ada.Text_IO.Put ("| "); Col := 25; for DB_Index of DB_List loop Ada.Text_IO.Set_Col (Col); Ada.Text_IO.Put ("| "); Ada.Text_IO.Put (Benchmark.Databases.Element (DB_Index)); Col := Col + 16; end loop; Ada.Text_IO.Set_Col (Col); Ada.Text_IO.Put_Line ("|"); Ada.Text_IO.Put ("|-----------------------|"); for DB_Index of DB_List loop Ada.Text_IO.Put ("---------------|"); end loop; Ada.Text_IO.New_Line; for L in 1 .. Benchmark.Languages.Last_Index loop declare Language : constant String := Benchmark.Languages.Element (L); begin Ada.Text_IO.Put ("| "); Ada.Text_IO.Put (Language); Col := 25; for DB_Index of DB_List loop declare Database : constant String := Benchmark.Databases.Element (DB_Index); Key : constant String := Language & " " & Database; Driver : constant Driver_Cursor := Benchmark.Drivers.Find (Key); R : Result_Type; Index : Driver_Type; begin Ada.Text_IO.Set_Col (Col); Ada.Text_IO.Put ("| "); if Driver_Maps.Has_Element (Driver) then Index := Driver_Maps.Element (Driver).Index; if Perf_Result_Maps.Element (P).Results.Last_Index >= Index then R := Perf_Result_Maps.Element (P).Results.Element (Index); if R.Count > 0 then Ada.Text_IO.Put (Format (R.Time / Positive (R.Count))); end if; end if; end if; end; Col := Col + 16; end loop; Ada.Text_IO.Set_Col (Col); Ada.Text_IO.Put_Line ("|"); end; end loop; end; end loop; end loop; end Save; procedure Save_Excel (Path : in String) is File : Excel_Out.Excel_Out_File; Row : Positive := 1; Col : Positive := 1; Font_Title : Excel_Out.Font_type; Font_Sub : Excel_Out.Font_type; Font_Cell : Excel_Out.Font_type; Fmt_Title : Excel_Out.Format_type; Fmt_Value : Excel_Out.Format_type; Fmt_Lang : Excel_Out.Format_type; Fmt_Database : Excel_Out.Format_type; begin File.Create (Path); File.Header ("Driver SQL Benchmark"); File.Footer ("sql-benchmark"); File.Margins (1.2, 1.1, 0.9, 0.8); File.Page_Setup (scaling_percents => 100, fit_width_with_n_pages => 0, orientation => Excel_Out.portrait, scale_or_fit => Excel_Out.fit); File.Write_column_width (1, 15); File.Write_column_width (2, 20); File.Write_column_width (3, 20); File.Write_column_width (4, 20); File.Define_font ("Calibri", 14, Font_Title, Excel_Out.bold); File.Define_font ("Calibri", 12, Font_Sub, Excel_Out.bold); File.Define_font ("Calibri", 12, Font_Cell, Excel_Out.regular); File.Define_format (font => Font_Title, number_format => Excel_Out.general, cell_format => Fmt_Title); File.Define_format (font => Font_Cell, number_format => Excel_Out.general, border => Excel_Out.box, cell_format => Fmt_Value); File.Define_format (font => Font_Sub, number_format => Excel_Out.general, cell_format => Fmt_Lang, border => Excel_Out.box); File.Define_format (font => Font_Sub, number_format => Excel_Out.general, cell_format => Fmt_Database, border => Excel_Out.box); for C in Benchmark.Benchmarks.Iterate loop for P in Benchmark_Maps.Element (C).Iterate loop declare Row_Count : constant Row_Count_Type := Perf_Result_Maps.Key (P); begin Row := Row + 2; File.Use_format (Fmt_Title); if Row_Count > 0 then File.Write (Row, 2, Benchmark_Maps.Key (C) & Row_Count_Type'Image (Row_Count)); else File.Write (Row, 2, Benchmark_Maps.Key (C)); end if; File.Use_format (Fmt_Database); Row := Row + 1; Col := 2; for Database of Benchmark.Databases loop File.Write (Row, Col, Database); Col := Col + 1; end loop; for L in 1 .. Benchmark.Languages.Last_Index loop declare Language : constant String := Benchmark.Languages.Element (L); begin Row := Row + 1; File.Use_format (Fmt_Lang); File.Write (Row, 1, Language); File.Use_format (Fmt_Value); Col := 2; for D in 1 .. Benchmark.Databases.Last_Index loop declare Database : constant String := Benchmark.Databases.Element (D); Key : constant String := Language & " " & Database; Driver : constant Driver_Cursor := Benchmark.Drivers.Find (Key); R : Result_Type; Index : Driver_Type; begin if Driver_Maps.Has_Element (Driver) then Index := Driver_Maps.Element (Driver).Index; if Perf_Result_Maps.Element (P).Results.Last_Index >= Index then R := Perf_Result_Maps.Element (P).Results.Element (Index); if R.Count > 0 then File.Write (Row, Col, Format (R.Time / Positive (R.Count))); end if; end if; end if; end; Col := Col + 1; end loop; end; end loop; end; end loop; end loop; File.Close; end Save_Excel; begin Mapping.Add_Mapping ("@driver", FIELD_DRIVER); Mapping.Add_Mapping ("@language", FIELD_LANGUAGE); Mapping.Add_Mapping ("@threads", FIELD_THREADS); Mapping.Add_Mapping ("@rss_size", FIELD_RSS_SIZE); Mapping.Add_Mapping ("@peek_rss_size", FIELD_PEEK_RSS_SIZE); Mapping.Add_Mapping ("@user_time", FIELD_USER_TIME); Mapping.Add_Mapping ("@sys_time", FIELD_SYS_TIME); Mapping.Add_Mapping ("measures/@title", FIELD_MEASURES); Mapping.Add_Mapping ("measures/time/@count", FIELD_COUNT); Mapping.Add_Mapping ("measures/time/@total", FIELD_TOTAL); Mapping.Add_Mapping ("measures/time/@title", FIELD_TITLE); Mapping.Add_Mapping ("measures/time", FIELD_TIME); end Tool.Data;
-- -- Copyright (C) 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.Power_And_Clocks_Haswell; private package HW.GFX.GMA.Power_And_Clocks renames HW.GFX.GMA.Power_And_Clocks_Haswell;
-- SPDX-FileCopyrightText: 2019 Max Reznik <reznikmm@gmail.com> -- -- SPDX-License-Identifier: MIT ------------------------------------------------------------- with Program.Elements.Declarations; with Program.Elements.Defining_Identifiers; with Program.Lexical_Elements; with Program.Elements.Expressions; with Program.Elements.Aspect_Specifications; package Program.Elements.Exception_Renaming_Declarations is pragma Pure (Program.Elements.Exception_Renaming_Declarations); type Exception_Renaming_Declaration is limited interface and Program.Elements.Declarations.Declaration; type Exception_Renaming_Declaration_Access is access all Exception_Renaming_Declaration'Class with Storage_Size => 0; not overriding function Names (Self : Exception_Renaming_Declaration) return not null Program.Elements.Defining_Identifiers .Defining_Identifier_Vector_Access is abstract; not overriding function Renamed_Exception (Self : Exception_Renaming_Declaration) return not null Program.Elements.Expressions.Expression_Access is abstract; not overriding function Aspects (Self : Exception_Renaming_Declaration) return Program.Elements.Aspect_Specifications .Aspect_Specification_Vector_Access is abstract; type Exception_Renaming_Declaration_Text is limited interface; type Exception_Renaming_Declaration_Text_Access is access all Exception_Renaming_Declaration_Text'Class with Storage_Size => 0; not overriding function To_Exception_Renaming_Declaration_Text (Self : in out Exception_Renaming_Declaration) return Exception_Renaming_Declaration_Text_Access is abstract; not overriding function Colon_Token (Self : Exception_Renaming_Declaration_Text) return not null Program.Lexical_Elements.Lexical_Element_Access is abstract; not overriding function Exception_Token (Self : Exception_Renaming_Declaration_Text) return not null Program.Lexical_Elements.Lexical_Element_Access is abstract; not overriding function Renames_Token (Self : Exception_Renaming_Declaration_Text) return not null Program.Lexical_Elements.Lexical_Element_Access is abstract; not overriding function With_Token (Self : Exception_Renaming_Declaration_Text) return Program.Lexical_Elements.Lexical_Element_Access is abstract; not overriding function Semicolon_Token (Self : Exception_Renaming_Declaration_Text) return not null Program.Lexical_Elements.Lexical_Element_Access is abstract; end Program.Elements.Exception_Renaming_Declarations;
------------------------------------------------------------------------------- -- Copyright (c) 2017 Daniel King -- -- 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. ------------------------------------------------------------------------------- with Configurations; with DecaDriver; use DecaDriver; with DecaDriver.Rx; use DecaDriver.Rx; with DW1000.Reception_Quality; with DW1000.Types; with EVB1000.LED; package body Packet_Receiver with SPARK_Mode => On is protected body Packets_Info is procedure Packet_Received (RSSI : in Float; Data_Rate : in DW1000.Driver.Data_Rates) is begin if Count > 0 and Data_Rate /= Last_Data_Rate then Changed := True; end if; Last_Data_Rate := Data_Rate; RSSI_Sum := RSSI_Sum + RSSI; Count := Count + 1; end Packet_Received; procedure Config_Changed is begin Changed := True; end Config_Changed; procedure Reset (Average_RSSI : out Float; Nb_Packets : out Natural; Data_Rate : out DW1000.Driver.Data_Rates; Was_Config_Changed : out Boolean) is begin Was_Config_Changed := Changed; Nb_Packets := Count; Data_Rate := Last_Data_Rate; if Count > 0 then Average_RSSI := RSSI_Sum / Float (Count); else Average_RSSI := 0.0; end if; RSSI_Sum := 0.0; Count := 0; Changed := False; end Reset; end Packets_Info; task body Radio_Task is Frame : DW1000.Types.Byte_Array (1 .. 127); Frame_Length : DecaDriver.Frame_Length_Number; Frame_Info : DecaDriver.Rx.Frame_Info_Type; Frame_Status : DecaDriver.Rx.Rx_Status_Type; Overrun : Boolean; RSSI : Float; Data_Rate : DW1000.Driver.Data_Rates; begin loop DecaDriver.Rx.Receiver.Wait (Frame => Frame, Length => Frame_Length, Frame_Info => Frame_Info, Status => Frame_Status, Overrun => Overrun); DecaDriver.Rx.Receiver.Start_Rx_Immediate; if Overrun or Frame_Status /= No_Error then EVB1000.LED.Toggle_LED (3); end if; if Frame_Status = No_Error then EVB1000.LED.Toggle_LED (4); RSSI := DecaDriver.Rx.Receive_Signal_Power (Frame_Info); case Frame_Info.RX_FINFO_Reg.RXBR is when 2#00# => Data_Rate := Data_Rate_110k; when 2#01# => Data_Rate := Data_Rate_850k; when others => Data_Rate := Data_Rate_6M8; end case; Packets_Info.Packet_Received (RSSI, Data_Rate); end if; end loop; end Radio_Task; end Packet_Receiver;
-- SPDX-License-Identifier: Apache-2.0 -- -- Copyright (c) 2017 onox <denkpadje@gmail.com> -- -- 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 GL.Objects.Textures; with Orka.Resources.Loaders; with Orka.Resources.Locations; with Orka.Resources.Managers; package Orka.Resources.Textures.KTX is pragma Preelaborate; function Create_Loader (Manager : Managers.Manager_Ptr) return Loaders.Loader_Ptr; function Read_Texture (Location : Locations.Location_Ptr; Path : String) return GL.Objects.Textures.Texture; procedure Write_Texture (Texture : GL.Objects.Textures.Texture; Location : Locations.Writable_Location_Ptr; Path : String); end Orka.Resources.Textures.KTX;
----------------------------------------------------------------------- -- security-controllers-roles -- Simple role base security -- Copyright (C) 2011, 2012, 2018 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- 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 Security.Controllers.Roles is -- ------------------------------ -- Returns true if the user associated with the security context <b>Context</b> has -- one of the role defined in the <b>Handler</b>. -- ------------------------------ overriding function Has_Permission (Handler : in Role_Controller; Context : in Security.Contexts.Security_Context'Class; Permission : in Security.Permissions.Permission'Class) return Boolean is pragma Unreferenced (Permission); P : constant Security.Principal_Access := Context.Get_User_Principal; Roles : Security.Policies.Roles.Role_Map; begin if P /= null then -- If the principal has some roles, get them. if P.all in Policies.Roles.Role_Principal_Context'Class then Roles := Policies.Roles.Role_Principal_Context'Class (P.all).Get_Roles; else return False; end if; for I in Handler.Roles'Range loop if Roles (Handler.Roles (I)) then return True; end if; end loop; end if; return False; end Has_Permission; end Security.Controllers.Roles;
--////////////////////////////////////////////////////////// -- SFML - Simple and Fast Multimedia Library -- Copyright (C) 2007-2015 Laurent Gomila (laurent@sfml-dev.org) -- 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. --////////////////////////////////////////////////////////// package Sf.Audio.SoundStatus is type sfSoundStatus is ( sfStopped, --/< Sound / music is not playing sfPaused, --/< Sound / music is paused sfPlaying --/< Sound / music is playing ); private pragma Convention (C, sfSoundStatus); end Sf.Audio.SoundStatus;
with Interfaces.C; use Interfaces.C; procedure Execute_System is function Sys (Arg : Char_Array) return Integer; pragma Import(C, Sys, "system"); Ret_Val : Integer; begin Ret_Val := Sys(To_C("ls")); end Execute_System;
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- A D A . C O N T A I N E R S . F O R M A L _ 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 spec is derived from package Ada.Containers.Bounded_Hashed_Sets in the -- Ada 2012 RM. The modifications are meant to facilitate formal proofs by -- making it easier to express properties, and by making the specification of -- this unit compatible with SPARK 2014. Note that the API of this unit may be -- subject to incompatible changes as SPARK 2014 evolves. -- The modifications are: -- A parameter for the container is added to every function reading the -- content of a container: Element, Next, Query_Element, Has_Element, Key, -- Iterate, Equivalent_Elements. This change is motivated by the need to -- have cursors which are valid on different containers (typically a -- container C and its previous version C'Old) for expressing properties, -- which is not possible if cursors encapsulate an access to the underlying -- container. -- There are three new functions: -- function Strict_Equal (Left, Right : Set) return Boolean; -- function First_To_Previous (Container : Set; Current : Cursor) -- return Set; -- function Current_To_Last (Container : Set; Current : Cursor) -- return Set; -- See detailed specifications for these subprograms private with Ada.Containers.Hash_Tables; 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.Formal_Hashed_Sets with Pure, SPARK_Mode is pragma Annotate (GNATprove, External_Axiomatization); pragma Annotate (CodePeer, Skip_Analysis); type Set (Capacity : Count_Type; Modulus : Hash_Type) is private with Iterable => (First => First, Next => Next, Has_Element => Has_Element, Element => Element), Default_Initial_Condition => Is_Empty (Set); pragma Preelaborable_Initialization (Set); type Cursor is private; pragma Preelaborable_Initialization (Cursor); Empty_Set : constant Set; No_Element : constant Cursor; function "=" (Left, Right : Set) return Boolean with Global => null; function Equivalent_Sets (Left, Right : Set) return Boolean with Global => null; function To_Set (New_Item : Element_Type) return Set with Global => null; function Capacity (Container : Set) return Count_Type with Global => null; procedure Reserve_Capacity (Container : in out Set; Capacity : Count_Type) with Global => null, Pre => Capacity <= Container.Capacity; function Length (Container : Set) return Count_Type with Global => null; function Is_Empty (Container : Set) return Boolean with Global => null; procedure Clear (Container : in out Set) with Global => null; procedure Assign (Target : in out Set; Source : Set) with Global => null, Pre => Target.Capacity >= Length (Source); function Copy (Source : Set; Capacity : Count_Type := 0) return Set with Global => null, Pre => Capacity = 0 or else Capacity >= Source.Capacity; function Element (Container : Set; Position : Cursor) return Element_Type with Global => null, Pre => Has_Element (Container, Position); procedure Replace_Element (Container : in out Set; Position : Cursor; New_Item : Element_Type) with Global => null, Pre => Has_Element (Container, Position); procedure Move (Target : in out Set; Source : in out Set) with Global => null, Pre => Target.Capacity >= Length (Source); procedure Insert (Container : in out Set; New_Item : Element_Type; Position : out Cursor; Inserted : out Boolean) with Global => null, Pre => Length (Container) < Container.Capacity; procedure Insert (Container : in out Set; New_Item : Element_Type) with Global => null, Pre => Length (Container) < Container.Capacity and then (not Contains (Container, New_Item)); procedure Include (Container : in out Set; New_Item : Element_Type) with Global => null, Pre => Length (Container) < Container.Capacity; procedure Replace (Container : in out Set; New_Item : Element_Type) with Global => null, Pre => Contains (Container, New_Item); procedure Exclude (Container : in out Set; Item : Element_Type) with Global => null; procedure Delete (Container : in out Set; Item : Element_Type) with Global => null, Pre => Contains (Container, Item); procedure Delete (Container : in out Set; Position : in out Cursor) with Global => null, Pre => Has_Element (Container, Position); procedure Union (Target : in out Set; Source : Set) with Global => null, Pre => Length (Target) + Length (Source) - Length (Intersection (Target, Source)) <= Target.Capacity; function Union (Left, Right : Set) return Set with Global => null, Pre => Length (Left) + Length (Right) - Length (Intersection (Left, Right)) <= Count_Type'Last; function "or" (Left, Right : Set) return Set renames Union; procedure Intersection (Target : in out Set; Source : Set) with Global => null; function Intersection (Left, Right : Set) return Set with Global => null; function "and" (Left, Right : Set) return Set renames Intersection; procedure Difference (Target : in out Set; Source : Set) with Global => null; function Difference (Left, Right : Set) return Set with Global => null; function "-" (Left, Right : Set) return Set renames Difference; procedure Symmetric_Difference (Target : in out Set; Source : Set) with Global => null, Pre => Length (Target) + Length (Source) - 2 * Length (Intersection (Target, Source)) <= Target.Capacity; function Symmetric_Difference (Left, Right : Set) return Set with Global => null, Pre => Length (Left) + Length (Right) - 2 * Length (Intersection (Left, Right)) <= Count_Type'Last; function "xor" (Left, Right : Set) return Set renames Symmetric_Difference; function Overlap (Left, Right : Set) return Boolean with Global => null; function Is_Subset (Subset : Set; Of_Set : Set) return Boolean with Global => null; function First (Container : Set) return Cursor with Global => null; function Next (Container : Set; Position : Cursor) return Cursor with Global => null, Pre => Has_Element (Container, Position) or else Position = No_Element; procedure Next (Container : Set; Position : in out Cursor) with Global => null, Pre => Has_Element (Container, Position) or else Position = No_Element; function Find (Container : Set; Item : Element_Type) return Cursor with Global => null; function Contains (Container : Set; Item : Element_Type) return Boolean with Global => null; function Has_Element (Container : Set; Position : Cursor) return Boolean with Global => null; function Equivalent_Elements (Left : Set; CLeft : Cursor; Right : Set; CRight : Cursor) return Boolean with Global => null; function Equivalent_Elements (Left : Set; CLeft : Cursor; Right : Element_Type) return Boolean with Global => null; function Equivalent_Elements (Left : Element_Type; Right : Set; CRight : Cursor) return Boolean with Global => null; function Default_Modulus (Capacity : Count_Type) return Hash_Type with Global => null; 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 with SPARK_Mode is function Key (Container : Set; Position : Cursor) return Key_Type with Global => null; function Element (Container : Set; Key : Key_Type) return Element_Type with Global => null; procedure Replace (Container : in out Set; Key : Key_Type; New_Item : Element_Type) with Global => null; procedure Exclude (Container : in out Set; Key : Key_Type) with Global => null; procedure Delete (Container : in out Set; Key : Key_Type) with Global => null; function Find (Container : Set; Key : Key_Type) return Cursor with Global => null; function Contains (Container : Set; Key : Key_Type) return Boolean with Global => null; end Generic_Keys; function Strict_Equal (Left, Right : Set) return Boolean with Ghost, Global => null; -- Strict_Equal returns True if the containers are physically equal, i.e. -- they are structurally equal (function "=" returns True) and that they -- have the same set of cursors. function First_To_Previous (Container : Set; Current : Cursor) return Set with Ghost, Global => null, Pre => Has_Element (Container, Current) or else Current = No_Element; function Current_To_Last (Container : Set; Current : Cursor) return Set with Ghost, Global => null, Pre => Has_Element (Container, Current) or else Current = No_Element; -- First_To_Previous returns a container containing all elements preceding -- Current (excluded) in Container. Current_To_Last returns a container -- containing all elements following Current (included) in Container. -- These two new functions can be used to express invariant properties in -- loops which iterate over containers. First_To_Previous returns the part -- of the container already scanned and Current_To_Last the part not -- scanned yet. private pragma SPARK_Mode (Off); pragma Inline (Next); type Node_Type is record Element : Element_Type; Next : Count_Type; Has_Element : Boolean := False; end record; package HT_Types is new Ada.Containers.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; type Cursor is record Node : Count_Type; end record; No_Element : constant Cursor := (Node => 0); Empty_Set : constant Set := (Capacity => 0, Modulus => 0, others => <>); end Ada.Containers.Formal_Hashed_Sets;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- T E M P D I R -- -- -- -- S p e c -- -- -- -- Copyright (C) 2003-2010, 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 package is used by gnatmake and by the Project Manager to create -- temporary files. If environment variable TMPDIR is defined and -- designates an absolute path, temporary files are create in this directory. -- Otherwise, temporary files are created in the current working directory. with Namet; use Namet; with GNAT.OS_Lib; use GNAT.OS_Lib; package Tempdir is procedure Create_Temp_File (FD : out File_Descriptor; Name : out Path_Name_Type); -- Create a temporary text file and return its file descriptor and -- its path name as a Name_Id. If environment variable TMPDIR is defined -- and its value is an absolute path, the temp file is created in the -- directory designated by TMPDIR, otherwise, it is created in the current -- directory. If temporary file cannot be created, FD gets the value -- Invalid_FD and Name gets the value No_Name. end Tempdir;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <vgodunko@gmail.com> -- -- 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.Internals.UML_Elements; with AMF.UML.Input_Pins; with AMF.UML.Link_End_Destruction_Datas; with AMF.UML.Properties; with AMF.UML.Qualifier_Values.Collections; with AMF.Visitors; package AMF.Internals.UML_Link_End_Destruction_Datas is type UML_Link_End_Destruction_Data_Proxy is limited new AMF.Internals.UML_Elements.UML_Element_Proxy and AMF.UML.Link_End_Destruction_Datas.UML_Link_End_Destruction_Data with null record; overriding function Get_Destroy_At (Self : not null access constant UML_Link_End_Destruction_Data_Proxy) return AMF.UML.Input_Pins.UML_Input_Pin_Access; -- Getter of LinkEndDestructionData::destroyAt. -- -- Specifies the position of an existing link to be destroyed in ordered -- nonunique association ends. The type of the pin is UnlimitedNatural, -- but the value cannot be zero or unlimited. overriding procedure Set_Destroy_At (Self : not null access UML_Link_End_Destruction_Data_Proxy; To : AMF.UML.Input_Pins.UML_Input_Pin_Access); -- Setter of LinkEndDestructionData::destroyAt. -- -- Specifies the position of an existing link to be destroyed in ordered -- nonunique association ends. The type of the pin is UnlimitedNatural, -- but the value cannot be zero or unlimited. overriding function Get_Is_Destroy_Duplicates (Self : not null access constant UML_Link_End_Destruction_Data_Proxy) return Boolean; -- Getter of LinkEndDestructionData::isDestroyDuplicates. -- -- Specifies whether to destroy duplicates of the value in nonunique -- association ends. overriding procedure Set_Is_Destroy_Duplicates (Self : not null access UML_Link_End_Destruction_Data_Proxy; To : Boolean); -- Setter of LinkEndDestructionData::isDestroyDuplicates. -- -- Specifies whether to destroy duplicates of the value in nonunique -- association ends. overriding function Get_End (Self : not null access constant UML_Link_End_Destruction_Data_Proxy) return AMF.UML.Properties.UML_Property_Access; -- Getter of LinkEndData::end. -- -- Association end for which this link-end data specifies values. overriding procedure Set_End (Self : not null access UML_Link_End_Destruction_Data_Proxy; To : AMF.UML.Properties.UML_Property_Access); -- Setter of LinkEndData::end. -- -- Association end for which this link-end data specifies values. overriding function Get_Qualifier (Self : not null access constant UML_Link_End_Destruction_Data_Proxy) return AMF.UML.Qualifier_Values.Collections.Set_Of_UML_Qualifier_Value; -- Getter of LinkEndData::qualifier. -- -- List of qualifier values overriding function Get_Value (Self : not null access constant UML_Link_End_Destruction_Data_Proxy) return AMF.UML.Input_Pins.UML_Input_Pin_Access; -- Getter of LinkEndData::value. -- -- Input pin that provides the specified object for the given end. This -- pin is omitted if the link-end data specifies an 'open' end for reading. overriding procedure Set_Value (Self : not null access UML_Link_End_Destruction_Data_Proxy; To : AMF.UML.Input_Pins.UML_Input_Pin_Access); -- Setter of LinkEndData::value. -- -- Input pin that provides the specified object for the given end. This -- pin is omitted if the link-end data specifies an 'open' end for reading. overriding procedure Enter_Element (Self : not null access constant UML_Link_End_Destruction_Data_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 UML_Link_End_Destruction_Data_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 UML_Link_End_Destruction_Data_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.UML_Link_End_Destruction_Datas;
with Ada.Exceptions; package GDNative.Exceptions is procedure Put_Warning (Message : in Wide_String); procedure Put_Error (Occurrence : in Ada.Exceptions.Exception_Occurrence); end;
with Ada.Strings.Hash; package body L_Strings with SPARK_Mode is function "=" (Left, Right : L_String) return Boolean is begin return Left.Length = Right.Length and then Left.Data = Right.Data; end "="; function "=" (Left : L_String; Right : String) return Boolean is begin return Left.Length = Right'Length and then Left.Data (Left.Data'First .. Left.Data'First + Right'Length - 1) = Right; end "="; function Hash (S : L_String) return Ada.Containers.Hash_Type is begin if S.Length = 0 then return Ada.Strings.Hash (""); else return Ada.Strings.Hash (S.Data (1 .. Positive (S.Length))); end if; end Hash; procedure Init (S : out L_String) is begin S.Data := (others => ' '); S.Length := 0; end Init; function To_Bounded_String (Source : String; Drop : Truncation := Right) return L_String is Result : L_String; Len : constant Natural := Source'Length; begin Init (Result); if Len <= Max then Result.Data (1 .. Len) := Source; Result.Length := Length_T (Len); elsif Drop = Left then Result.Data := Source (Source'Last - Max + 1 .. Source'Last); Result.Length := Length_T (Max); elsif Drop = Right then Result.Data := Source (Source'First .. Source'First + Max - 1); Result.Length := Length_T (Max); else raise Program_Error; end if; return Result; end To_Bounded_String; function To_String (Source : L_String) return String is begin return Source.Data (1 .. Natural (Source.Length)); end To_String; end L_Strings;
-- This file is generated by SWIG. Please do not modify by hand. -- with Interfaces; with Interfaces.C; with Interfaces.C.Pointers; package xcb.xcb_charinfo_t is -- Item -- type Item is record left_side_bearing : aliased Interfaces.Integer_16; right_side_bearing : aliased Interfaces.Integer_16; character_width : aliased Interfaces.Integer_16; ascent : aliased Interfaces.Integer_16; descent : aliased Interfaces.Integer_16; attributes : aliased Interfaces.Unsigned_16; end record; -- Item_Array -- type Item_Array is array (Interfaces.C.size_t range <>) of aliased xcb.xcb_charinfo_t.Item; -- Pointer -- package C_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_charinfo_t.Item, Element_Array => xcb.xcb_charinfo_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_charinfo_t.Pointer; -- Pointer_Pointer -- package C_Pointer_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_charinfo_t.Pointer, Element_Array => xcb.xcb_charinfo_t.Pointer_Array, Default_Terminator => null); subtype Pointer_Pointer is C_Pointer_Pointers.Pointer; end xcb.xcb_charinfo_t;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- P R J . P A R S -- -- -- -- B o d y -- -- -- -- Copyright (C) 2001-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. 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. -- -- -- ------------------------------------------------------------------------------ with Ada.Exceptions; use Ada.Exceptions; with GNAT.Directory_Operations; use GNAT.Directory_Operations; with Output; use Output; with Prj.Conf; use Prj.Conf; with Prj.Err; use Prj.Err; with Prj.Part; with Prj.Tree; use Prj.Tree; with Sinput.P; package body Prj.Pars is ----------- -- Parse -- ----------- procedure Parse (In_Tree : Project_Tree_Ref; Project : out Project_Id; Project_File_Name : String; Packages_To_Check : String_List_Access := All_Packages; Flags : Processing_Flags; Reset_Tree : Boolean := True; In_Node_Tree : Prj.Tree.Project_Node_Tree_Ref := null) is Project_Node : Project_Node_Id := Empty_Node; The_Project : Project_Id := No_Project; Success : Boolean := True; Current_Dir : constant String := Get_Current_Dir; Project_Node_Tree : Prj.Tree.Project_Node_Tree_Ref := In_Node_Tree; Automatically_Generated : Boolean; Config_File_Path : String_Access; begin if Project_Node_Tree = null then Project_Node_Tree := new Project_Node_Tree_Data; Prj.Tree.Initialize (Project_Node_Tree); end if; -- Parse the main project file into a tree Sinput.P.Reset_First; Prj.Part.Parse (In_Tree => Project_Node_Tree, Project => Project_Node, Project_File_Name => Project_File_Name, Always_Errout_Finalize => False, Packages_To_Check => Packages_To_Check, Current_Directory => Current_Dir, Flags => Flags, Is_Config_File => False); -- If there were no error, process the tree if Project_Node /= Empty_Node then begin -- No config file should be read from the disk for gnatmake. -- However, we will simulate one that only contains the -- default GNAT naming scheme. Process_Project_And_Apply_Config (Main_Project => The_Project, User_Project_Node => Project_Node, Config_File_Name => "", Autoconf_Specified => False, Project_Tree => In_Tree, Project_Node_Tree => Project_Node_Tree, Packages_To_Check => null, Allow_Automatic_Generation => False, Automatically_Generated => Automatically_Generated, Config_File_Path => Config_File_Path, Flags => Flags, Normalized_Hostname => "", On_Load_Config => Add_Default_GNAT_Naming_Scheme'Access, Reset_Tree => Reset_Tree); Success := The_Project /= No_Project; exception when Invalid_Config => Success := False; end; Prj.Err.Finalize; if not Success then The_Project := No_Project; end if; end if; Project := The_Project; -- ??? Should free the project_node_tree, no longer useful exception when X : others => -- Internal error Write_Line (Exception_Information (X)); Write_Str ("Exception "); Write_Str (Exception_Name (X)); Write_Line (" raised, while processing project file"); Project := No_Project; end Parse; ------------------- -- Set_Verbosity -- ------------------- procedure Set_Verbosity (To : Verbosity) is begin Current_Verbosity := To; end Set_Verbosity; end Prj.Pars;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <vgodunko@gmail.com> -- -- 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. ------------------------------------------------------------------------------ -- A start classifier behavior action is an action that starts the classifier -- behavior of the input. ------------------------------------------------------------------------------ with AMF.UML.Actions; limited with AMF.UML.Input_Pins; package AMF.UML.Start_Classifier_Behavior_Actions is pragma Preelaborate; type UML_Start_Classifier_Behavior_Action is limited interface and AMF.UML.Actions.UML_Action; type UML_Start_Classifier_Behavior_Action_Access is access all UML_Start_Classifier_Behavior_Action'Class; for UML_Start_Classifier_Behavior_Action_Access'Storage_Size use 0; not overriding function Get_Object (Self : not null access constant UML_Start_Classifier_Behavior_Action) return AMF.UML.Input_Pins.UML_Input_Pin_Access is abstract; -- Getter of StartClassifierBehaviorAction::object. -- -- Holds the object on which to start the owned behavior. not overriding procedure Set_Object (Self : not null access UML_Start_Classifier_Behavior_Action; To : AMF.UML.Input_Pins.UML_Input_Pin_Access) is abstract; -- Setter of StartClassifierBehaviorAction::object. -- -- Holds the object on which to start the owned behavior. end AMF.UML.Start_Classifier_Behavior_Actions;
------------------------------------------------------------------------------ -- -- -- GNU ADA RUNTIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . C O M P I L E R _ E X C E P T I O N S -- -- -- -- S p e c -- -- -- -- $Revision: 2 $ -- -- -- -- Copyright (c) 1991,1992,1993,1994, FSU, All Rights Reserved -- -- -- -- GNARL is free software; you can redistribute it and/or modify it under -- -- terms of the GNU Library General Public License as published by the -- -- Free Software Foundation; either version 2, or (at your option) any -- -- later version. GNARL is distributed in the hope that it will be use- -- -- ful, but but WITHOUT ANY WARRANTY; without even the implied warranty of -- -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Gen- -- -- eral Library Public License for more details. You should have received -- -- a copy of the GNU Library General Public License along with GNARL; see -- -- file COPYING.LIB. If not, write to the Free Software Foundation, 675 -- -- Mass Ave, Cambridge, MA 02139, USA. -- -- -- ------------------------------------------------------------------------------ with System.Task_Primitives; -- Uses, Task_Primitives.Machine_Exceptions -- Task_Primitives.Error_Information package System.Compiler_Exceptions is -- This interface is described in the document -- Gnu Ada Runtime Library Interface (GNARLI). type Exception_ID is private; Null_Exception : constant Exception_ID; Constraint_Error_ID : constant Exception_ID; Numeric_Error_ID : constant Exception_ID; Program_Error_ID : constant Exception_ID; Storage_Error_ID : constant Exception_ID; Tasking_Error_ID : constant Exception_ID; type Pre_Call_State is private; procedure Raise_Exception (E : Exception_ID); procedure Notify_Exception (Which : System.Task_Primitives.Machine_Exceptions; Info : System.Task_Primitives.Error_Information; Modified_Registers : Pre_Call_State); function Current_Exception return Exception_ID; subtype Exception_ID_String is String (1 .. 16); function Image (E : Exception_ID) return Exception_ID_String; private type Exception_ID is new Integer; Null_Exception : constant Exception_ID := 0; Constraint_Error_ID : constant Exception_ID := 1; Numeric_Error_ID : constant Exception_ID := 2; Program_Error_ID : constant Exception_ID := 3; Storage_Error_ID : constant Exception_ID := 4; Tasking_Error_ID : constant Exception_ID := 5; type tmp is record d : integer; end record; type Pre_Call_State is access tmp; end System.Compiler_Exceptions;
------------------------------------------------------------------------------ -- -- -- 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 . A U X -- -- -- -- B o d y -- -- -- -- 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. -- -- -- ------------------------------------------------------------------------------ package body Ada.Strings.Wide_Wide_Unbounded.Aux is -------------------------- -- Get_Wide_Wide_String -- -------------------------- procedure Get_Wide_Wide_String (U : Unbounded_Wide_Wide_String; S : out Big_Wide_Wide_String_Access; L : out Natural) is X : aliased Big_Wide_Wide_String; for X'Address use U.Reference.all'Address; begin S := X'Unchecked_Access; L := U.Last; end Get_Wide_Wide_String; -------------------------- -- Set_Wide_Wide_String -- -------------------------- procedure Set_Wide_Wide_String (UP : in out Unbounded_Wide_Wide_String; S : Wide_Wide_String_Access) is begin Finalize (UP); UP.Reference := S; UP.Last := UP.Reference'Length; end Set_Wide_Wide_String; end Ada.Strings.Wide_Wide_Unbounded.Aux;
------------------------------------------------------------------------------ -- -- -- THIS IS AN AUTOMATICALLY GENERATED FILE! DO NOT EDIT! -- -- -- -- WAVEFILES -- -- -- -- Wavefile data I/O operations -- -- -- -- The MIT License (MIT) -- -- -- -- Copyright (c) 2015 -- 2020 Gustavo A. Hoffmann -- -- -- -- 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. -- ------------------------------------------------------------------------------ private generic type Wav_Sample is digits <>; type PCM_Sample is digits <>; type Channel_Range is (<>); type PCM_MC_Sample is array (Channel_Range range <>) of PCM_Sample; package Audio.Wavefiles.Generic_Float_Wav_Float_PCM_IO is function Get (WF : in out Wavefile) return PCM_MC_Sample with Pre => Mode (WF) = In_File; procedure Get (WF : in out Wavefile; PCM : out PCM_MC_Sample) with Pre => Mode (WF) = In_File and Number_Of_Channels (WF) <= PCM'Length; procedure Put (WF : in out Wavefile; PCM : PCM_MC_Sample) with Pre => Mode (WF) = Out_File and Number_Of_Channels (WF) <= PCM'Length; end Audio.Wavefiles.Generic_Float_Wav_Float_PCM_IO;
with SDL_Display; package body Render is Width : constant := 320; Height : constant := 240; package Display is new SDL_Display (Width => Width, Height => Height, Pixel_Scale => 4, Buffer_Size => 320 * 240); Screen_Pt : GESTE.Pix_Point := (0, 0); ----------------- -- Push_Pixels -- ----------------- procedure Push_Pixels (Buffer : GESTE.Output_Buffer) renames Display.Push_Pixels; ---------------------- -- Set_Drawing_Area -- ---------------------- procedure Set_Drawing_Area (Area : GESTE.Pix_Rect) renames Display.Set_Drawing_Area; ----------------------- -- Set_Screen_Offset -- ----------------------- procedure Set_Screen_Offset (Pt : GESTE.Pix_Point) is begin Display.Set_Screen_Offset (Pt); Screen_Pt := Pt; end Set_Screen_Offset; ---------------- -- Render_All -- ---------------- procedure Render_All (Background : GESTE_Config.Output_Color) is begin GESTE.Render_All ((Screen_Pt, (Screen_Pt.X + Width - 1, Screen_Pt.Y + Height - 1)), Background, Display.Buffer, Display.Push_Pixels'Access, Display.Set_Drawing_Area'Access); end Render_All; ------------------ -- Render_Dirty -- ------------------ procedure Render_Dirty (Background : GESTE_Config.Output_Color) is begin GESTE.Render_Dirty ((Screen_Pt, (Screen_Pt.X + Width - 1, Screen_Pt.Y + Height - 1)), Background, Display.Buffer, Display.Push_Pixels'Access, Display.Set_Drawing_Area'Access); end Render_Dirty; --------------- -- Dark_Cyan -- --------------- function Dark_Cyan return GESTE_Config.Output_Color is (Display.To_SDL_Color (176, 226, 255)); ----------- -- Black -- ----------- function Black return GESTE_Config.Output_Color is (Display.To_SDL_Color (0, 0, 0)); end Render;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Web Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2017, Vadim Godunko <vgodunko@gmail.com> -- -- 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 Services; with League.Strings; with League.String_Vectors; with Matreshka.Servlet_Servers.AWS_Servers; with Matreshka.Servlet_Containers; package Spikedog.Service is type Service is new Services.Service with private; -- Windows Service to run Spikedog server private protected type Semaphore is entry Acquire; entry Release; private Busy : Boolean := True; end Semaphore; type Service is new Services.Service with record AWS_Server : aliased Matreshka.Servlet_Servers.AWS_Servers.AWS_Server; Container : Matreshka.Servlet_Containers.Servlet_Container_Access := new Matreshka.Servlet_Containers.Servlet_Container; Stop_Flag : Semaphore; Application_Name : League.Strings.Universal_String := League.Strings.To_Universal_String ("Spikedog Application Server"); end record; overriding function Name (Self : Service) return League.Strings.Universal_String; overriding procedure Run (Self : in out Service; Args : League.String_Vectors.Universal_String_Vector; Status : Services.Status_Listener_Access); overriding procedure Control (Self : in out Service; Control : Services.Control_Kind; Status : Services.Status_Listener_Access); end Spikedog.Service;
------------------------------------------------------------------------------ -- G E L A A S I S -- -- ASIS implementation for Gela project, a portable Ada compiler -- -- http://gela.ada-ru.org -- -- - - - - - - - - - - - - - - - -- -- Read copyright and license at the end of this file -- ------------------------------------------------------------------------------ -- $Revision: 209 $ $Date: 2013-11-30 21:03:24 +0200 (Сб., 30 нояб. 2013) $ with Ada.Unchecked_Deallocation; package body Gela.Containers.Stacks is procedure Free is new Ada.Unchecked_Deallocation (Node, Node_Access); ----------- -- Clear -- ----------- procedure Clear (Container : in out Stack) is Next : Node_Access; begin while not Is_Empty (Container) loop Delete_First (Container, Next); Free (Next); end loop; end Clear; -------------- -- Get_Next -- -------------- function Get_Next (Item : Node_Access) return Node_Access is begin return Item.Next; end Get_Next; -------------- -- Is_Empty -- -------------- function Is_Empty (Container : Stack) return Boolean is begin return E.Is_Empty (E.List (Container)); end Is_Empty; ------------ -- Length -- ------------ function Length (Container : Stack) return Natural is begin return E.Length (E.List (Container)); end Length; --------- -- Pop -- --------- procedure Pop (Container : in out Stack; Item : out Element_Type) is Next : Node_Access; begin Delete_First (Container, Next); Item := Next.Data; Free (Next); end Pop; --------- -- Pop -- --------- procedure Pop (Container : in out Stack) is Ignore : Element_Type; begin Pop (Container, Ignore); end Pop; ---------- -- Push -- ---------- procedure Push (Container : in out Stack; Item : in Element_Type) is begin Prepend (Container, new Node'(null, Item)); end Push; -------------- -- Set_Next -- -------------- procedure Set_Next (Item, Next : Node_Access) is begin Item.Next := Next; end Set_Next; --------- -- Top -- --------- function Top (Container : Stack) return Element_Type is begin return First (Container).Data; end Top; end Gela.Containers.Stacks; ------------------------------------------------------------------------------ -- Copyright (c) 2006, Maxim Reznik -- 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 Maxim Reznik, 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 OWNER 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. ------------------------------------------------------------------------------
package body Body is end Body;
-- -- Copyright (C) 2015-2017 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 Ada.Unchecked_Conversion; with HW.Debug; with GNAT.Source_Info; with HW.GFX.DP_Defs; use type HW.Word8; package body HW.GFX.DP_Info is procedure Read_Caps (Link : in out DP_Link; Port : in T; Success : out Boolean) is Data : DP_Defs.Aux_Payload; Length : DP_Defs.Aux_Payload_Length; Caps_Size : constant := 15; begin pragma Debug (Debug.Put_Line (GNAT.Source_Info.Enclosing_Entity)); Length := Caps_Size; Aux_Ch.Aux_Read (Port => Port, Address => 16#00000#, Length => Length, Data => Data, Success => Success); Success := Success and Length = Caps_Size; if Length = Caps_Size then Link.Receiver_Caps.Rev := Data (0); case Data (1) is when 16#06# => Link.Receiver_Caps.Max_Link_Rate := DP_Bandwidth_1_62; when 16#0a# => Link.Receiver_Caps.Max_Link_Rate := DP_Bandwidth_2_7; when 16#14# => Link.Receiver_Caps.Max_Link_Rate := DP_Bandwidth_5_4; when others => if Data (1) > 16#14# then Link.Receiver_Caps.Max_Link_Rate := DP_Bandwidth_5_4; else Link.Receiver_Caps.Max_Link_Rate := DP_Bandwidth_1_62; end if; end case; case Data (2) and 16#1f# is when 0 | 1 => Link.Receiver_Caps.Max_Lane_Count := DP_Lane_Count_1; when 2 | 3 => Link.Receiver_Caps.Max_Lane_Count := DP_Lane_Count_2; when others => Link.Receiver_Caps.Max_Lane_Count := DP_Lane_Count_4; end case; Link.Receiver_Caps.TPS3_Supported := (Data (2) and 16#40#) /= 0; Link.Receiver_Caps.Enhanced_Framing := (Data (2) and 16#80#) /= 0; Link.Receiver_Caps.No_Aux_Handshake := (Data (3) and 16#40#) /= 0; Link.Receiver_Caps.Aux_RD_Interval := Data (14); pragma Debug (Debug.New_Line); pragma Debug (Debug.Put_Line ("DPCD:")); pragma Debug (Debug.Put_Reg8 (" Rev ", Data (0))); pragma Debug (Debug.Put_Reg8 (" Max_Link_Rate ", Data (1))); pragma Debug (Debug.Put_Reg8 (" Max_Lane_Count ", Data (2) and 16#1f#)); pragma Debug (Debug.Put_Reg8 (" TPS3_Supported ", Data (2) and 16#40#)); pragma Debug (Debug.Put_Reg8 (" Enhanced_Framing", Data (2) and 16#80#)); pragma Debug (Debug.Put_Reg8 (" No_Aux_Handshake", Data (3) and 16#40#)); pragma Debug (Debug.Put_Reg8 (" Aux_RD_Interval ", Data (14))); pragma Debug (Debug.New_Line); end if; end Read_Caps; procedure Minimum_Lane_Count (Link : in out DP_Link; Mode : in Mode_Type; Success : out Boolean) with Depends => ((Link, Success) => (Link, Mode)) is function Link_Pixel_Per_Second (Link_Rate : DP_Bandwidth) return Positive with Post => Pos64 (Link_Pixel_Per_Second'Result) <= ((DP_Symbol_Rate_Type'Last * 8) / 3) / BPC_Type'First is begin -- Link_Rate is brutto with 8/10 bit symbols; three colors pragma Assert (Positive (DP_Symbol_Rate (Link_Rate)) <= (Positive'Last / 8) * 3); pragma Assert ((Int64 (DP_Symbol_Rate (Link_Rate)) * 8) / 3 >= Int64 (BPC_Type'Last)); return Positive (((Int64 (DP_Symbol_Rate (Link_Rate)) * 8) / 3) / Int64 (Mode.BPC)); end Link_Pixel_Per_Second; Count : Natural; begin Count := Link_Pixel_Per_Second (Link.Bandwidth); Count := (Positive (Mode.Dotclock) + Count - 1) / Count; Success := True; case Count is when 1 => Link.Lane_Count := DP_Lane_Count_1; when 2 => Link.Lane_Count := DP_Lane_Count_2; when 3 | 4 => Link.Lane_Count := DP_Lane_Count_4; when others => Success := False; end case; end Minimum_Lane_Count; procedure Preferred_Link_Setting (Link : in out DP_Link; Mode : in Mode_Type; Success : out Boolean) is begin Link.Bandwidth := Link.Receiver_Caps.Max_Link_Rate; Link.Enhanced_Framing := Link.Receiver_Caps.Enhanced_Framing; Minimum_Lane_Count (Link, Mode, Success); Success := Success and Link.Lane_Count <= Link.Receiver_Caps.Max_Lane_Count; pragma Debug (not Success, Debug.Put_Line ("Mode requirements exceed available bandwidth!")); end Preferred_Link_Setting; procedure Next_Link_Setting (Link : in out DP_Link; Mode : in Mode_Type; Success : out Boolean) is begin if Link.Bandwidth > DP_Bandwidth'First then Link.Bandwidth := DP_Bandwidth'Pred (Link.Bandwidth); Minimum_Lane_Count (Link, Mode, Success); Success := Success and Link.Lane_Count <= Link.Receiver_Caps.Max_Lane_Count; else Success := False; end if; end Next_Link_Setting; procedure Dump_Link_Setting (Link : DP_Link) is begin Debug.Put ("Trying DP settings: Symbol Rate = "); Debug.Put_Int32 (Int32 (DP_Symbol_Rate (Link.Bandwidth))); Debug.Put ("; Lane Count = "); Debug.Put_Int32 (Int32 (Lane_Count_As_Integer (Link.Lane_Count))); Debug.New_Line; Debug.New_Line; end Dump_Link_Setting; ---------------------------------------------------------------------------- procedure Calculate_M_N (Link : in DP_Link; Mode : in Mode_Type; Data_M : out M_Type; Data_N : out N_Type; Link_M : out M_Type; Link_N : out N_Type) is DATA_N_MAX : constant := 16#800000#; LINK_N_MAX : constant := 16#100000#; subtype Calc_M_Type is Int64 range 0 .. 2 ** 36; subtype Calc_N_Type is Int64 range 0 .. 2 ** 36; subtype N_Rounded_Type is Int64 range 0 .. Int64'Max (DATA_N_MAX, LINK_N_MAX); M : Calc_M_Type; N : Calc_N_Type; procedure Cancel_M_N (M : in out Calc_M_Type; N : in out Calc_N_Type; N_Max : in N_Rounded_Type) with Depends => ((M, N) => (M, N, N_max)), Pre => (N > 0 and M in 0 .. Calc_M_Type'Last / 2), Post => (M <= M_N_Max and N <= M_N_Max) is Orig_N : constant Calc_N_Type := N; function Round_N (N : Calc_N_Type) return N_Rounded_Type with Post => (Round_N'Result <= N * 2) is RN : Calc_N_Type; RN2 : Calc_N_Type := N_Max; begin loop RN := RN2; RN2 := RN2 / 2; exit when RN2 < N; pragma Loop_Invariant (RN2 = RN / 2 and RN2 in N .. N_Max); end loop; return RN; end Round_N; begin N := Round_N (N); -- The automatic provers need a little nudge here. pragma Assert (if M <= Calc_M_Type'Last/2 and N <= Orig_N * 2 and Orig_N > 0 and M > 0 then M * N / Orig_N <= Calc_M_Type'Last); pragma Annotate (GNATprove, False_Positive, "assertion might fail", "The property cannot be proven automatically. An Isabelle proof is included as an axiom"); M := M * N / Orig_N; -- This loop is never hit for sane values (i.e. M <= N) but -- we have to make sure returned values are always in range. while M > M_N_Max loop pragma Loop_Invariant (N <= M_N_Max); M := M / 2; N := N / 2; end loop; end Cancel_M_N; begin pragma Debug (Debug.Put_Line (GNAT.Source_Info.Enclosing_Entity)); pragma Assert (3 * Mode.BPC * Mode.Dotclock in Pos64); M := 3 * Mode.BPC * Mode.Dotclock; pragma Assert (8 * DP_Symbol_Rate (Link.Bandwidth) * Lane_Count_As_Integer (Link.Lane_Count) in Pos64); N := 8 * DP_Symbol_Rate (Link.Bandwidth) * Lane_Count_As_Integer (Link.Lane_Count); Cancel_M_N (M, N, DATA_N_MAX); Data_M := M; Data_N := N; ------------------------------------------------------------------- M := Pos64 (Mode.Dotclock); N := Pos64 (DP_Symbol_Rate (Link.Bandwidth)); Cancel_M_N (M, N, LINK_N_MAX); Link_M := M; Link_N := N; end Calculate_M_N; ---------------------------------------------------------------------------- procedure Read_Link_Status (Port : in T; Status : out Link_Status; Success : out Boolean) is subtype Status_Index is DP_Defs.Aux_Payload_Index range 0 .. 5; subtype Status_Buffer is Buffer (Status_Index); function Buffer_As_Status is new Ada.Unchecked_Conversion (Source => Status_Buffer, Target => Link_Status); Data : DP_Defs.Aux_Payload; Length : DP_Defs.Aux_Payload_Length; begin pragma Debug (Debug.Put_Line (GNAT.Source_Info.Enclosing_Entity)); Length := Status_Index'Last + 1; Aux_Ch.Aux_Read (Port => Port, Address => 16#00202#, Length => Length, Data => Data, Success => Success); Success := Success and Length = Status_Index'Last + 1; Status := Buffer_As_Status (Data (Status_Index)); end Read_Link_Status; function All_CR_Done (Status : Link_Status; Link : DP_Link) return Boolean is CR_Done : Boolean := True; begin for Lane in Lane_Index range 0 .. Lane_Index (Lane_Count_As_Integer (Link.Lane_Count) - 1) loop CR_Done := CR_Done and Status.Lanes (Lane).CR_Done; end loop; return CR_Done; end All_CR_Done; function All_EQ_Done (Status : Link_Status; Link : DP_Link) return Boolean is EQ_Done : Boolean := True; begin for Lane in Lane_Index range 0 .. Lane_Index (Lane_Count_As_Integer (Link.Lane_Count) - 1) loop EQ_Done := EQ_Done and Status.Lanes (Lane).CR_Done and Status.Lanes (Lane).Channel_EQ_Done and Status.Lanes (Lane).Symbol_Locked; end loop; return EQ_Done and Status.Interlane_Align_Done; end All_EQ_Done; function Max_Requested_VS (Status : Link_Status; Link : DP_Link) return DP_Voltage_Swing is VS : DP_Voltage_Swing := DP_Voltage_Swing'First; begin for Lane in Lane_Index range 0 .. Lane_Index (Lane_Count_As_Integer (Link.Lane_Count) - 1) loop if Status.Adjust_Requests (Lane).Voltage_Swing > VS then VS := Status.Adjust_Requests (Lane).Voltage_Swing; end if; end loop; return VS; end Max_Requested_VS; function Max_Requested_Emph (Status : Link_Status; Link : DP_Link) return DP_Pre_Emph is Emph : DP_Pre_Emph := DP_Pre_Emph'First; begin for Lane in Lane_Index range 0 .. Lane_Index (Lane_Count_As_Integer (Link.Lane_Count) - 1) loop if Status.Adjust_Requests (Lane).Pre_Emph > Emph then Emph := Status.Adjust_Requests (Lane).Pre_Emph; end if; end loop; return Emph; end Max_Requested_Emph; end HW.GFX.DP_Info;
-- -- ABench2020 Benchmark Suite -- -- Linear Search Program -- -- Licensed under the MIT License. See LICENSE file in the ABench root -- directory for license information. -- -- Uncomment the line below to print the result. -- with Ada.Text_IO; use Ada.Text_IO; procedure Linear_Search is type Vector is array (Natural range<>) of Integer; procedure Search (Search_Array : Vector; Search_Value : Integer) is Count : Integer := 0; Index : Integer := 0; begin for I in 1 .. Search_Array'Last loop if Search_Array (I) = Search_Value then Count := Count + 1; end if; end loop; if Count = 0 then return; end if; declare Index_Array : Vector (1 .. Count); begin for I in 1 .. Search_Array'Last loop if Search_Array (I) = Search_Value then Index := Index + 1; Index_Array (Index) := I; end if; end loop; -- Uncomment the line below to print the result. -- for I in 1 .. Index_Array'Last loop -- Put (Integer'Image (Index_Array (I))); -- end loop; end; end; Search_Value : Integer; Search_Array : Vector := (3, 4, 7, 8, 9, 10, 11, 24, 25, 55, 56, 78, 90, 98, 120, 134, 152, 155, 165, 167, 168, 198, 250, 287, 298, 300, 310, 333, 338, 350, 399, 442, 475, 567); begin loop Search_Value := 250; Search (Search_Array, Search_Value); end loop; end;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- G N A T . C G I -- -- -- -- B o d y -- -- -- -- Copyright (C) 2001-2019, 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. -- -- -- ------------------------------------------------------------------------------ with Ada.Text_IO; with Ada.Strings.Fixed; with Ada.Characters.Handling; with Ada.Strings.Maps; with GNAT.OS_Lib; with GNAT.Table; package body GNAT.CGI is use Ada; Valid_Environment : Boolean := True; -- This boolean will be set to False if the initialization was not -- completed correctly. It must be set to true there because the -- Initialize routine (called during elaboration) will use some of the -- services exported by this unit. Current_Method : Method_Type; -- This is the current method used to pass CGI parameters Header_Sent : Boolean := False; -- Will be set to True when the header will be sent -- Key/Value table declaration type String_Access is access String; type Key_Value is record Key : String_Access; Value : String_Access; end record; package Key_Value_Table is new Table (Key_Value, Positive, 1, 1, 50); ----------------------- -- Local subprograms -- ----------------------- procedure Check_Environment; pragma Inline (Check_Environment); -- This procedure will raise Data_Error if Valid_Environment is False procedure Initialize; -- Initialize CGI package by reading the runtime environment. This -- procedure is called during elaboration. All exceptions raised during -- this procedure are deferred. -------------------- -- Argument_Count -- -------------------- function Argument_Count return Natural is begin Check_Environment; return Key_Value_Table.Last; end Argument_Count; ----------------------- -- Check_Environment -- ----------------------- procedure Check_Environment is begin if not Valid_Environment then raise Data_Error; end if; end Check_Environment; ------------ -- Decode -- ------------ function Decode (S : String) return String is Result : String (S'Range); K : Positive := S'First; J : Positive := Result'First; begin while K <= S'Last loop if K + 2 <= S'Last and then S (K) = '%' and then Characters.Handling.Is_Hexadecimal_Digit (S (K + 1)) and then Characters.Handling.Is_Hexadecimal_Digit (S (K + 2)) then -- Here we have '%HH' which is an encoded character where 'HH' is -- the character number in hexadecimal. Result (J) := Character'Val (Natural'Value ("16#" & S (K + 1 .. K + 2) & '#')); K := K + 3; -- Plus sign is decoded as a space elsif S (K) = '+' then Result (J) := ' '; K := K + 1; else Result (J) := S (K); K := K + 1; end if; J := J + 1; end loop; return Result (Result'First .. J - 1); end Decode; ------------------------- -- For_Every_Parameter -- ------------------------- procedure For_Every_Parameter is Quit : Boolean; begin Check_Environment; for K in 1 .. Key_Value_Table.Last loop Quit := False; Action (Key_Value_Table.Table (K).Key.all, Key_Value_Table.Table (K).Value.all, K, Quit); exit when Quit; end loop; end For_Every_Parameter; ---------------- -- Initialize -- ---------------- procedure Initialize is Request_Method : constant String := Characters.Handling.To_Upper (Metavariable (CGI.Request_Method)); procedure Initialize_GET; -- Read CGI parameters for a GET method. In this case the parameters -- are passed into QUERY_STRING environment variable. procedure Initialize_POST; -- Read CGI parameters for a POST method. In this case the parameters -- are passed with the standard input. The total number of characters -- for the data is passed in CONTENT_LENGTH environment variable. procedure Set_Parameter_Table (Data : String); -- Parse the parameter data and set the parameter table -------------------- -- Initialize_GET -- -------------------- procedure Initialize_GET is Data : constant String := Metavariable (Query_String); begin Current_Method := Get; if Data /= "" then Set_Parameter_Table (Data); end if; end Initialize_GET; --------------------- -- Initialize_POST -- --------------------- procedure Initialize_POST is Content_Length : constant Natural := Natural'Value (Metavariable (CGI.Content_Length)); Data : String (1 .. Content_Length); begin Current_Method := Post; if Content_Length /= 0 then Text_IO.Get (Data); Set_Parameter_Table (Data); end if; end Initialize_POST; ------------------------- -- Set_Parameter_Table -- ------------------------- procedure Set_Parameter_Table (Data : String) is procedure Add_Parameter (K : Positive; P : String); -- Add a single parameter into the table at index K. The parameter -- format is "key=value". Count : constant Positive := 1 + Strings.Fixed.Count (Data, Strings.Maps.To_Set ("&")); -- Count is the number of parameters in the string. Parameters are -- separated by ampersand character. Index : Positive := Data'First; Amp : Natural; ------------------- -- Add_Parameter -- ------------------- procedure Add_Parameter (K : Positive; P : String) is Equal : constant Natural := Strings.Fixed.Index (P, "="); begin if Equal = 0 then raise Data_Error; else Key_Value_Table.Table (K) := Key_Value'(new String'(Decode (P (P'First .. Equal - 1))), new String'(Decode (P (Equal + 1 .. P'Last)))); end if; end Add_Parameter; -- Start of processing for Set_Parameter_Table begin Key_Value_Table.Set_Last (Count); for K in 1 .. Count - 1 loop Amp := Strings.Fixed.Index (Data (Index .. Data'Last), "&"); Add_Parameter (K, Data (Index .. Amp - 1)); Index := Amp + 1; end loop; -- add last parameter Add_Parameter (Count, Data (Index .. Data'Last)); end Set_Parameter_Table; -- Start of processing for Initialize begin if Request_Method = "GET" then Initialize_GET; elsif Request_Method = "POST" then Initialize_POST; else Valid_Environment := False; end if; exception when others => -- If we have an exception during initialization of this unit we -- just declare it invalid. Valid_Environment := False; end Initialize; --------- -- Key -- --------- function Key (Position : Positive) return String is begin Check_Environment; if Position <= Key_Value_Table.Last then return Key_Value_Table.Table (Position).Key.all; else raise Parameter_Not_Found; end if; end Key; ---------------- -- Key_Exists -- ---------------- function Key_Exists (Key : String) return Boolean is begin Check_Environment; for K in 1 .. Key_Value_Table.Last loop if Key_Value_Table.Table (K).Key.all = Key then return True; end if; end loop; return False; end Key_Exists; ------------------ -- Metavariable -- ------------------ function Metavariable (Name : Metavariable_Name; Required : Boolean := False) return String is function Get_Environment (Variable_Name : String) return String; -- Returns the environment variable content --------------------- -- Get_Environment -- --------------------- function Get_Environment (Variable_Name : String) return String is Value : OS_Lib.String_Access := OS_Lib.Getenv (Variable_Name); Result : constant String := Value.all; begin OS_Lib.Free (Value); return Result; end Get_Environment; Result : constant String := Get_Environment (Metavariable_Name'Image (Name)); -- Start of processing for Metavariable begin Check_Environment; if Result = "" and then Required then raise Parameter_Not_Found; else return Result; end if; end Metavariable; ------------------------- -- Metavariable_Exists -- ------------------------- function Metavariable_Exists (Name : Metavariable_Name) return Boolean is begin Check_Environment; if Metavariable (Name) = "" then return False; else return True; end if; end Metavariable_Exists; ------------ -- Method -- ------------ function Method return Method_Type is begin Check_Environment; return Current_Method; end Method; -------- -- Ok -- -------- function Ok return Boolean is begin return Valid_Environment; end Ok; ---------------- -- Put_Header -- ---------------- procedure Put_Header (Header : String := Default_Header; Force : Boolean := False) is begin if Header_Sent = False or else Force then Check_Environment; Text_IO.Put_Line (Header); Text_IO.New_Line; Header_Sent := True; end if; end Put_Header; --------- -- URL -- --------- function URL return String is function Exists_And_Not_80 (Server_Port : String) return String; -- Returns ':' & Server_Port if Server_Port is not "80" and the empty -- string otherwise (80 is the default sever port). ----------------------- -- Exists_And_Not_80 -- ----------------------- function Exists_And_Not_80 (Server_Port : String) return String is begin if Server_Port = "80" then return ""; else return ':' & Server_Port; end if; end Exists_And_Not_80; -- Start of processing for URL begin Check_Environment; return "http://" & Metavariable (Server_Name) & Exists_And_Not_80 (Metavariable (Server_Port)) & Metavariable (Script_Name); end URL; ----------- -- Value -- ----------- function Value (Key : String; Required : Boolean := False) return String is begin Check_Environment; for K in 1 .. Key_Value_Table.Last loop if Key_Value_Table.Table (K).Key.all = Key then return Key_Value_Table.Table (K).Value.all; end if; end loop; if Required then raise Parameter_Not_Found; else return ""; end if; end Value; ----------- -- Value -- ----------- function Value (Position : Positive) return String is begin Check_Environment; if Position <= Key_Value_Table.Last then return Key_Value_Table.Table (Position).Value.all; else raise Parameter_Not_Found; end if; end Value; begin Initialize; end GNAT.CGI;
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="11"> <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>duc_mixer</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>4</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>freq</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>freq</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>0</direction> <if_type>0</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>Din</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>Din</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</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>Dout_I</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>Dout_I</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <direction>1</direction> <if_type>0</if_type> <array_size>0</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>Dout_Q</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>Dout_Q</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <direction>1</direction> <if_type>0</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>72</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_5"> <Value> <Obj> <type>0</type> <id>12</id> <name>Din_read</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>Din</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>97</item> <item>98</item> </oprand_edges> <opcode>read</opcode> </item> <item class_id_reference="9" object_id="_6"> <Value> <Obj> <type>0</type> <id>13</id> <name>freq_read</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>freq</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>100</item> <item>101</item> </oprand_edges> <opcode>read</opcode> </item> <item class_id_reference="9" object_id="_7"> <Value> <Obj> <type>0</type> <id>14</id> <name>i_4_load</name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>37</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="11" tracking_level="0" version="0"> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second class_id="12" tracking_level="0" version="0"> <count>1</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>mixer.c</first> <second>mixer</second> </first> <second>37</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>102</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_8"> <Value> <Obj> <type>0</type> <id>15</id> <name>inc</name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>37</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>37</second> </item> </second> </item> </inlineStackInfo> <originalName>inc</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>103</item> <item>105</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_9"> <Value> <Obj> <type>0</type> <id>16</id> <name>tmp_15</name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>38</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>38</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>107</item> <item>108</item> <item>110</item> <item>112</item> </oprand_edges> <opcode>partselect</opcode> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>17</id> <name>valid_in</name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>38</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>38</second> </item> </second> </item> </inlineStackInfo> <originalName>valid_in</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>113</item> <item>115</item> </oprand_edges> <opcode>icmp</opcode> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>18</id> <name>init_4_load</name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>39</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>39</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>116</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>19</id> <name>freq_dds</name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>39</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>39</second> </item> </second> </item> </inlineStackInfo> <originalName>freq</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>117</item> <item>119</item> <item>120</item> </oprand_edges> <opcode>select</opcode> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>20</id> <name>ch_3_load</name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>45</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>45</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>121</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>21</id> <name>brmerge_demorgan</name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>45</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>45</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>122</item> <item>123</item> </oprand_edges> <opcode>and</opcode> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>22</id> <name>index_load</name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>46</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>46</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>124</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>23</id> <name></name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>45</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>45</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>125</item> <item>126</item> <item>127</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>25</id> <name></name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>48</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>136</item> <item>137</item> <item>138</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>27</id> <name>acc_load</name> <fileName>dds.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>14</lineNumber> <contextFuncName>dds</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dds.c</first> <second>dds</second> </first> <second>14</second> </item> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>139</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>28</id> <name>acc_assign_i</name> <fileName>dds.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>14</lineNumber> <contextFuncName>dds</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dds.c</first> <second>dds</second> </first> <second>14</second> </item> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>140</item> <item>141</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>29</id> <name></name> <fileName>dds.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>14</lineNumber> <contextFuncName>dds</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dds.c</first> <second>dds</second> </first> <second>14</second> </item> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>49</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>142</item> <item>143</item> <item>270</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>30</id> <name>phase1</name> <fileName>dds.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>24</lineNumber> <contextFuncName>dds</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dds.c</first> <second>dds</second> </first> <second>24</second> </item> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName>phase1</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>145</item> <item>146</item> <item>148</item> <item>150</item> </oprand_edges> <opcode>partselect</opcode> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>31</id> <name>tmp_i</name> <fileName>dds.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>dds</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dds.c</first> <second>dds</second> </first> <second>26</second> </item> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>49</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>151</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>32</id> <name>dds_table_addr</name> <fileName>dds.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>dds</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dds.c</first> <second>dds</second> </first> <second>26</second> </item> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>49</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>152</item> <item>153</item> <item>154</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>33</id> <name>sine</name> <fileName>dds.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>26</lineNumber> <contextFuncName>dds</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dds.c</first> <second>dds</second> </first> <second>26</second> </item> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName>sine</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>155</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>34</id> <name>phase2</name> <fileName>dds.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>32</lineNumber> <contextFuncName>dds</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dds.c</first> <second>dds</second> </first> <second>32</second> </item> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName>phase2</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>157</item> <item>158</item> </oprand_edges> <opcode>sub</opcode> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>35</id> <name>tmp_53_i</name> <fileName>dds.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>33</lineNumber> <contextFuncName>dds</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dds.c</first> <second>dds</second> </first> <second>33</second> </item> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>49</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>159</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>36</id> <name>dds_table_addr_1</name> <fileName>dds.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>33</lineNumber> <contextFuncName>dds</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dds.c</first> <second>dds</second> </first> <second>33</second> </item> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>49</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>160</item> <item>161</item> <item>162</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>37</id> <name>cosine</name> <fileName>dds.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>33</lineNumber> <contextFuncName>dds</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dds.c</first> <second>dds</second> </first> <second>33</second> </item> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName>cosine</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>163</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>38</id> <name>tmp_s</name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>50</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>164</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>39</id> <name>DI_cache_addr_1</name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>50</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>165</item> <item>166</item> <item>167</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>40</id> <name>Din_re</name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>50</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>50</second> </item> </second> </item> </inlineStackInfo> <originalName>Din_re</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>168</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>41</id> <name>tmp_i3_cast</name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>7</lineNumber> <contextFuncName>mix_SubDSP</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mix_SubDSP</second> </first> <second>7</second> </item> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>58</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>169</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>42</id> <name>tmp_i4_cast</name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>7</lineNumber> <contextFuncName>mix_SubDSP</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mix_SubDSP</second> </first> <second>7</second> </item> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>58</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>170</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>43</id> <name>tmp_8</name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>7</lineNumber> <contextFuncName>mix_SubDSP</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mix_SubDSP</second> </first> <second>7</second> </item> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>58</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>171</item> <item>172</item> </oprand_edges> <opcode>sub</opcode> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>44</id> <name>tmp_i_i</name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>4</lineNumber> <contextFuncName>mix_SubDSP</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mix_SubDSP</second> </first> <second>4</second> </item> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>173</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>45</id> <name>tmp_i_i_15</name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>4</lineNumber> <contextFuncName>mix_SubDSP</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mix_SubDSP</second> </first> <second>4</second> </item> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>174</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>46</id> <name>tmp_2</name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>4</lineNumber> <contextFuncName>mix_SubDSP</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mix_SubDSP</second> </first> <second>4</second> </item> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>175</item> <item>176</item> </oprand_edges> <opcode>mul</opcode> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>47</id> <name>tmp_i5</name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>7</lineNumber> <contextFuncName>mix_SubDSP</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mix_SubDSP</second> </first> <second>7</second> </item> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>19</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>177</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>48</id> <name>tmp_i6</name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>7</lineNumber> <contextFuncName>mix_SubDSP</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mix_SubDSP</second> </first> <second>7</second> </item> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>19</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>178</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>49</id> <name>tmp_9</name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>7</lineNumber> <contextFuncName>mix_SubDSP</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mix_SubDSP</second> </first> <second>7</second> </item> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>19</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>179</item> <item>180</item> </oprand_edges> <opcode>sub</opcode> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>50</id> <name>tmp_i_i8_cast</name> <fileName>mac.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>7</lineNumber> <contextFuncName>mult</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>mac.c</first> <second>mult</second> </first> <second>7</second> </item> <item> <first> <first>mixer.c</first> <second>mix_SubDSP</second> </first> <second>8</second> </item> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>181</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>51</id> <name>tmp_i_i9_cast</name> <fileName>mac.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>7</lineNumber> <contextFuncName>mult</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>mac.c</first> <second>mult</second> </first> <second>7</second> </item> <item> <first> <first>mixer.c</first> <second>mix_SubDSP</second> </first> <second>8</second> </item> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>182</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>52</id> <name>m</name> <fileName>mac.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>7</lineNumber> <contextFuncName>mult</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>mac.c</first> <second>mult</second> </first> <second>7</second> </item> <item> <first> <first>mixer.c</first> <second>mix_SubDSP</second> </first> <second>8</second> </item> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName>m</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>183</item> <item>184</item> </oprand_edges> <opcode>mul</opcode> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>53</id> <name>tmp_3</name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>185</item> <item>186</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>54</id> <name>tmp_4</name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>188</item> <item>189</item> <item>191</item> <item>193</item> </oprand_edges> <opcode>partselect</opcode> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>55</id> <name></name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>59</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>195</item> <item>196</item> <item>197</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>56</id> <name>tmp_5</name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>16</lineNumber> <contextFuncName>mix_AddDSP</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mix_AddDSP</second> </first> <second>16</second> </item> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>19</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>198</item> <item>199</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>57</id> <name>tmp_i_i1_cast</name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>18</lineNumber> <contextFuncName>mix_AddDSP</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mix_AddDSP</second> </first> <second>18</second> </item> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>200</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>58</id> <name>tmp_i_i1_cast_16</name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>18</lineNumber> <contextFuncName>mix_AddDSP</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mix_AddDSP</second> </first> <second>18</second> </item> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>201</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>59</id> <name>m_i_i</name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>18</lineNumber> <contextFuncName>mix_AddDSP</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mix_AddDSP</second> </first> <second>18</second> </item> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>202</item> <item>203</item> </oprand_edges> <opcode>mul</opcode> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>60</id> <name>tmp_6</name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>204</item> <item>205</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>61</id> <name>tmp_7</name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>60</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>18</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>206</item> <item>207</item> <item>208</item> <item>209</item> </oprand_edges> <opcode>partselect</opcode> </item> <item class_id_reference="9" object_id="_53"> <Value> <Obj> <type>0</type> <id>62</id> <name></name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>60</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>60</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>210</item> <item>211</item> <item>212</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_54"> <Value> <Obj> <type>0</type> <id>63</id> <name>tmp_10</name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>62</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>213</item> <item>215</item> </oprand_edges> <opcode>icmp</opcode> </item> <item class_id_reference="9" object_id="_55"> <Value> <Obj> <type>0</type> <id>64</id> <name></name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>62</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>62</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>216</item> <item>217</item> <item>218</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_56"> <Value> <Obj> <type>0</type> <id>66</id> <name></name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>64</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>64</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>220</item> <item>221</item> <item>272</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_57"> <Value> <Obj> <type>0</type> <id>67</id> <name></name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>65</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>65</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>222</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_58"> <Value> <Obj> <type>0</type> <id>69</id> <name></name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>66</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>223</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_59"> <Value> <Obj> <type>0</type> <id>71</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>1</count> <item_version>0</item_version> <item>224</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_60"> <Value> <Obj> <type>0</type> <id>73</id> <name>tmp</name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>46</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>46</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>128</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_61"> <Value> <Obj> <type>0</type> <id>74</id> <name>DI_cache_addr</name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>46</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>46</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>129</item> <item>131</item> <item>132</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_62"> <Value> <Obj> <type>0</type> <id>75</id> <name></name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>46</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>46</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>133</item> <item>134</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_63"> <Value> <Obj> <type>0</type> <id>76</id> <name></name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>47</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>135</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_64"> <Value> <Obj> <type>0</type> <id>78</id> <name>tmp_11</name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>68</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>68</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>225</item> <item>226</item> </oprand_edges> <opcode>icmp</opcode> </item> <item class_id_reference="9" object_id="_65"> <Value> <Obj> <type>0</type> <id>79</id> <name></name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>68</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>68</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>227</item> <item>228</item> <item>229</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_66"> <Value> <Obj> <type>0</type> <id>81</id> <name>tmp_12</name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>68</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>68</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>230</item> <item>232</item> </oprand_edges> <opcode>xor</opcode> </item> <item class_id_reference="9" object_id="_67"> <Value> <Obj> <type>0</type> <id>82</id> <name></name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>68</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>68</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>233</item> <item>234</item> <item>271</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_68"> <Value> <Obj> <type>0</type> <id>83</id> <name></name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>68</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>68</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>235</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_69"> <Value> <Obj> <type>0</type> <id>85</id> <name></name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>69</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>236</item> <item>237</item> <item>238</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_70"> <Value> <Obj> <type>0</type> <id>87</id> <name>tmp_13</name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>69</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>239</item> <item>241</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_71"> <Value> <Obj> <type>0</type> <id>88</id> <name></name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>69</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>242</item> <item>243</item> <item>273</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_72"> <Value> <Obj> <type>0</type> <id>89</id> <name></name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>69</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>244</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_73"> <Value> <Obj> <type>0</type> <id>91</id> <name>tmp_14</name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>70</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>70</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>245</item> <item>247</item> </oprand_edges> <opcode>icmp</opcode> </item> <item class_id_reference="9" object_id="_74"> <Value> <Obj> <type>0</type> <id>92</id> <name>inc_5</name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>70</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>70</second> </item> </second> </item> </inlineStackInfo> <originalName>inc</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>248</item> <item>250</item> <item>251</item> </oprand_edges> <opcode>select</opcode> </item> <item class_id_reference="9" object_id="_75"> <Value> <Obj> <type>0</type> <id>93</id> <name></name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>70</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>70</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>252</item> <item>253</item> <item>274</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_76"> <Value> <Obj> <type>0</type> <id>94</id> <name></name> <fileName>mixer.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</fileDirectory> <lineNumber>71</lineNumber> <contextFuncName>mixer</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/RTL_Verification/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>mixer.c</first> <second>mixer</second> </first> <second>71</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> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>17</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_77"> <Value> <Obj> <type>2</type> <id>104</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="_78"> <Value> <Obj> <type>2</type> <id>109</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>1</content> </item> <item class_id_reference="16" object_id="_79"> <Value> <Obj> <type>2</type> <id>111</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>2</content> </item> <item class_id_reference="16" object_id="_80"> <Value> <Obj> <type>2</type> <id>114</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="_81"> <Value> <Obj> <type>2</type> <id>118</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>16</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_82"> <Value> <Obj> <type>2</type> <id>130</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="_83"> <Value> <Obj> <type>2</type> <id>147</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>11</content> </item> <item class_id_reference="16" object_id="_84"> <Value> <Obj> <type>2</type> <id>149</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>15</content> </item> <item class_id_reference="16" object_id="_85"> <Value> <Obj> <type>2</type> <id>156</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>5</bitwidth> </Value> <const_type>0</const_type> <content>8</content> </item> <item class_id_reference="16" object_id="_86"> <Value> <Obj> <type>2</type> <id>190</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>14</content> </item> <item class_id_reference="16" object_id="_87"> <Value> <Obj> <type>2</type> <id>192</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>31</content> </item> <item class_id_reference="16" object_id="_88"> <Value> <Obj> <type>2</type> <id>214</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="_89"> <Value> <Obj> <type>2</type> <id>219</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="_90"> <Value> <Obj> <type>2</type> <id>231</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>1</content> </item> <item class_id_reference="16" object_id="_91"> <Value> <Obj> <type>2</type> <id>240</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="_92"> <Value> <Obj> <type>2</type> <id>246</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>5</content> </item> <item class_id_reference="16" object_id="_93"> <Value> <Obj> <type>2</type> <id>249</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> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>12</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_94"> <Obj> <type>3</type> <id>24</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>12</count> <item_version>0</item_version> <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> </node_objs> </item> <item class_id_reference="18" object_id="_95"> <Obj> <type>3</type> <id>26</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>25</item> </node_objs> </item> <item class_id_reference="18" object_id="_96"> <Obj> <type>3</type> <id>65</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>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>57</item> <item>58</item> <item>59</item> <item>60</item> <item>61</item> <item>62</item> <item>63</item> <item>64</item> </node_objs> </item> <item class_id_reference="18" object_id="_97"> <Obj> <type>3</type> <id>68</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>66</item> <item>67</item> </node_objs> </item> <item class_id_reference="18" object_id="_98"> <Obj> <type>3</type> <id>70</id> <name>._crit_edge2</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>69</item> </node_objs> </item> <item class_id_reference="18" object_id="_99"> <Obj> <type>3</type> <id>72</id> <name>._crit_edge</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>71</item> </node_objs> </item> <item class_id_reference="18" object_id="_100"> <Obj> <type>3</type> <id>77</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>4</count> <item_version>0</item_version> <item>73</item> <item>74</item> <item>75</item> <item>76</item> </node_objs> </item> <item class_id_reference="18" object_id="_101"> <Obj> <type>3</type> <id>80</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>78</item> <item>79</item> </node_objs> </item> <item class_id_reference="18" object_id="_102"> <Obj> <type>3</type> <id>84</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>3</count> <item_version>0</item_version> <item>81</item> <item>82</item> <item>83</item> </node_objs> </item> <item class_id_reference="18" object_id="_103"> <Obj> <type>3</type> <id>86</id> <name>._crit_edge3</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>85</item> </node_objs> </item> <item class_id_reference="18" object_id="_104"> <Obj> <type>3</type> <id>90</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>3</count> <item_version>0</item_version> <item>87</item> <item>88</item> <item>89</item> </node_objs> </item> <item class_id_reference="18" object_id="_105"> <Obj> <type>3</type> <id>95</id> <name>._crit_edge4</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>91</item> <item>92</item> <item>93</item> <item>94</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>148</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_106"> <id>98</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_107"> <id>101</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_108"> <id>102</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>14</sink_obj> </item> <item class_id_reference="20" object_id="_109"> <id>103</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>15</sink_obj> </item> <item class_id_reference="20" object_id="_110"> <id>105</id> <edge_type>1</edge_type> <source_obj>104</source_obj> <sink_obj>15</sink_obj> </item> <item class_id_reference="20" object_id="_111"> <id>108</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_112"> <id>110</id> <edge_type>1</edge_type> <source_obj>109</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_113"> <id>112</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_114"> <id>113</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_115"> <id>115</id> <edge_type>1</edge_type> <source_obj>114</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_116"> <id>116</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>18</sink_obj> </item> <item class_id_reference="20" object_id="_117"> <id>117</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>19</sink_obj> </item> <item class_id_reference="20" object_id="_118"> <id>119</id> <edge_type>1</edge_type> <source_obj>118</source_obj> <sink_obj>19</sink_obj> </item> <item class_id_reference="20" object_id="_119"> <id>120</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>19</sink_obj> </item> <item class_id_reference="20" object_id="_120"> <id>121</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_121"> <id>122</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_122"> <id>123</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_123"> <id>124</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>22</sink_obj> </item> <item class_id_reference="20" object_id="_124"> <id>125</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_125"> <id>126</id> <edge_type>2</edge_type> <source_obj>26</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_126"> <id>127</id> <edge_type>2</edge_type> <source_obj>77</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_127"> <id>128</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>73</sink_obj> </item> <item class_id_reference="20" object_id="_128"> <id>129</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_129"> <id>131</id> <edge_type>1</edge_type> <source_obj>130</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_130"> <id>132</id> <edge_type>1</edge_type> <source_obj>73</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_131"> <id>133</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>75</sink_obj> </item> <item class_id_reference="20" object_id="_132"> <id>134</id> <edge_type>1</edge_type> <source_obj>74</source_obj> <sink_obj>75</sink_obj> </item> <item class_id_reference="20" object_id="_133"> <id>135</id> <edge_type>2</edge_type> <source_obj>80</source_obj> <sink_obj>76</sink_obj> </item> <item class_id_reference="20" object_id="_134"> <id>136</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_135"> <id>137</id> <edge_type>2</edge_type> <source_obj>72</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_136"> <id>138</id> <edge_type>2</edge_type> <source_obj>65</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_137"> <id>139</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_138"> <id>140</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_139"> <id>141</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_140"> <id>142</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_141"> <id>143</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_142"> <id>146</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_143"> <id>148</id> <edge_type>1</edge_type> <source_obj>147</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_144"> <id>150</id> <edge_type>1</edge_type> <source_obj>149</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_145"> <id>151</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_146"> <id>152</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_147"> <id>153</id> <edge_type>1</edge_type> <source_obj>130</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_148"> <id>154</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_149"> <id>155</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_150"> <id>157</id> <edge_type>1</edge_type> <source_obj>156</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_151"> <id>158</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_152"> <id>159</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>35</sink_obj> </item> <item class_id_reference="20" object_id="_153"> <id>160</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_154"> <id>161</id> <edge_type>1</edge_type> <source_obj>130</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_155"> <id>162</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_156"> <id>163</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_157"> <id>164</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>38</sink_obj> </item> <item class_id_reference="20" object_id="_158"> <id>165</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_159"> <id>166</id> <edge_type>1</edge_type> <source_obj>130</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_160"> <id>167</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_161"> <id>168</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>40</sink_obj> </item> <item class_id_reference="20" object_id="_162"> <id>169</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>41</sink_obj> </item> <item class_id_reference="20" object_id="_163"> <id>170</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_164"> <id>171</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_165"> <id>172</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_166"> <id>173</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_167"> <id>174</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_168"> <id>175</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_169"> <id>176</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_170"> <id>177</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>47</sink_obj> </item> <item class_id_reference="20" object_id="_171"> <id>178</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_172"> <id>179</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>49</sink_obj> </item> <item class_id_reference="20" object_id="_173"> <id>180</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>49</sink_obj> </item> <item class_id_reference="20" object_id="_174"> <id>181</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>50</sink_obj> </item> <item class_id_reference="20" object_id="_175"> <id>182</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>51</sink_obj> </item> <item class_id_reference="20" object_id="_176"> <id>183</id> <edge_type>1</edge_type> <source_obj>51</source_obj> <sink_obj>52</sink_obj> </item> <item class_id_reference="20" object_id="_177"> <id>184</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>52</sink_obj> </item> <item class_id_reference="20" object_id="_178"> <id>185</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_179"> <id>186</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_180"> <id>189</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>54</sink_obj> </item> <item class_id_reference="20" object_id="_181"> <id>191</id> <edge_type>1</edge_type> <source_obj>190</source_obj> <sink_obj>54</sink_obj> </item> <item class_id_reference="20" object_id="_182"> <id>193</id> <edge_type>1</edge_type> <source_obj>192</source_obj> <sink_obj>54</sink_obj> </item> <item class_id_reference="20" object_id="_183"> <id>196</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>55</sink_obj> </item> <item class_id_reference="20" object_id="_184"> <id>197</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>55</sink_obj> </item> <item class_id_reference="20" object_id="_185"> <id>198</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>56</sink_obj> </item> <item class_id_reference="20" object_id="_186"> <id>199</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>56</sink_obj> </item> <item class_id_reference="20" object_id="_187"> <id>200</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>57</sink_obj> </item> <item class_id_reference="20" object_id="_188"> <id>201</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>58</sink_obj> </item> <item class_id_reference="20" object_id="_189"> <id>202</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>59</sink_obj> </item> <item class_id_reference="20" object_id="_190"> <id>203</id> <edge_type>1</edge_type> <source_obj>57</source_obj> <sink_obj>59</sink_obj> </item> <item class_id_reference="20" object_id="_191"> <id>204</id> <edge_type>1</edge_type> <source_obj>59</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_192"> <id>205</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_193"> <id>207</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>61</sink_obj> </item> <item class_id_reference="20" object_id="_194"> <id>208</id> <edge_type>1</edge_type> <source_obj>190</source_obj> <sink_obj>61</sink_obj> </item> <item class_id_reference="20" object_id="_195"> <id>209</id> <edge_type>1</edge_type> <source_obj>192</source_obj> <sink_obj>61</sink_obj> </item> <item class_id_reference="20" object_id="_196"> <id>211</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>62</sink_obj> </item> <item class_id_reference="20" object_id="_197"> <id>212</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>62</sink_obj> </item> <item class_id_reference="20" object_id="_198"> <id>213</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>63</sink_obj> </item> <item class_id_reference="20" object_id="_199"> <id>215</id> <edge_type>1</edge_type> <source_obj>214</source_obj> <sink_obj>63</sink_obj> </item> <item class_id_reference="20" object_id="_200"> <id>216</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>64</sink_obj> </item> <item class_id_reference="20" object_id="_201"> <id>217</id> <edge_type>2</edge_type> <source_obj>70</source_obj> <sink_obj>64</sink_obj> </item> <item class_id_reference="20" object_id="_202"> <id>218</id> <edge_type>2</edge_type> <source_obj>68</source_obj> <sink_obj>64</sink_obj> </item> <item class_id_reference="20" object_id="_203"> <id>220</id> <edge_type>1</edge_type> <source_obj>219</source_obj> <sink_obj>66</sink_obj> </item> <item class_id_reference="20" object_id="_204"> <id>221</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>66</sink_obj> </item> <item class_id_reference="20" object_id="_205"> <id>222</id> <edge_type>2</edge_type> <source_obj>70</source_obj> <sink_obj>67</sink_obj> </item> <item class_id_reference="20" object_id="_206"> <id>223</id> <edge_type>2</edge_type> <source_obj>72</source_obj> <sink_obj>69</sink_obj> </item> <item class_id_reference="20" object_id="_207"> <id>224</id> <edge_type>2</edge_type> <source_obj>80</source_obj> <sink_obj>71</sink_obj> </item> <item class_id_reference="20" object_id="_208"> <id>225</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>78</sink_obj> </item> <item class_id_reference="20" object_id="_209"> <id>226</id> <edge_type>1</edge_type> <source_obj>214</source_obj> <sink_obj>78</sink_obj> </item> <item class_id_reference="20" object_id="_210"> <id>227</id> <edge_type>1</edge_type> <source_obj>78</source_obj> <sink_obj>79</sink_obj> </item> <item class_id_reference="20" object_id="_211"> <id>228</id> <edge_type>2</edge_type> <source_obj>86</source_obj> <sink_obj>79</sink_obj> </item> <item class_id_reference="20" object_id="_212"> <id>229</id> <edge_type>2</edge_type> <source_obj>84</source_obj> <sink_obj>79</sink_obj> </item> <item class_id_reference="20" object_id="_213"> <id>230</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>81</sink_obj> </item> <item class_id_reference="20" object_id="_214"> <id>232</id> <edge_type>1</edge_type> <source_obj>231</source_obj> <sink_obj>81</sink_obj> </item> <item class_id_reference="20" object_id="_215"> <id>233</id> <edge_type>1</edge_type> <source_obj>81</source_obj> <sink_obj>82</sink_obj> </item> <item class_id_reference="20" object_id="_216"> <id>234</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>82</sink_obj> </item> <item class_id_reference="20" object_id="_217"> <id>235</id> <edge_type>2</edge_type> <source_obj>86</source_obj> <sink_obj>83</sink_obj> </item> <item class_id_reference="20" object_id="_218"> <id>236</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>85</sink_obj> </item> <item class_id_reference="20" object_id="_219"> <id>237</id> <edge_type>2</edge_type> <source_obj>95</source_obj> <sink_obj>85</sink_obj> </item> <item class_id_reference="20" object_id="_220"> <id>238</id> <edge_type>2</edge_type> <source_obj>90</source_obj> <sink_obj>85</sink_obj> </item> <item class_id_reference="20" object_id="_221"> <id>239</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>87</sink_obj> </item> <item class_id_reference="20" object_id="_222"> <id>241</id> <edge_type>1</edge_type> <source_obj>240</source_obj> <sink_obj>87</sink_obj> </item> <item class_id_reference="20" object_id="_223"> <id>242</id> <edge_type>1</edge_type> <source_obj>87</source_obj> <sink_obj>88</sink_obj> </item> <item class_id_reference="20" object_id="_224"> <id>243</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>88</sink_obj> </item> <item class_id_reference="20" object_id="_225"> <id>244</id> <edge_type>2</edge_type> <source_obj>95</source_obj> <sink_obj>89</sink_obj> </item> <item class_id_reference="20" object_id="_226"> <id>245</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>91</sink_obj> </item> <item class_id_reference="20" object_id="_227"> <id>247</id> <edge_type>1</edge_type> <source_obj>246</source_obj> <sink_obj>91</sink_obj> </item> <item class_id_reference="20" object_id="_228"> <id>248</id> <edge_type>1</edge_type> <source_obj>91</source_obj> <sink_obj>92</sink_obj> </item> <item class_id_reference="20" object_id="_229"> <id>250</id> <edge_type>1</edge_type> <source_obj>249</source_obj> <sink_obj>92</sink_obj> </item> <item class_id_reference="20" object_id="_230"> <id>251</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>92</sink_obj> </item> <item class_id_reference="20" object_id="_231"> <id>252</id> <edge_type>1</edge_type> <source_obj>92</source_obj> <sink_obj>93</sink_obj> </item> <item class_id_reference="20" object_id="_232"> <id>253</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>93</sink_obj> </item> <item class_id_reference="20" object_id="_233"> <id>254</id> <edge_type>2</edge_type> <source_obj>24</source_obj> <sink_obj>77</sink_obj> </item> <item class_id_reference="20" object_id="_234"> <id>255</id> <edge_type>2</edge_type> <source_obj>24</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_235"> <id>256</id> <edge_type>2</edge_type> <source_obj>26</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_236"> <id>257</id> <edge_type>2</edge_type> <source_obj>26</source_obj> <sink_obj>72</sink_obj> </item> <item class_id_reference="20" object_id="_237"> <id>258</id> <edge_type>2</edge_type> <source_obj>65</source_obj> <sink_obj>68</sink_obj> </item> <item class_id_reference="20" object_id="_238"> <id>259</id> <edge_type>2</edge_type> <source_obj>65</source_obj> <sink_obj>70</sink_obj> </item> <item class_id_reference="20" object_id="_239"> <id>260</id> <edge_type>2</edge_type> <source_obj>68</source_obj> <sink_obj>70</sink_obj> </item> <item class_id_reference="20" object_id="_240"> <id>261</id> <edge_type>2</edge_type> <source_obj>70</source_obj> <sink_obj>72</sink_obj> </item> <item class_id_reference="20" object_id="_241"> <id>262</id> <edge_type>2</edge_type> <source_obj>72</source_obj> <sink_obj>80</sink_obj> </item> <item class_id_reference="20" object_id="_242"> <id>263</id> <edge_type>2</edge_type> <source_obj>77</source_obj> <sink_obj>80</sink_obj> </item> <item class_id_reference="20" object_id="_243"> <id>264</id> <edge_type>2</edge_type> <source_obj>80</source_obj> <sink_obj>84</sink_obj> </item> <item class_id_reference="20" object_id="_244"> <id>265</id> <edge_type>2</edge_type> <source_obj>80</source_obj> <sink_obj>86</sink_obj> </item> <item class_id_reference="20" object_id="_245"> <id>266</id> <edge_type>2</edge_type> <source_obj>84</source_obj> <sink_obj>86</sink_obj> </item> <item class_id_reference="20" object_id="_246"> <id>267</id> <edge_type>2</edge_type> <source_obj>86</source_obj> <sink_obj>90</sink_obj> </item> <item class_id_reference="20" object_id="_247"> <id>268</id> <edge_type>2</edge_type> <source_obj>86</source_obj> <sink_obj>95</sink_obj> </item> <item class_id_reference="20" object_id="_248"> <id>269</id> <edge_type>2</edge_type> <source_obj>90</source_obj> <sink_obj>95</sink_obj> </item> <item class_id_reference="20" object_id="_249"> <id>270</id> <edge_type>4</edge_type> <source_obj>27</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_250"> <id>271</id> <edge_type>4</edge_type> <source_obj>20</source_obj> <sink_obj>82</sink_obj> </item> <item class_id_reference="20" object_id="_251"> <id>272</id> <edge_type>4</edge_type> <source_obj>18</source_obj> <sink_obj>66</sink_obj> </item> <item class_id_reference="20" object_id="_252"> <id>273</id> <edge_type>4</edge_type> <source_obj>22</source_obj> <sink_obj>88</sink_obj> </item> <item class_id_reference="20" object_id="_253"> <id>274</id> <edge_type>4</edge_type> <source_obj>14</source_obj> <sink_obj>93</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="_254"> <mId>1</mId> <mTag>duc_mixer</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>12</count> <item_version>0</item_version> <item>24</item> <item>26</item> <item>65</item> <item>68</item> <item>70</item> <item>72</item> <item>77</item> <item>80</item> <item>84</item> <item>86</item> <item>90</item> <item>95</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>9</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> </cdfg_regions> <fsm class_id="24" tracking_level="1" version="0" object_id="_255"> <states class_id="25" tracking_level="0" version="0"> <count>10</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_256"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>21</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_257"> <id>12</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_258"> <id>13</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_259"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_260"> <id>15</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_261"> <id>16</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_262"> <id>17</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_263"> <id>18</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_264"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_265"> <id>20</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_266"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_267"> <id>22</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_268"> <id>23</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_269"> <id>25</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_270"> <id>27</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_271"> <id>28</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_272"> <id>29</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_273"> <id>30</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_274"> <id>73</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_275"> <id>74</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_276"> <id>75</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_277"> <id>76</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_278"> <id>2</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_279"> <id>34</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_280"> <id>3</id> <operations> <count>6</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_281"> <id>31</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_282"> <id>32</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_283"> <id>33</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_284"> <id>35</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_285"> <id>36</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_286"> <id>37</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_287"> <id>4</id> <operations> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_288"> <id>33</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_289"> <id>37</id> <stage>1</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_290"> <id>5</id> <operations> <count>9</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_291"> <id>38</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_292"> <id>39</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_293"> <id>40</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_294"> <id>41</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_295"> <id>42</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_296"> <id>43</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_297"> <id>44</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_298"> <id>45</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_299"> <id>46</id> <stage>4</stage> <latency>4</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_300"> <id>6</id> <operations> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_301"> <id>40</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_302"> <id>46</id> <stage>3</stage> <latency>4</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_303"> <id>7</id> <operations> <count>11</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_304"> <id>46</id> <stage>2</stage> <latency>4</latency> </item> <item class_id_reference="28" object_id="_305"> <id>47</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_306"> <id>48</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_307"> <id>49</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_308"> <id>50</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_309"> <id>51</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_310"> <id>52</id> <stage>3</stage> <latency>3</latency> </item> <item class_id_reference="28" object_id="_311"> <id>56</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_312"> <id>57</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_313"> <id>58</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_314"> <id>59</id> <stage>3</stage> <latency>3</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_315"> <id>8</id> <operations> <count>3</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_316"> <id>46</id> <stage>1</stage> <latency>4</latency> </item> <item class_id_reference="28" object_id="_317"> <id>52</id> <stage>2</stage> <latency>3</latency> </item> <item class_id_reference="28" object_id="_318"> <id>59</id> <stage>2</stage> <latency>3</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_319"> <id>9</id> <operations> <count>4</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_320"> <id>52</id> <stage>1</stage> <latency>3</latency> </item> <item class_id_reference="28" object_id="_321"> <id>53</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_322"> <id>59</id> <stage>1</stage> <latency>3</latency> </item> <item class_id_reference="28" object_id="_323"> <id>60</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_324"> <id>10</id> <operations> <count>23</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_325"> <id>54</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_326"> <id>55</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_327"> <id>61</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_328"> <id>62</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_329"> <id>63</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_330"> <id>64</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_331"> <id>66</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_332"> <id>67</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_333"> <id>69</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_334"> <id>71</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_335"> <id>78</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_336"> <id>79</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_337"> <id>81</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_338"> <id>82</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_339"> <id>83</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_340"> <id>85</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_341"> <id>87</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_342"> <id>88</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_343"> <id>89</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_344"> <id>91</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_345"> <id>92</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_346"> <id>93</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_347"> <id>94</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>10</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_348"> <inState>1</inState> <outState>2</outState> <condition class_id="31" tracking_level="0" version="0"> <id>37</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>2</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>21</first> <second>0</second> </first> <second>1</second> </item> <item> <first> <first>17</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_349"> <inState>1</inState> <outState>10</outState> <condition> <id>38</id> <sop> <count>2</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>21</first> <second>0</second> </first> <second>0</second> </item> </item> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>17</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_350"> <inState>2</inState> <outState>3</outState> <condition> <id>40</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="_351"> <inState>3</inState> <outState>4</outState> <condition> <id>41</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="_352"> <inState>4</inState> <outState>5</outState> <condition> <id>42</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="_353"> <inState>5</inState> <outState>6</outState> <condition> <id>43</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="_354"> <inState>6</inState> <outState>7</outState> <condition> <id>44</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="_355"> <inState>7</inState> <outState>8</outState> <condition> <id>45</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="_356"> <inState>8</inState> <outState>9</outState> <condition> <id>46</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="_357"> <inState>9</inState> <outState>10</outState> <condition> <id>47</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="36" tracking_level="1" version="0" object_id="_358"> <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>0</count> <item_version>0</item_version> </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>0</count> <item_version>0</item_version> </dp_multiplexer_resource> <dp_register_resource> <count>0</count> <item_version>0</item_version> </dp_register_resource> <dp_component_map class_id="38" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_component_map> <dp_expression_map> <count>0</count> <item_version>0</item_version> </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="39" tracking_level="0" version="0"> <count>72</count> <item_version>0</item_version> <item class_id="40" tracking_level="0" version="0"> <first>12</first> <second class_id="41" tracking_level="0" version="0"> <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>25</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>27</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>28</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>30</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>31</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>32</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>33</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>34</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>35</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>36</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>38</first> <second> <first>4</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>1</second> </second> </item> <item> <first>41</first> <second> <first>4</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>4</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>4</first> <second>3</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>6</first> <second>0</second> </second> </item> <item> <first>50</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>51</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>52</first> <second> <first>6</first> <second>2</second> </second> </item> <item> <first>53</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>54</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>55</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>56</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>57</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>58</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>59</first> <second> <first>6</first> <second>2</second> </second> </item> <item> <first>60</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>61</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>62</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>63</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>64</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>66</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>67</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>69</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>71</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>73</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>74</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>75</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>76</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>78</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>79</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>81</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>82</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>83</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>85</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>87</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>88</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>89</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>91</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>92</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>93</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>94</first> <second> <first>9</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="42" tracking_level="0" version="0"> <count>12</count> <item_version>0</item_version> <item class_id="43" tracking_level="0" version="0"> <first>24</first> <second class_id="44" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>26</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>65</first> <second> <first>0</first> <second>9</second> </second> </item> <item> <first>68</first> <second> <first>9</first> <second>9</second> </second> </item> <item> <first>70</first> <second> <first>9</first> <second>9</second> </second> </item> <item> <first>72</first> <second> <first>9</first> <second>9</second> </second> </item> <item> <first>77</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>80</first> <second> <first>9</first> <second>9</second> </second> </item> <item> <first>84</first> <second> <first>9</first> <second>9</second> </second> </item> <item> <first>86</first> <second> <first>9</first> <second>9</second> </second> </item> <item> <first>90</first> <second> <first>9</first> <second>9</second> </second> </item> <item> <first>95</first> <second> <first>9</first> <second>9</second> </second> </item> </bblk_ent_exit> <regions class_id="45" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </regions> <dp_fu_nodes class_id="46" tracking_level="0" version="0"> <count>50</count> <item_version>0</item_version> <item class_id="47" tracking_level="0" version="0"> <first>68</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>74</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>80</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>87</first> <second> <count>1</count> <item_version>0</item_version> <item>62</item> </second> </item> <item> <first>94</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>101</first> <second> <count>3</count> <item_version>0</item_version> <item>75</item> <item>40</item> <item>40</item> </second> </item> <item> <first>107</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>114</first> <second> <count>4</count> <item_version>0</item_version> <item>33</item> <item>33</item> <item>37</item> <item>37</item> </second> </item> <item> <first>119</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>130</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>138</first> <second> <count>1</count> <item_version>0</item_version> <item>14</item> </second> </item> <item> <first>142</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>148</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>158</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>164</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>168</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>176</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>180</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>186</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>190</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>194</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>200</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>206</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>216</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>221</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>226</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>230</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>234</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>238</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>241</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>244</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>47</item> </second> </item> <item> <first>250</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>253</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>256</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>259</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>269</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>279</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>284</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>290</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>295</first> <second> <count>1</count> <item_version>0</item_version> <item>81</item> </second> </item> <item> <first>300</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>306</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> <item> <first>311</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>317</first> <second> <count>1</count> <item_version>0</item_version> <item>91</item> </second> </item> <item> <first>322</first> <second> <count>1</count> <item_version>0</item_version> <item>92</item> </second> </item> <item> <first>329</first> <second> <count>1</count> <item_version>0</item_version> <item>93</item> </second> </item> <item> <first>335</first> <second> <count>6</count> <item_version>0</item_version> <item>56</item> <item>59</item> <item>59</item> <item>59</item> <item>60</item> <item>58</item> </second> </item> <item> <first>344</first> <second> <count>6</count> <item_version>0</item_version> <item>49</item> <item>52</item> <item>52</item> <item>52</item> <item>53</item> <item>51</item> </second> </item> <item> <first>353</first> <second> <count>6</count> <item_version>0</item_version> <item>43</item> <item>46</item> <item>46</item> <item>46</item> <item>46</item> <item>45</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="49" tracking_level="0" version="0"> <count>31</count> <item_version>0</item_version> <item class_id="50" tracking_level="0" version="0"> <first>DI_cache_addr_1_gep_fu_130</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>DI_cache_addr_gep_fu_94</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>acc_assign_i_fu_194</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>brmerge_demorgan_fu_180</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>dds_table_addr_1_gep_fu_119</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>dds_table_addr_gep_fu_107</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>freq_dds_fu_168</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>inc_5_fu_322</first> <second> <count>1</count> <item_version>0</item_version> <item>92</item> </second> </item> <item> <first>inc_fu_142</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>phase1_fu_206</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>phase2_fu_221</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>tmp_10_fu_279</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>tmp_11_fu_290</first> <second> <count>1</count> <item_version>0</item_version> <item>78</item> </second> </item> <item> <first>tmp_12_fu_295</first> <second> <count>1</count> <item_version>0</item_version> <item>81</item> </second> </item> <item> <first>tmp_13_fu_306</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> <item> <first>tmp_14_fu_317</first> <second> <count>1</count> <item_version>0</item_version> <item>91</item> </second> </item> <item> <first>tmp_15_fu_148</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>tmp_4_fu_259</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>tmp_53_i_fu_230</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>tmp_7_fu_269</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>tmp_fu_216</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>tmp_i3_cast_fu_238</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>tmp_i4_cast_fu_241</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>tmp_i5_fu_247</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>tmp_i6_fu_250</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>tmp_i_fu_226</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>tmp_i_i1_cast_fu_256</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>tmp_i_i8_cast_fu_253</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>tmp_i_i_fu_244</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>tmp_s_fu_234</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>valid_in_fu_158</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>3</count> <item_version>0</item_version> <item> <first>grp_fu_335</first> <second> <count>6</count> <item_version>0</item_version> <item>56</item> <item>59</item> <item>59</item> <item>59</item> <item>60</item> <item>58</item> </second> </item> <item> <first>grp_fu_344</first> <second> <count>6</count> <item_version>0</item_version> <item>49</item> <item>52</item> <item>52</item> <item>52</item> <item>53</item> <item>51</item> </second> </item> <item> <first>grp_fu_353</first> <second> <count>6</count> <item_version>0</item_version> <item>43</item> <item>46</item> <item>46</item> <item>46</item> <item>46</item> <item>45</item> </second> </item> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>14</count> <item_version>0</item_version> <item> <first>Din_read_read_fu_68</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>acc_load_load_fu_190</first> <second> <count>1</count> <item_version>0</item_version> <item>27</item> </second> </item> <item> <first>ch_3_load_load_fu_176</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>freq_read_read_fu_74</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>i_4_load_load_fu_138</first> <second> <count>1</count> <item_version>0</item_version> <item>14</item> </second> </item> <item> <first>index_load_load_fu_186</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>init_4_load_load_fu_164</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>stg_26_store_fu_200</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>stg_71_write_fu_80</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>stg_73_write_fu_87</first> <second> <count>1</count> <item_version>0</item_version> <item>62</item> </second> </item> <item> <first>stg_76_store_fu_284</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>stg_83_store_fu_300</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>stg_87_store_fu_311</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>stg_91_store_fu_329</first> <second> <count>1</count> <item_version>0</item_version> <item>93</item> </second> </item> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="51" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="52" tracking_level="0" version="0"> <first class_id="53" tracking_level="0" version="0"> <first>DI_cache</first> <second>0</second> </first> <second> <count>3</count> <item_version>0</item_version> <item>75</item> <item>40</item> <item>40</item> </second> </item> <item> <first> <first>dds_table</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>33</item> <item>33</item> </second> </item> <item> <first> <first>dds_table</first> <second>1</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>37</item> <item>37</item> </second> </item> </dp_mem_port_nodes> <dp_reg_nodes> <count>21</count> <item_version>0</item_version> <item> <first>361</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>367</first> <second> <count>1</count> <item_version>0</item_version> <item>14</item> </second> </item> <item> <first>372</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>377</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>381</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>386</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>390</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>398</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>404</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>409</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>414</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>419</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>425</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>431</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>436</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>441</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>446</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>451</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>456</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>462</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>467</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>21</count> <item_version>0</item_version> <item> <first>DI_cache_addr_1_reg_431</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>Din_re_reg_441</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>Din_read_reg_361</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>brmerge_demorgan_reg_386</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>ch_3_load_reg_381</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>cosine_reg_425</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>dds_table_addr_1_reg_414</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>dds_table_addr_reg_409</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>i_4_load_reg_367</first> <second> <count>1</count> <item_version>0</item_version> <item>14</item> </second> </item> <item> <first>inc_reg_372</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>index_load_reg_390</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>phase1_reg_398</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>phase2_reg_404</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>sine_reg_419</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>tmp_2_reg_456</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>tmp_3_reg_462</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>tmp_6_reg_467</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>tmp_i_i1_cast_reg_451</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>tmp_i_i8_cast_reg_446</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>tmp_i_i_reg_436</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>valid_in_reg_377</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> </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="54" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="55" tracking_level="0" version="0"> <first>Din</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> </second> </item> <item> <first>Dout_I</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> </second> </item> <item> <first>Dout_Q</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>62</item> </second> </item> </second> </item> <item> <first>freq</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="56" 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>
with Car; procedure launch is begin Car.main; end launch;
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="17"> <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>handle_output</name> <module_structure>Pipeline</module_structure> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>8</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>arpTableReplay_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>62</coreId> <rtlModuleName/> </Obj> <bitwidth>128</bitwidth> </Value> <direction>0</direction> <if_type>0</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>myMacAddress</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3621216858</coreId> <rtlModuleName/> </Obj> <bitwidth>48</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</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>dataOut_V_data_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>140</coreId> <rtlModuleName/> </Obj> <bitwidth>512</bitwidth> </Value> <direction>1</direction> <if_type>0</if_type> <array_size>0</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>dataOut_V_keep_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>149</coreId> <rtlModuleName/> </Obj> <bitwidth>64</bitwidth> </Value> <direction>1</direction> <if_type>0</if_type> <array_size>0</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>dataOut_V_strb_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>140</coreId> <rtlModuleName/> </Obj> <bitwidth>64</bitwidth> </Value> <direction>1</direction> <if_type>0</if_type> <array_size>0</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>dataOut_V_last_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>149</coreId> <rtlModuleName/> </Obj> <bitwidth>1</bitwidth> </Value> <direction>1</direction> <if_type>0</if_type> <array_size>0</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>10</id> <name>ip_header_checksum</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName>FIFO</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>140</coreId> <rtlModuleName/> </Obj> <bitwidth>1024</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</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>11</id> <name>no_ip_header_out</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName>FIFO</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874123696</coreId> <rtlModuleName/> </Obj> <bitwidth>1024</bitwidth> </Value> <direction>0</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>93</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_9"> <Value> <Obj> <type>0</type> <id>23</id> <name>mw_state_load</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>109</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</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>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>109</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3</coreId> <rtlModuleName/> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>148</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>0.00</m_delay> <m_topoIndex>1</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>24</id> <name>previous_word_data_V_load</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>225</lineNumber> <contextFuncName>ap_int_base&amp;lt;112, false&amp;gt;</contextFuncName> <contextNormFuncName>ap_int_base_112_false_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</first> <second>ap_int_base&amp;lt;112, false&amp;gt;</second> </first> <second>225</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>3</coreId> <rtlModuleName/> </Obj> <bitwidth>112</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>149</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>0.00</m_delay> <m_topoIndex>2</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>25</id> <name>previous_word_keep_V_load</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>225</lineNumber> <contextFuncName>ap_int_base&amp;lt;14, false&amp;gt;</contextFuncName> <contextNormFuncName>ap_int_base_14_false_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</first> <second>ap_int_base&amp;lt;14, false&amp;gt;</second> </first> <second>225</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874036128</coreId> <rtlModuleName/> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>150</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>0.00</m_delay> <m_topoIndex>3</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>26</id> <name>_ln109</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>109</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>109</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2873766832</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>14</count> <item_version>0</item_version> <item>151</item> <item>152</item> <item>154</item> <item>155</item> <item>157</item> <item>158</item> <item>160</item> <item>161</item> <item>163</item> <item>164</item> <item>166</item> <item>167</item> <item>169</item> <item>170</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.65</m_delay> <m_topoIndex>4</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>28</id> <name>p_Result_11</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>391</lineNumber> <contextFuncName>operator=</contextFuncName> <contextNormFuncName>operator_assign</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>operator=</second> </first> <second>391</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName>p_Result_11_fu_469_p3</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874036128</coreId> <rtlModuleName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>408</item> <item>410</item> <item>411</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>79</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>29</id> <name>p_Result_12</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>391</lineNumber> <contextFuncName>operator=</contextFuncName> <contextNormFuncName>operator_assign</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>operator=</second> </first> <second>391</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName>p_Result_12_fu_477_p3</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2873992448</coreId> <rtlModuleName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>412</item> <item>414</item> <item>415</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="_15"> <Value> <Obj> <type>0</type> <id>30</id> <name>dataOut_V_data_V_write_ln304</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_axi_sdata.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>304</lineNumber> <contextFuncName>write</contextFuncName> <contextNormFuncName>write</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_axi_sdata.h</first> <second>write</second> </first> <second>304</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control>auto</control> <opType>adapter</opType> <implIndex>axi4stream</implIndex> <coreName>axis</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>123</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>9</count> <item_version>0</item_version> <item>416</item> <item>417</item> <item>418</item> <item>419</item> <item>420</item> <item>421</item> <item>422</item> <item>423</item> <item>424</item> </oprand_edges> <opcode>write</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="_16"> <Value> <Obj> <type>0</type> <id>31</id> <name>mw_state_write_ln215</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>215</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>215</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874036128</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>425</item> <item>426</item> <item>666</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.48</m_delay> <m_topoIndex>5</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>32</id> <name>br_ln217</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>217</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>217</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874372672</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>427</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>90</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>34</id> <name>tmp_4_i</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/hls_stream_39.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>136</lineNumber> <contextFuncName>empty</contextFuncName> <contextNormFuncName>empty</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/hls_stream_39.h</first> <second>empty</second> </first> <second>136</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control>auto</control> <opType>fifo</opType> <implIndex>memory</implIndex> <coreName>FIFO</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>78</coreId> <rtlModuleName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>342</item> <item>343</item> <item>344</item> </oprand_edges> <opcode>nbreadreq</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="_19"> <Value> <Obj> <type>0</type> <id>35</id> <name>br_ln180</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>180</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>180</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2873998632</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>345</item> <item>346</item> <item>347</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="_20"> <Value> <Obj> <type>0</type> <id>37</id> <name>no_ip_header_out_read_1</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/hls_stream_39.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>145</lineNumber> <contextFuncName>read</contextFuncName> <contextNormFuncName>read</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/hls_stream_39.h</first> <second>read</second> </first> <second>145</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control>auto</control> <opType>fifo</opType> <implIndex>memory</implIndex> <coreName>FIFO</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>78</coreId> <rtlModuleName/> </Obj> <bitwidth>1024</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>348</item> <item>349</item> <item>681</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.45</m_delay> <m_topoIndex>8</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>38</id> <name>current_no_ip_last_V_1</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/hls_stream_39.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>145</lineNumber> <contextFuncName>read</contextFuncName> <contextNormFuncName>read</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/hls_stream_39.h</first> <second>read</second> </first> <second>145</second> </item> </second> </item> </inlineStackInfo> <originalName>current_no_ip.last.V</originalName> <rtlName>grp_fu_227_p3</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874698096</coreId> <rtlModuleName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>350</item> <item>351</item> <item>352</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>9</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>39</id> <name>trunc_ln674_1</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>trunc_ln674_1_fu_261_p1</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874036128</coreId> <rtlModuleName/> </Obj> <bitwidth>400</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>353</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>10</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>40</id> <name>p_Result_9</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>414</lineNumber> <contextFuncName>operator=&amp;lt;512, false&amp;gt;</contextFuncName> <contextNormFuncName>operator_assign_512_false</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>operator=&amp;lt;512, false&amp;gt;</second> </first> <second>414</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName>p_Result_9_fu_485_p3</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874036128</coreId> <rtlModuleName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>354</item> <item>355</item> <item>356</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="_24"> <Value> <Obj> <type>0</type> <id>41</id> <name>p_Result_8_i</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_Result_8_i_reg_543</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874464232</coreId> <rtlModuleName/> </Obj> <bitwidth>50</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>357</item> <item>358</item> <item>359</item> <item>360</item> </oprand_edges> <opcode>partselect</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="_25"> <Value> <Obj> <type>0</type> <id>42</id> <name>p_Result_10</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>414</lineNumber> <contextFuncName>operator=&amp;lt;64, false&amp;gt;</contextFuncName> <contextNormFuncName>operator_assign_64_false</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>operator=&amp;lt;64, false&amp;gt;</second> </first> <second>414</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName>p_Result_10_fu_492_p3</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>361</item> <item>362</item> <item>363</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>83</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>43</id> <name>p_Result_10_i</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>previous_word_data_V</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2873956912</coreId> <rtlModuleName/> </Obj> <bitwidth>112</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>364</item> <item>365</item> <item>366</item> <item>367</item> </oprand_edges> <opcode>partselect</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="_27"> <Value> <Obj> <type>0</type> <id>44</id> <name>previous_word_data_V_write_ln189</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>189</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>189</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874383232</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>368</item> <item>369</item> <item>670</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.41</m_delay> <m_topoIndex>13</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>45</id> <name>p_Result_11_i</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>previous_word_keep_V</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>370</item> <item>371</item> <item>372</item> <item>373</item> </oprand_edges> <opcode>partselect</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="_29"> <Value> <Obj> <type>0</type> <id>46</id> <name>previous_word_keep_V_write_ln190</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>190</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>190</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>374</item> <item>375</item> <item>671</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.41</m_delay> <m_topoIndex>15</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>br_ln193</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>193</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>193</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874374008</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>376</item> <item>377</item> <item>378</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.38</m_delay> <m_topoIndex>16</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>49</id> <name>tmp_8</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>819</lineNumber> <contextFuncName>operator bool</contextFuncName> <contextNormFuncName>operator_bool</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>operator bool</second> </first> <second>819</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_8_fu_307_p3</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874036128</coreId> <rtlModuleName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>379</item> <item>380</item> <item>381</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>17</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>50</id> <name>br_ln194</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>194</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>194</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874416144</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>382</item> <item>383</item> <item>384</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>18</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>52</id> <name>mw_state_write_ln200</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>200</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>200</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874413376</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>388</item> <item>389</item> <item>680</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.48</m_delay> <m_topoIndex>19</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>53</id> <name>br_ln0</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>176</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>390</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.38</m_delay> <m_topoIndex>20</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>55</id> <name>mw_state_write_ln196</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>196</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>196</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874410656</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>385</item> <item>386</item> <item>679</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.48</m_delay> <m_topoIndex>21</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>56</id> <name>br_ln197</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>197</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>197</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>807414843</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>387</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.38</m_delay> <m_topoIndex>22</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>58</id> <name>sendWord_last_V_1</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>sendWord.last.V</originalName> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>608</coreId> <rtlModuleName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <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> </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>84</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>59</id> <name>dataOut_V_data_V_write_ln304</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_axi_sdata.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>304</lineNumber> <contextFuncName>write</contextFuncName> <contextNormFuncName>write</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_axi_sdata.h</first> <second>write</second> </first> <second>304</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control>auto</control> <opType>adapter</opType> <implIndex>axi4stream</implIndex> <coreName>axis</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>123</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>9</count> <item_version>0</item_version> <item>397</item> <item>398</item> <item>399</item> <item>400</item> <item>401</item> <item>402</item> <item>403</item> <item>404</item> <item>405</item> </oprand_edges> <opcode>write</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>85</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>60</id> <name>br_ln205</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>205</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>205</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874396712</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>406</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>91</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>62</id> <name>br_ln206</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>206</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>206</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874036128</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>407</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>23</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>64</id> <name>tmp_3_i</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/hls_stream_39.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>136</lineNumber> <contextFuncName>empty</contextFuncName> <contextNormFuncName>empty</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/hls_stream_39.h</first> <second>empty</second> </first> <second>136</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control>auto</control> <opType>fifo</opType> <implIndex>memory</implIndex> <coreName>FIFO</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>78</coreId> <rtlModuleName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>258</item> <item>259</item> <item>260</item> </oprand_edges> <opcode>nbreadreq</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>24</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>65</id> <name>br_ln148</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>148</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>148</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>261</item> <item>262</item> <item>263</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="_43"> <Value> <Obj> <type>0</type> <id>67</id> <name>ip_header_checksum_read_1</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/hls_stream_39.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>145</lineNumber> <contextFuncName>read</contextFuncName> <contextNormFuncName>read</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/hls_stream_39.h</first> <second>read</second> </first> <second>145</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control>auto</control> <opType>fifo</opType> <implIndex>memory</implIndex> <coreName>FIFO</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>78</coreId> <rtlModuleName/> </Obj> <bitwidth>1024</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>264</item> <item>265</item> <item>682</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.45</m_delay> <m_topoIndex>26</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>68</id> <name>current_ip_checksum_last_V_1</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/hls_stream_39.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>145</lineNumber> <contextFuncName>read</contextFuncName> <contextNormFuncName>read</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/hls_stream_39.h</first> <second>read</second> </first> <second>145</second> </item> </second> </item> </inlineStackInfo> <originalName>current_ip_checksum.last.V</originalName> <rtlName>grp_fu_235_p3</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874450464</coreId> <rtlModuleName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>266</item> <item>267</item> <item>268</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>27</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>69</id> <name>trunc_ln674</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>trunc_ln674_fu_327_p1</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2873800592</coreId> <rtlModuleName/> </Obj> <bitwidth>400</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>269</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>28</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>70</id> <name>p_Result_7</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>414</lineNumber> <contextFuncName>operator=&amp;lt;512, false&amp;gt;</contextFuncName> <contextNormFuncName>operator_assign_512_false</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>operator=&amp;lt;512, false&amp;gt;</second> </first> <second>414</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName>p_Result_7_fu_499_p3</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874035088</coreId> <rtlModuleName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>271</item> <item>272</item> <item>273</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>86</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>71</id> <name>p_Result_2_i</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_Result_2_i_reg_563</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>50</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>275</item> <item>276</item> <item>278</item> <item>280</item> </oprand_edges> <opcode>partselect</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="_48"> <Value> <Obj> <type>0</type> <id>72</id> <name>p_Result_8</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>414</lineNumber> <contextFuncName>operator=&amp;lt;64, false&amp;gt;</contextFuncName> <contextNormFuncName>operator_assign_64_false</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>operator=&amp;lt;64, false&amp;gt;</second> </first> <second>414</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName>p_Result_8_fu_506_p3</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874421440</coreId> <rtlModuleName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>282</item> <item>283</item> <item>284</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>87</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>73</id> <name>p_Result_4_i</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>previous_word_data_V</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>176</coreId> <rtlModuleName/> </Obj> <bitwidth>112</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>286</item> <item>287</item> <item>289</item> <item>291</item> </oprand_edges> <opcode>partselect</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>30</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>74</id> <name>previous_word_data_V_write_ln157</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>157</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>157</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874406920</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>292</item> <item>293</item> <item>668</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.41</m_delay> <m_topoIndex>31</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>75</id> <name>p_Result_5_i</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>674</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>get</second> </first> <second>674</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>previous_word_keep_V</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874408240</coreId> <rtlModuleName/> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>295</item> <item>296</item> <item>298</item> <item>300</item> </oprand_edges> <opcode>partselect</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="_52"> <Value> <Obj> <type>0</type> <id>76</id> <name>previous_word_keep_V_write_ln158</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>158</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>158</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874036128</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>301</item> <item>302</item> <item>669</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.41</m_delay> <m_topoIndex>33</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_53"> <Value> <Obj> <type>0</type> <id>77</id> <name>br_ln161</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>161</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>161</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874393600</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>303</item> <item>304</item> <item>305</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="_54"> <Value> <Obj> <type>0</type> <id>79</id> <name>mw_state_write_ln172</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>172</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>172</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874393752</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>318</item> <item>319</item> <item>676</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.48</m_delay> <m_topoIndex>35</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_55"> <Value> <Obj> <type>0</type> <id>80</id> <name>br_ln0</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874395072</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>320</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.38</m_delay> <m_topoIndex>36</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_56"> <Value> <Obj> <type>0</type> <id>82</id> <name>tmp_7</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>819</lineNumber> <contextFuncName>operator bool</contextFuncName> <contextNormFuncName>operator_bool</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>operator bool</second> </first> <second>819</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_7_fu_379_p3</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>306</item> <item>307</item> <item>308</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>37</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_57"> <Value> <Obj> <type>0</type> <id>83</id> <name>br_ln162</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>162</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>162</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874385888</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>309</item> <item>310</item> <item>311</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>38</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_58"> <Value> <Obj> <type>0</type> <id>85</id> <name>mw_state_write_ln168</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>168</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>168</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>784</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>315</item> <item>316</item> <item>678</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.48</m_delay> <m_topoIndex>39</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_59"> <Value> <Obj> <type>0</type> <id>86</id> <name>br_ln0</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874389520</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>317</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.38</m_delay> <m_topoIndex>40</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_60"> <Value> <Obj> <type>0</type> <id>88</id> <name>mw_state_write_ln164</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>164</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>164</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>451</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>312</item> <item>313</item> <item>677</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.48</m_delay> <m_topoIndex>41</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_61"> <Value> <Obj> <type>0</type> <id>89</id> <name>br_ln165</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>165</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>165</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874457880</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>314</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.38</m_delay> <m_topoIndex>42</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_62"> <Value> <Obj> <type>0</type> <id>91</id> <name>sendWord_last_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>sendWord.last.V</originalName> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2037672306</coreId> <rtlModuleName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>6</count> <item_version>0</item_version> <item>322</item> <item>323</item> <item>324</item> <item>325</item> <item>327</item> <item>328</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="_63"> <Value> <Obj> <type>0</type> <id>92</id> <name>dataOut_V_data_V_write_ln304</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_axi_sdata.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>304</lineNumber> <contextFuncName>write</contextFuncName> <contextNormFuncName>write</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_axi_sdata.h</first> <second>write</second> </first> <second>304</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control>auto</control> <opType>adapter</opType> <implIndex>axi4stream</implIndex> <coreName>axis</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>123</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>9</count> <item_version>0</item_version> <item>330</item> <item>331</item> <item>332</item> <item>333</item> <item>334</item> <item>335</item> <item>336</item> <item>338</item> <item>339</item> </oprand_edges> <opcode>write</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="_64"> <Value> <Obj> <type>0</type> <id>93</id> <name>br_ln176</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>176</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>176</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2020173413</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>340</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>92</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_65"> <Value> <Obj> <type>0</type> <id>95</id> <name>br_ln177</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>177</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>177</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874462896</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>341</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="_66"> <Value> <Obj> <type>0</type> <id>97</id> <name>tmp_2_i</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/hls_stream_39.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>136</lineNumber> <contextFuncName>empty</contextFuncName> <contextNormFuncName>empty</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/hls_stream_39.h</first> <second>empty</second> </first> <second>136</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control>auto</control> <opType>fifo</opType> <implIndex>memory</implIndex> <coreName>FIFO</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>78</coreId> <rtlModuleName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>239</item> <item>240</item> <item>241</item> </oprand_edges> <opcode>nbreadreq</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="_67"> <Value> <Obj> <type>0</type> <id>98</id> <name>br_ln139</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>139</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>139</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874537616</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>242</item> <item>243</item> <item>244</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>45</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_68"> <Value> <Obj> <type>0</type> <id>100</id> <name>no_ip_header_out_read</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/hls_stream_39.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>145</lineNumber> <contextFuncName>read</contextFuncName> <contextNormFuncName>read</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/hls_stream_39.h</first> <second>read</second> </first> <second>145</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control>auto</control> <opType>fifo</opType> <implIndex>memory</implIndex> <coreName>FIFO</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>78</coreId> <rtlModuleName/> </Obj> <bitwidth>1024</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>245</item> <item>246</item> <item>683</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.45</m_delay> <m_topoIndex>46</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_69"> <Value> <Obj> <type>0</type> <id>101</id> <name>current_no_ip_last_V</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/hls_stream_39.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>145</lineNumber> <contextFuncName>read</contextFuncName> <contextNormFuncName>read</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/hls_stream_39.h</first> <second>read</second> </first> <second>145</second> </item> </second> </item> </inlineStackInfo> <originalName>current_no_ip.last.V</originalName> <rtlName>grp_fu_227_p3</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874132952</coreId> <rtlModuleName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>247</item> <item>248</item> <item>249</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>47</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_70"> <Value> <Obj> <type>0</type> <id>102</id> <name>br_ln142</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>142</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>142</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874134352</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>250</item> <item>251</item> <item>252</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>48</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_71"> <Value> <Obj> <type>0</type> <id>104</id> <name>mw_state_write_ln143</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>143</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>143</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874424608</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>253</item> <item>254</item> <item>675</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.48</m_delay> <m_topoIndex>49</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_72"> <Value> <Obj> <type>0</type> <id>105</id> <name>br_ln143</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>143</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>143</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874425872</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>255</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>50</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_73"> <Value> <Obj> <type>0</type> <id>107</id> <name>br_ln144</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>144</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>144</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874426368</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>256</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>51</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_74"> <Value> <Obj> <type>0</type> <id>109</id> <name>br_ln145</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>145</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>145</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874430304</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>257</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>52</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_75"> <Value> <Obj> <type>0</type> <id>111</id> <name>tmp_1_i</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/hls_stream_39.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>136</lineNumber> <contextFuncName>empty</contextFuncName> <contextNormFuncName>empty</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/hls_stream_39.h</first> <second>empty</second> </first> <second>136</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control>auto</control> <opType>fifo</opType> <implIndex>memory</implIndex> <coreName>FIFO</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>78</coreId> <rtlModuleName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>218</item> <item>219</item> <item>220</item> </oprand_edges> <opcode>nbreadreq</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="_76"> <Value> <Obj> <type>0</type> <id>112</id> <name>br_ln128</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>128</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1952796160</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>221</item> <item>222</item> <item>223</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>54</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_77"> <Value> <Obj> <type>0</type> <id>114</id> <name>ip_header_checksum_read</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/hls_stream_39.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>145</lineNumber> <contextFuncName>read</contextFuncName> <contextNormFuncName>read</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/hls_stream_39.h</first> <second>read</second> </first> <second>145</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control>auto</control> <opType>fifo</opType> <implIndex>memory</implIndex> <coreName>FIFO</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>78</coreId> <rtlModuleName/> </Obj> <bitwidth>1024</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>225</item> <item>226</item> <item>684</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.45</m_delay> <m_topoIndex>55</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_78"> <Value> <Obj> <type>0</type> <id>115</id> <name>current_ip_checksum_last_V</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/hls_stream_39.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>145</lineNumber> <contextFuncName>read</contextFuncName> <contextNormFuncName>read</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/hls_stream_39.h</first> <second>read</second> </first> <second>145</second> </item> </second> </item> </inlineStackInfo> <originalName>current_ip_checksum.last.V</originalName> <rtlName>grp_fu_235_p3</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874036128</coreId> <rtlModuleName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>228</item> <item>229</item> <item>231</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>56</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_79"> <Value> <Obj> <type>0</type> <id>116</id> <name>select_ln132</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>132</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>132</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>select_ln132_fu_405_p3</rtlName> <control>auto</control> <opType>select</opType> <implIndex>auto_sel</implIndex> <coreName>Sel</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>73</coreId> <rtlModuleName/> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>232</item> <item>233</item> <item>234</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.27</m_delay> <m_topoIndex>57</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_80"> <Value> <Obj> <type>0</type> <id>117</id> <name>mw_state_write_ln132</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>132</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>132</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874440032</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>235</item> <item>236</item> <item>667</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.48</m_delay> <m_topoIndex>58</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_81"> <Value> <Obj> <type>0</type> <id>118</id> <name>br_ln135</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>135</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>135</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874441632</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>237</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>59</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_82"> <Value> <Obj> <type>0</type> <id>120</id> <name>br_ln136</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>136</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>136</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874445296</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>238</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>60</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_83"> <Value> <Obj> <type>0</type> <id>122</id> <name>tmp_i</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/hls_stream_39.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>136</lineNumber> <contextFuncName>empty</contextFuncName> <contextNormFuncName>empty</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/hls_stream_39.h</first> <second>empty</second> </first> <second>136</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control>auto</control> <opType>adapter</opType> <implIndex>axi4stream</implIndex> <coreName>axis</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>123</coreId> <rtlModuleName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>172</item> <item>173</item> <item>175</item> </oprand_edges> <opcode>nbreadreq</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="_84"> <Value> <Obj> <type>0</type> <id>123</id> <name>br_ln111</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>111</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>111</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>176</item> <item>177</item> <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>62</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_85"> <Value> <Obj> <type>0</type> <id>125</id> <name>arpTableReplay_V_read</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/hls_stream_39.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>145</lineNumber> <contextFuncName>read</contextFuncName> <contextNormFuncName>read</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/hls_stream_39.h</first> <second>read</second> </first> <second>145</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control>auto</control> <opType>adapter</opType> <implIndex>axi4stream</implIndex> <coreName>axis</coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>123</coreId> <rtlModuleName/> </Obj> <bitwidth>128</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>180</item> <item>181</item> <item>685</item> </oprand_edges> <opcode>read</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>63</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_86"> <Value> <Obj> <type>0</type> <id>126</id> <name>reply_macAddress_V</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/hls_stream_39.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>145</lineNumber> <contextFuncName>read</contextFuncName> <contextNormFuncName>read</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/hls_stream_39.h</first> <second>read</second> </first> <second>145</second> </item> </second> </item> </inlineStackInfo> <originalName>reply.macAddress.V</originalName> <rtlName>reply_macAddress_V_fu_419_p1</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874454096</coreId> <rtlModuleName/> </Obj> <bitwidth>48</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>182</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>64</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_87"> <Value> <Obj> <type>0</type> <id>127</id> <name>reply_hit</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/hls_stream_39.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>145</lineNumber> <contextFuncName>read</contextFuncName> <contextNormFuncName>read</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/hls_stream_39.h</first> <second>read</second> </first> <second>145</second> </item> </second> </item> </inlineStackInfo> <originalName>reply.hit</originalName> <rtlName>reply_hit_fu_423_p3</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1868771121</coreId> <rtlModuleName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>184</item> <item>185</item> <item>187</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>65</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_88"> <Value> <Obj> <type>0</type> <id>128</id> <name>br_ln114</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>114</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>114</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>742093927</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>188</item> <item>189</item> <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.38</m_delay> <m_topoIndex>66</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_89"> <Value> <Obj> <type>0</type> <id>130</id> <name>myMacAddress_read</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>225</lineNumber> <contextFuncName>ap_int_base&amp;lt;48, false&amp;gt;</contextFuncName> <contextNormFuncName>ap_int_base_48_false_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_base.h</first> <second>ap_int_base&amp;lt;48, false&amp;gt;</second> </first> <second>225</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1835099506</coreId> <rtlModuleName/> </Obj> <bitwidth>48</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>192</item> <item>193</item> </oprand_edges> <opcode>read</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="_90"> <Value> <Obj> <type>0</type> <id>131</id> <name>p_Result_s</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>391</lineNumber> <contextFuncName>operator=</contextFuncName> <contextNormFuncName>operator_assign</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>operator=</second> </first> <second>391</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName>p_Result_s_fu_431_p4</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874475584</coreId> <rtlModuleName/> </Obj> <bitwidth>112</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>195</item> <item>197</item> <item>198</item> <item>199</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>68</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_91"> <Value> <Obj> <type>0</type> <id>132</id> <name>previous_word_data_V_write_ln391</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>391</lineNumber> <contextFuncName>operator=</contextFuncName> <contextNormFuncName>operator_assign</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>operator=</second> </first> <second>391</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>542329928</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>200</item> <item>201</item> <item>672</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.41</m_delay> <m_topoIndex>69</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_92"> <Value> <Obj> <type>0</type> <id>133</id> <name>previous_word_keep_V_write_ln391</name> <fileName>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>391</lineNumber> <contextFuncName>operator=</contextFuncName> <contextNormFuncName>operator_assign</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot/ap_int_ref.h</first> <second>operator=</second> </first> <second>391</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>203</item> <item>204</item> <item>673</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.41</m_delay> <m_topoIndex>70</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_93"> <Value> <Obj> <type>0</type> <id>134</id> <name>br_ln122</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>122</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>122</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1650545776</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>205</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.38</m_delay> <m_topoIndex>71</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_94"> <Value> <Obj> <type>0</type> <id>136</id> <name>storemerge1_i</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1819243365</coreId> <rtlModuleName/> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>207</item> <item>208</item> <item>210</item> <item>211</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>72</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_95"> <Value> <Obj> <type>0</type> <id>137</id> <name>zext_ln121</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>121</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>121</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>zext_ln121_fu_453_p1</rtlName> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874481888</coreId> <rtlModuleName/> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>212</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>73</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_96"> <Value> <Obj> <type>0</type> <id>138</id> <name>mw_state_write_ln121</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>121</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>121</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>892809472</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>213</item> <item>214</item> <item>674</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.48</m_delay> <m_topoIndex>74</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_97"> <Value> <Obj> <type>0</type> <id>139</id> <name>br_ln125</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>125</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>125</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1953708602</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>215</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>75</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_98"> <Value> <Obj> <type>0</type> <id>141</id> <name>br_ln126</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>126</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>126</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1717924464</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>216</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>76</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_99"> <Value> <Obj> <type>0</type> <id>143</id> <name>mw_state_write_ln220</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>220</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>220</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874489592</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>428</item> <item>429</item> <item>665</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.48</m_delay> <m_topoIndex>77</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_100"> <Value> <Obj> <type>0</type> <id>144</id> <name>br_ln221</name> <fileName>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>221</lineNumber> <contextFuncName>handle_output</contextFuncName> <contextNormFuncName>handle_output</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/home/ubuntu/xup_vitis_network_example/NetLayers/100G-fpga-network-stack-core/synthesis_results_HMB/..//hls/ethernet_inserter/ethernet_header_inserter.cpp</first> <second>handle_output</second> </first> <second>221</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>176</coreId> <rtlModuleName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>430</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>78</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_101"> <Value> <Obj> <type>0</type> <id>146</id> <name>_ln0</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2037591909</coreId> <rtlModuleName/> </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>93</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>24</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_102"> <Value> <Obj> <type>2</type> <id>153</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874459952</coreId> <rtlModuleName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_103"> <Value> <Obj> <type>2</type> <id>156</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>62</coreId> <rtlModuleName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_104"> <Value> <Obj> <type>2</type> <id>159</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1952804352</coreId> <rtlModuleName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>2</content> </item> <item class_id_reference="16" object_id="_105"> <Value> <Obj> <type>2</type> <id>162</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874493136</coreId> <rtlModuleName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>3</content> </item> <item class_id_reference="16" object_id="_106"> <Value> <Obj> <type>2</type> <id>165</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874036128</coreId> <rtlModuleName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>4</content> </item> <item class_id_reference="16" object_id="_107"> <Value> <Obj> <type>2</type> <id>168</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1869377390</coreId> <rtlModuleName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>5</content> </item> <item class_id_reference="16" object_id="_108"> <Value> <Obj> <type>2</type> <id>174</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874495280</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_109"> <Value> <Obj> <type>2</type> <id>186</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874496032</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>64</content> </item> <item class_id_reference="16" object_id="_110"> <Value> <Obj> <type>2</type> <id>196</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>16</bitwidth> </Value> <const_type>0</const_type> <content>8</content> </item> <item class_id_reference="16" object_id="_111"> <Value> <Obj> <type>2</type> <id>202</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>14</bitwidth> </Value> <const_type>0</const_type> <content>16383</content> </item> <item class_id_reference="16" object_id="_112"> <Value> <Obj> <type>2</type> <id>206</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874497408</coreId> <rtlModuleName/> </Obj> <bitwidth>2</bitwidth> </Value> <const_type>0</const_type> <content>3</content> </item> <item class_id_reference="16" object_id="_113"> <Value> <Obj> <type>2</type> <id>209</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2837886624</coreId> <rtlModuleName/> </Obj> <bitwidth>2</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_114"> <Value> <Obj> <type>2</type> <id>230</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>576</content> </item> <item class_id_reference="16" object_id="_115"> <Value> <Obj> <type>2</type> <id>277</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874500400</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>512</content> </item> <item class_id_reference="16" object_id="_116"> <Value> <Obj> <type>2</type> <id>279</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874036128</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>561</content> </item> <item class_id_reference="16" object_id="_117"> <Value> <Obj> <type>2</type> <id>288</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>400</content> </item> <item class_id_reference="16" object_id="_118"> <Value> <Obj> <type>2</type> <id>290</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>511</content> </item> <item class_id_reference="16" object_id="_119"> <Value> <Obj> <type>2</type> <id>297</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>562</content> </item> <item class_id_reference="16" object_id="_120"> <Value> <Obj> <type>2</type> <id>299</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>575</content> </item> <item class_id_reference="16" object_id="_121"> <Value> <Obj> <type>2</type> <id>321</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <bitwidth>1</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_122"> <Value> <Obj> <type>2</type> <id>326</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1470774007</coreId> <rtlModuleName/> </Obj> <bitwidth>1</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_123"> <Value> <Obj> <type>2</type> <id>337</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874054800</coreId> <rtlModuleName/> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>5</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_124"> <Value> <Obj> <type>2</type> <id>409</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874450512</coreId> <rtlModuleName/> </Obj> <bitwidth>400</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_125"> <Value> <Obj> <type>2</type> <id>413</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874509072</coreId> <rtlModuleName/> </Obj> <bitwidth>50</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>32</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_126"> <Obj> <type>3</type> <id>27</id> <name>entry</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>774849101</coreId> <rtlModuleName/> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>23</item> <item>24</item> <item>25</item> <item>26</item> </node_objs> </item> <item class_id_reference="18" object_id="_127"> <Obj> <type>3</type> <id>33</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>774849101</coreId> <rtlModuleName/> </Obj> <node_objs> <count>5</count> <item_version>0</item_version> <item>28</item> <item>29</item> <item>30</item> <item>31</item> <item>32</item> </node_objs> </item> <item class_id_reference="18" object_id="_128"> <Obj> <type>3</type> <id>36</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>774849101</coreId> <rtlModuleName/> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>34</item> <item>35</item> </node_objs> </item> <item class_id_reference="18" object_id="_129"> <Obj> <type>3</type> <id>48</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>774849101</coreId> <rtlModuleName/> </Obj> <node_objs> <count>11</count> <item_version>0</item_version> <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> </node_objs> </item> <item class_id_reference="18" object_id="_130"> <Obj> <type>3</type> <id>51</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1752393984</coreId> <rtlModuleName/> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>49</item> <item>50</item> </node_objs> </item> <item class_id_reference="18" object_id="_131"> <Obj> <type>3</type> <id>54</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874036128</coreId> <rtlModuleName/> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>52</item> <item>53</item> </node_objs> </item> <item class_id_reference="18" object_id="_132"> <Obj> <type>3</type> <id>57</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874036128</coreId> <rtlModuleName/> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>55</item> <item>56</item> </node_objs> </item> <item class_id_reference="18" object_id="_133"> <Obj> <type>3</type> <id>61</id> <name>._crit_edge8.i</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>58</item> <item>59</item> <item>60</item> </node_objs> </item> <item class_id_reference="18" object_id="_134"> <Obj> <type>3</type> <id>63</id> <name>._crit_edge7.i</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874398032</coreId> <rtlModuleName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>62</item> </node_objs> </item> <item class_id_reference="18" object_id="_135"> <Obj> <type>3</type> <id>66</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1397508187</coreId> <rtlModuleName/> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>64</item> <item>65</item> </node_objs> </item> <item class_id_reference="18" object_id="_136"> <Obj> <type>3</type> <id>78</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874036128</coreId> <rtlModuleName/> </Obj> <node_objs> <count>11</count> <item_version>0</item_version> <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> </node_objs> </item> <item class_id_reference="18" object_id="_137"> <Obj> <type>3</type> <id>81</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>266</coreId> <rtlModuleName/> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>79</item> <item>80</item> </node_objs> </item> <item class_id_reference="18" object_id="_138"> <Obj> <type>3</type> <id>84</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874384416</coreId> <rtlModuleName/> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>82</item> <item>83</item> </node_objs> </item> <item class_id_reference="18" object_id="_139"> <Obj> <type>3</type> <id>87</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874387800</coreId> <rtlModuleName/> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>85</item> <item>86</item> </node_objs> </item> <item class_id_reference="18" object_id="_140"> <Obj> <type>3</type> <id>90</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874390232</coreId> <rtlModuleName/> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>88</item> <item>89</item> </node_objs> </item> <item class_id_reference="18" object_id="_141"> <Obj> <type>3</type> <id>94</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874459200</coreId> <rtlModuleName/> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>91</item> <item>92</item> <item>93</item> </node_objs> </item> <item class_id_reference="18" object_id="_142"> <Obj> <type>3</type> <id>96</id> <name>._crit_edge6.i</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1031369833</coreId> <rtlModuleName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>95</item> </node_objs> </item> <item class_id_reference="18" object_id="_143"> <Obj> <type>3</type> <id>99</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>128</coreId> <rtlModuleName/> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>97</item> <item>98</item> </node_objs> </item> <item class_id_reference="18" object_id="_144"> <Obj> <type>3</type> <id>103</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874132736</coreId> <rtlModuleName/> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>100</item> <item>101</item> <item>102</item> </node_objs> </item> <item class_id_reference="18" object_id="_145"> <Obj> <type>3</type> <id>106</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874036128</coreId> <rtlModuleName/> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>104</item> <item>105</item> </node_objs> </item> <item class_id_reference="18" object_id="_146"> <Obj> <type>3</type> <id>108</id> <name>._crit_edge5.i</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874427392</coreId> <rtlModuleName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>107</item> </node_objs> </item> <item class_id_reference="18" object_id="_147"> <Obj> <type>3</type> <id>110</id> <name>._crit_edge4.i</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874429856</coreId> <rtlModuleName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>109</item> </node_objs> </item> <item class_id_reference="18" object_id="_148"> <Obj> <type>3</type> <id>113</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874431904</coreId> <rtlModuleName/> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>111</item> <item>112</item> </node_objs> </item> <item class_id_reference="18" object_id="_149"> <Obj> <type>3</type> <id>119</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName/> </Obj> <node_objs> <count>5</count> <item_version>0</item_version> <item>114</item> <item>115</item> <item>116</item> <item>117</item> <item>118</item> </node_objs> </item> <item class_id_reference="18" object_id="_150"> <Obj> <type>3</type> <id>121</id> <name>._crit_edge3.i</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874443152</coreId> <rtlModuleName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>120</item> </node_objs> </item> <item class_id_reference="18" object_id="_151"> <Obj> <type>3</type> <id>124</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874445200</coreId> <rtlModuleName/> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>122</item> <item>123</item> </node_objs> </item> <item class_id_reference="18" object_id="_152"> <Obj> <type>3</type> <id>129</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1819113532</coreId> <rtlModuleName/> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>125</item> <item>126</item> <item>127</item> <item>128</item> </node_objs> </item> <item class_id_reference="18" object_id="_153"> <Obj> <type>3</type> <id>135</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874470032</coreId> <rtlModuleName/> </Obj> <node_objs> <count>5</count> <item_version>0</item_version> <item>130</item> <item>131</item> <item>132</item> <item>133</item> <item>134</item> </node_objs> </item> <item class_id_reference="18" object_id="_154"> <Obj> <type>3</type> <id>140</id> <name>._crit_edge2.i</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1819113532</coreId> <rtlModuleName/> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>136</item> <item>137</item> <item>138</item> <item>139</item> </node_objs> </item> <item class_id_reference="18" object_id="_155"> <Obj> <type>3</type> <id>142</id> <name>._crit_edge.i</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874486032</coreId> <rtlModuleName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>141</item> </node_objs> </item> <item class_id_reference="18" object_id="_156"> <Obj> <type>3</type> <id>145</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>640688128</coreId> <rtlModuleName/> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>143</item> <item>144</item> </node_objs> </item> <item class_id_reference="18" object_id="_157"> <Obj> <type>3</type> <id>147</id> <name>handle_output.exit</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <contextNormFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <control/> <opType/> <implIndex/> <coreName/> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2874491008</coreId> <rtlModuleName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>146</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>280</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_158"> <id>148</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_159"> <id>149</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_160"> <id>150</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_161"> <id>151</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_162"> <id>152</id> <edge_type>2</edge_type> <source_obj>145</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_163"> <id>154</id> <edge_type>1</edge_type> <source_obj>153</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_164"> <id>155</id> <edge_type>2</edge_type> <source_obj>124</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_165"> <id>157</id> <edge_type>1</edge_type> <source_obj>156</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_166"> <id>158</id> <edge_type>2</edge_type> <source_obj>113</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_167"> <id>160</id> <edge_type>1</edge_type> <source_obj>159</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_168"> <id>161</id> <edge_type>2</edge_type> <source_obj>99</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_169"> <id>163</id> <edge_type>1</edge_type> <source_obj>162</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_170"> <id>164</id> <edge_type>2</edge_type> <source_obj>66</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_171"> <id>166</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_172"> <id>167</id> <edge_type>2</edge_type> <source_obj>36</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_173"> <id>169</id> <edge_type>1</edge_type> <source_obj>168</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_174"> <id>170</id> <edge_type>2</edge_type> <source_obj>33</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_175"> <id>173</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>122</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_176"> <id>175</id> <edge_type>1</edge_type> <source_obj>174</source_obj> <sink_obj>122</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_177"> <id>176</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="_178"> <id>177</id> <edge_type>2</edge_type> <source_obj>142</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_179"> <id>178</id> <edge_type>2</edge_type> <source_obj>129</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_180"> <id>181</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>125</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_181"> <id>182</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="_182"> <id>185</id> <edge_type>1</edge_type> <source_obj>125</source_obj> <sink_obj>127</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_183"> <id>187</id> <edge_type>1</edge_type> <source_obj>186</source_obj> <sink_obj>127</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_184"> <id>188</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="_185"> <id>189</id> <edge_type>2</edge_type> <source_obj>140</source_obj> <sink_obj>128</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_186"> <id>190</id> <edge_type>2</edge_type> <source_obj>135</source_obj> <sink_obj>128</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_187"> <id>193</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>130</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_188"> <id>197</id> <edge_type>1</edge_type> <source_obj>196</source_obj> <sink_obj>131</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_189"> <id>198</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="_190"> <id>199</id> <edge_type>1</edge_type> <source_obj>126</source_obj> <sink_obj>131</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_191"> <id>200</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="_192"> <id>201</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>132</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_193"> <id>203</id> <edge_type>1</edge_type> <source_obj>202</source_obj> <sink_obj>133</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_194"> <id>204</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>133</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_195"> <id>205</id> <edge_type>2</edge_type> <source_obj>140</source_obj> <sink_obj>134</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_196"> <id>207</id> <edge_type>1</edge_type> <source_obj>206</source_obj> <sink_obj>136</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_197"> <id>208</id> <edge_type>2</edge_type> <source_obj>135</source_obj> <sink_obj>136</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_198"> <id>210</id> <edge_type>1</edge_type> <source_obj>209</source_obj> <sink_obj>136</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_199"> <id>211</id> <edge_type>2</edge_type> <source_obj>129</source_obj> <sink_obj>136</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_200"> <id>212</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="_201"> <id>213</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="_202"> <id>214</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>138</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_203"> <id>215</id> <edge_type>2</edge_type> <source_obj>142</source_obj> <sink_obj>139</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_204"> <id>216</id> <edge_type>2</edge_type> <source_obj>147</source_obj> <sink_obj>141</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_205"> <id>219</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>111</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_206"> <id>220</id> <edge_type>1</edge_type> <source_obj>174</source_obj> <sink_obj>111</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_207"> <id>221</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>112</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_208"> <id>222</id> <edge_type>2</edge_type> <source_obj>121</source_obj> <sink_obj>112</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_209"> <id>223</id> <edge_type>2</edge_type> <source_obj>119</source_obj> <sink_obj>112</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_210"> <id>226</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>114</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_211"> <id>229</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="_212"> <id>231</id> <edge_type>1</edge_type> <source_obj>230</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_213"> <id>232</id> <edge_type>1</edge_type> <source_obj>115</source_obj> <sink_obj>116</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_214"> <id>233</id> <edge_type>1</edge_type> <source_obj>153</source_obj> <sink_obj>116</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_215"> <id>234</id> <edge_type>1</edge_type> <source_obj>159</source_obj> <sink_obj>116</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_216"> <id>235</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>117</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_217"> <id>236</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>117</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_218"> <id>237</id> <edge_type>2</edge_type> <source_obj>121</source_obj> <sink_obj>118</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_219"> <id>238</id> <edge_type>2</edge_type> <source_obj>147</source_obj> <sink_obj>120</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_220"> <id>240</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>97</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_221"> <id>241</id> <edge_type>1</edge_type> <source_obj>174</source_obj> <sink_obj>97</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_222"> <id>242</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="_223"> <id>243</id> <edge_type>2</edge_type> <source_obj>110</source_obj> <sink_obj>98</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_224"> <id>244</id> <edge_type>2</edge_type> <source_obj>103</source_obj> <sink_obj>98</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_225"> <id>246</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>100</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_226"> <id>248</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="_227"> <id>249</id> <edge_type>1</edge_type> <source_obj>230</source_obj> <sink_obj>101</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_228"> <id>250</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="_229"> <id>251</id> <edge_type>2</edge_type> <source_obj>108</source_obj> <sink_obj>102</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_230"> <id>252</id> <edge_type>2</edge_type> <source_obj>106</source_obj> <sink_obj>102</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_231"> <id>253</id> <edge_type>1</edge_type> <source_obj>153</source_obj> <sink_obj>104</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_232"> <id>254</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>104</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_233"> <id>255</id> <edge_type>2</edge_type> <source_obj>108</source_obj> <sink_obj>105</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_234"> <id>256</id> <edge_type>2</edge_type> <source_obj>110</source_obj> <sink_obj>107</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_235"> <id>257</id> <edge_type>2</edge_type> <source_obj>147</source_obj> <sink_obj>109</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_236"> <id>259</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_237"> <id>260</id> <edge_type>1</edge_type> <source_obj>174</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_238"> <id>261</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>65</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_239"> <id>262</id> <edge_type>2</edge_type> <source_obj>96</source_obj> <sink_obj>65</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_240"> <id>263</id> <edge_type>2</edge_type> <source_obj>78</source_obj> <sink_obj>65</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_241"> <id>265</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>67</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_242"> <id>267</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="_243"> <id>268</id> <edge_type>1</edge_type> <source_obj>230</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_244"> <id>269</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_245"> <id>272</id> <edge_type>1</edge_type> <source_obj>69</source_obj> <sink_obj>70</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_246"> <id>273</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>70</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_247"> <id>276</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>71</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_248"> <id>278</id> <edge_type>1</edge_type> <source_obj>277</source_obj> <sink_obj>71</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_249"> <id>280</id> <edge_type>1</edge_type> <source_obj>279</source_obj> <sink_obj>71</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_250"> <id>283</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="_251"> <id>284</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_252"> <id>287</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="_253"> <id>289</id> <edge_type>1</edge_type> <source_obj>288</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_254"> <id>291</id> <edge_type>1</edge_type> <source_obj>290</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_255"> <id>292</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="_256"> <id>293</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_257"> <id>296</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>75</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_258"> <id>298</id> <edge_type>1</edge_type> <source_obj>297</source_obj> <sink_obj>75</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_259"> <id>300</id> <edge_type>1</edge_type> <source_obj>299</source_obj> <sink_obj>75</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_260"> <id>301</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>76</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_261"> <id>302</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>76</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_262"> <id>303</id> <edge_type>1</edge_type> <source_obj>68</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_263"> <id>304</id> <edge_type>2</edge_type> <source_obj>81</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_264"> <id>305</id> <edge_type>2</edge_type> <source_obj>84</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_265"> <id>307</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>82</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_266"> <id>308</id> <edge_type>1</edge_type> <source_obj>297</source_obj> <sink_obj>82</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_267"> <id>309</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="_268"> <id>310</id> <edge_type>2</edge_type> <source_obj>87</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_269"> <id>311</id> <edge_type>2</edge_type> <source_obj>90</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_270"> <id>312</id> <edge_type>1</edge_type> <source_obj>168</source_obj> <sink_obj>88</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_271"> <id>313</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>88</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_272"> <id>314</id> <edge_type>2</edge_type> <source_obj>94</source_obj> <sink_obj>89</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_273"> <id>315</id> <edge_type>1</edge_type> <source_obj>153</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_274"> <id>316</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_275"> <id>317</id> <edge_type>2</edge_type> <source_obj>94</source_obj> <sink_obj>86</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_276"> <id>318</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_277"> <id>319</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_278"> <id>320</id> <edge_type>2</edge_type> <source_obj>94</source_obj> <sink_obj>80</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_279"> <id>322</id> <edge_type>1</edge_type> <source_obj>321</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_280"> <id>323</id> <edge_type>2</edge_type> <source_obj>81</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_281"> <id>324</id> <edge_type>1</edge_type> <source_obj>321</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_282"> <id>325</id> <edge_type>2</edge_type> <source_obj>90</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_283"> <id>327</id> <edge_type>1</edge_type> <source_obj>326</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_284"> <id>328</id> <edge_type>2</edge_type> <source_obj>87</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_285"> <id>331</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>92</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_286"> <id>332</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="_287"> <id>333</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>92</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_288"> <id>334</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>92</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_289"> <id>335</id> <edge_type>1</edge_type> <source_obj>70</source_obj> <sink_obj>92</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_290"> <id>336</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>92</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_291"> <id>338</id> <edge_type>1</edge_type> <source_obj>337</source_obj> <sink_obj>92</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_292"> <id>339</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="_293"> <id>340</id> <edge_type>2</edge_type> <source_obj>96</source_obj> <sink_obj>93</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_294"> <id>341</id> <edge_type>2</edge_type> <source_obj>147</source_obj> <sink_obj>95</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_295"> <id>343</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_296"> <id>344</id> <edge_type>1</edge_type> <source_obj>174</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_297"> <id>345</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="_298"> <id>346</id> <edge_type>2</edge_type> <source_obj>63</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_299"> <id>347</id> <edge_type>2</edge_type> <source_obj>48</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_300"> <id>349</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_301"> <id>351</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="_302"> <id>352</id> <edge_type>1</edge_type> <source_obj>230</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_303"> <id>353</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_304"> <id>355</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="_305"> <id>356</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_306"> <id>358</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_307"> <id>359</id> <edge_type>1</edge_type> <source_obj>277</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_308"> <id>360</id> <edge_type>1</edge_type> <source_obj>279</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_309"> <id>362</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="_310"> <id>363</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_311"> <id>365</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_312"> <id>366</id> <edge_type>1</edge_type> <source_obj>288</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_313"> <id>367</id> <edge_type>1</edge_type> <source_obj>290</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_314"> <id>368</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="_315"> <id>369</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_316"> <id>371</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>45</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_317"> <id>372</id> <edge_type>1</edge_type> <source_obj>297</source_obj> <sink_obj>45</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_318"> <id>373</id> <edge_type>1</edge_type> <source_obj>299</source_obj> <sink_obj>45</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_319"> <id>374</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>46</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_320"> <id>375</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>46</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_321"> <id>376</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_322"> <id>377</id> <edge_type>2</edge_type> <source_obj>61</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_323"> <id>378</id> <edge_type>2</edge_type> <source_obj>51</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_324"> <id>380</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>49</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_325"> <id>381</id> <edge_type>1</edge_type> <source_obj>297</source_obj> <sink_obj>49</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_326"> <id>382</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="_327"> <id>383</id> <edge_type>2</edge_type> <source_obj>54</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_328"> <id>384</id> <edge_type>2</edge_type> <source_obj>57</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_329"> <id>385</id> <edge_type>1</edge_type> <source_obj>168</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_330"> <id>386</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_331"> <id>387</id> <edge_type>2</edge_type> <source_obj>61</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_332"> <id>388</id> <edge_type>1</edge_type> <source_obj>153</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_333"> <id>389</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_334"> <id>390</id> <edge_type>2</edge_type> <source_obj>61</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_335"> <id>391</id> <edge_type>1</edge_type> <source_obj>321</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_336"> <id>392</id> <edge_type>2</edge_type> <source_obj>57</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_337"> <id>393</id> <edge_type>1</edge_type> <source_obj>326</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_338"> <id>394</id> <edge_type>2</edge_type> <source_obj>54</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_339"> <id>395</id> <edge_type>1</edge_type> <source_obj>321</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_340"> <id>396</id> <edge_type>2</edge_type> <source_obj>48</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_341"> <id>398</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="_342"> <id>399</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_343"> <id>400</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_344"> <id>401</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_345"> <id>402</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_346"> <id>403</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_347"> <id>404</id> <edge_type>1</edge_type> <source_obj>337</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_348"> <id>405</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_349"> <id>406</id> <edge_type>2</edge_type> <source_obj>63</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_350"> <id>407</id> <edge_type>2</edge_type> <source_obj>147</source_obj> <sink_obj>62</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_351"> <id>410</id> <edge_type>1</edge_type> <source_obj>409</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_352"> <id>411</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_353"> <id>414</id> <edge_type>1</edge_type> <source_obj>413</source_obj> <sink_obj>29</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_354"> <id>415</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>29</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_355"> <id>417</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_356"> <id>418</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_357"> <id>419</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_358"> <id>420</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_359"> <id>421</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_360"> <id>422</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_361"> <id>423</id> <edge_type>1</edge_type> <source_obj>337</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_362"> <id>424</id> <edge_type>1</edge_type> <source_obj>326</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_363"> <id>425</id> <edge_type>1</edge_type> <source_obj>153</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_364"> <id>426</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_365"> <id>427</id> <edge_type>2</edge_type> <source_obj>147</source_obj> <sink_obj>32</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_366"> <id>428</id> <edge_type>1</edge_type> <source_obj>153</source_obj> <sink_obj>143</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_367"> <id>429</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>143</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_368"> <id>430</id> <edge_type>2</edge_type> <source_obj>147</source_obj> <sink_obj>144</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_369"> <id>617</id> <edge_type>2</edge_type> <source_obj>27</source_obj> <sink_obj>145</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_370"> <id>618</id> <edge_type>2</edge_type> <source_obj>27</source_obj> <sink_obj>124</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_371"> <id>619</id> <edge_type>2</edge_type> <source_obj>27</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_372"> <id>620</id> <edge_type>2</edge_type> <source_obj>27</source_obj> <sink_obj>99</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_373"> <id>621</id> <edge_type>2</edge_type> <source_obj>27</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_374"> <id>622</id> <edge_type>2</edge_type> <source_obj>27</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_375"> <id>623</id> <edge_type>2</edge_type> <source_obj>27</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_376"> <id>624</id> <edge_type>2</edge_type> <source_obj>33</source_obj> <sink_obj>147</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_377"> <id>625</id> <edge_type>2</edge_type> <source_obj>36</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_378"> <id>626</id> <edge_type>2</edge_type> <source_obj>36</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_379"> <id>627</id> <edge_type>2</edge_type> <source_obj>48</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_380"> <id>628</id> <edge_type>2</edge_type> <source_obj>48</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_381"> <id>629</id> <edge_type>2</edge_type> <source_obj>51</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_382"> <id>630</id> <edge_type>2</edge_type> <source_obj>51</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_383"> <id>631</id> <edge_type>2</edge_type> <source_obj>54</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_384"> <id>632</id> <edge_type>2</edge_type> <source_obj>57</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_385"> <id>633</id> <edge_type>2</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="_386"> <id>634</id> <edge_type>2</edge_type> <source_obj>63</source_obj> <sink_obj>147</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_387"> <id>635</id> <edge_type>2</edge_type> <source_obj>66</source_obj> <sink_obj>78</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_388"> <id>636</id> <edge_type>2</edge_type> <source_obj>66</source_obj> <sink_obj>96</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_389"> <id>637</id> <edge_type>2</edge_type> <source_obj>78</source_obj> <sink_obj>84</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_390"> <id>638</id> <edge_type>2</edge_type> <source_obj>78</source_obj> <sink_obj>81</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_391"> <id>639</id> <edge_type>2</edge_type> <source_obj>81</source_obj> <sink_obj>94</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_392"> <id>640</id> <edge_type>2</edge_type> <source_obj>84</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_393"> <id>641</id> <edge_type>2</edge_type> <source_obj>84</source_obj> <sink_obj>87</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_394"> <id>642</id> <edge_type>2</edge_type> <source_obj>87</source_obj> <sink_obj>94</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_395"> <id>643</id> <edge_type>2</edge_type> <source_obj>90</source_obj> <sink_obj>94</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_396"> <id>644</id> <edge_type>2</edge_type> <source_obj>94</source_obj> <sink_obj>96</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_397"> <id>645</id> <edge_type>2</edge_type> <source_obj>96</source_obj> <sink_obj>147</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_398"> <id>646</id> <edge_type>2</edge_type> <source_obj>99</source_obj> <sink_obj>103</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_399"> <id>647</id> <edge_type>2</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="_400"> <id>648</id> <edge_type>2</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="_401"> <id>649</id> <edge_type>2</edge_type> <source_obj>103</source_obj> <sink_obj>108</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_402"> <id>650</id> <edge_type>2</edge_type> <source_obj>106</source_obj> <sink_obj>108</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_403"> <id>651</id> <edge_type>2</edge_type> <source_obj>108</source_obj> <sink_obj>110</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_404"> <id>652</id> <edge_type>2</edge_type> <source_obj>110</source_obj> <sink_obj>147</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_405"> <id>653</id> <edge_type>2</edge_type> <source_obj>113</source_obj> <sink_obj>119</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_406"> <id>654</id> <edge_type>2</edge_type> <source_obj>113</source_obj> <sink_obj>121</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_407"> <id>655</id> <edge_type>2</edge_type> <source_obj>119</source_obj> <sink_obj>121</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_408"> <id>656</id> <edge_type>2</edge_type> <source_obj>121</source_obj> <sink_obj>147</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_409"> <id>657</id> <edge_type>2</edge_type> <source_obj>124</source_obj> <sink_obj>129</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_410"> <id>658</id> <edge_type>2</edge_type> <source_obj>124</source_obj> <sink_obj>142</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_411"> <id>659</id> <edge_type>2</edge_type> <source_obj>129</source_obj> <sink_obj>135</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_412"> <id>660</id> <edge_type>2</edge_type> <source_obj>129</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_413"> <id>661</id> <edge_type>2</edge_type> <source_obj>135</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_414"> <id>662</id> <edge_type>2</edge_type> <source_obj>140</source_obj> <sink_obj>142</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_415"> <id>663</id> <edge_type>2</edge_type> <source_obj>142</source_obj> <sink_obj>147</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_416"> <id>664</id> <edge_type>2</edge_type> <source_obj>145</source_obj> <sink_obj>147</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_417"> <id>665</id> <edge_type>4</edge_type> <source_obj>23</source_obj> <sink_obj>143</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_418"> <id>666</id> <edge_type>4</edge_type> <source_obj>23</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_419"> <id>667</id> <edge_type>4</edge_type> <source_obj>23</source_obj> <sink_obj>117</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_420"> <id>668</id> <edge_type>4</edge_type> <source_obj>24</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_421"> <id>669</id> <edge_type>4</edge_type> <source_obj>25</source_obj> <sink_obj>76</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_422"> <id>670</id> <edge_type>4</edge_type> <source_obj>24</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_423"> <id>671</id> <edge_type>4</edge_type> <source_obj>25</source_obj> <sink_obj>46</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_424"> <id>672</id> <edge_type>4</edge_type> <source_obj>24</source_obj> <sink_obj>132</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_425"> <id>673</id> <edge_type>4</edge_type> <source_obj>25</source_obj> <sink_obj>133</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_426"> <id>674</id> <edge_type>4</edge_type> <source_obj>23</source_obj> <sink_obj>138</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_427"> <id>675</id> <edge_type>4</edge_type> <source_obj>23</source_obj> <sink_obj>104</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_428"> <id>676</id> <edge_type>4</edge_type> <source_obj>23</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_429"> <id>677</id> <edge_type>4</edge_type> <source_obj>23</source_obj> <sink_obj>88</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_430"> <id>678</id> <edge_type>4</edge_type> <source_obj>23</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_431"> <id>679</id> <edge_type>4</edge_type> <source_obj>23</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_432"> <id>680</id> <edge_type>4</edge_type> <source_obj>23</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_433"> <id>681</id> <edge_type>4</edge_type> <source_obj>34</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_434"> <id>682</id> <edge_type>4</edge_type> <source_obj>64</source_obj> <sink_obj>67</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_435"> <id>683</id> <edge_type>4</edge_type> <source_obj>97</source_obj> <sink_obj>100</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_436"> <id>684</id> <edge_type>4</edge_type> <source_obj>111</source_obj> <sink_obj>114</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_437"> <id>685</id> <edge_type>4</edge_type> <source_obj>122</source_obj> <sink_obj>125</sink_obj> <is_back_edge>0</is_back_edge> </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="_438"> <mId>1</mId> <mTag>handle_output</mTag> <mNormTag>handle_output</mNormTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>32</count> <item_version>0</item_version> <item>27</item> <item>33</item> <item>36</item> <item>48</item> <item>51</item> <item>54</item> <item>57</item> <item>61</item> <item>63</item> <item>66</item> <item>78</item> <item>81</item> <item>84</item> <item>87</item> <item>90</item> <item>94</item> <item>96</item> <item>99</item> <item>103</item> <item>106</item> <item>108</item> <item>110</item> <item>113</item> <item>119</item> <item>121</item> <item>124</item> <item>129</item> <item>135</item> <item>140</item> <item>142</item> <item>145</item> <item>147</item> </basic_blocks> <mII>1</mII> <mDepth>3</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>2</mMinLatency> <mMaxLatency>2</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> </cdfg_regions> <fsm class_id="24" tracking_level="1" version="0" object_id="_439"> <states class_id="25" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_440"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>89</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_441"> <id>12</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_442"> <id>13</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_443"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_444"> <id>15</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_445"> <id>16</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_446"> <id>17</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_447"> <id>18</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_448"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_449"> <id>20</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_450"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_451"> <id>22</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_452"> <id>23</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_453"> <id>24</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_454"> <id>25</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_455"> <id>26</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_456"> <id>31</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_457"> <id>34</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_458"> <id>35</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_459"> <id>37</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_460"> <id>38</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_461"> <id>39</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_462"> <id>41</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_463"> <id>43</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_464"> <id>44</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_465"> <id>45</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_466"> <id>46</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_467"> <id>47</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_468"> <id>49</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_469"> <id>50</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_470"> <id>52</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_471"> <id>53</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_472"> <id>55</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_473"> <id>56</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_474"> <id>62</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_475"> <id>64</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_476"> <id>65</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_477"> <id>67</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_478"> <id>68</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_479"> <id>69</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_480"> <id>71</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_481"> <id>73</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_482"> <id>74</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_483"> <id>75</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_484"> <id>76</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_485"> <id>77</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_486"> <id>79</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_487"> <id>80</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_488"> <id>82</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_489"> <id>83</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_490"> <id>85</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_491"> <id>86</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_492"> <id>88</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_493"> <id>89</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_494"> <id>95</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_495"> <id>97</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_496"> <id>98</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_497"> <id>100</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_498"> <id>101</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_499"> <id>102</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_500"> <id>104</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_501"> <id>105</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_502"> <id>107</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_503"> <id>109</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_504"> <id>111</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_505"> <id>112</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_506"> <id>114</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_507"> <id>115</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_508"> <id>116</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_509"> <id>117</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_510"> <id>118</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_511"> <id>120</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_512"> <id>122</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_513"> <id>123</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_514"> <id>125</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_515"> <id>126</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_516"> <id>127</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_517"> <id>128</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_518"> <id>130</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_519"> <id>131</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_520"> <id>132</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_521"> <id>133</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_522"> <id>134</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_523"> <id>136</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_524"> <id>137</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_525"> <id>138</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_526"> <id>139</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_527"> <id>141</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_528"> <id>143</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_529"> <id>144</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_530"> <id>2</id> <operations> <count>11</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_531"> <id>28</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_532"> <id>29</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_533"> <id>30</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_534"> <id>40</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_535"> <id>42</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_536"> <id>58</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_537"> <id>59</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_538"> <id>70</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_539"> <id>72</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_540"> <id>91</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_541"> <id>92</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_542"> <id>3</id> <operations> <count>7</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_543"> <id>30</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_544"> <id>32</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_545"> <id>59</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_546"> <id>60</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_547"> <id>92</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_548"> <id>93</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_549"> <id>146</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_550"> <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="_551"> <inState>2</inState> <outState>3</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> </transitions> </fsm> <res class_id="34" tracking_level="1" version="0" object_id="_552"> <dp_component_resource class_id="35" tracking_level="0" version="0"> <count>5</count> <item_version>0</item_version> <item class_id="36" tracking_level="0" version="0"> <first>regslice_both_arpTableReplay_V_U (ethernet_header_inserter_regslice_both)</first> <second class_id="37" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>regslice_both_dataOut_V_data_V_U (ethernet_header_inserter_regslice_both)</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>regslice_both_dataOut_V_keep_V_U (ethernet_header_inserter_regslice_both)</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>regslice_both_dataOut_V_last_V_U (ethernet_header_inserter_regslice_both)</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>regslice_both_dataOut_V_strb_V_U (ethernet_header_inserter_regslice_both)</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> </dp_component_resource> <dp_expression_resource> <count>23</count> <item_version>0</item_version> <item> <first>ap_block_pp0_stage0_01001 ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item class_id="38" 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_block_pp0_stage0_11001 ( 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_block_state1_pp0_stage0_iter0 ( 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_block_state2_io ( 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_block_state3_io ( 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_block_state3_pp0_stage0_iter2 ( 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_condition_222 ( and ) </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_condition_257 ( and ) </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_condition_351 ( and ) </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_predicate_op103_write_state2 ( and ) </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_predicate_op106_write_state3 ( and ) </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_predicate_op108_write_state3 ( and ) </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_predicate_op22_read_state1 ( and ) </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_predicate_op40_read_state1 ( and ) </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_predicate_op60_read_state1 ( and ) </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_predicate_op69_read_state1 ( and ) </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_predicate_op77_read_state1 ( and ) </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_predicate_op99_write_state2 ( and ) </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>grp_nbreadreq_fu_112_p3 ( and ) </first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(0P0)</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>grp_nbreadreq_fu_126_p3 ( and ) </first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(0P0)</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>select_ln132_fu_405_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>2</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>tmp_i_nbreadreq_fu_140_p3 ( and ) </first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</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>14</count> <item_version>0</item_version> <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_phi_mux_storemerge1_i_phi_fu_181_p4</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>2</second> </item> <item> <first>(2Count)</first> <second>6</second> </item> <item> <first>LUT</first> <second>14</second> </item> </second> </item> <item> <first>ap_phi_reg_pp0_iter1_sendWord_last_V_1_reg_189</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>14</second> </item> </second> </item> <item> <first>ap_phi_reg_pp0_iter1_sendWord_last_V_reg_208</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>14</second> </item> </second> </item> <item> <first>arpTableReplay_V_TDATA_blk_n</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>dataOut_TDATA_blk_n</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>dataOut_TDATA_int_regslice</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>4</second> </item> <item> <first>(1Bits)</first> <second>512</second> </item> <item> <first>(2Count)</first> <second>2048</second> </item> <item> <first>LUT</first> <second>20</second> </item> </second> </item> <item> <first>dataOut_TKEEP_int_regslice</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>4</second> </item> <item> <first>(1Bits)</first> <second>64</second> </item> <item> <first>(2Count)</first> <second>256</second> </item> <item> <first>LUT</first> <second>20</second> </item> </second> </item> <item> <first>dataOut_TLAST_int_regslice</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>20</second> </item> </second> </item> <item> <first>ip_header_checksum_blk_n</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>mw_state</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>5</second> </item> <item> <first>(1Bits)</first> <second>3</second> </item> <item> <first>(2Count)</first> <second>15</second> </item> <item> <first>LUT</first> <second>26</second> </item> </second> </item> <item> <first>no_ip_header_out_blk_n</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>previous_word_data_V</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>112</second> </item> <item> <first>(2Count)</first> <second>336</second> </item> <item> <first>LUT</first> <second>14</second> </item> </second> </item> <item> <first>previous_word_keep_V</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>14</second> </item> <item> <first>(2Count)</first> <second>42</second> </item> <item> <first>LUT</first> <second>14</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>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</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_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_phi_reg_pp0_iter1_sendWord_last_V_1_reg_189</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_phi_reg_pp0_iter1_sendWord_last_V_reg_208</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>mw_state</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>mw_state_load_reg_513</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>mw_state_load_reg_513_pp0_iter1_reg</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>p_Result_2_i_reg_563</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>50</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>50</second> </item> </second> </item> <item> <first>p_Result_8_i_reg_543</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>50</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>50</second> </item> </second> </item> <item> <first>previous_word_data_V</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>112</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>112</second> </item> </second> </item> <item> <first>previous_word_data_V_load_reg_517</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>112</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>112</second> </item> </second> </item> <item> <first>previous_word_keep_V</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>14</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>14</second> </item> </second> </item> <item> <first>previous_word_keep_V_load_reg_524</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>14</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>14</second> </item> </second> </item> <item> <first>tmp_3_i_reg_551</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_3_i_reg_551_pp0_iter1_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>tmp_4_i_reg_531</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_4_i_reg_531_pp0_iter1_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>trunc_ln674_1_reg_538</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>400</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>400</second> </item> </second> </item> <item> <first>trunc_ln674_reg_558</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>400</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>400</second> </item> </second> </item> </dp_register_resource> <dp_dsp_resource> <count>5</count> <item_version>0</item_version> <item> <first>regslice_both_arpTableReplay_V_U</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>regslice_both_dataOut_V_data_V_U</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>regslice_both_dataOut_V_keep_V_U</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>regslice_both_dataOut_V_last_V_U</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>regslice_both_dataOut_V_strb_V_U</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> </dp_dsp_resource> <dp_component_map class_id="39" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_component_map> <dp_expression_map> <count>1</count> <item_version>0</item_version> <item class_id="40" tracking_level="0" version="0"> <first>select_ln132_fu_405_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>116</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="41" tracking_level="0" version="0"> <count>93</count> <item_version>0</item_version> <item class_id="42" tracking_level="0" version="0"> <first>23</first> <second class_id="43" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>24</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>25</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>26</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>28</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>29</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>30</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>31</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>32</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>34</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>35</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>38</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>39</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>40</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>41</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>42</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>43</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>44</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>45</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>46</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>47</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>49</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>50</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>52</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>53</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>55</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>56</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>58</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>59</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>60</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>62</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>64</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>65</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>67</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>68</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>69</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>70</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>71</first> <second> <first>0</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>0</first> <second>0</second> </second> </item> <item> <first>74</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>75</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>76</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>77</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>79</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>80</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>82</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>83</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>85</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>86</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>88</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>89</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>91</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>92</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>93</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>95</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>97</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>98</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>100</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>101</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>102</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>104</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>105</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>107</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>109</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>111</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>112</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>114</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>115</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>116</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>117</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>118</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>120</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>122</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>123</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>125</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>126</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>127</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>128</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>130</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>131</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>132</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>133</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>134</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>136</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>137</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>138</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>139</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>141</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>143</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>144</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>146</first> <second> <first>2</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="44" tracking_level="0" version="0"> <count>32</count> <item_version>0</item_version> <item class_id="45" tracking_level="0" version="0"> <first>27</first> <second class_id="46" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>33</first> <second> <first>0</first> <second>2</second> </second> </item> <item> <first>36</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>48</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>51</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>54</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>57</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>61</first> <second> <first>0</first> <second>2</second> </second> </item> <item> <first>63</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>66</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>78</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>81</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>84</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>87</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>90</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>94</first> <second> <first>0</first> <second>2</second> </second> </item> <item> <first>96</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>99</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>103</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>106</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>108</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>110</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>113</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>119</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>121</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>124</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>129</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>135</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>140</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>142</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>145</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>147</first> <second> <first>2</first> <second>2</second> </second> </item> </bblk_ent_exit> <regions class_id="47" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="48" tracking_level="1" version="0" object_id="_553"> <region_name>handle_output</region_name> <basic_blocks> <count>32</count> <item_version>0</item_version> <item>27</item> <item>33</item> <item>36</item> <item>48</item> <item>51</item> <item>54</item> <item>57</item> <item>61</item> <item>63</item> <item>66</item> <item>78</item> <item>81</item> <item>84</item> <item>87</item> <item>90</item> <item>94</item> <item>96</item> <item>99</item> <item>103</item> <item>106</item> <item>108</item> <item>110</item> <item>113</item> <item>119</item> <item>121</item> <item>124</item> <item>129</item> <item>135</item> <item>140</item> <item>142</item> <item>145</item> <item>147</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>3</pipe_depth> <mDBIIViolationVec class_id="49" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </mDBIIViolationVec> </item> </regions> <dp_fu_nodes class_id="50" tracking_level="0" version="0"> <count>53</count> <item_version>0</item_version> <item class_id="51" tracking_level="0" version="0"> <first>112</first> <second> <count>2</count> <item_version>0</item_version> <item>34</item> <item>97</item> </second> </item> <item> <first>120</first> <second> <count>2</count> <item_version>0</item_version> <item>37</item> <item>100</item> </second> </item> <item> <first>126</first> <second> <count>2</count> <item_version>0</item_version> <item>64</item> <item>111</item> </second> </item> <item> <first>134</first> <second> <count>2</count> <item_version>0</item_version> <item>67</item> <item>114</item> </second> </item> <item> <first>140</first> <second> <count>1</count> <item_version>0</item_version> <item>122</item> </second> </item> <item> <first>148</first> <second> <count>1</count> <item_version>0</item_version> <item>125</item> </second> </item> <item> <first>154</first> <second> <count>1</count> <item_version>0</item_version> <item>130</item> </second> </item> <item> <first>160</first> <second> <count>6</count> <item_version>0</item_version> <item>30</item> <item>30</item> <item>59</item> <item>59</item> <item>92</item> <item>92</item> </second> </item> <item> <first>181</first> <second> <count>1</count> <item_version>0</item_version> <item>136</item> </second> </item> <item> <first>195</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>214</first> <second> <count>1</count> <item_version>0</item_version> <item>91</item> </second> </item> <item> <first>227</first> <second> <count>2</count> <item_version>0</item_version> <item>38</item> <item>101</item> </second> </item> <item> <first>235</first> <second> <count>2</count> <item_version>0</item_version> <item>68</item> <item>115</item> </second> </item> <item> <first>243</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>247</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>251</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>255</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>261</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>265</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>275</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>285</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>291</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>301</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>307</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>315</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>321</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>327</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>331</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>341</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>351</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>357</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>367</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>373</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>379</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>387</first> <second> <count>1</count> <item_version>0</item_version> <item>85</item> </second> </item> <item> <first>393</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>399</first> <second> <count>1</count> <item_version>0</item_version> <item>104</item> </second> </item> <item> <first>405</first> <second> <count>1</count> <item_version>0</item_version> <item>116</item> </second> </item> <item> <first>413</first> <second> <count>1</count> <item_version>0</item_version> <item>117</item> </second> </item> <item> <first>419</first> <second> <count>1</count> <item_version>0</item_version> <item>126</item> </second> </item> <item> <first>423</first> <second> <count>1</count> <item_version>0</item_version> <item>127</item> </second> </item> <item> <first>431</first> <second> <count>1</count> <item_version>0</item_version> <item>131</item> </second> </item> <item> <first>441</first> <second> <count>1</count> <item_version>0</item_version> <item>132</item> </second> </item> <item> <first>447</first> <second> <count>1</count> <item_version>0</item_version> <item>133</item> </second> </item> <item> <first>453</first> <second> <count>1</count> <item_version>0</item_version> <item>137</item> </second> </item> <item> <first>457</first> <second> <count>1</count> <item_version>0</item_version> <item>138</item> </second> </item> <item> <first>463</first> <second> <count>1</count> <item_version>0</item_version> <item>143</item> </second> </item> <item> <first>469</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>477</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>485</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>492</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>499</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>506</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="53" tracking_level="0" version="0"> <count>26</count> <item_version>0</item_version> <item class_id="54" tracking_level="0" version="0"> <first>grp_fu_227</first> <second> <count>2</count> <item_version>0</item_version> <item>38</item> <item>101</item> </second> </item> <item> <first>grp_fu_235</first> <second> <count>2</count> <item_version>0</item_version> <item>68</item> <item>115</item> </second> </item> <item> <first>p_Result_10_fu_492</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>p_Result_10_i_fu_275</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>p_Result_11_fu_469</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>p_Result_11_i_fu_291</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>p_Result_12_fu_477</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>p_Result_2_i_fu_331</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>p_Result_4_i_fu_341</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>p_Result_5_i_fu_357</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>p_Result_7_fu_499</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>p_Result_8_fu_506</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>p_Result_8_i_fu_265</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>p_Result_9_fu_485</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>p_Result_s_fu_431</first> <second> <count>1</count> <item_version>0</item_version> <item>131</item> </second> </item> <item> <first>reply_hit_fu_423</first> <second> <count>1</count> <item_version>0</item_version> <item>127</item> </second> </item> <item> <first>reply_macAddress_V_fu_419</first> <second> <count>1</count> <item_version>0</item_version> <item>126</item> </second> </item> <item> <first>select_ln132_fu_405</first> <second> <count>1</count> <item_version>0</item_version> <item>116</item> </second> </item> <item> <first>sendWord_last_V_1_phi_fu_195</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>sendWord_last_V_phi_fu_214</first> <second> <count>1</count> <item_version>0</item_version> <item>91</item> </second> </item> <item> <first>storemerge1_i_phi_fu_181</first> <second> <count>1</count> <item_version>0</item_version> <item>136</item> </second> </item> <item> <first>tmp_7_fu_379</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>tmp_8_fu_307</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>trunc_ln674_1_fu_261</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>trunc_ln674_fu_327</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>zext_ln121_fu_453</first> <second> <count>1</count> <item_version>0</item_version> <item>137</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>27</count> <item_version>0</item_version> <item> <first>arpTableReplay_V_read_read_fu_148</first> <second> <count>1</count> <item_version>0</item_version> <item>125</item> </second> </item> <item> <first>grp_nbreadreq_fu_112</first> <second> <count>2</count> <item_version>0</item_version> <item>34</item> <item>97</item> </second> </item> <item> <first>grp_nbreadreq_fu_126</first> <second> <count>2</count> <item_version>0</item_version> <item>64</item> <item>111</item> </second> </item> <item> <first>grp_read_fu_120</first> <second> <count>2</count> <item_version>0</item_version> <item>37</item> <item>100</item> </second> </item> <item> <first>grp_read_fu_134</first> <second> <count>2</count> <item_version>0</item_version> <item>67</item> <item>114</item> </second> </item> <item> <first>grp_write_fu_160</first> <second> <count>6</count> <item_version>0</item_version> <item>30</item> <item>30</item> <item>59</item> <item>59</item> <item>92</item> <item>92</item> </second> </item> <item> <first>mw_state_load_load_fu_243</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>myMacAddress_read_read_fu_154</first> <second> <count>1</count> <item_version>0</item_version> <item>130</item> </second> </item> <item> <first>previous_word_data_V_load_load_fu_247</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>previous_word_keep_V_load_load_fu_251</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>store_ln121_store_fu_457</first> <second> <count>1</count> <item_version>0</item_version> <item>138</item> </second> </item> <item> <first>store_ln132_store_fu_413</first> <second> <count>1</count> <item_version>0</item_version> <item>117</item> </second> </item> <item> <first>store_ln143_store_fu_399</first> <second> <count>1</count> <item_version>0</item_version> <item>104</item> </second> </item> <item> <first>store_ln157_store_fu_351</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>store_ln158_store_fu_367</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>store_ln164_store_fu_393</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>store_ln168_store_fu_387</first> <second> <count>1</count> <item_version>0</item_version> <item>85</item> </second> </item> <item> <first>store_ln172_store_fu_373</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>store_ln189_store_fu_285</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>store_ln190_store_fu_301</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>store_ln196_store_fu_321</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>store_ln200_store_fu_315</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>store_ln215_store_fu_255</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>store_ln220_store_fu_463</first> <second> <count>1</count> <item_version>0</item_version> <item>143</item> </second> </item> <item> <first>store_ln391_store_fu_441</first> <second> <count>1</count> <item_version>0</item_version> <item>132</item> </second> </item> <item> <first>store_ln391_store_fu_447</first> <second> <count>1</count> <item_version>0</item_version> <item>133</item> </second> </item> <item> <first>tmp_i_nbreadreq_fu_140</first> <second> <count>1</count> <item_version>0</item_version> <item>122</item> </second> </item> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="55" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>18</count> <item_version>0</item_version> <item> <first>178</first> <second> <count>1</count> <item_version>0</item_version> <item>136</item> </second> </item> <item> <first>189</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>208</first> <second> <count>1</count> <item_version>0</item_version> <item>91</item> </second> </item> <item> <first>513</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>517</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>524</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>531</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>538</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>543</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>551</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>558</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>563</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>586</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>591</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>596</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>601</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>606</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>611</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>18</count> <item_version>0</item_version> <item> <first>mw_state_load_reg_513</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>p_Result_10_reg_601</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>p_Result_11_reg_586</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>p_Result_12_reg_591</first> <second> <count>1</count> <item_version>0</item_version> <item>29</item> </second> </item> <item> <first>p_Result_2_i_reg_563</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>p_Result_7_reg_606</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>p_Result_8_i_reg_543</first> <second> <count>1</count> <item_version>0</item_version> <item>41</item> </second> </item> <item> <first>p_Result_8_reg_611</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>p_Result_9_reg_596</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>previous_word_data_V_load_reg_517</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>previous_word_keep_V_load_reg_524</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>sendWord_last_V_1_reg_189</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>sendWord_last_V_reg_208</first> <second> <count>1</count> <item_version>0</item_version> <item>91</item> </second> </item> <item> <first>storemerge1_i_reg_178</first> <second> <count>1</count> <item_version>0</item_version> <item>136</item> </second> </item> <item> <first>tmp_3_i_reg_551</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>tmp_4_i_reg_531</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>trunc_ln674_1_reg_538</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>trunc_ln674_reg_558</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>3</count> <item_version>0</item_version> <item> <first>178</first> <second> <count>1</count> <item_version>0</item_version> <item>136</item> </second> </item> <item> <first>189</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>208</first> <second> <count>1</count> <item_version>0</item_version> <item>91</item> </second> </item> </dp_reg_phi> <dp_regname_phi> <count>3</count> <item_version>0</item_version> <item> <first>sendWord_last_V_1_reg_189</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>sendWord_last_V_reg_208</first> <second> <count>1</count> <item_version>0</item_version> <item>91</item> </second> </item> <item> <first>storemerge1_i_reg_178</first> <second> <count>1</count> <item_version>0</item_version> <item>136</item> </second> </item> </dp_regname_phi> <dp_port_io_nodes class_id="56" tracking_level="0" version="0"> <count>8</count> <item_version>0</item_version> <item class_id="57" tracking_level="0" version="0"> <first>arpTableReplay_V</first> <second> <count>2</count> <item_version>0</item_version> <item> <first>nbreadreq</first> <second> <count>1</count> <item_version>0</item_version> <item>122</item> </second> </item> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>125</item> </second> </item> </second> </item> <item> <first>dataOut_V_data_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>3</count> <item_version>0</item_version> <item>92</item> <item>59</item> <item>30</item> </second> </item> </second> </item> <item> <first>dataOut_V_keep_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>3</count> <item_version>0</item_version> <item>92</item> <item>59</item> <item>30</item> </second> </item> </second> </item> <item> <first>dataOut_V_last_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>3</count> <item_version>0</item_version> <item>92</item> <item>59</item> <item>30</item> </second> </item> </second> </item> <item> <first>dataOut_V_strb_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>3</count> <item_version>0</item_version> <item>92</item> <item>59</item> <item>30</item> </second> </item> </second> </item> <item> <first>ip_header_checksum</first> <second> <count>2</count> <item_version>0</item_version> <item> <first>nbreadreq</first> <second> <count>2</count> <item_version>0</item_version> <item>111</item> <item>64</item> </second> </item> <item> <first>read</first> <second> <count>2</count> <item_version>0</item_version> <item>114</item> <item>67</item> </second> </item> </second> </item> <item> <first>myMacAddress</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>130</item> </second> </item> </second> </item> <item> <first>no_ip_header_out</first> <second> <count>2</count> <item_version>0</item_version> <item> <first>nbreadreq</first> <second> <count>2</count> <item_version>0</item_version> <item>97</item> <item>34</item> </second> </item> <item> <first>read</first> <second> <count>2</count> <item_version>0</item_version> <item>100</item> <item>37</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core> <count>2</count> <item_version>0</item_version> <item> <first>10</first> <second> <first>1150</first> <second>7</second> </second> </item> <item> <first>11</first> <second> <first>1150</first> <second>7</second> </second> </item> </port2core> <node2core> <count>14</count> <item_version>0</item_version> <item> <first>30</first> <second> <first>888</first> <second>111</second> </second> </item> <item> <first>34</first> <second> <first>1150</first> <second>7</second> </second> </item> <item> <first>37</first> <second> <first>1150</first> <second>7</second> </second> </item> <item> <first>59</first> <second> <first>888</first> <second>111</second> </second> </item> <item> <first>64</first> <second> <first>1150</first> <second>7</second> </second> </item> <item> <first>67</first> <second> <first>1150</first> <second>7</second> </second> </item> <item> <first>92</first> <second> <first>888</first> <second>111</second> </second> </item> <item> <first>97</first> <second> <first>1150</first> <second>7</second> </second> </item> <item> <first>100</first> <second> <first>1150</first> <second>7</second> </second> </item> <item> <first>111</first> <second> <first>1150</first> <second>7</second> </second> </item> <item> <first>114</first> <second> <first>1150</first> <second>7</second> </second> </item> <item> <first>116</first> <second> <first>49</first> <second>107</second> </second> </item> <item> <first>122</first> <second> <first>888</first> <second>111</second> </second> </item> <item> <first>125</first> <second> <first>888</first> <second>111</second> </second> </item> </node2core> </syndb> </boost_serialization>
-- C54A23A.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 CASE CHOICES MAY BE CONSTANT NAMES -- DAT 3/18/81 -- SPS 4/7/82 WITH REPORT; USE REPORT; PROCEDURE C54A23A IS C1 : CONSTANT INTEGER := 1; C2 : CONSTANT INTEGER := 2; C3 : CONSTANT INTEGER := 3; BEGIN TEST ("C54A23A", "CASE CHOICES MAY BE CONSTANTS"); CASE IDENT_INT (C3) IS WHEN C1 | C2 => FAILED ("WRONG CASE CHOICE 1"); WHEN 3 => NULL; WHEN OTHERS => FAILED ("WRONG CASE CHOICE 2"); END CASE; RESULT; END C54A23A;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . W I D E _ W I D E _ C H A R A C T E R S . H A N D L I N G -- -- -- -- B o d y -- -- -- -- Copyright (C) 2010-2019, 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.Wide_Wide_Characters.Unicode; use Ada.Wide_Wide_Characters.Unicode; package body Ada.Wide_Wide_Characters.Handling is --------------------- -- Is_Alphanumeric -- --------------------- function Is_Alphanumeric (Item : Wide_Wide_Character) return Boolean is begin return Is_Letter (Item) or else Is_Digit (Item); end Is_Alphanumeric; ---------------- -- Is_Control -- ---------------- function Is_Control (Item : Wide_Wide_Character) return Boolean is begin return Get_Category (Item) = Cc; end Is_Control; -------------- -- Is_Digit -- -------------- function Is_Digit (Item : Wide_Wide_Character) return Boolean renames Ada.Wide_Wide_Characters.Unicode.Is_Digit; ---------------- -- Is_Graphic -- ---------------- function Is_Graphic (Item : Wide_Wide_Character) return Boolean is begin return not Is_Non_Graphic (Item); end Is_Graphic; -------------------------- -- Is_Hexadecimal_Digit -- -------------------------- function Is_Hexadecimal_Digit (Item : Wide_Wide_Character) return Boolean is begin return Is_Digit (Item) or else Item in 'A' .. 'F' or else Item in 'a' .. 'f'; end Is_Hexadecimal_Digit; --------------- -- Is_Letter -- --------------- function Is_Letter (Item : Wide_Wide_Character) return Boolean renames Ada.Wide_Wide_Characters.Unicode.Is_Letter; ------------------------ -- Is_Line_Terminator -- ------------------------ function Is_Line_Terminator (Item : Wide_Wide_Character) return Boolean renames Ada.Wide_Wide_Characters.Unicode.Is_Line_Terminator; -------------- -- Is_Lower -- -------------- function Is_Lower (Item : Wide_Wide_Character) return Boolean is begin return Get_Category (Item) = Ll; end Is_Lower; ------------- -- Is_Mark -- ------------- function Is_Mark (Item : Wide_Wide_Character) return Boolean renames Ada.Wide_Wide_Characters.Unicode.Is_Mark; --------------------- -- Is_Other_Format -- --------------------- function Is_Other_Format (Item : Wide_Wide_Character) return Boolean renames Ada.Wide_Wide_Characters.Unicode.Is_Other; ------------------------------ -- Is_Punctuation_Connector -- ------------------------------ function Is_Punctuation_Connector (Item : Wide_Wide_Character) return Boolean renames Ada.Wide_Wide_Characters.Unicode.Is_Punctuation; -------------- -- Is_Space -- -------------- function Is_Space (Item : Wide_Wide_Character) return Boolean renames Ada.Wide_Wide_Characters.Unicode.Is_Space; ---------------- -- Is_Special -- ---------------- function Is_Special (Item : Wide_Wide_Character) return Boolean is begin return Is_Graphic (Item) and then not Is_Alphanumeric (Item); end Is_Special; -------------- -- Is_Upper -- -------------- function Is_Upper (Item : Wide_Wide_Character) return Boolean is begin return Get_Category (Item) = Lu; end Is_Upper; -------------- -- To_Lower -- -------------- function To_Lower (Item : Wide_Wide_Character) return Wide_Wide_Character renames Ada.Wide_Wide_Characters.Unicode.To_Lower_Case; function To_Lower (Item : Wide_Wide_String) return Wide_Wide_String is Result : Wide_Wide_String (Item'Range); begin for J in Result'Range loop Result (J) := To_Lower (Item (J)); end loop; return Result; end To_Lower; -------------- -- To_Upper -- -------------- function To_Upper (Item : Wide_Wide_Character) return Wide_Wide_Character renames Ada.Wide_Wide_Characters.Unicode.To_Upper_Case; function To_Upper (Item : Wide_Wide_String) return Wide_Wide_String is Result : Wide_Wide_String (Item'Range); begin for J in Result'Range loop Result (J) := To_Upper (Item (J)); end loop; return Result; end To_Upper; end Ada.Wide_Wide_Characters.Handling;